less copy protection, more size visualization
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

46127 рядки
1.1 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", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. "owlbear": {
  1795. name: "Owlbear",
  1796. parents: ["owl", "bear", "monster"]
  1797. },
  1798. "owl": {
  1799. name: "Owl",
  1800. parents: ["avian"]
  1801. },
  1802. "silvertongue": {
  1803. name: "Silvertongue",
  1804. parents: ["reptile"]
  1805. },
  1806. "ahuizotl": {
  1807. name: "Ahuizotl",
  1808. parents: ["monster"]
  1809. },
  1810. }
  1811. //species
  1812. function getSpeciesInfo(speciesList) {
  1813. let result = new Set();
  1814. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1815. result.add(entry)
  1816. });
  1817. return Array.from(result);
  1818. };
  1819. function getSpeciesInfoHelper(species) {
  1820. if (!speciesData[species]) {
  1821. console.warn(species + " doesn't exist");
  1822. return [];
  1823. }
  1824. if (speciesData[species].parents) {
  1825. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1826. } else {
  1827. return [species];
  1828. }
  1829. }
  1830. characterMakers.push(() => makeCharacter(
  1831. {
  1832. name: "Fen",
  1833. species: ["crux"],
  1834. description: {
  1835. title: "Bio",
  1836. text: "Very furry. Sheds on everything."
  1837. },
  1838. tags: [
  1839. "anthro",
  1840. "goo"
  1841. ]
  1842. },
  1843. {
  1844. front: {
  1845. height: math.unit(2.2428, "meter"),
  1846. weight: math.unit(124.738, "kg"),
  1847. name: "Front",
  1848. image: {
  1849. source: "./media/characters/fen/front.svg",
  1850. extra: 1804/1562,
  1851. bottom: 205/2009
  1852. }
  1853. },
  1854. diving: {
  1855. height: math.unit(3.3, "meters"),
  1856. weight: math.unit(124.738, "kg"),
  1857. name: "Diving",
  1858. image: {
  1859. source: "./media/characters/fen/diving.svg"
  1860. }
  1861. },
  1862. maw: {
  1863. height: math.unit(2.83, "feet"),
  1864. name: "Maw",
  1865. image: {
  1866. source: "./media/characters/fen/maw.svg"
  1867. }
  1868. },
  1869. back: {
  1870. height: math.unit(2.2428, "meter"),
  1871. weight: math.unit(124.738, "kg"),
  1872. name: "Back",
  1873. image: {
  1874. source: "./media/characters/fen/back.svg",
  1875. },
  1876. info: {
  1877. description: {
  1878. mode: "append",
  1879. text: "\n\nHe is not currently looking at you."
  1880. }
  1881. }
  1882. },
  1883. full: {
  1884. height: math.unit(0.91, "meter"),
  1885. weight: math.unit(225, "kg"),
  1886. name: "Full",
  1887. image: {
  1888. source: "./media/characters/fen/full.svg",
  1889. extra: 1133/859,
  1890. bottom: 145/1278
  1891. },
  1892. info: {
  1893. description: {
  1894. mode: "append",
  1895. text: "\n\nMunch."
  1896. }
  1897. }
  1898. },
  1899. kneeling: {
  1900. height: math.unit(5.4, "feet"),
  1901. weight: math.unit(124.738, "kg"),
  1902. name: "Kneeling",
  1903. image: {
  1904. source: "./media/characters/fen/kneeling.svg",
  1905. extra: 563 / 507
  1906. }
  1907. },
  1908. goo: {
  1909. height: math.unit(2.8, "feet"),
  1910. weight: math.unit(125, "kg"),
  1911. capacity: math.unit(1, "people"),
  1912. name: "Goo",
  1913. image: {
  1914. source: "./media/characters/fen/goo.svg",
  1915. bottom: 116 / 613
  1916. }
  1917. },
  1918. lounging: {
  1919. height: math.unit(6.5, "feet"),
  1920. weight: math.unit(125, "kg"),
  1921. name: "Lounging",
  1922. image: {
  1923. source: "./media/characters/fen/lounging.svg"
  1924. }
  1925. },
  1926. },
  1927. [
  1928. {
  1929. name: "Small",
  1930. height: math.unit(2.2428, "meter")
  1931. },
  1932. {
  1933. name: "Normal",
  1934. height: math.unit(12, "feet"),
  1935. default: true,
  1936. },
  1937. {
  1938. name: "Big",
  1939. height: math.unit(20, "feet")
  1940. },
  1941. {
  1942. name: "Minimacro",
  1943. height: math.unit(40, "feet"),
  1944. info: {
  1945. description: {
  1946. mode: "append",
  1947. text: "\n\nTOO DAMN BIG"
  1948. }
  1949. }
  1950. },
  1951. {
  1952. name: "Macro",
  1953. height: math.unit(100, "feet"),
  1954. info: {
  1955. description: {
  1956. mode: "append",
  1957. text: "\n\nTOO DAMN BIG"
  1958. }
  1959. }
  1960. },
  1961. {
  1962. name: "Megamacro",
  1963. height: math.unit(2, "miles")
  1964. },
  1965. {
  1966. name: "Gigamacro",
  1967. height: math.unit(10, "earths")
  1968. },
  1969. ]
  1970. ))
  1971. characterMakers.push(() => makeCharacter(
  1972. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1973. {
  1974. front: {
  1975. height: math.unit(183, "cm"),
  1976. weight: math.unit(80, "kg"),
  1977. name: "Front",
  1978. image: {
  1979. source: "./media/characters/sofia-fluttertail/front.svg",
  1980. bottom: 0.01,
  1981. extra: 2154 / 2081
  1982. }
  1983. },
  1984. frontAlt: {
  1985. height: math.unit(183, "cm"),
  1986. weight: math.unit(80, "kg"),
  1987. name: "Front (alt)",
  1988. image: {
  1989. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1990. }
  1991. },
  1992. back: {
  1993. height: math.unit(183, "cm"),
  1994. weight: math.unit(80, "kg"),
  1995. name: "Back",
  1996. image: {
  1997. source: "./media/characters/sofia-fluttertail/back.svg"
  1998. }
  1999. },
  2000. kneeling: {
  2001. height: math.unit(125, "cm"),
  2002. weight: math.unit(80, "kg"),
  2003. name: "Kneeling",
  2004. image: {
  2005. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2006. extra: 1033 / 977,
  2007. bottom: 23.7 / 1057
  2008. }
  2009. },
  2010. maw: {
  2011. height: math.unit(183 / 5, "cm"),
  2012. name: "Maw",
  2013. image: {
  2014. source: "./media/characters/sofia-fluttertail/maw.svg"
  2015. }
  2016. },
  2017. mawcloseup: {
  2018. height: math.unit(183 / 5 * 0.41, "cm"),
  2019. name: "Maw (Closeup)",
  2020. image: {
  2021. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2022. }
  2023. },
  2024. paws: {
  2025. height: math.unit(1.17, "feet"),
  2026. name: "Paws",
  2027. image: {
  2028. source: "./media/characters/sofia-fluttertail/paws.svg",
  2029. extra: 851 / 851,
  2030. bottom: 17 / 868
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(1.83, "meter")
  2038. },
  2039. {
  2040. name: "Size Thief",
  2041. height: math.unit(18, "feet")
  2042. },
  2043. {
  2044. name: "50 Foot Collie",
  2045. height: math.unit(50, "feet")
  2046. },
  2047. {
  2048. name: "Macro",
  2049. height: math.unit(96, "feet"),
  2050. default: true
  2051. },
  2052. {
  2053. name: "Megamerger",
  2054. height: math.unit(650, "feet")
  2055. },
  2056. ]
  2057. ))
  2058. characterMakers.push(() => makeCharacter(
  2059. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2060. {
  2061. front: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(100, "kg"),
  2064. name: "Front",
  2065. image: {
  2066. source: "./media/characters/march/front.svg",
  2067. extra: 1992/1851,
  2068. bottom: 39/2031
  2069. }
  2070. },
  2071. foot: {
  2072. height: math.unit(0.9, "feet"),
  2073. name: "Foot",
  2074. image: {
  2075. source: "./media/characters/march/foot.svg"
  2076. }
  2077. },
  2078. },
  2079. [
  2080. {
  2081. name: "Normal",
  2082. height: math.unit(7.9, "feet")
  2083. },
  2084. {
  2085. name: "Macro",
  2086. height: math.unit(220, "meters")
  2087. },
  2088. {
  2089. name: "Megamacro",
  2090. height: math.unit(2.98, "km"),
  2091. default: true
  2092. },
  2093. {
  2094. name: "Gigamacro",
  2095. height: math.unit(15963, "km")
  2096. },
  2097. {
  2098. name: "Teramacro",
  2099. height: math.unit(2980000000, "km")
  2100. },
  2101. {
  2102. name: "Examacro",
  2103. height: math.unit(250, "parsecs")
  2104. },
  2105. ]
  2106. ))
  2107. characterMakers.push(() => makeCharacter(
  2108. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2109. {
  2110. front: {
  2111. height: math.unit(6, "feet"),
  2112. weight: math.unit(60, "kg"),
  2113. name: "Front",
  2114. image: {
  2115. source: "./media/characters/noir/front.svg",
  2116. extra: 1,
  2117. bottom: 0.032
  2118. }
  2119. },
  2120. },
  2121. [
  2122. {
  2123. name: "Normal",
  2124. height: math.unit(6.6, "feet")
  2125. },
  2126. {
  2127. name: "Macro",
  2128. height: math.unit(500, "feet")
  2129. },
  2130. {
  2131. name: "Megamacro",
  2132. height: math.unit(2.5, "km"),
  2133. default: true
  2134. },
  2135. {
  2136. name: "Gigamacro",
  2137. height: math.unit(22500, "km")
  2138. },
  2139. {
  2140. name: "Teramacro",
  2141. height: math.unit(2500000000, "km")
  2142. },
  2143. {
  2144. name: "Examacro",
  2145. height: math.unit(200, "parsecs")
  2146. },
  2147. ]
  2148. ))
  2149. characterMakers.push(() => makeCharacter(
  2150. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2151. {
  2152. front: {
  2153. height: math.unit(7, "feet"),
  2154. weight: math.unit(100, "kg"),
  2155. name: "Front",
  2156. image: {
  2157. source: "./media/characters/okuri/front.svg",
  2158. extra: 1,
  2159. bottom: 0.037
  2160. }
  2161. },
  2162. back: {
  2163. height: math.unit(7, "feet"),
  2164. weight: math.unit(100, "kg"),
  2165. name: "Back",
  2166. image: {
  2167. source: "./media/characters/okuri/back.svg",
  2168. extra: 1,
  2169. bottom: 0.007
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Megamacro",
  2176. height: math.unit(100, "miles"),
  2177. default: true
  2178. },
  2179. ]
  2180. ))
  2181. characterMakers.push(() => makeCharacter(
  2182. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2183. {
  2184. front: {
  2185. height: math.unit(7, "feet"),
  2186. weight: math.unit(100, "kg"),
  2187. name: "Front",
  2188. image: {
  2189. source: "./media/characters/manny/front.svg",
  2190. extra: 1,
  2191. bottom: 0.06
  2192. }
  2193. },
  2194. back: {
  2195. height: math.unit(7, "feet"),
  2196. weight: math.unit(100, "kg"),
  2197. name: "Back",
  2198. image: {
  2199. source: "./media/characters/manny/back.svg",
  2200. extra: 1,
  2201. bottom: 0.014
  2202. }
  2203. },
  2204. },
  2205. [
  2206. {
  2207. name: "Normal",
  2208. height: math.unit(7, "feet"),
  2209. },
  2210. {
  2211. name: "Macro",
  2212. height: math.unit(78, "feet"),
  2213. default: true
  2214. },
  2215. {
  2216. name: "Macro+",
  2217. height: math.unit(300, "meters")
  2218. },
  2219. {
  2220. name: "Macro++",
  2221. height: math.unit(2400, "meters")
  2222. },
  2223. {
  2224. name: "Megamacro",
  2225. height: math.unit(5167, "meters")
  2226. },
  2227. {
  2228. name: "Gigamacro",
  2229. height: math.unit(41769, "miles")
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/adake/front-1.svg"
  2242. }
  2243. },
  2244. frontAlt: {
  2245. height: math.unit(7, "feet"),
  2246. weight: math.unit(100, "kg"),
  2247. name: "Front (Alt)",
  2248. image: {
  2249. source: "./media/characters/adake/front-2.svg",
  2250. extra: 1,
  2251. bottom: 0.01
  2252. }
  2253. },
  2254. back: {
  2255. height: math.unit(7, "feet"),
  2256. weight: math.unit(100, "kg"),
  2257. name: "Back",
  2258. image: {
  2259. source: "./media/characters/adake/back.svg",
  2260. }
  2261. },
  2262. kneel: {
  2263. height: math.unit(5.385, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Kneeling",
  2266. image: {
  2267. source: "./media/characters/adake/kneel.svg",
  2268. bottom: 0.052
  2269. }
  2270. },
  2271. },
  2272. [
  2273. {
  2274. name: "Normal",
  2275. height: math.unit(7, "feet"),
  2276. },
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(78, "feet"),
  2280. default: true
  2281. },
  2282. {
  2283. name: "Macro+",
  2284. height: math.unit(300, "meters")
  2285. },
  2286. {
  2287. name: "Macro++",
  2288. height: math.unit(2400, "meters")
  2289. },
  2290. {
  2291. name: "Megamacro",
  2292. height: math.unit(5167, "meters")
  2293. },
  2294. {
  2295. name: "Gigamacro",
  2296. height: math.unit(41769, "miles")
  2297. },
  2298. ]
  2299. ))
  2300. characterMakers.push(() => makeCharacter(
  2301. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2302. {
  2303. front: {
  2304. height: math.unit(1.65, "meters"),
  2305. weight: math.unit(50, "kg"),
  2306. name: "Front",
  2307. image: {
  2308. source: "./media/characters/elijah/front.svg",
  2309. extra: 858 / 830,
  2310. bottom: 95.5 / 953.8559
  2311. }
  2312. },
  2313. back: {
  2314. height: math.unit(1.65, "meters"),
  2315. weight: math.unit(50, "kg"),
  2316. name: "Back",
  2317. image: {
  2318. source: "./media/characters/elijah/back.svg",
  2319. extra: 895 / 850,
  2320. bottom: 5.3 / 897.956
  2321. }
  2322. },
  2323. frontNsfw: {
  2324. height: math.unit(1.65, "meters"),
  2325. weight: math.unit(50, "kg"),
  2326. name: "Front (NSFW)",
  2327. image: {
  2328. source: "./media/characters/elijah/front-nsfw.svg",
  2329. extra: 858 / 830,
  2330. bottom: 95.5 / 953.8559
  2331. }
  2332. },
  2333. backNsfw: {
  2334. height: math.unit(1.65, "meters"),
  2335. weight: math.unit(50, "kg"),
  2336. name: "Back (NSFW)",
  2337. image: {
  2338. source: "./media/characters/elijah/back-nsfw.svg",
  2339. extra: 895 / 850,
  2340. bottom: 5.3 / 897.956
  2341. }
  2342. },
  2343. dick: {
  2344. height: math.unit(1, "feet"),
  2345. name: "Dick",
  2346. image: {
  2347. source: "./media/characters/elijah/dick.svg"
  2348. }
  2349. },
  2350. beakOpen: {
  2351. height: math.unit(1.25, "feet"),
  2352. name: "Beak (Open)",
  2353. image: {
  2354. source: "./media/characters/elijah/beak-open.svg"
  2355. }
  2356. },
  2357. beakShut: {
  2358. height: math.unit(1.25, "feet"),
  2359. name: "Beak (Shut)",
  2360. image: {
  2361. source: "./media/characters/elijah/beak-shut.svg"
  2362. }
  2363. },
  2364. footFlexing: {
  2365. height: math.unit(1.61, "feet"),
  2366. name: "Foot (Flexing)",
  2367. image: {
  2368. source: "./media/characters/elijah/foot-flexing.svg"
  2369. }
  2370. },
  2371. footStepping: {
  2372. height: math.unit(1.44, "feet"),
  2373. name: "Foot (Stepping)",
  2374. image: {
  2375. source: "./media/characters/elijah/foot-stepping.svg"
  2376. }
  2377. },
  2378. plantigradeLeg: {
  2379. height: math.unit(2.34, "feet"),
  2380. name: "Plantigrade Leg",
  2381. image: {
  2382. source: "./media/characters/elijah/plantigrade-leg.svg"
  2383. }
  2384. },
  2385. plantigradeFootLeft: {
  2386. height: math.unit(0.9, "feet"),
  2387. name: "Plantigrade Foot (Left)",
  2388. image: {
  2389. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2390. }
  2391. },
  2392. plantigradeFootRight: {
  2393. height: math.unit(0.9, "feet"),
  2394. name: "Plantigrade Foot (Right)",
  2395. image: {
  2396. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2397. }
  2398. },
  2399. },
  2400. [
  2401. {
  2402. name: "Normal",
  2403. height: math.unit(1.65, "meters")
  2404. },
  2405. {
  2406. name: "Macro",
  2407. height: math.unit(55, "meters"),
  2408. default: true
  2409. },
  2410. {
  2411. name: "Macro+",
  2412. height: math.unit(105, "meters")
  2413. },
  2414. ]
  2415. ))
  2416. characterMakers.push(() => makeCharacter(
  2417. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2418. {
  2419. front: {
  2420. height: math.unit(7 + 2/12, "feet"),
  2421. weight: math.unit(320, "kg"),
  2422. name: "Front",
  2423. image: {
  2424. source: "./media/characters/rai/front.svg",
  2425. extra: 1802/1696,
  2426. bottom: 68/1870
  2427. }
  2428. },
  2429. frontDressed: {
  2430. height: math.unit(7 + 2/12, "feet"),
  2431. weight: math.unit(320, "kg"),
  2432. name: "Front (Dressed)",
  2433. image: {
  2434. source: "./media/characters/rai/front-dressed.svg",
  2435. extra: 1802/1696,
  2436. bottom: 68/1870
  2437. }
  2438. },
  2439. side: {
  2440. height: math.unit(7 + 2/12, "feet"),
  2441. weight: math.unit(320, "kg"),
  2442. name: "Side",
  2443. image: {
  2444. source: "./media/characters/rai/side.svg",
  2445. extra: 1789/1710,
  2446. bottom: 115/1904
  2447. }
  2448. },
  2449. back: {
  2450. height: math.unit(7 + 2/12, "feet"),
  2451. weight: math.unit(320, "kg"),
  2452. name: "Back",
  2453. image: {
  2454. source: "./media/characters/rai/back.svg",
  2455. extra: 1770/1707,
  2456. bottom: 28/1798
  2457. }
  2458. },
  2459. feral: {
  2460. height: math.unit(9.5, "feet"),
  2461. weight: math.unit(640, "kg"),
  2462. name: "Feral",
  2463. image: {
  2464. source: "./media/characters/rai/feral.svg",
  2465. extra: 945/553,
  2466. bottom: 176/1121
  2467. }
  2468. },
  2469. dragon: {
  2470. height: math.unit(23, "feet"),
  2471. weight: math.unit(50000, "lb"),
  2472. name: "Dragon",
  2473. image: {
  2474. source: "./media/characters/rai/dragon.svg",
  2475. extra: 2498 / 2030,
  2476. bottom: 85.2 / 2584
  2477. }
  2478. },
  2479. maw: {
  2480. height: math.unit(1.69, "feet"),
  2481. name: "Maw",
  2482. image: {
  2483. source: "./media/characters/rai/maw.svg"
  2484. }
  2485. },
  2486. },
  2487. [
  2488. {
  2489. name: "Normal",
  2490. height: math.unit(7 + 2/12, "feet")
  2491. },
  2492. {
  2493. name: "Big",
  2494. height: math.unit(11, "feet")
  2495. },
  2496. {
  2497. name: "Macro",
  2498. height: math.unit(302, "feet"),
  2499. default: true
  2500. },
  2501. ]
  2502. ))
  2503. characterMakers.push(() => makeCharacter(
  2504. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2505. {
  2506. frontDressed: {
  2507. height: math.unit(216, "feet"),
  2508. weight: math.unit(7000000, "lb"),
  2509. name: "Front (Dressed)",
  2510. image: {
  2511. source: "./media/characters/jazzy/front-dressed.svg",
  2512. extra: 2738 / 2651,
  2513. bottom: 41.8 / 2786
  2514. }
  2515. },
  2516. backDressed: {
  2517. height: math.unit(216, "feet"),
  2518. weight: math.unit(7000000, "lb"),
  2519. name: "Back (Dressed)",
  2520. image: {
  2521. source: "./media/characters/jazzy/back-dressed.svg",
  2522. extra: 2775 / 2673,
  2523. bottom: 36.8 / 2817
  2524. }
  2525. },
  2526. front: {
  2527. height: math.unit(216, "feet"),
  2528. weight: math.unit(7000000, "lb"),
  2529. name: "Front",
  2530. image: {
  2531. source: "./media/characters/jazzy/front.svg",
  2532. extra: 2738 / 2651,
  2533. bottom: 41.8 / 2786
  2534. }
  2535. },
  2536. back: {
  2537. height: math.unit(216, "feet"),
  2538. weight: math.unit(7000000, "lb"),
  2539. name: "Back",
  2540. image: {
  2541. source: "./media/characters/jazzy/back.svg",
  2542. extra: 2775 / 2673,
  2543. bottom: 36.8 / 2817
  2544. }
  2545. },
  2546. maw: {
  2547. height: math.unit(20, "feet"),
  2548. name: "Maw",
  2549. image: {
  2550. source: "./media/characters/jazzy/maw.svg"
  2551. }
  2552. },
  2553. paws: {
  2554. height: math.unit(27.5, "feet"),
  2555. name: "Paws",
  2556. image: {
  2557. source: "./media/characters/jazzy/paws.svg"
  2558. }
  2559. },
  2560. eye: {
  2561. height: math.unit(4.4, "feet"),
  2562. name: "Eye",
  2563. image: {
  2564. source: "./media/characters/jazzy/eye.svg"
  2565. }
  2566. },
  2567. droneOffense: {
  2568. height: math.unit(9.5, "inches"),
  2569. name: "Drone (Offense)",
  2570. image: {
  2571. source: "./media/characters/jazzy/drone-offense.svg"
  2572. }
  2573. },
  2574. droneRecon: {
  2575. height: math.unit(9.5, "inches"),
  2576. name: "Drone (Recon)",
  2577. image: {
  2578. source: "./media/characters/jazzy/drone-recon.svg"
  2579. }
  2580. },
  2581. droneDefense: {
  2582. height: math.unit(9.5, "inches"),
  2583. name: "Drone (Defense)",
  2584. image: {
  2585. source: "./media/characters/jazzy/drone-defense.svg"
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Macro",
  2592. height: math.unit(216, "feet"),
  2593. default: true
  2594. },
  2595. ]
  2596. ))
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2599. {
  2600. front: {
  2601. height: math.unit(9 + 6/12, "feet"),
  2602. weight: math.unit(700, "lb"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/flamm/front.svg",
  2606. extra: 1751/1632,
  2607. bottom: 46/1797
  2608. }
  2609. },
  2610. buff: {
  2611. height: math.unit(9 + 6/12, "feet"),
  2612. weight: math.unit(950, "lb"),
  2613. name: "Buff",
  2614. image: {
  2615. source: "./media/characters/flamm/buff.svg",
  2616. extra: 3018/2874,
  2617. bottom: 221/3239
  2618. }
  2619. },
  2620. },
  2621. [
  2622. {
  2623. name: "Normal",
  2624. height: math.unit(9.5, "feet")
  2625. },
  2626. {
  2627. name: "Macro",
  2628. height: math.unit(200, "feet"),
  2629. default: true
  2630. },
  2631. ]
  2632. ))
  2633. characterMakers.push(() => makeCharacter(
  2634. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2635. {
  2636. front: {
  2637. height: math.unit(5 + 3/12, "feet"),
  2638. weight: math.unit(60, "kg"),
  2639. name: "Front",
  2640. image: {
  2641. source: "./media/characters/zephiro/front.svg",
  2642. extra: 2309 / 2162,
  2643. bottom: 0.069
  2644. }
  2645. },
  2646. side: {
  2647. height: math.unit(5 + 3/12, "feet"),
  2648. weight: math.unit(60, "kg"),
  2649. name: "Side",
  2650. image: {
  2651. source: "./media/characters/zephiro/side.svg",
  2652. extra: 2403 / 2279,
  2653. bottom: 0.015
  2654. }
  2655. },
  2656. back: {
  2657. height: math.unit(5 + 3/12, "feet"),
  2658. weight: math.unit(60, "kg"),
  2659. name: "Back",
  2660. image: {
  2661. source: "./media/characters/zephiro/back.svg",
  2662. extra: 2373 / 2244,
  2663. bottom: 0.013
  2664. }
  2665. },
  2666. hand: {
  2667. height: math.unit(0.68, "feet"),
  2668. name: "Hand",
  2669. image: {
  2670. source: "./media/characters/zephiro/hand.svg"
  2671. }
  2672. },
  2673. paw: {
  2674. height: math.unit(1, "feet"),
  2675. name: "Paw",
  2676. image: {
  2677. source: "./media/characters/zephiro/paw.svg"
  2678. }
  2679. },
  2680. beans: {
  2681. height: math.unit(0.93, "feet"),
  2682. name: "Beans",
  2683. image: {
  2684. source: "./media/characters/zephiro/beans.svg"
  2685. }
  2686. },
  2687. },
  2688. [
  2689. {
  2690. name: "Micro",
  2691. height: math.unit(3, "inches")
  2692. },
  2693. {
  2694. name: "Normal",
  2695. height: math.unit(5 + 3 / 12, "feet"),
  2696. default: true
  2697. },
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(118, "feet")
  2701. },
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2706. {
  2707. front: {
  2708. height: math.unit(5, "feet"),
  2709. weight: math.unit(90, "kg"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/fory/front.svg",
  2713. extra: 2862 / 2674,
  2714. bottom: 180 / 3043.8
  2715. }
  2716. },
  2717. back: {
  2718. height: math.unit(5, "feet"),
  2719. weight: math.unit(90, "kg"),
  2720. name: "Back",
  2721. image: {
  2722. source: "./media/characters/fory/back.svg",
  2723. extra: 2962 / 2791,
  2724. bottom: 106 / 3071.8
  2725. }
  2726. },
  2727. foot: {
  2728. height: math.unit(2.14, "feet"),
  2729. name: "Foot",
  2730. image: {
  2731. source: "./media/characters/fory/foot.svg"
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Normal",
  2738. height: math.unit(5, "feet")
  2739. },
  2740. {
  2741. name: "Macro",
  2742. height: math.unit(50, "feet"),
  2743. default: true
  2744. },
  2745. {
  2746. name: "Megamacro",
  2747. height: math.unit(10, "miles")
  2748. },
  2749. {
  2750. name: "Gigamacro",
  2751. height: math.unit(5, "earths")
  2752. },
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2757. {
  2758. front: {
  2759. height: math.unit(7, "feet"),
  2760. weight: math.unit(90, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/kurrikage/front.svg",
  2764. extra: 1845/1733,
  2765. bottom: 119/1964
  2766. }
  2767. },
  2768. back: {
  2769. height: math.unit(7, "feet"),
  2770. weight: math.unit(90, "kg"),
  2771. name: "Back",
  2772. image: {
  2773. source: "./media/characters/kurrikage/back.svg",
  2774. extra: 1790/1677,
  2775. bottom: 61/1851
  2776. }
  2777. },
  2778. dressed: {
  2779. height: math.unit(7, "feet"),
  2780. weight: math.unit(90, "kg"),
  2781. name: "Dressed",
  2782. image: {
  2783. source: "./media/characters/kurrikage/dressed.svg",
  2784. extra: 1845/1733,
  2785. bottom: 119/1964
  2786. }
  2787. },
  2788. foot: {
  2789. height: math.unit(1.5, "feet"),
  2790. name: "Foot",
  2791. image: {
  2792. source: "./media/characters/kurrikage/foot.svg"
  2793. }
  2794. },
  2795. staff: {
  2796. height: math.unit(6.7, "feet"),
  2797. name: "Staff",
  2798. image: {
  2799. source: "./media/characters/kurrikage/staff.svg"
  2800. }
  2801. },
  2802. peek: {
  2803. height: math.unit(1.05, "feet"),
  2804. name: "Peeking",
  2805. image: {
  2806. source: "./media/characters/kurrikage/peek.svg",
  2807. bottom: 0.08
  2808. }
  2809. },
  2810. },
  2811. [
  2812. {
  2813. name: "Normal",
  2814. height: math.unit(12, "feet"),
  2815. default: true
  2816. },
  2817. {
  2818. name: "Big",
  2819. height: math.unit(20, "feet")
  2820. },
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(500, "feet")
  2824. },
  2825. {
  2826. name: "Megamacro",
  2827. height: math.unit(20, "miles")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(6, "feet"),
  2836. weight: math.unit(75, "kg"),
  2837. name: "Front",
  2838. image: {
  2839. source: "./media/characters/shingo/front.svg",
  2840. extra: 1900/1825,
  2841. bottom: 82/1982
  2842. }
  2843. },
  2844. side: {
  2845. height: math.unit(6, "feet"),
  2846. weight: math.unit(75, "kg"),
  2847. name: "Side",
  2848. image: {
  2849. source: "./media/characters/shingo/side.svg",
  2850. extra: 1930/1865,
  2851. bottom: 16/1946
  2852. }
  2853. },
  2854. back: {
  2855. height: math.unit(6, "feet"),
  2856. weight: math.unit(75, "kg"),
  2857. name: "Back",
  2858. image: {
  2859. source: "./media/characters/shingo/back.svg",
  2860. extra: 1922/1852,
  2861. bottom: 16/1938
  2862. }
  2863. },
  2864. frontDressed: {
  2865. height: math.unit(6, "feet"),
  2866. weight: math.unit(150, "lb"),
  2867. name: "Front-dressed",
  2868. image: {
  2869. source: "./media/characters/shingo/front-dressed.svg",
  2870. extra: 1900/1825,
  2871. bottom: 82/1982
  2872. }
  2873. },
  2874. paw: {
  2875. height: math.unit(1.29, "feet"),
  2876. name: "Paw",
  2877. image: {
  2878. source: "./media/characters/shingo/paw.svg"
  2879. }
  2880. },
  2881. hand: {
  2882. height: math.unit(1.07, "feet"),
  2883. name: "Hand",
  2884. image: {
  2885. source: "./media/characters/shingo/hand.svg"
  2886. }
  2887. },
  2888. frontAlt: {
  2889. height: math.unit(6, "feet"),
  2890. weight: math.unit(75, "kg"),
  2891. name: "Front (Alt)",
  2892. image: {
  2893. source: "./media/characters/shingo/front-alt.svg",
  2894. extra: 3511 / 3338,
  2895. bottom: 0.005
  2896. }
  2897. },
  2898. frontAlt2: {
  2899. height: math.unit(6, "feet"),
  2900. weight: math.unit(75, "kg"),
  2901. name: "Front (Alt 2)",
  2902. image: {
  2903. source: "./media/characters/shingo/front-alt-2.svg",
  2904. extra: 706/681,
  2905. bottom: 11/717
  2906. }
  2907. },
  2908. pawAlt: {
  2909. height: math.unit(1, "feet"),
  2910. name: "Paw (Alt)",
  2911. image: {
  2912. source: "./media/characters/shingo/paw-alt.svg"
  2913. }
  2914. },
  2915. },
  2916. [
  2917. {
  2918. name: "Micro",
  2919. height: math.unit(4, "inches")
  2920. },
  2921. {
  2922. name: "Normal",
  2923. height: math.unit(6, "feet"),
  2924. default: true
  2925. },
  2926. {
  2927. name: "Macro",
  2928. height: math.unit(108, "feet")
  2929. },
  2930. {
  2931. name: "Macro+",
  2932. height: math.unit(1500, "feet")
  2933. },
  2934. ]
  2935. ))
  2936. characterMakers.push(() => makeCharacter(
  2937. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2938. {
  2939. side: {
  2940. height: math.unit(6, "feet"),
  2941. weight: math.unit(75, "kg"),
  2942. name: "Side",
  2943. image: {
  2944. source: "./media/characters/aigey/side.svg"
  2945. }
  2946. },
  2947. },
  2948. [
  2949. {
  2950. name: "Macro",
  2951. height: math.unit(200, "feet"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Megamacro",
  2956. height: math.unit(100, "miles")
  2957. },
  2958. ]
  2959. )
  2960. )
  2961. characterMakers.push(() => makeCharacter(
  2962. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2963. {
  2964. front: {
  2965. height: math.unit(5 + 5 / 12, "feet"),
  2966. weight: math.unit(75, "kg"),
  2967. name: "Front",
  2968. image: {
  2969. source: "./media/characters/natasha/front.svg",
  2970. extra: 859 / 824,
  2971. bottom: 23 / 879.6
  2972. }
  2973. },
  2974. frontNsfw: {
  2975. height: math.unit(5 + 5 / 12, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Front (NSFW)",
  2978. image: {
  2979. source: "./media/characters/natasha/front-nsfw.svg",
  2980. extra: 859 / 824,
  2981. bottom: 23 / 879.6
  2982. }
  2983. },
  2984. frontErect: {
  2985. height: math.unit(5 + 5 / 12, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Front (Erect)",
  2988. image: {
  2989. source: "./media/characters/natasha/front-erect.svg",
  2990. extra: 859 / 824,
  2991. bottom: 23 / 879.6
  2992. }
  2993. },
  2994. back: {
  2995. height: math.unit(5 + 5 / 12, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/natasha/back.svg",
  3000. extra: 887.9 / 852.6,
  3001. bottom: 9.7 / 896.4
  3002. }
  3003. },
  3004. backAlt: {
  3005. height: math.unit(5 + 5 / 12, "feet"),
  3006. weight: math.unit(75, "kg"),
  3007. name: "Back (Alt)",
  3008. image: {
  3009. source: "./media/characters/natasha/back-alt.svg",
  3010. extra: 1236.7 / 1192,
  3011. bottom: 22.3 / 1258.2
  3012. }
  3013. },
  3014. dick: {
  3015. height: math.unit(1.772, "feet"),
  3016. name: "Dick",
  3017. image: {
  3018. source: "./media/characters/natasha/dick.svg"
  3019. }
  3020. },
  3021. paw: {
  3022. height: math.unit(0.250, "meters"),
  3023. name: "Paw",
  3024. image: {
  3025. source: "./media/characters/natasha/paw.svg"
  3026. }
  3027. },
  3028. },
  3029. [
  3030. {
  3031. name: "Normal",
  3032. height: math.unit(5 + 5 / 12, "feet")
  3033. },
  3034. {
  3035. name: "Large",
  3036. height: math.unit(12, "feet")
  3037. },
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(100, "feet"),
  3041. default: true
  3042. },
  3043. {
  3044. name: "Macro+",
  3045. height: math.unit(260, "feet")
  3046. },
  3047. {
  3048. name: "Macro++",
  3049. height: math.unit(1, "mile")
  3050. },
  3051. ]
  3052. ))
  3053. characterMakers.push(() => makeCharacter(
  3054. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3055. {
  3056. front: {
  3057. height: math.unit(6, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Front",
  3060. image: {
  3061. source: "./media/characters/malik/front.svg"
  3062. }
  3063. },
  3064. side: {
  3065. height: math.unit(6, "feet"),
  3066. weight: math.unit(75, "kg"),
  3067. name: "Side",
  3068. image: {
  3069. source: "./media/characters/malik/side.svg",
  3070. extra: 1.1539
  3071. }
  3072. },
  3073. back: {
  3074. height: math.unit(6, "feet"),
  3075. weight: math.unit(75, "kg"),
  3076. name: "Back",
  3077. image: {
  3078. source: "./media/characters/malik/back.svg"
  3079. }
  3080. },
  3081. },
  3082. [
  3083. {
  3084. name: "Macro",
  3085. height: math.unit(156, "feet"),
  3086. default: true
  3087. },
  3088. {
  3089. name: "Macro+",
  3090. height: math.unit(1188, "feet")
  3091. },
  3092. ]
  3093. ))
  3094. characterMakers.push(() => makeCharacter(
  3095. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3096. {
  3097. front: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/sefer/front.svg",
  3103. extra: 848 / 659,
  3104. bottom: 28.3 / 876.442
  3105. }
  3106. },
  3107. back: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(75, "kg"),
  3110. name: "Back",
  3111. image: {
  3112. source: "./media/characters/sefer/back.svg",
  3113. extra: 864 / 695,
  3114. bottom: 10 / 871
  3115. }
  3116. },
  3117. frontDressed: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Front (Dressed)",
  3121. image: {
  3122. source: "./media/characters/sefer/front-dressed.svg",
  3123. extra: 839 / 653,
  3124. bottom: 37.6 / 878
  3125. }
  3126. },
  3127. },
  3128. [
  3129. {
  3130. name: "Normal",
  3131. height: math.unit(6, "feet"),
  3132. default: true
  3133. },
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3138. {
  3139. body: {
  3140. height: math.unit(2.2428, "meter"),
  3141. weight: math.unit(124.738, "kg"),
  3142. name: "Body",
  3143. image: {
  3144. extra: 1225 / 1050,
  3145. source: "./media/characters/north/front.svg"
  3146. }
  3147. }
  3148. },
  3149. [
  3150. {
  3151. name: "Micro",
  3152. height: math.unit(4, "inches")
  3153. },
  3154. {
  3155. name: "Macro",
  3156. height: math.unit(63, "meters")
  3157. },
  3158. {
  3159. name: "Megamacro",
  3160. height: math.unit(101, "miles"),
  3161. default: true
  3162. }
  3163. ]
  3164. ))
  3165. characterMakers.push(() => makeCharacter(
  3166. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3167. {
  3168. angled: {
  3169. height: math.unit(4, "meter"),
  3170. weight: math.unit(150, "kg"),
  3171. name: "Angled",
  3172. image: {
  3173. source: "./media/characters/talan/angled-sfw.svg",
  3174. bottom: 29 / 3734
  3175. }
  3176. },
  3177. angledNsfw: {
  3178. height: math.unit(4, "meter"),
  3179. weight: math.unit(150, "kg"),
  3180. name: "Angled (NSFW)",
  3181. image: {
  3182. source: "./media/characters/talan/angled-nsfw.svg",
  3183. bottom: 29 / 3734
  3184. }
  3185. },
  3186. frontNsfw: {
  3187. height: math.unit(4, "meter"),
  3188. weight: math.unit(150, "kg"),
  3189. name: "Front (NSFW)",
  3190. image: {
  3191. source: "./media/characters/talan/front-nsfw.svg",
  3192. bottom: 29 / 3734
  3193. }
  3194. },
  3195. sideNsfw: {
  3196. height: math.unit(4, "meter"),
  3197. weight: math.unit(150, "kg"),
  3198. name: "Side (NSFW)",
  3199. image: {
  3200. source: "./media/characters/talan/side-nsfw.svg",
  3201. bottom: 29 / 3734
  3202. }
  3203. },
  3204. back: {
  3205. height: math.unit(4, "meter"),
  3206. weight: math.unit(150, "kg"),
  3207. name: "Back",
  3208. image: {
  3209. source: "./media/characters/talan/back.svg"
  3210. }
  3211. },
  3212. dickBottom: {
  3213. height: math.unit(0.621, "meter"),
  3214. name: "Dick (Bottom)",
  3215. image: {
  3216. source: "./media/characters/talan/dick-bottom.svg"
  3217. }
  3218. },
  3219. dickTop: {
  3220. height: math.unit(0.621, "meter"),
  3221. name: "Dick (Top)",
  3222. image: {
  3223. source: "./media/characters/talan/dick-top.svg"
  3224. }
  3225. },
  3226. dickSide: {
  3227. height: math.unit(0.305, "meter"),
  3228. name: "Dick (Side)",
  3229. image: {
  3230. source: "./media/characters/talan/dick-side.svg"
  3231. }
  3232. },
  3233. dickFront: {
  3234. height: math.unit(0.305, "meter"),
  3235. name: "Dick (Front)",
  3236. image: {
  3237. source: "./media/characters/talan/dick-front.svg"
  3238. }
  3239. },
  3240. },
  3241. [
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(4, "meters")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(100, "meters")
  3249. },
  3250. {
  3251. name: "Megamacro",
  3252. height: math.unit(2, "miles"),
  3253. default: true
  3254. },
  3255. {
  3256. name: "Gigamacro",
  3257. height: math.unit(5000, "miles")
  3258. },
  3259. {
  3260. name: "Teramacro",
  3261. height: math.unit(100, "parsecs")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(90, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/gael'rathus/front.svg"
  3274. }
  3275. },
  3276. frontAlt: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(90, "kg"),
  3279. name: "Front (alt)",
  3280. image: {
  3281. source: "./media/characters/gael'rathus/front-alt.svg"
  3282. }
  3283. },
  3284. frontAlt2: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(90, "kg"),
  3287. name: "Front (alt 2)",
  3288. image: {
  3289. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(9, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Large",
  3301. height: math.unit(25, "feet")
  3302. },
  3303. {
  3304. name: "Macro",
  3305. height: math.unit(0.25, "miles")
  3306. },
  3307. {
  3308. name: "Megamacro",
  3309. height: math.unit(10, "miles")
  3310. }
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3315. {
  3316. side: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(140, "kg"),
  3319. name: "Side",
  3320. image: {
  3321. source: "./media/characters/sosha/side.svg",
  3322. bottom: 0.042
  3323. }
  3324. },
  3325. },
  3326. [
  3327. {
  3328. name: "Normal",
  3329. height: math.unit(12, "feet"),
  3330. default: true
  3331. }
  3332. ]
  3333. ))
  3334. characterMakers.push(() => makeCharacter(
  3335. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3336. {
  3337. side: {
  3338. height: math.unit(5 + 5 / 12, "feet"),
  3339. weight: math.unit(170, "kg"),
  3340. name: "Side",
  3341. image: {
  3342. source: "./media/characters/runnola/side.svg",
  3343. extra: 741 / 448,
  3344. bottom: 0.05
  3345. }
  3346. },
  3347. },
  3348. [
  3349. {
  3350. name: "Small",
  3351. height: math.unit(3, "feet")
  3352. },
  3353. {
  3354. name: "Normal",
  3355. height: math.unit(5 + 5 / 12, "feet"),
  3356. default: true
  3357. },
  3358. {
  3359. name: "Big",
  3360. height: math.unit(10, "feet")
  3361. },
  3362. ]
  3363. ))
  3364. characterMakers.push(() => makeCharacter(
  3365. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3366. {
  3367. front: {
  3368. height: math.unit(2, "meter"),
  3369. weight: math.unit(50, "kg"),
  3370. name: "Front",
  3371. image: {
  3372. source: "./media/characters/kurribird/front.svg",
  3373. bottom: 0.015
  3374. }
  3375. },
  3376. frontAlt: {
  3377. height: math.unit(1.5, "meter"),
  3378. weight: math.unit(50, "kg"),
  3379. name: "Front (Alt)",
  3380. image: {
  3381. source: "./media/characters/kurribird/front-alt.svg",
  3382. extra: 1.45
  3383. }
  3384. },
  3385. },
  3386. [
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(7, "feet")
  3390. },
  3391. {
  3392. name: "Big",
  3393. height: math.unit(12, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(1500, "feet")
  3399. },
  3400. {
  3401. name: "Megamacro",
  3402. height: math.unit(2, "miles")
  3403. }
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(2, "meter"),
  3411. weight: math.unit(80, "kg"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/elbial/front.svg",
  3415. extra: 1643 / 1556,
  3416. bottom: 60.2 / 1696
  3417. }
  3418. },
  3419. side: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(80, "kg"),
  3422. name: "Side",
  3423. image: {
  3424. source: "./media/characters/elbial/side.svg",
  3425. extra: 1630 / 1565,
  3426. bottom: 71.5 / 1697
  3427. }
  3428. },
  3429. back: {
  3430. height: math.unit(2, "meter"),
  3431. weight: math.unit(80, "kg"),
  3432. name: "Back",
  3433. image: {
  3434. source: "./media/characters/elbial/back.svg",
  3435. extra: 1668 / 1595,
  3436. bottom: 5.6 / 1672
  3437. }
  3438. },
  3439. frontDressed: {
  3440. height: math.unit(2, "meter"),
  3441. weight: math.unit(80, "kg"),
  3442. name: "Front (Dressed)",
  3443. image: {
  3444. source: "./media/characters/elbial/front-dressed.svg",
  3445. extra: 1653 / 1584,
  3446. bottom: 57 / 1708
  3447. }
  3448. },
  3449. genitals: {
  3450. height: math.unit(2 / 3.367, "meter"),
  3451. name: "Genitals",
  3452. image: {
  3453. source: "./media/characters/elbial/genitals.svg"
  3454. }
  3455. },
  3456. },
  3457. [
  3458. {
  3459. name: "Large",
  3460. height: math.unit(100, "feet")
  3461. },
  3462. {
  3463. name: "Macro",
  3464. height: math.unit(500, "feet"),
  3465. default: true
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(10, "miles")
  3470. },
  3471. {
  3472. name: "Gigamacro",
  3473. height: math.unit(25000, "miles")
  3474. },
  3475. {
  3476. name: "Full-Size",
  3477. height: math.unit(8000000, "gigaparsecs")
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3483. {
  3484. front: {
  3485. height: math.unit(2, "meter"),
  3486. weight: math.unit(60, "kg"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/noah/front.svg"
  3490. }
  3491. },
  3492. talons: {
  3493. height: math.unit(0.315, "meter"),
  3494. name: "Talons",
  3495. image: {
  3496. source: "./media/characters/noah/talons.svg"
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Large",
  3503. height: math.unit(50, "feet")
  3504. },
  3505. {
  3506. name: "Macro",
  3507. height: math.unit(750, "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Megamacro",
  3512. height: math.unit(50, "miles")
  3513. },
  3514. {
  3515. name: "Gigamacro",
  3516. height: math.unit(100000, "miles")
  3517. },
  3518. {
  3519. name: "Full-Size",
  3520. height: math.unit(3000000000, "miles")
  3521. }
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(80, "kg"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/natalya/front.svg"
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(80, "kg"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/natalya/back.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Normal",
  3547. height: math.unit(150, "feet"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Megamacro",
  3552. height: math.unit(5, "miles")
  3553. },
  3554. {
  3555. name: "Full-Size",
  3556. height: math.unit(600, "kiloparsecs")
  3557. }
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(50, "kg"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/erestrebah/front.svg",
  3569. extra: 1262/1162,
  3570. bottom: 96/1358
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(50, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/erestrebah/back.svg",
  3579. extra: 1257/1139,
  3580. bottom: 13/1270
  3581. }
  3582. },
  3583. wing: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(50, "kg"),
  3586. name: "Wing",
  3587. image: {
  3588. source: "./media/characters/erestrebah/wing.svg",
  3589. extra: 1262/1162,
  3590. bottom: 96/1358
  3591. }
  3592. },
  3593. mouth: {
  3594. height: math.unit(0.39, "feet"),
  3595. name: "Mouth",
  3596. image: {
  3597. source: "./media/characters/erestrebah/mouth.svg"
  3598. }
  3599. }
  3600. },
  3601. [
  3602. {
  3603. name: "Normal",
  3604. height: math.unit(10, "feet")
  3605. },
  3606. {
  3607. name: "Large",
  3608. height: math.unit(50, "feet"),
  3609. default: true
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(300, "feet")
  3614. },
  3615. {
  3616. name: "Macro+",
  3617. height: math.unit(750, "feet")
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(3, "miles")
  3622. }
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3627. {
  3628. front: {
  3629. height: math.unit(2, "meter"),
  3630. weight: math.unit(80, "kg"),
  3631. name: "Front",
  3632. image: {
  3633. source: "./media/characters/jennifer/front.svg",
  3634. bottom: 0.11,
  3635. extra: 1.16
  3636. }
  3637. },
  3638. frontAlt: {
  3639. height: math.unit(2, "meter"),
  3640. weight: math.unit(80, "kg"),
  3641. name: "Front (Alt)",
  3642. image: {
  3643. source: "./media/characters/jennifer/front-alt.svg"
  3644. }
  3645. }
  3646. },
  3647. [
  3648. {
  3649. name: "Canon Height",
  3650. height: math.unit(120, "feet"),
  3651. default: true
  3652. },
  3653. {
  3654. name: "Macro+",
  3655. height: math.unit(300, "feet")
  3656. },
  3657. {
  3658. name: "Megamacro",
  3659. height: math.unit(20000, "feet")
  3660. }
  3661. ]
  3662. ))
  3663. characterMakers.push(() => makeCharacter(
  3664. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3665. {
  3666. front: {
  3667. height: math.unit(2, "meter"),
  3668. weight: math.unit(50, "kg"),
  3669. name: "Front",
  3670. image: {
  3671. source: "./media/characters/kalista/front.svg",
  3672. extra: 1947 / 1700,
  3673. bottom: 76.6 / 1412.98
  3674. }
  3675. },
  3676. back: {
  3677. height: math.unit(2, "meter"),
  3678. weight: math.unit(50, "kg"),
  3679. name: "Back",
  3680. image: {
  3681. source: "./media/characters/kalista/back.svg",
  3682. extra: 1366 / 1156,
  3683. bottom: 33.9 / 1362.78
  3684. }
  3685. }
  3686. },
  3687. [
  3688. {
  3689. name: "Uncomfortably Small",
  3690. height: math.unit(10, "feet")
  3691. },
  3692. {
  3693. name: "Small",
  3694. height: math.unit(30, "feet")
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(100, "feet"),
  3699. default: true
  3700. },
  3701. {
  3702. name: "Macro+",
  3703. height: math.unit(2000, "feet")
  3704. },
  3705. {
  3706. name: "True Form",
  3707. height: math.unit(8924, "miles")
  3708. }
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3713. {
  3714. front: {
  3715. height: math.unit(2, "meter"),
  3716. weight: math.unit(120, "kg"),
  3717. name: "Front",
  3718. image: {
  3719. source: "./media/characters/ggv/front.svg"
  3720. }
  3721. },
  3722. side: {
  3723. height: math.unit(2, "meter"),
  3724. weight: math.unit(120, "kg"),
  3725. name: "Side",
  3726. image: {
  3727. source: "./media/characters/ggv/side.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Extremely Puny",
  3734. height: math.unit(9 + 5 / 12, "feet")
  3735. },
  3736. {
  3737. name: "Horribly Small",
  3738. height: math.unit(47.7, "miles"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Reasonably Sized",
  3743. height: math.unit(25000, "parsecs")
  3744. },
  3745. {
  3746. name: "Slightly Uncompressed",
  3747. height: math.unit(7.77e31, "parsecs")
  3748. },
  3749. {
  3750. name: "Omniversal",
  3751. height: math.unit(1e300, "meters")
  3752. },
  3753. ]
  3754. ))
  3755. characterMakers.push(() => makeCharacter(
  3756. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3757. {
  3758. front: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(75, "lb"),
  3761. name: "Front",
  3762. image: {
  3763. source: "./media/characters/napalm/front.svg"
  3764. }
  3765. },
  3766. back: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(75, "lb"),
  3769. name: "Back",
  3770. image: {
  3771. source: "./media/characters/napalm/back.svg"
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Standard",
  3778. height: math.unit(55, "feet"),
  3779. default: true
  3780. }
  3781. ]
  3782. ))
  3783. characterMakers.push(() => makeCharacter(
  3784. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3785. {
  3786. front: {
  3787. height: math.unit(7 + 5 / 6, "feet"),
  3788. weight: math.unit(325, "lb"),
  3789. name: "Front",
  3790. image: {
  3791. source: "./media/characters/asana/front.svg",
  3792. extra: 1133 / 1060,
  3793. bottom: 15.2 / 1148.6
  3794. }
  3795. },
  3796. back: {
  3797. height: math.unit(7 + 5 / 6, "feet"),
  3798. weight: math.unit(325, "lb"),
  3799. name: "Back",
  3800. image: {
  3801. source: "./media/characters/asana/back.svg",
  3802. extra: 1114 / 1043,
  3803. bottom: 5 / 1120
  3804. }
  3805. },
  3806. dressedDark: {
  3807. height: math.unit(7 + 5 / 6, "feet"),
  3808. weight: math.unit(325, "lb"),
  3809. name: "Dressed (Dark)",
  3810. image: {
  3811. source: "./media/characters/asana/dressed-dark.svg",
  3812. extra: 1133 / 1060,
  3813. bottom: 15.2 / 1148.6
  3814. }
  3815. },
  3816. dressedLight: {
  3817. height: math.unit(7 + 5 / 6, "feet"),
  3818. weight: math.unit(325, "lb"),
  3819. name: "Dressed (Light)",
  3820. image: {
  3821. source: "./media/characters/asana/dressed-light.svg",
  3822. extra: 1133 / 1060,
  3823. bottom: 15.2 / 1148.6
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Standard",
  3830. height: math.unit(7 + 5 / 6, "feet"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Large",
  3835. height: math.unit(10, "meters")
  3836. },
  3837. {
  3838. name: "Macro",
  3839. height: math.unit(2500, "meters")
  3840. },
  3841. {
  3842. name: "Megamacro",
  3843. height: math.unit(5e6, "meters")
  3844. },
  3845. {
  3846. name: "Examacro",
  3847. height: math.unit(5e12, "lightyears")
  3848. },
  3849. {
  3850. name: "Max Size",
  3851. height: math.unit(1e31, "lightyears")
  3852. }
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(2, "meter"),
  3860. weight: math.unit(60, "kg"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/ebony/front.svg",
  3864. bottom: 0.03,
  3865. extra: 1045 / 810 + 0.03
  3866. }
  3867. },
  3868. side: {
  3869. height: math.unit(2, "meter"),
  3870. weight: math.unit(60, "kg"),
  3871. name: "Side",
  3872. image: {
  3873. source: "./media/characters/ebony/side.svg",
  3874. bottom: 0.03,
  3875. extra: 1045 / 810 + 0.03
  3876. }
  3877. },
  3878. back: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(60, "kg"),
  3881. name: "Back",
  3882. image: {
  3883. source: "./media/characters/ebony/back.svg",
  3884. bottom: 0.01,
  3885. extra: 1045 / 810 + 0.01
  3886. }
  3887. },
  3888. },
  3889. [
  3890. // TODO check why I did this lol
  3891. {
  3892. name: "Standard",
  3893. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Macro",
  3898. height: math.unit(200, "feet")
  3899. },
  3900. {
  3901. name: "Gigamacro",
  3902. height: math.unit(13000, "km")
  3903. }
  3904. ]
  3905. ))
  3906. characterMakers.push(() => makeCharacter(
  3907. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3908. {
  3909. front: {
  3910. height: math.unit(6, "feet"),
  3911. weight: math.unit(175, "lb"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/mountain/front.svg",
  3915. extra: 972 / 955,
  3916. bottom: 64 / 1036.6
  3917. }
  3918. },
  3919. back: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(175, "lb"),
  3922. name: "Back",
  3923. image: {
  3924. source: "./media/characters/mountain/back.svg",
  3925. extra: 970 / 950,
  3926. bottom: 28.25 / 999
  3927. }
  3928. },
  3929. },
  3930. [
  3931. {
  3932. name: "Large",
  3933. height: math.unit(20, "meters")
  3934. },
  3935. {
  3936. name: "Macro",
  3937. height: math.unit(300, "meters")
  3938. },
  3939. {
  3940. name: "Gigamacro",
  3941. height: math.unit(10000, "km"),
  3942. default: true
  3943. },
  3944. {
  3945. name: "Examacro",
  3946. height: math.unit(10e9, "lightyears")
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(8, "feet"),
  3955. weight: math.unit(500, "lb"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/rick/front.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Normal",
  3965. height: math.unit(8, "feet"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Macro",
  3970. height: math.unit(5, "km")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(8, "feet"),
  3979. weight: math.unit(120, "lb"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/ona/front.svg"
  3983. }
  3984. },
  3985. frontAlt: {
  3986. height: math.unit(8, "feet"),
  3987. weight: math.unit(120, "lb"),
  3988. name: "Front (Alt)",
  3989. image: {
  3990. source: "./media/characters/ona/front-alt.svg"
  3991. }
  3992. },
  3993. back: {
  3994. height: math.unit(8, "feet"),
  3995. weight: math.unit(120, "lb"),
  3996. name: "Back",
  3997. image: {
  3998. source: "./media/characters/ona/back.svg"
  3999. }
  4000. },
  4001. foot: {
  4002. height: math.unit(1.1, "feet"),
  4003. name: "Foot",
  4004. image: {
  4005. source: "./media/characters/ona/foot.svg"
  4006. }
  4007. }
  4008. },
  4009. [
  4010. {
  4011. name: "Megamacro",
  4012. height: math.unit(70, "km"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Gigamacro",
  4017. height: math.unit(681818, "miles")
  4018. },
  4019. {
  4020. name: "Examacro",
  4021. height: math.unit(3800000, "lightyears")
  4022. },
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4027. {
  4028. front: {
  4029. height: math.unit(12, "feet"),
  4030. weight: math.unit(3000, "lb"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/mech/front.svg",
  4034. extra: 2900 / 2770,
  4035. bottom: 110 / 3010
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(12, "feet"),
  4040. weight: math.unit(3000, "lb"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/mech/back.svg",
  4044. extra: 3011 / 2890,
  4045. bottom: 94 / 3105
  4046. }
  4047. },
  4048. maw: {
  4049. height: math.unit(3.07, "feet"),
  4050. name: "Maw",
  4051. image: {
  4052. source: "./media/characters/mech/maw.svg"
  4053. }
  4054. },
  4055. head: {
  4056. height: math.unit(2.82, "feet"),
  4057. name: "Head",
  4058. image: {
  4059. source: "./media/characters/mech/head.svg"
  4060. }
  4061. },
  4062. dick: {
  4063. height: math.unit(1.43, "feet"),
  4064. name: "Dick",
  4065. image: {
  4066. source: "./media/characters/mech/dick.svg"
  4067. }
  4068. },
  4069. },
  4070. [
  4071. {
  4072. name: "Normal",
  4073. height: math.unit(12, "feet")
  4074. },
  4075. {
  4076. name: "Macro",
  4077. height: math.unit(300, "feet"),
  4078. default: true
  4079. },
  4080. {
  4081. name: "Macro+",
  4082. height: math.unit(1500, "feet")
  4083. },
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4088. {
  4089. front: {
  4090. height: math.unit(1.3, "meter"),
  4091. weight: math.unit(30, "kg"),
  4092. name: "Front",
  4093. image: {
  4094. source: "./media/characters/gregory/front.svg",
  4095. }
  4096. }
  4097. },
  4098. [
  4099. {
  4100. name: "Normal",
  4101. height: math.unit(1.3, "meter"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Macro",
  4106. height: math.unit(20, "meter")
  4107. }
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4112. {
  4113. front: {
  4114. height: math.unit(2.8, "meter"),
  4115. weight: math.unit(200, "kg"),
  4116. name: "Front",
  4117. image: {
  4118. source: "./media/characters/elory/front.svg",
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(2.8, "meter"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Macro",
  4130. height: math.unit(38, "meter")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(470, "feet"),
  4139. weight: math.unit(924, "tons"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/angelpatamon/front.svg",
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Normal",
  4149. height: math.unit(470, "feet"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Deity Size I",
  4154. height: math.unit(28651.2, "km")
  4155. },
  4156. {
  4157. name: "Deity Size II",
  4158. height: math.unit(171907.2, "km")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4164. {
  4165. side: {
  4166. height: math.unit(7.2, "meter"),
  4167. weight: math.unit(8.2, "tons"),
  4168. name: "Side",
  4169. image: {
  4170. source: "./media/characters/cryae/side.svg",
  4171. extra: 3500 / 1500
  4172. }
  4173. }
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(7.2, "meter"),
  4179. default: true
  4180. }
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4185. {
  4186. front: {
  4187. height: math.unit(6, "feet"),
  4188. weight: math.unit(175, "lb"),
  4189. name: "Front",
  4190. image: {
  4191. source: "./media/characters/xera/front.svg",
  4192. extra: 2377 / 1972,
  4193. bottom: 75.5 / 2452
  4194. }
  4195. },
  4196. side: {
  4197. height: math.unit(6, "feet"),
  4198. weight: math.unit(175, "lb"),
  4199. name: "Side",
  4200. image: {
  4201. source: "./media/characters/xera/side.svg",
  4202. extra: 2345 / 2019,
  4203. bottom: 39.7 / 2384
  4204. }
  4205. },
  4206. back: {
  4207. height: math.unit(6, "feet"),
  4208. weight: math.unit(175, "lb"),
  4209. name: "Back",
  4210. image: {
  4211. source: "./media/characters/xera/back.svg",
  4212. extra: 2095 / 1984,
  4213. bottom: 67 / 2166
  4214. }
  4215. },
  4216. },
  4217. [
  4218. {
  4219. name: "Small",
  4220. height: math.unit(10, "feet")
  4221. },
  4222. {
  4223. name: "Macro",
  4224. height: math.unit(500, "meters"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Macro+",
  4229. height: math.unit(10, "km")
  4230. },
  4231. {
  4232. name: "Gigamacro",
  4233. height: math.unit(25000, "km")
  4234. },
  4235. {
  4236. name: "Teramacro",
  4237. height: math.unit(3e6, "km")
  4238. }
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(6, "feet"),
  4246. weight: math.unit(175, "lb"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/nebula/front.svg",
  4250. extra: 2566 / 2362,
  4251. bottom: 81 / 2644
  4252. }
  4253. }
  4254. },
  4255. [
  4256. {
  4257. name: "Small",
  4258. height: math.unit(4.5, "meters")
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(1500, "meters"),
  4263. default: true
  4264. },
  4265. {
  4266. name: "Megamacro",
  4267. height: math.unit(150, "km")
  4268. },
  4269. {
  4270. name: "Gigamacro",
  4271. height: math.unit(27000, "km")
  4272. }
  4273. ]
  4274. ))
  4275. characterMakers.push(() => makeCharacter(
  4276. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4277. {
  4278. front: {
  4279. height: math.unit(6, "feet"),
  4280. weight: math.unit(225, "lb"),
  4281. name: "Front",
  4282. image: {
  4283. source: "./media/characters/abysgar/front.svg"
  4284. }
  4285. }
  4286. },
  4287. [
  4288. {
  4289. name: "Small",
  4290. height: math.unit(4.5, "meters")
  4291. },
  4292. {
  4293. name: "Macro",
  4294. height: math.unit(1250, "meters"),
  4295. default: true
  4296. },
  4297. {
  4298. name: "Megamacro",
  4299. height: math.unit(125, "km")
  4300. },
  4301. {
  4302. name: "Gigamacro",
  4303. height: math.unit(26000, "km")
  4304. }
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(6, "feet"),
  4312. weight: math.unit(180, "lb"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/yakuz/front.svg"
  4316. }
  4317. }
  4318. },
  4319. [
  4320. {
  4321. name: "Small",
  4322. height: math.unit(5, "meters")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(1500, "meters"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Megamacro",
  4331. height: math.unit(200, "km")
  4332. },
  4333. {
  4334. name: "Gigamacro",
  4335. height: math.unit(100000, "km")
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/mirova/front.svg",
  4348. extra: 3334 / 3071,
  4349. bottom: 42 / 3375.6
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Small",
  4356. height: math.unit(5, "meters")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(900, "meters"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "Megamacro",
  4365. height: math.unit(135, "km")
  4366. },
  4367. {
  4368. name: "Gigamacro",
  4369. height: math.unit(20000, "km")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4375. {
  4376. side: {
  4377. height: math.unit(28.35, "feet"),
  4378. weight: math.unit(99.75, "tons"),
  4379. name: "Side",
  4380. image: {
  4381. source: "./media/characters/asana-mech/side.svg",
  4382. extra: 923 / 699,
  4383. bottom: 50 / 975
  4384. }
  4385. },
  4386. chaingun: {
  4387. height: math.unit(7, "feet"),
  4388. weight: math.unit(2400, "lb"),
  4389. name: "Chaingun",
  4390. image: {
  4391. source: "./media/characters/asana-mech/chaingun.svg"
  4392. }
  4393. },
  4394. laser: {
  4395. height: math.unit(7.12, "feet"),
  4396. weight: math.unit(2000, "lb"),
  4397. name: "Laser",
  4398. image: {
  4399. source: "./media/characters/asana-mech/laser.svg"
  4400. }
  4401. },
  4402. },
  4403. [
  4404. {
  4405. name: "Normal",
  4406. height: math.unit(28.35, "feet"),
  4407. default: true
  4408. },
  4409. {
  4410. name: "Macro",
  4411. height: math.unit(2500, "feet")
  4412. },
  4413. {
  4414. name: "Megamacro",
  4415. height: math.unit(25, "miles")
  4416. },
  4417. {
  4418. name: "Examacro",
  4419. height: math.unit(6e8, "lightyears")
  4420. },
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(5, "meters"),
  4428. weight: math.unit(1000, "kg"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/asche/front.svg",
  4432. extra: 1258 / 1190,
  4433. bottom: 47 / 1305
  4434. }
  4435. },
  4436. frontUnderwear: {
  4437. height: math.unit(5, "meters"),
  4438. weight: math.unit(1000, "kg"),
  4439. name: "Front (Underwear)",
  4440. image: {
  4441. source: "./media/characters/asche/front-underwear.svg",
  4442. extra: 1258 / 1190,
  4443. bottom: 47 / 1305
  4444. }
  4445. },
  4446. frontDressed: {
  4447. height: math.unit(5, "meters"),
  4448. weight: math.unit(1000, "kg"),
  4449. name: "Front (Dressed)",
  4450. image: {
  4451. source: "./media/characters/asche/front-dressed.svg",
  4452. extra: 1258 / 1190,
  4453. bottom: 47 / 1305
  4454. }
  4455. },
  4456. frontArmor: {
  4457. height: math.unit(5, "meters"),
  4458. weight: math.unit(1000, "kg"),
  4459. name: "Front (Armored)",
  4460. image: {
  4461. source: "./media/characters/asche/front-armored.svg",
  4462. extra: 1374 / 1308,
  4463. bottom: 23 / 1397
  4464. }
  4465. },
  4466. mp724: {
  4467. height: math.unit(0.96, "meters"),
  4468. weight: math.unit(38, "kg"),
  4469. name: "H&K MP724",
  4470. image: {
  4471. source: "./media/characters/asche/h&k-mp724.svg"
  4472. }
  4473. },
  4474. side: {
  4475. height: math.unit(5, "meters"),
  4476. weight: math.unit(1000, "kg"),
  4477. name: "Side",
  4478. image: {
  4479. source: "./media/characters/asche/side.svg",
  4480. extra: 1717 / 1609,
  4481. bottom: 0.005
  4482. }
  4483. },
  4484. back: {
  4485. height: math.unit(5, "meters"),
  4486. weight: math.unit(1000, "kg"),
  4487. name: "Back",
  4488. image: {
  4489. source: "./media/characters/asche/back.svg",
  4490. extra: 1570 / 1501
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "DEFCON 5",
  4497. height: math.unit(5, "meters")
  4498. },
  4499. {
  4500. name: "DEFCON 4",
  4501. height: math.unit(500, "meters"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "DEFCON 3",
  4506. height: math.unit(5, "km")
  4507. },
  4508. {
  4509. name: "DEFCON 2",
  4510. height: math.unit(500, "km")
  4511. },
  4512. {
  4513. name: "DEFCON 1",
  4514. height: math.unit(500000, "km")
  4515. },
  4516. {
  4517. name: "DEFCON 0",
  4518. height: math.unit(3, "gigaparsecs")
  4519. },
  4520. ]
  4521. ))
  4522. characterMakers.push(() => makeCharacter(
  4523. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4524. {
  4525. front: {
  4526. height: math.unit(2, "meters"),
  4527. weight: math.unit(76, "kg"),
  4528. name: "Front",
  4529. image: {
  4530. source: "./media/characters/gale/front.svg"
  4531. }
  4532. },
  4533. frontAlt1: {
  4534. height: math.unit(2, "meters"),
  4535. weight: math.unit(76, "kg"),
  4536. name: "Front (Alt 1)",
  4537. image: {
  4538. source: "./media/characters/gale/front-alt-1.svg"
  4539. }
  4540. },
  4541. frontAlt2: {
  4542. height: math.unit(2, "meters"),
  4543. weight: math.unit(76, "kg"),
  4544. name: "Front (Alt 2)",
  4545. image: {
  4546. source: "./media/characters/gale/front-alt-2.svg"
  4547. }
  4548. },
  4549. },
  4550. [
  4551. {
  4552. name: "Normal",
  4553. height: math.unit(7, "feet")
  4554. },
  4555. {
  4556. name: "Macro",
  4557. height: math.unit(150, "feet"),
  4558. default: true
  4559. },
  4560. {
  4561. name: "Macro+",
  4562. height: math.unit(300, "feet")
  4563. },
  4564. ]
  4565. ))
  4566. characterMakers.push(() => makeCharacter(
  4567. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4568. {
  4569. front: {
  4570. height: math.unit(5 + 10/12, "feet"),
  4571. weight: math.unit(67, "kg"),
  4572. name: "Front",
  4573. image: {
  4574. source: "./media/characters/draylen/front.svg",
  4575. extra: 832/777,
  4576. bottom: 85/917
  4577. }
  4578. }
  4579. },
  4580. [
  4581. {
  4582. name: "Normal",
  4583. height: math.unit(5 + 10/12, "feet")
  4584. },
  4585. {
  4586. name: "Macro",
  4587. height: math.unit(150, "feet"),
  4588. default: true
  4589. }
  4590. ]
  4591. ))
  4592. characterMakers.push(() => makeCharacter(
  4593. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4594. {
  4595. front: {
  4596. height: math.unit(7 + 9 / 12, "feet"),
  4597. weight: math.unit(379, "lbs"),
  4598. name: "Front",
  4599. image: {
  4600. source: "./media/characters/chez/front.svg"
  4601. }
  4602. },
  4603. side: {
  4604. height: math.unit(7 + 9 / 12, "feet"),
  4605. weight: math.unit(379, "lbs"),
  4606. name: "Side",
  4607. image: {
  4608. source: "./media/characters/chez/side.svg"
  4609. }
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(7 + 9 / 12, "feet"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "God King",
  4620. height: math.unit(9750000, "meters")
  4621. }
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4626. {
  4627. front: {
  4628. height: math.unit(6, "feet"),
  4629. weight: math.unit(275, "lbs"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/kaylum/front.svg",
  4633. bottom: 0.01,
  4634. extra: 1166 / 1031
  4635. }
  4636. },
  4637. frontWingless: {
  4638. height: math.unit(6, "feet"),
  4639. weight: math.unit(275, "lbs"),
  4640. name: "Front (Wingless)",
  4641. image: {
  4642. source: "./media/characters/kaylum/front-wingless.svg",
  4643. bottom: 0.01,
  4644. extra: 1117 / 1031
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(3.05, "meters")
  4652. },
  4653. {
  4654. name: "Master",
  4655. height: math.unit(5.5, "meters")
  4656. },
  4657. {
  4658. name: "Rampage",
  4659. height: math.unit(19, "meters")
  4660. },
  4661. {
  4662. name: "Macro Lite",
  4663. height: math.unit(37, "meters")
  4664. },
  4665. {
  4666. name: "Hyper Predator",
  4667. height: math.unit(61, "meters")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(138, "meters"),
  4672. default: true
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(6, "feet"),
  4681. weight: math.unit(150, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/geta/front.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Micro",
  4691. height: math.unit(3, "inches"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Normal",
  4696. height: math.unit(5 + 5 / 12, "feet")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(6, "feet"),
  4705. weight: math.unit(300, "lbs"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/tyrnn/front.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Main Height",
  4715. height: math.unit(355, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Fave. Height",
  4720. height: math.unit(2400, "feet")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(300, "lbs"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/appledectomy/front.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(2500, "feet")
  4740. },
  4741. {
  4742. name: "Megamacro",
  4743. height: math.unit(50, "miles"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Gigamacro",
  4748. height: math.unit(5000, "miles")
  4749. },
  4750. {
  4751. name: "Teramacro",
  4752. height: math.unit(250000, "miles")
  4753. },
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(200, "lbs"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/vulpes/front.svg",
  4765. extra: 573 / 543,
  4766. bottom: 0.033
  4767. }
  4768. },
  4769. side: {
  4770. height: math.unit(6, "feet"),
  4771. weight: math.unit(200, "lbs"),
  4772. name: "Side",
  4773. image: {
  4774. source: "./media/characters/vulpes/side.svg",
  4775. extra: 577 / 549,
  4776. bottom: 11 / 588
  4777. }
  4778. },
  4779. back: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(200, "lbs"),
  4782. name: "Back",
  4783. image: {
  4784. source: "./media/characters/vulpes/back.svg",
  4785. extra: 573 / 549,
  4786. bottom: 20 / 593
  4787. }
  4788. },
  4789. feet: {
  4790. height: math.unit(1.276, "feet"),
  4791. name: "Feet",
  4792. image: {
  4793. source: "./media/characters/vulpes/feet.svg"
  4794. }
  4795. },
  4796. maw: {
  4797. height: math.unit(1.18, "feet"),
  4798. name: "Maw",
  4799. image: {
  4800. source: "./media/characters/vulpes/maw.svg"
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Micro",
  4807. height: math.unit(2, "inches")
  4808. },
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(6.3, "feet")
  4812. },
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(850, "feet")
  4816. },
  4817. {
  4818. name: "Megamacro",
  4819. height: math.unit(7500, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Gigamacro",
  4824. height: math.unit(570000, "miles")
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(210, "lbs"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/rain-fallen/front.svg"
  4837. }
  4838. },
  4839. side: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(210, "lbs"),
  4842. name: "Side",
  4843. image: {
  4844. source: "./media/characters/rain-fallen/side.svg"
  4845. }
  4846. },
  4847. back: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(210, "lbs"),
  4850. name: "Back",
  4851. image: {
  4852. source: "./media/characters/rain-fallen/back.svg"
  4853. }
  4854. },
  4855. feral: {
  4856. height: math.unit(9, "feet"),
  4857. weight: math.unit(700, "lbs"),
  4858. name: "Feral",
  4859. image: {
  4860. source: "./media/characters/rain-fallen/feral.svg"
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Meddling with Mortals",
  4867. height: math.unit(8 + 8/12, "feet")
  4868. },
  4869. {
  4870. name: "Normal",
  4871. height: math.unit(5, "meter")
  4872. },
  4873. {
  4874. name: "Macro",
  4875. height: math.unit(150, "meter"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Megamacro",
  4880. height: math.unit(278e6, "meter")
  4881. },
  4882. {
  4883. name: "Gigamacro",
  4884. height: math.unit(2e9, "meter")
  4885. },
  4886. {
  4887. name: "Teramacro",
  4888. height: math.unit(8e12, "meter")
  4889. },
  4890. {
  4891. name: "Devourer",
  4892. height: math.unit(14, "zettameters")
  4893. },
  4894. {
  4895. name: "Scarlet King",
  4896. height: math.unit(18, "yottameters")
  4897. },
  4898. {
  4899. name: "Void",
  4900. height: math.unit(1e88, "yottameters")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4906. {
  4907. standing: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(180, "lbs"),
  4910. name: "Standing",
  4911. image: {
  4912. source: "./media/characters/zaakira/standing.svg",
  4913. extra: 1599/1504,
  4914. bottom: 39/1638
  4915. }
  4916. },
  4917. laying: {
  4918. height: math.unit(3, "feet"),
  4919. weight: math.unit(180, "lbs"),
  4920. name: "Laying",
  4921. image: {
  4922. source: "./media/characters/zaakira/laying.svg"
  4923. }
  4924. },
  4925. },
  4926. [
  4927. {
  4928. name: "Normal",
  4929. height: math.unit(12, "feet")
  4930. },
  4931. {
  4932. name: "Macro",
  4933. height: math.unit(279, "feet"),
  4934. default: true
  4935. }
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4940. {
  4941. femSfw: {
  4942. height: math.unit(8, "feet"),
  4943. weight: math.unit(350, "lb"),
  4944. name: "Fem",
  4945. image: {
  4946. source: "./media/characters/sigvald/fem-sfw.svg",
  4947. extra: 182 / 164,
  4948. bottom: 8.7 / 190.5
  4949. }
  4950. },
  4951. femNsfw: {
  4952. height: math.unit(8, "feet"),
  4953. weight: math.unit(350, "lb"),
  4954. name: "Fem (NSFW)",
  4955. image: {
  4956. source: "./media/characters/sigvald/fem-nsfw.svg",
  4957. extra: 182 / 164,
  4958. bottom: 8.7 / 190.5
  4959. }
  4960. },
  4961. maleNsfw: {
  4962. height: math.unit(8, "feet"),
  4963. weight: math.unit(350, "lb"),
  4964. name: "Male (NSFW)",
  4965. image: {
  4966. source: "./media/characters/sigvald/male-nsfw.svg",
  4967. extra: 182 / 164,
  4968. bottom: 8.7 / 190.5
  4969. }
  4970. },
  4971. hermNsfw: {
  4972. height: math.unit(8, "feet"),
  4973. weight: math.unit(350, "lb"),
  4974. name: "Herm (NSFW)",
  4975. image: {
  4976. source: "./media/characters/sigvald/herm-nsfw.svg",
  4977. extra: 182 / 164,
  4978. bottom: 8.7 / 190.5
  4979. }
  4980. },
  4981. dick: {
  4982. height: math.unit(2.36, "feet"),
  4983. name: "Dick",
  4984. image: {
  4985. source: "./media/characters/sigvald/dick.svg"
  4986. }
  4987. },
  4988. eye: {
  4989. height: math.unit(0.31, "feet"),
  4990. name: "Eye",
  4991. image: {
  4992. source: "./media/characters/sigvald/eye.svg"
  4993. }
  4994. },
  4995. mouth: {
  4996. height: math.unit(0.92, "feet"),
  4997. name: "Mouth",
  4998. image: {
  4999. source: "./media/characters/sigvald/mouth.svg"
  5000. }
  5001. },
  5002. paws: {
  5003. height: math.unit(2.2, "feet"),
  5004. name: "Paws",
  5005. image: {
  5006. source: "./media/characters/sigvald/paws.svg"
  5007. }
  5008. }
  5009. },
  5010. [
  5011. {
  5012. name: "Normal",
  5013. height: math.unit(8, "feet")
  5014. },
  5015. {
  5016. name: "Large",
  5017. height: math.unit(12, "feet")
  5018. },
  5019. {
  5020. name: "Larger",
  5021. height: math.unit(20, "feet")
  5022. },
  5023. {
  5024. name: "Macro",
  5025. height: math.unit(150, "feet")
  5026. },
  5027. {
  5028. name: "Macro+",
  5029. height: math.unit(200, "feet"),
  5030. default: true
  5031. },
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5036. {
  5037. side: {
  5038. height: math.unit(12, "feet"),
  5039. weight: math.unit(2000, "kg"),
  5040. name: "Side",
  5041. image: {
  5042. source: "./media/characters/scott/side.svg",
  5043. extra: 754 / 724,
  5044. bottom: 0.069
  5045. }
  5046. },
  5047. upright: {
  5048. height: math.unit(12, "feet"),
  5049. weight: math.unit(2000, "kg"),
  5050. name: "Upright",
  5051. image: {
  5052. source: "./media/characters/scott/upright.svg",
  5053. extra: 3881 / 3722,
  5054. bottom: 0.05
  5055. }
  5056. },
  5057. },
  5058. [
  5059. {
  5060. name: "Normal",
  5061. height: math.unit(12, "feet"),
  5062. default: true
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5068. {
  5069. side: {
  5070. height: math.unit(8, "meters"),
  5071. weight: math.unit(84755, "lbs"),
  5072. name: "Side",
  5073. image: {
  5074. source: "./media/characters/tobias/side.svg",
  5075. extra: 1474 / 1096,
  5076. bottom: 38.9 / 1513.1235
  5077. }
  5078. },
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(8, "meters"),
  5084. default: true
  5085. },
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5090. {
  5091. front: {
  5092. height: math.unit(5.5, "feet"),
  5093. weight: math.unit(400, "lbs"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/kieran/front.svg",
  5097. extra: 2694 / 2364,
  5098. bottom: 217 / 2908
  5099. }
  5100. },
  5101. side: {
  5102. height: math.unit(5.5, "feet"),
  5103. weight: math.unit(400, "lbs"),
  5104. name: "Side",
  5105. image: {
  5106. source: "./media/characters/kieran/side.svg",
  5107. extra: 875 / 777,
  5108. bottom: 84.6 / 959
  5109. }
  5110. },
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(5.5, "feet"),
  5116. default: true
  5117. },
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5122. {
  5123. side: {
  5124. height: math.unit(2, "meters"),
  5125. weight: math.unit(70, "kg"),
  5126. name: "Side",
  5127. image: {
  5128. source: "./media/characters/sanya/side.svg",
  5129. bottom: 0.02,
  5130. extra: 1.02
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Small",
  5137. height: math.unit(2, "meters")
  5138. },
  5139. {
  5140. name: "Normal",
  5141. height: math.unit(3, "meters")
  5142. },
  5143. {
  5144. name: "Macro",
  5145. height: math.unit(16, "meters"),
  5146. default: true
  5147. },
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5152. {
  5153. front: {
  5154. height: math.unit(2, "meters"),
  5155. weight: math.unit(120, "kg"),
  5156. name: "Front",
  5157. image: {
  5158. source: "./media/characters/miranda/front.svg",
  5159. extra: 195 / 185,
  5160. bottom: 10.9 / 206.5
  5161. }
  5162. },
  5163. back: {
  5164. height: math.unit(2, "meters"),
  5165. weight: math.unit(120, "kg"),
  5166. name: "Back",
  5167. image: {
  5168. source: "./media/characters/miranda/back.svg",
  5169. extra: 201 / 193,
  5170. bottom: 2.3 / 203.7
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Normal",
  5177. height: math.unit(10, "feet"),
  5178. default: true
  5179. }
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "James", species: ["deer"], tags: ["anthro"] },
  5184. {
  5185. side: {
  5186. height: math.unit(2, "meters"),
  5187. weight: math.unit(100, "kg"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/james/front.svg",
  5191. extra: 10 / 8.5
  5192. }
  5193. },
  5194. },
  5195. [
  5196. {
  5197. name: "Normal",
  5198. height: math.unit(8.5, "feet"),
  5199. default: true
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5205. {
  5206. side: {
  5207. height: math.unit(9.5, "feet"),
  5208. weight: math.unit(2500, "lbs"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/heather/side.svg"
  5212. }
  5213. },
  5214. },
  5215. [
  5216. {
  5217. name: "Normal",
  5218. height: math.unit(9.5, "feet"),
  5219. default: true
  5220. }
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5225. {
  5226. side: {
  5227. height: math.unit(6.5, "feet"),
  5228. weight: math.unit(400, "lbs"),
  5229. name: "Side",
  5230. image: {
  5231. source: "./media/characters/lukas/side.svg",
  5232. extra: 7.25 / 6.5
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(6.5, "feet"),
  5240. default: true
  5241. }
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5246. {
  5247. side: {
  5248. height: math.unit(5, "feet"),
  5249. weight: math.unit(3000, "lbs"),
  5250. name: "Side",
  5251. image: {
  5252. source: "./media/characters/louise/side.svg"
  5253. }
  5254. },
  5255. },
  5256. [
  5257. {
  5258. name: "Normal",
  5259. height: math.unit(5, "feet"),
  5260. default: true
  5261. }
  5262. ]
  5263. ))
  5264. characterMakers.push(() => makeCharacter(
  5265. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5266. {
  5267. side: {
  5268. height: math.unit(6, "feet"),
  5269. weight: math.unit(150, "lbs"),
  5270. name: "Side",
  5271. image: {
  5272. source: "./media/characters/ramona/side.svg",
  5273. extra: 871/854,
  5274. bottom: 41/912
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(5.3, "meters"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Macro",
  5286. height: math.unit(20, "stories")
  5287. },
  5288. {
  5289. name: "Macro+",
  5290. height: math.unit(50, "stories")
  5291. },
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5296. {
  5297. standing: {
  5298. height: math.unit(5.75, "feet"),
  5299. weight: math.unit(160, "lbs"),
  5300. name: "Standing",
  5301. image: {
  5302. source: "./media/characters/deerpuff/standing.svg",
  5303. extra: 682 / 624
  5304. }
  5305. },
  5306. sitting: {
  5307. height: math.unit(5.75 / 1.79, "feet"),
  5308. weight: math.unit(160, "lbs"),
  5309. name: "Sitting",
  5310. image: {
  5311. source: "./media/characters/deerpuff/sitting.svg",
  5312. bottom: 44 / 400,
  5313. extra: 1
  5314. }
  5315. },
  5316. taurLaying: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(400, "lbs"),
  5319. name: "Taur (Laying)",
  5320. image: {
  5321. source: "./media/characters/deerpuff/taur-laying.svg"
  5322. }
  5323. },
  5324. },
  5325. [
  5326. {
  5327. name: "Puffball",
  5328. height: math.unit(6, "inches")
  5329. },
  5330. {
  5331. name: "Normalpuff",
  5332. height: math.unit(5.75, "feet")
  5333. },
  5334. {
  5335. name: "Macropuff",
  5336. height: math.unit(1500, "feet"),
  5337. default: true
  5338. },
  5339. {
  5340. name: "Megapuff",
  5341. height: math.unit(500, "miles")
  5342. },
  5343. {
  5344. name: "Gigapuff",
  5345. height: math.unit(250000, "miles")
  5346. },
  5347. {
  5348. name: "Omegapuff",
  5349. height: math.unit(1000, "lightyears")
  5350. },
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5355. {
  5356. stomping: {
  5357. height: math.unit(6, "feet"),
  5358. weight: math.unit(170, "lbs"),
  5359. name: "Stomping",
  5360. image: {
  5361. source: "./media/characters/vivian/stomping.svg"
  5362. }
  5363. },
  5364. sitting: {
  5365. height: math.unit(6 / 1.75, "feet"),
  5366. weight: math.unit(170, "lbs"),
  5367. name: "Sitting",
  5368. image: {
  5369. source: "./media/characters/vivian/sitting.svg",
  5370. bottom: 1 / 6.4,
  5371. extra: 1,
  5372. }
  5373. },
  5374. },
  5375. [
  5376. {
  5377. name: "Normal",
  5378. height: math.unit(7, "feet"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Macro",
  5383. height: math.unit(10, "stories")
  5384. },
  5385. {
  5386. name: "Macro+",
  5387. height: math.unit(30, "stories")
  5388. },
  5389. {
  5390. name: "Megamacro",
  5391. height: math.unit(10, "miles")
  5392. },
  5393. {
  5394. name: "Megamacro+",
  5395. height: math.unit(2750000, "meters")
  5396. },
  5397. ]
  5398. ))
  5399. characterMakers.push(() => makeCharacter(
  5400. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5401. {
  5402. front: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(160, "lbs"),
  5405. name: "Front",
  5406. image: {
  5407. source: "./media/characters/prince/front.svg",
  5408. extra: 3400 / 3000
  5409. }
  5410. },
  5411. jumping: {
  5412. height: math.unit(6, "feet"),
  5413. weight: math.unit(160, "lbs"),
  5414. name: "Jumping",
  5415. image: {
  5416. source: "./media/characters/prince/jump.svg",
  5417. extra: 2555 / 2134
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(7.75, "feet"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Not cute",
  5429. height: math.unit(17, "feet")
  5430. },
  5431. {
  5432. name: "I said NOT",
  5433. height: math.unit(91, "feet")
  5434. },
  5435. {
  5436. name: "Please stop",
  5437. height: math.unit(560, "feet")
  5438. },
  5439. {
  5440. name: "What have you done",
  5441. height: math.unit(2200, "feet")
  5442. },
  5443. {
  5444. name: "Deer God",
  5445. height: math.unit(3.6, "miles")
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5451. {
  5452. standing: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(300, "lbs"),
  5455. name: "Standing",
  5456. image: {
  5457. source: "./media/characters/psymon/standing.svg",
  5458. extra: 1888 / 1810,
  5459. bottom: 0.05
  5460. }
  5461. },
  5462. slithering: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(300, "lbs"),
  5465. name: "Slithering",
  5466. image: {
  5467. source: "./media/characters/psymon/slithering.svg",
  5468. extra: 1330 / 1224
  5469. }
  5470. },
  5471. slitheringAlt: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(300, "lbs"),
  5474. name: "Slithering (Alt)",
  5475. image: {
  5476. source: "./media/characters/psymon/slithering-alt.svg",
  5477. extra: 1330 / 1224
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(11.25, "feet"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Large",
  5489. height: math.unit(27, "feet")
  5490. },
  5491. {
  5492. name: "Giant",
  5493. height: math.unit(87, "feet")
  5494. },
  5495. {
  5496. name: "Macro",
  5497. height: math.unit(365, "feet")
  5498. },
  5499. {
  5500. name: "Megamacro",
  5501. height: math.unit(3, "miles")
  5502. },
  5503. {
  5504. name: "World Serpent",
  5505. height: math.unit(8000, "miles")
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5511. {
  5512. front: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(180, "lbs"),
  5515. name: "Front",
  5516. image: {
  5517. source: "./media/characters/daimos/front.svg",
  5518. extra: 4160 / 3897,
  5519. bottom: 0.021
  5520. }
  5521. }
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(8, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Big Dog",
  5531. height: math.unit(22, "feet")
  5532. },
  5533. {
  5534. name: "Macro",
  5535. height: math.unit(127, "feet")
  5536. },
  5537. {
  5538. name: "Megamacro",
  5539. height: math.unit(3600, "feet")
  5540. },
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5545. {
  5546. side: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(180, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/blake/side.svg",
  5552. extra: 1212 / 1120,
  5553. bottom: 0.05
  5554. }
  5555. },
  5556. crouched: {
  5557. height: math.unit(6 * 0.57, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Crouched",
  5560. image: {
  5561. source: "./media/characters/blake/crouched.svg",
  5562. extra: 840 / 587,
  5563. bottom: 0.04
  5564. }
  5565. },
  5566. bent: {
  5567. height: math.unit(6 * 0.75, "feet"),
  5568. weight: math.unit(180, "lbs"),
  5569. name: "Bent",
  5570. image: {
  5571. source: "./media/characters/blake/bent.svg",
  5572. extra: 592 / 544,
  5573. bottom: 0.035
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(8 + 1 / 6, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Big Backside",
  5585. height: math.unit(37, "feet")
  5586. },
  5587. {
  5588. name: "Subway Shredder",
  5589. height: math.unit(72, "feet")
  5590. },
  5591. {
  5592. name: "City Carver",
  5593. height: math.unit(1675, "feet")
  5594. },
  5595. {
  5596. name: "Tectonic Tweaker",
  5597. height: math.unit(2300, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(180, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/guisetto/front.svg",
  5610. extra: 856 / 817,
  5611. bottom: 0.06
  5612. }
  5613. },
  5614. airborne: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Airborne",
  5618. image: {
  5619. source: "./media/characters/guisetto/airborne.svg",
  5620. extra: 584 / 525
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Normal",
  5627. height: math.unit(10 + 11 / 12, "feet"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Large",
  5632. height: math.unit(35, "feet")
  5633. },
  5634. {
  5635. name: "Macro",
  5636. height: math.unit(475, "feet")
  5637. },
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5642. {
  5643. front: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(180, "lbs"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/luxor/front.svg",
  5649. extra: 2940 / 2152
  5650. }
  5651. },
  5652. back: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(180, "lbs"),
  5655. name: "Back",
  5656. image: {
  5657. source: "./media/characters/luxor/back.svg",
  5658. extra: 1083 / 960
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(5 + 5 / 6, "feet"),
  5666. default: true
  5667. },
  5668. {
  5669. name: "Lamp",
  5670. height: math.unit(50, "feet")
  5671. },
  5672. {
  5673. name: "Lämp",
  5674. height: math.unit(300, "feet")
  5675. },
  5676. {
  5677. name: "The sun is a lamp",
  5678. height: math.unit(250000, "miles")
  5679. },
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(50, "lbs"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/huoyan/front.svg"
  5691. }
  5692. },
  5693. side: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(180, "lbs"),
  5696. name: "Side",
  5697. image: {
  5698. source: "./media/characters/huoyan/side.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Chef",
  5705. height: math.unit(9, "feet")
  5706. },
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(65, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(780, "feet")
  5715. },
  5716. {
  5717. name: "Flaming Mountain",
  5718. height: math.unit(4.8, "miles")
  5719. },
  5720. {
  5721. name: "Celestial",
  5722. height: math.unit(765000, "miles")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5728. {
  5729. front: {
  5730. height: math.unit(5 + 3 / 4, "feet"),
  5731. weight: math.unit(120, "lbs"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/tails/front.svg"
  5735. }
  5736. }
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(5 + 3 / 4, "feet"),
  5742. default: true
  5743. }
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5748. {
  5749. front: {
  5750. height: math.unit(4, "feet"),
  5751. weight: math.unit(50, "lbs"),
  5752. name: "Front",
  5753. image: {
  5754. source: "./media/characters/rainy/front.svg"
  5755. }
  5756. }
  5757. },
  5758. [
  5759. {
  5760. name: "Macro",
  5761. height: math.unit(800, "feet"),
  5762. default: true
  5763. }
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(150, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/rainier/front.svg"
  5775. }
  5776. }
  5777. },
  5778. [
  5779. {
  5780. name: "Micro",
  5781. height: math.unit(2, "mm"),
  5782. default: true
  5783. }
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(8 + 4/12, "feet"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/andy-renard/front.svg",
  5794. extra: 1839/1726,
  5795. bottom: 134/1973
  5796. }
  5797. },
  5798. back: {
  5799. height: math.unit(8 + 4/12, "feet"),
  5800. name: "Back",
  5801. image: {
  5802. source: "./media/characters/andy-renard/back.svg",
  5803. extra: 1838/1710,
  5804. bottom: 105/1943
  5805. }
  5806. },
  5807. },
  5808. [
  5809. {
  5810. name: "Tall",
  5811. height: math.unit(8 + 4/12, "feet")
  5812. },
  5813. {
  5814. name: "Mini Macro",
  5815. height: math.unit(15, "feet"),
  5816. default: true
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(100, "feet")
  5821. },
  5822. {
  5823. name: "Mega Macro",
  5824. height: math.unit(1000, "feet")
  5825. },
  5826. {
  5827. name: "Giga Macro",
  5828. height: math.unit(10, "miles")
  5829. },
  5830. {
  5831. name: "God Macro",
  5832. height: math.unit(1, "multiverse")
  5833. },
  5834. ]
  5835. ))
  5836. characterMakers.push(() => makeCharacter(
  5837. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5838. {
  5839. front: {
  5840. height: math.unit(6, "feet"),
  5841. weight: math.unit(210, "lbs"),
  5842. name: "Front",
  5843. image: {
  5844. source: "./media/characters/cimmaron/front-sfw.svg",
  5845. extra: 701 / 676,
  5846. bottom: 0.046
  5847. }
  5848. },
  5849. back: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(210, "lbs"),
  5852. name: "Back",
  5853. image: {
  5854. source: "./media/characters/cimmaron/back-sfw.svg",
  5855. extra: 701 / 676,
  5856. bottom: 0.046
  5857. }
  5858. },
  5859. frontNsfw: {
  5860. height: math.unit(6, "feet"),
  5861. weight: math.unit(210, "lbs"),
  5862. name: "Front (NSFW)",
  5863. image: {
  5864. source: "./media/characters/cimmaron/front-nsfw.svg",
  5865. extra: 701 / 676,
  5866. bottom: 0.046
  5867. }
  5868. },
  5869. backNsfw: {
  5870. height: math.unit(6, "feet"),
  5871. weight: math.unit(210, "lbs"),
  5872. name: "Back (NSFW)",
  5873. image: {
  5874. source: "./media/characters/cimmaron/back-nsfw.svg",
  5875. extra: 701 / 676,
  5876. bottom: 0.046
  5877. }
  5878. },
  5879. dick: {
  5880. height: math.unit(1.714, "feet"),
  5881. name: "Dick",
  5882. image: {
  5883. source: "./media/characters/cimmaron/dick.svg"
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(6, "feet"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Macro Mayor",
  5895. height: math.unit(350, "meters")
  5896. },
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(200, "lbs"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/akari/front.svg",
  5908. extra: 962 / 901,
  5909. bottom: 0.04
  5910. }
  5911. }
  5912. },
  5913. [
  5914. {
  5915. name: "Micro",
  5916. height: math.unit(5, "inches"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(7, "feet")
  5922. },
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5927. {
  5928. front: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(140, "lbs"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/cynosura/front.svg",
  5934. extra: 896 / 847
  5935. }
  5936. },
  5937. back: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(140, "lbs"),
  5940. name: "Back",
  5941. image: {
  5942. source: "./media/characters/cynosura/back.svg",
  5943. extra: 1365 / 1250
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Micro",
  5950. height: math.unit(4, "inches")
  5951. },
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(5.75, "feet"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Tall",
  5959. height: math.unit(10, "feet")
  5960. },
  5961. {
  5962. name: "Big",
  5963. height: math.unit(20, "feet")
  5964. },
  5965. {
  5966. name: "Macro",
  5967. height: math.unit(50, "feet")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(13 + 2/12, "feet"),
  5976. weight: math.unit(800, "kg"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/gin/front.svg",
  5980. extra: 1312/1191,
  5981. bottom: 45/1357
  5982. }
  5983. },
  5984. mouth: {
  5985. height: math.unit(2.39 * 1.8, "feet"),
  5986. name: "Mouth",
  5987. image: {
  5988. source: "./media/characters/gin/mouth.svg"
  5989. }
  5990. },
  5991. hand: {
  5992. height: math.unit(1.57 * 2.19, "feet"),
  5993. name: "Hand",
  5994. image: {
  5995. source: "./media/characters/gin/hand.svg"
  5996. }
  5997. },
  5998. foot: {
  5999. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6000. name: "Foot",
  6001. image: {
  6002. source: "./media/characters/gin/foot.svg"
  6003. }
  6004. },
  6005. sole: {
  6006. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6007. name: "Sole",
  6008. image: {
  6009. source: "./media/characters/gin/sole.svg"
  6010. }
  6011. },
  6012. },
  6013. [
  6014. {
  6015. name: "Very Small",
  6016. height: math.unit(13 + 2 / 12, "feet")
  6017. },
  6018. {
  6019. name: "Micro",
  6020. height: math.unit(600, "miles")
  6021. },
  6022. {
  6023. name: "Regular",
  6024. height: math.unit(20, "earths"),
  6025. default: true
  6026. },
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(2.2, "solarradii")
  6030. },
  6031. {
  6032. name: "Teramacro",
  6033. height: math.unit(1.2, "galaxies")
  6034. },
  6035. {
  6036. name: "Omegamacro",
  6037. height: math.unit(200, "universes")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(6 + 1 / 6, "feet"),
  6046. weight: math.unit(178, "lbs"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/guy/front.svg"
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(6 + 1 / 6, "feet"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Large",
  6061. height: math.unit(25 + 7 / 12, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(60 + 9 / 12, "feet")
  6066. },
  6067. {
  6068. name: "Macro+",
  6069. height: math.unit(246, "feet")
  6070. },
  6071. {
  6072. name: "Macro++",
  6073. height: math.unit(878, "feet")
  6074. }
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(9, "feet"),
  6082. weight: math.unit(800, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/tiberius/front.svg",
  6086. extra: 2295 / 2071
  6087. }
  6088. },
  6089. back: {
  6090. height: math.unit(9, "feet"),
  6091. weight: math.unit(800, "lbs"),
  6092. name: "Back",
  6093. image: {
  6094. source: "./media/characters/tiberius/back.svg",
  6095. extra: 2373 / 2160
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(9, "feet"),
  6103. default: true
  6104. }
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6109. {
  6110. front: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(600, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/surgo/front.svg",
  6116. extra: 3591 / 2227
  6117. }
  6118. },
  6119. back: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(600, "lbs"),
  6122. name: "Back",
  6123. image: {
  6124. source: "./media/characters/surgo/back.svg",
  6125. extra: 3557 / 2228
  6126. }
  6127. },
  6128. laying: {
  6129. height: math.unit(6 * 0.85, "feet"),
  6130. weight: math.unit(600, "lbs"),
  6131. name: "Laying",
  6132. image: {
  6133. source: "./media/characters/surgo/laying.svg"
  6134. }
  6135. },
  6136. },
  6137. [
  6138. {
  6139. name: "Normal",
  6140. height: math.unit(6, "feet"),
  6141. default: true
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6147. {
  6148. side: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(150, "lbs"),
  6151. name: "Side",
  6152. image: {
  6153. source: "./media/characters/cibus/side.svg",
  6154. extra: 800 / 400
  6155. }
  6156. },
  6157. },
  6158. [
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(6, "feet"),
  6162. default: true
  6163. }
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6168. {
  6169. front: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(240, "lbs"),
  6172. name: "Front",
  6173. image: {
  6174. source: "./media/characters/nibbles/front.svg"
  6175. }
  6176. },
  6177. side: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(240, "lbs"),
  6180. name: "Side",
  6181. image: {
  6182. source: "./media/characters/nibbles/side.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(9, "feet"),
  6190. default: true
  6191. }
  6192. ]
  6193. ))
  6194. characterMakers.push(() => makeCharacter(
  6195. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6196. {
  6197. side: {
  6198. height: math.unit(5 + 1 / 6, "feet"),
  6199. weight: math.unit(130, "lbs"),
  6200. name: "Side",
  6201. image: {
  6202. source: "./media/characters/rikky/side.svg",
  6203. extra: 851 / 801
  6204. }
  6205. },
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(5 + 1 / 6, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(152, "feet"),
  6215. default: true
  6216. },
  6217. {
  6218. name: "Megamacro",
  6219. height: math.unit(7, "miles")
  6220. }
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6225. {
  6226. side: {
  6227. height: math.unit(370, "cm"),
  6228. weight: math.unit(350, "lbs"),
  6229. name: "Side",
  6230. image: {
  6231. source: "./media/characters/malfressa/side.svg"
  6232. }
  6233. },
  6234. walking: {
  6235. height: math.unit(370, "cm"),
  6236. weight: math.unit(350, "lbs"),
  6237. name: "Walking",
  6238. image: {
  6239. source: "./media/characters/malfressa/walking.svg"
  6240. }
  6241. },
  6242. feral: {
  6243. height: math.unit(2500, "cm"),
  6244. weight: math.unit(100000, "lbs"),
  6245. name: "Feral",
  6246. image: {
  6247. source: "./media/characters/malfressa/feral.svg",
  6248. extra: 2108 / 837,
  6249. bottom: 0.02
  6250. }
  6251. },
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(370, "cm")
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(300, "meters"),
  6261. default: true
  6262. }
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6267. {
  6268. front: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(60, "kg"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/jaro/front.svg"
  6274. }
  6275. },
  6276. back: {
  6277. height: math.unit(6, "feet"),
  6278. weight: math.unit(60, "kg"),
  6279. name: "Back",
  6280. image: {
  6281. source: "./media/characters/jaro/back.svg"
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Micro",
  6288. height: math.unit(7, "inches")
  6289. },
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(5.5, "feet"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Minimacro",
  6297. height: math.unit(20, "feet")
  6298. },
  6299. {
  6300. name: "Macro",
  6301. height: math.unit(200, "meters")
  6302. }
  6303. ]
  6304. ))
  6305. characterMakers.push(() => makeCharacter(
  6306. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6307. {
  6308. front: {
  6309. height: math.unit(6, "feet"),
  6310. weight: math.unit(195, "lb"),
  6311. name: "Front",
  6312. image: {
  6313. source: "./media/characters/rogue/front.svg"
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(90, "feet"),
  6321. default: true
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(5 + 8 / 12, "feet"),
  6330. weight: math.unit(140, "lb"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/piper/front.svg",
  6334. extra: 3948/3655,
  6335. bottom: 0/3948
  6336. }
  6337. },
  6338. },
  6339. [
  6340. {
  6341. name: "Micro",
  6342. height: math.unit(2, "inches")
  6343. },
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(5 + 8 / 12, "feet")
  6347. },
  6348. {
  6349. name: "Macro",
  6350. height: math.unit(250, "feet"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Megamacro",
  6355. height: math.unit(7, "miles")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6361. {
  6362. front: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(220, "lb"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/gemini/front.svg"
  6368. }
  6369. },
  6370. back: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(220, "lb"),
  6373. name: "Back",
  6374. image: {
  6375. source: "./media/characters/gemini/back.svg"
  6376. }
  6377. },
  6378. kneeling: {
  6379. height: math.unit(6 / 1.5, "feet"),
  6380. weight: math.unit(220, "lb"),
  6381. name: "Kneeling",
  6382. image: {
  6383. source: "./media/characters/gemini/kneeling.svg",
  6384. bottom: 0.02
  6385. }
  6386. },
  6387. },
  6388. [
  6389. {
  6390. name: "Macro",
  6391. height: math.unit(300, "meters"),
  6392. default: true
  6393. },
  6394. {
  6395. name: "Megamacro",
  6396. height: math.unit(6900, "meters")
  6397. },
  6398. ]
  6399. ))
  6400. characterMakers.push(() => makeCharacter(
  6401. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6402. {
  6403. anthro: {
  6404. height: math.unit(2.35, "meters"),
  6405. weight: math.unit(73, "kg"),
  6406. name: "Anthro",
  6407. image: {
  6408. source: "./media/characters/alicia/anthro.svg",
  6409. extra: 2571 / 2385,
  6410. bottom: 75 / 2648
  6411. }
  6412. },
  6413. paw: {
  6414. height: math.unit(1.32, "feet"),
  6415. name: "Paw",
  6416. image: {
  6417. source: "./media/characters/alicia/paw.svg"
  6418. }
  6419. },
  6420. feral: {
  6421. height: math.unit(1.69, "meters"),
  6422. weight: math.unit(73, "kg"),
  6423. name: "Feral",
  6424. image: {
  6425. source: "./media/characters/alicia/feral.svg",
  6426. extra: 2123 / 1715,
  6427. bottom: 222 / 2349
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(2.35, "meters")
  6435. },
  6436. {
  6437. name: "Macro",
  6438. height: math.unit(60, "meters"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(10000, "kilometers")
  6444. },
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(7, "feet"),
  6452. weight: math.unit(250, "lbs"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/archy/front.svg"
  6456. }
  6457. }
  6458. },
  6459. [
  6460. {
  6461. name: "Micro",
  6462. height: math.unit(1, "inch")
  6463. },
  6464. {
  6465. name: "Shorty",
  6466. height: math.unit(5, "feet")
  6467. },
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(7, "feet")
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(600, "meters"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Megamacro",
  6479. height: math.unit(1, "mile")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(1.65, "meters"),
  6488. weight: math.unit(74, "kg"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/berri/front.svg",
  6492. extra: 857 / 837,
  6493. bottom: 18 / 877
  6494. }
  6495. },
  6496. bum: {
  6497. height: math.unit(1.46, "feet"),
  6498. name: "Bum",
  6499. image: {
  6500. source: "./media/characters/berri/bum.svg"
  6501. }
  6502. },
  6503. mouth: {
  6504. height: math.unit(0.44, "feet"),
  6505. name: "Mouth",
  6506. image: {
  6507. source: "./media/characters/berri/mouth.svg"
  6508. }
  6509. },
  6510. paw: {
  6511. height: math.unit(0.826, "feet"),
  6512. name: "Paw",
  6513. image: {
  6514. source: "./media/characters/berri/paw.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(1.65, "meters")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(60, "m"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Megamacro",
  6530. height: math.unit(9.213, "km")
  6531. },
  6532. {
  6533. name: "Planet Eater",
  6534. height: math.unit(489, "megameters")
  6535. },
  6536. {
  6537. name: "Teramacro",
  6538. height: math.unit(2471635000000, "meters")
  6539. },
  6540. {
  6541. name: "Examacro",
  6542. height: math.unit(8.0624e+26, "meters")
  6543. }
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(1.72, "meters"),
  6551. weight: math.unit(68, "kg"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/lexi/front.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Very Smol",
  6561. height: math.unit(10, "mm")
  6562. },
  6563. {
  6564. name: "Micro",
  6565. height: math.unit(6.8, "cm"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(1.72, "m")
  6571. }
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(1.69, "meters"),
  6579. weight: math.unit(68, "kg"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/martin/front.svg",
  6583. extra: 596 / 581
  6584. }
  6585. }
  6586. },
  6587. [
  6588. {
  6589. name: "Micro",
  6590. height: math.unit(6.85, "cm"),
  6591. default: true
  6592. },
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(1.69, "m")
  6596. }
  6597. ]
  6598. ))
  6599. characterMakers.push(() => makeCharacter(
  6600. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6601. {
  6602. front: {
  6603. height: math.unit(1.69, "meters"),
  6604. weight: math.unit(68, "kg"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/juno/front.svg"
  6608. }
  6609. }
  6610. },
  6611. [
  6612. {
  6613. name: "Micro",
  6614. height: math.unit(7, "cm")
  6615. },
  6616. {
  6617. name: "Normal",
  6618. height: math.unit(1.89, "m")
  6619. },
  6620. {
  6621. name: "Macro",
  6622. height: math.unit(353, "meters"),
  6623. default: true
  6624. }
  6625. ]
  6626. ))
  6627. characterMakers.push(() => makeCharacter(
  6628. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6629. {
  6630. front: {
  6631. height: math.unit(1.93, "meters"),
  6632. weight: math.unit(83, "kg"),
  6633. name: "Front",
  6634. image: {
  6635. source: "./media/characters/samantha/front.svg"
  6636. }
  6637. },
  6638. frontClothed: {
  6639. height: math.unit(1.93, "meters"),
  6640. weight: math.unit(83, "kg"),
  6641. name: "Front (Clothed)",
  6642. image: {
  6643. source: "./media/characters/samantha/front-clothed.svg"
  6644. }
  6645. },
  6646. back: {
  6647. height: math.unit(1.93, "meters"),
  6648. weight: math.unit(83, "kg"),
  6649. name: "Back",
  6650. image: {
  6651. source: "./media/characters/samantha/back.svg"
  6652. }
  6653. },
  6654. },
  6655. [
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(1.93, "m")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(74, "meters"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Macro+",
  6667. height: math.unit(223, "meters"),
  6668. },
  6669. {
  6670. name: "Megamacro",
  6671. height: math.unit(8381, "meters"),
  6672. },
  6673. {
  6674. name: "Megamacro+",
  6675. height: math.unit(12000, "kilometers")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(1.92, "meters"),
  6684. weight: math.unit(80, "kg"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/dr-clay/front.svg"
  6688. }
  6689. },
  6690. frontClothed: {
  6691. height: math.unit(1.92, "meters"),
  6692. weight: math.unit(80, "kg"),
  6693. name: "Front (Clothed)",
  6694. image: {
  6695. source: "./media/characters/dr-clay/front-clothed.svg"
  6696. }
  6697. }
  6698. },
  6699. [
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(1.92, "m")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(214, "meters"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Macro+",
  6711. height: math.unit(12.237, "meters"),
  6712. },
  6713. {
  6714. name: "Megamacro",
  6715. height: math.unit(557, "megameters"),
  6716. },
  6717. {
  6718. name: "Unimaginable",
  6719. height: math.unit(120e9, "lightyears")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(2, "meters"),
  6728. weight: math.unit(80, "kg"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6732. }
  6733. }
  6734. },
  6735. [
  6736. {
  6737. name: "Teramacro",
  6738. height: math.unit(500000, "lightyears"),
  6739. default: true
  6740. },
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6745. {
  6746. crux: {
  6747. height: math.unit(2, "meters"),
  6748. weight: math.unit(150, "kg"),
  6749. name: "Crux",
  6750. image: {
  6751. source: "./media/characters/vemus/crux.svg",
  6752. extra: 1074/936,
  6753. bottom: 23/1097
  6754. }
  6755. },
  6756. skunkTanuki: {
  6757. height: math.unit(2, "meters"),
  6758. weight: math.unit(150, "kg"),
  6759. name: "Skunk-Tanuki",
  6760. image: {
  6761. source: "./media/characters/vemus/skunk-tanuki.svg",
  6762. extra: 926/893,
  6763. bottom: 20/946
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(3.75, "meters"),
  6771. default: true
  6772. },
  6773. {
  6774. name: "Big",
  6775. height: math.unit(8, "meters")
  6776. },
  6777. {
  6778. name: "Macro",
  6779. height: math.unit(100, "meters")
  6780. },
  6781. {
  6782. name: "Macro+",
  6783. height: math.unit(1500, "meters")
  6784. },
  6785. {
  6786. name: "Stellar",
  6787. height: math.unit(14e8, "meters")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(2, "meters"),
  6796. weight: math.unit(70, "kg"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/beherit/front.svg",
  6800. extra: 1408 / 1242
  6801. }
  6802. }
  6803. },
  6804. [
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(6, "feet")
  6808. },
  6809. {
  6810. name: "Lorg",
  6811. height: math.unit(25, "feet"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Lorger",
  6816. height: math.unit(75, "feet")
  6817. },
  6818. {
  6819. name: "Macro",
  6820. height: math.unit(200, "meters")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(2, "meters"),
  6829. weight: math.unit(150, "kg"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/everett/front.svg",
  6833. extra: 2038 / 1737,
  6834. bottom: 0.03
  6835. }
  6836. },
  6837. paw: {
  6838. height: math.unit(2 / 3.6, "meters"),
  6839. name: "Paw",
  6840. image: {
  6841. source: "./media/characters/everett/paw.svg"
  6842. }
  6843. },
  6844. },
  6845. [
  6846. {
  6847. name: "Normal",
  6848. height: math.unit(15, "feet"),
  6849. default: true
  6850. },
  6851. {
  6852. name: "Lorg",
  6853. height: math.unit(70, "feet"),
  6854. default: true
  6855. },
  6856. {
  6857. name: "Lorger",
  6858. height: math.unit(250, "feet")
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(500, "meters")
  6863. },
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(2, "meters"),
  6871. weight: math.unit(86, "kg"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/rose/front.svg",
  6875. extra: 1785/1636,
  6876. bottom: 30/1815
  6877. }
  6878. },
  6879. frontSporty: {
  6880. height: math.unit(2, "meters"),
  6881. weight: math.unit(86, "kg"),
  6882. name: "Front (Sporty)",
  6883. image: {
  6884. source: "./media/characters/rose/front-sporty.svg",
  6885. extra: 350/335,
  6886. bottom: 10/360
  6887. }
  6888. },
  6889. frontAlt: {
  6890. height: math.unit(1.6, "meters"),
  6891. weight: math.unit(86, "kg"),
  6892. name: "Front (Alt)",
  6893. image: {
  6894. source: "./media/characters/rose/front-alt.svg",
  6895. extra: 299/283,
  6896. bottom: 3/302
  6897. }
  6898. },
  6899. plush: {
  6900. height: math.unit(2, "meters"),
  6901. weight: math.unit(86/3, "kg"),
  6902. name: "Plush",
  6903. image: {
  6904. source: "./media/characters/rose/plush.svg",
  6905. extra: 361/337,
  6906. bottom: 11/372
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "True Micro",
  6913. height: math.unit(9, "cm")
  6914. },
  6915. {
  6916. name: "Micro",
  6917. height: math.unit(16, "cm")
  6918. },
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(1.85, "meters"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Mini-Macro",
  6926. height: math.unit(5, "meters")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(15, "meters")
  6931. },
  6932. {
  6933. name: "True Macro",
  6934. height: math.unit(40, "meters")
  6935. },
  6936. {
  6937. name: "City Scale",
  6938. height: math.unit(1, "km")
  6939. },
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6944. {
  6945. front: {
  6946. height: math.unit(2, "meters"),
  6947. weight: math.unit(350, "lbs"),
  6948. name: "Front",
  6949. image: {
  6950. source: "./media/characters/regal/front.svg"
  6951. }
  6952. },
  6953. back: {
  6954. height: math.unit(2, "meters"),
  6955. weight: math.unit(350, "lbs"),
  6956. name: "Back",
  6957. image: {
  6958. source: "./media/characters/regal/back.svg"
  6959. }
  6960. },
  6961. },
  6962. [
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(350, "feet"),
  6966. default: true
  6967. }
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6972. {
  6973. front: {
  6974. height: math.unit(4 + 11 / 12, "feet"),
  6975. weight: math.unit(100, "lbs"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/opal/front.svg"
  6979. }
  6980. },
  6981. frontAlt: {
  6982. height: math.unit(4 + 11 / 12, "feet"),
  6983. weight: math.unit(100, "lbs"),
  6984. name: "Front (Alt)",
  6985. image: {
  6986. source: "./media/characters/opal/front-alt.svg"
  6987. }
  6988. },
  6989. },
  6990. [
  6991. {
  6992. name: "Small",
  6993. height: math.unit(4 + 11 / 12, "feet")
  6994. },
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(20, "feet"),
  6998. default: true
  6999. },
  7000. {
  7001. name: "Macro",
  7002. height: math.unit(120, "feet")
  7003. },
  7004. {
  7005. name: "Megamacro",
  7006. height: math.unit(80, "miles")
  7007. },
  7008. {
  7009. name: "True Size",
  7010. height: math.unit(100000, "lightyears")
  7011. },
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7016. {
  7017. front: {
  7018. height: math.unit(6, "feet"),
  7019. weight: math.unit(200, "lbs"),
  7020. name: "Front",
  7021. image: {
  7022. source: "./media/characters/vector-wuff/front.svg"
  7023. }
  7024. }
  7025. },
  7026. [
  7027. {
  7028. name: "Normal",
  7029. height: math.unit(2.8, "meters")
  7030. },
  7031. {
  7032. name: "Macro",
  7033. height: math.unit(450, "meters"),
  7034. default: true
  7035. },
  7036. {
  7037. name: "Megamacro",
  7038. height: math.unit(15, "kilometers")
  7039. }
  7040. ]
  7041. ))
  7042. characterMakers.push(() => makeCharacter(
  7043. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7044. {
  7045. front: {
  7046. height: math.unit(6, "feet"),
  7047. weight: math.unit(256, "lbs"),
  7048. name: "Front",
  7049. image: {
  7050. source: "./media/characters/dannik/front.svg"
  7051. }
  7052. }
  7053. },
  7054. [
  7055. {
  7056. name: "Macro",
  7057. height: math.unit(69.57, "meters"),
  7058. default: true
  7059. },
  7060. ]
  7061. ))
  7062. characterMakers.push(() => makeCharacter(
  7063. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7064. {
  7065. front: {
  7066. height: math.unit(6, "feet"),
  7067. weight: math.unit(120, "lbs"),
  7068. name: "Front",
  7069. image: {
  7070. source: "./media/characters/azura-saharah/front.svg"
  7071. }
  7072. },
  7073. back: {
  7074. height: math.unit(6, "feet"),
  7075. weight: math.unit(120, "lbs"),
  7076. name: "Back",
  7077. image: {
  7078. source: "./media/characters/azura-saharah/back.svg"
  7079. }
  7080. },
  7081. },
  7082. [
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(100, "feet"),
  7086. default: true
  7087. },
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7092. {
  7093. side: {
  7094. height: math.unit(5 + 4 / 12, "feet"),
  7095. weight: math.unit(163, "lbs"),
  7096. name: "Side",
  7097. image: {
  7098. source: "./media/characters/kennedy/side.svg"
  7099. }
  7100. }
  7101. },
  7102. [
  7103. {
  7104. name: "Standard Doggo",
  7105. height: math.unit(5 + 4 / 12, "feet")
  7106. },
  7107. {
  7108. name: "Big Doggo",
  7109. height: math.unit(25 + 3 / 12, "feet"),
  7110. default: true
  7111. },
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7116. {
  7117. front: {
  7118. height: math.unit(5 + 5/12, "feet"),
  7119. weight: math.unit(100, "lbs"),
  7120. name: "Front",
  7121. image: {
  7122. source: "./media/characters/odios-de-lunar/front.svg",
  7123. extra: 1468/1323,
  7124. bottom: 22/1490
  7125. }
  7126. }
  7127. },
  7128. [
  7129. {
  7130. name: "Micro",
  7131. height: math.unit(3, "inches")
  7132. },
  7133. {
  7134. name: "Normal",
  7135. height: math.unit(5.5, "feet"),
  7136. default: true
  7137. },
  7138. {
  7139. name: "Macro",
  7140. height: math.unit(100, "feet")
  7141. },
  7142. ]
  7143. ))
  7144. characterMakers.push(() => makeCharacter(
  7145. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7146. {
  7147. back: {
  7148. height: math.unit(6, "feet"),
  7149. weight: math.unit(220, "lbs"),
  7150. name: "Back",
  7151. image: {
  7152. source: "./media/characters/mandake/back.svg"
  7153. }
  7154. }
  7155. },
  7156. [
  7157. {
  7158. name: "Normal",
  7159. height: math.unit(7, "feet"),
  7160. default: true
  7161. },
  7162. {
  7163. name: "Macro",
  7164. height: math.unit(78, "feet")
  7165. },
  7166. {
  7167. name: "Macro+",
  7168. height: math.unit(300, "meters")
  7169. },
  7170. {
  7171. name: "Macro++",
  7172. height: math.unit(2400, "feet")
  7173. },
  7174. {
  7175. name: "Megamacro",
  7176. height: math.unit(5167, "meters")
  7177. },
  7178. {
  7179. name: "Gigamacro",
  7180. height: math.unit(41769, "miles")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(120, "lbs"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/yozey/front.svg"
  7193. }
  7194. },
  7195. frontAlt: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(120, "lbs"),
  7198. name: "Front (Alt)",
  7199. image: {
  7200. source: "./media/characters/yozey/front-alt.svg"
  7201. }
  7202. },
  7203. side: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(120, "lbs"),
  7206. name: "Side",
  7207. image: {
  7208. source: "./media/characters/yozey/side.svg"
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Micro",
  7215. height: math.unit(3, "inches"),
  7216. default: true
  7217. },
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(6, "feet")
  7221. }
  7222. ]
  7223. ))
  7224. characterMakers.push(() => makeCharacter(
  7225. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7226. {
  7227. front: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(103, "lbs"),
  7230. name: "Front",
  7231. image: {
  7232. source: "./media/characters/valeska-voss/front.svg"
  7233. }
  7234. }
  7235. },
  7236. [
  7237. {
  7238. name: "Mini-Sized Sub",
  7239. height: math.unit(3.1, "inches")
  7240. },
  7241. {
  7242. name: "Mid-Sized Sub",
  7243. height: math.unit(6.2, "inches")
  7244. },
  7245. {
  7246. name: "Full-Sized Sub",
  7247. height: math.unit(9.3, "inches")
  7248. },
  7249. {
  7250. name: "Normal",
  7251. height: math.unit(5 + 2 / 12, "foot"),
  7252. default: true
  7253. },
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7258. {
  7259. front: {
  7260. height: math.unit(6, "feet"),
  7261. weight: math.unit(160, "lbs"),
  7262. name: "Front",
  7263. image: {
  7264. source: "./media/characters/gene-zeta/front.svg",
  7265. extra: 3006 / 2826,
  7266. bottom: 182 / 3188
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Micro",
  7273. height: math.unit(6, "inches")
  7274. },
  7275. {
  7276. name: "Normal",
  7277. height: math.unit(5 + 11 / 12, "foot"),
  7278. default: true
  7279. },
  7280. {
  7281. name: "Macro",
  7282. height: math.unit(140, "feet")
  7283. },
  7284. {
  7285. name: "Supercharged",
  7286. height: math.unit(2500, "feet")
  7287. },
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7292. {
  7293. front: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(350, "lbs"),
  7296. name: "Front",
  7297. image: {
  7298. source: "./media/characters/razinox/front.svg",
  7299. extra: 1686 / 1548,
  7300. bottom: 28.2 / 1868
  7301. }
  7302. },
  7303. back: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(350, "lbs"),
  7306. name: "Back",
  7307. image: {
  7308. source: "./media/characters/razinox/back.svg",
  7309. extra: 1660 / 1590,
  7310. bottom: 15 / 1665
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(10 + 8 / 12, "foot")
  7318. },
  7319. {
  7320. name: "Minimacro",
  7321. height: math.unit(15, "foot")
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(60, "foot"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Megamacro",
  7330. height: math.unit(5, "miles")
  7331. },
  7332. {
  7333. name: "Gigamacro",
  7334. height: math.unit(6000, "miles")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(150, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/cobalt/front.svg"
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(8 + 1 / 12, "foot")
  7354. },
  7355. {
  7356. name: "Macro",
  7357. height: math.unit(111, "foot"),
  7358. default: true
  7359. },
  7360. {
  7361. name: "Supracosmic",
  7362. height: math.unit(1e42, "feet")
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7368. {
  7369. front: {
  7370. height: math.unit(6, "feet"),
  7371. weight: math.unit(140, "lbs"),
  7372. name: "Front",
  7373. image: {
  7374. source: "./media/characters/amanda/front.svg"
  7375. }
  7376. }
  7377. },
  7378. [
  7379. {
  7380. name: "Micro",
  7381. height: math.unit(5, "inches"),
  7382. default: true
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7388. {
  7389. front: {
  7390. height: math.unit(2.75, "meters"),
  7391. weight: math.unit(1200, "lb"),
  7392. name: "Front",
  7393. image: {
  7394. source: "./media/characters/teal/front.svg",
  7395. extra: 2463 / 2320,
  7396. bottom: 166 / 2629
  7397. }
  7398. },
  7399. back: {
  7400. height: math.unit(2.75, "meters"),
  7401. weight: math.unit(1200, "lb"),
  7402. name: "Back",
  7403. image: {
  7404. source: "./media/characters/teal/back.svg",
  7405. extra: 2580 / 2489,
  7406. bottom: 151 / 2731
  7407. }
  7408. },
  7409. sitting: {
  7410. height: math.unit(1.9, "meters"),
  7411. weight: math.unit(1200, "lb"),
  7412. name: "Sitting",
  7413. image: {
  7414. source: "./media/characters/teal/sitting.svg",
  7415. extra: 623 / 590,
  7416. bottom: 121 / 744
  7417. }
  7418. },
  7419. standing: {
  7420. height: math.unit(2.75, "meters"),
  7421. weight: math.unit(1200, "lb"),
  7422. name: "Standing",
  7423. image: {
  7424. source: "./media/characters/teal/standing.svg",
  7425. extra: 923 / 893,
  7426. bottom: 60 / 983
  7427. }
  7428. },
  7429. stretching: {
  7430. height: math.unit(3.65, "meters"),
  7431. weight: math.unit(1200, "lb"),
  7432. name: "Stretching",
  7433. image: {
  7434. source: "./media/characters/teal/stretching.svg",
  7435. extra: 1276 / 1244,
  7436. bottom: 0 / 1276
  7437. }
  7438. },
  7439. legged: {
  7440. height: math.unit(1.3, "meters"),
  7441. weight: math.unit(100, "lb"),
  7442. name: "Legged",
  7443. image: {
  7444. source: "./media/characters/teal/legged.svg",
  7445. extra: 462 / 437,
  7446. bottom: 24 / 486
  7447. }
  7448. },
  7449. naga: {
  7450. height: math.unit(5.4, "meters"),
  7451. weight: math.unit(4000, "lb"),
  7452. name: "Naga",
  7453. image: {
  7454. source: "./media/characters/teal/naga.svg",
  7455. extra: 1902 / 1858,
  7456. bottom: 0 / 1902
  7457. }
  7458. },
  7459. hand: {
  7460. height: math.unit(0.52, "meters"),
  7461. name: "Hand",
  7462. image: {
  7463. source: "./media/characters/teal/hand.svg"
  7464. }
  7465. },
  7466. maw: {
  7467. height: math.unit(0.43, "meters"),
  7468. name: "Maw",
  7469. image: {
  7470. source: "./media/characters/teal/maw.svg"
  7471. }
  7472. },
  7473. slit: {
  7474. height: math.unit(0.25, "meters"),
  7475. name: "Slit",
  7476. image: {
  7477. source: "./media/characters/teal/slit.svg"
  7478. }
  7479. },
  7480. },
  7481. [
  7482. {
  7483. name: "Normal",
  7484. height: math.unit(2.75, "meters"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(300, "feet")
  7490. },
  7491. {
  7492. name: "Macro+",
  7493. height: math.unit(2000, "feet")
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7499. {
  7500. frontCat: {
  7501. height: math.unit(6, "feet"),
  7502. weight: math.unit(180, "lbs"),
  7503. name: "Front (Cat)",
  7504. image: {
  7505. source: "./media/characters/ravin-amulet/front-cat.svg"
  7506. }
  7507. },
  7508. frontCatAlt: {
  7509. height: math.unit(6, "feet"),
  7510. weight: math.unit(180, "lbs"),
  7511. name: "Front (Alt, Cat)",
  7512. image: {
  7513. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7514. }
  7515. },
  7516. frontWerewolf: {
  7517. height: math.unit(6 * 1.2, "feet"),
  7518. weight: math.unit(225, "lbs"),
  7519. name: "Front (Werewolf)",
  7520. image: {
  7521. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7522. }
  7523. },
  7524. backWerewolf: {
  7525. height: math.unit(6 * 1.2, "feet"),
  7526. weight: math.unit(225, "lbs"),
  7527. name: "Back (Werewolf)",
  7528. image: {
  7529. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Nano",
  7536. height: math.unit(1, "micrometer")
  7537. },
  7538. {
  7539. name: "Micro",
  7540. height: math.unit(1, "inch")
  7541. },
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(6, "feet"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(60, "feet")
  7550. }
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(6, "feet"),
  7558. weight: math.unit(165, "lbs"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/fluoresce/front.svg"
  7562. }
  7563. }
  7564. },
  7565. [
  7566. {
  7567. name: "Micro",
  7568. height: math.unit(6, "cm")
  7569. },
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(5 + 7 / 12, "feet"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Macro",
  7577. height: math.unit(56, "feet")
  7578. },
  7579. {
  7580. name: "Megamacro",
  7581. height: math.unit(1.9, "miles")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(9 + 6 / 12, "feet"),
  7590. weight: math.unit(523, "lbs"),
  7591. name: "Side",
  7592. image: {
  7593. source: "./media/characters/aurora/side.svg"
  7594. }
  7595. }
  7596. },
  7597. [
  7598. {
  7599. name: "Normal",
  7600. height: math.unit(9 + 6 / 12, "feet")
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(96, "feet"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Macro+",
  7609. height: math.unit(243, "feet")
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7615. {
  7616. front: {
  7617. height: math.unit(194, "cm"),
  7618. weight: math.unit(90, "kg"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/ranek/front.svg"
  7622. }
  7623. },
  7624. side: {
  7625. height: math.unit(194, "cm"),
  7626. weight: math.unit(90, "kg"),
  7627. name: "Side",
  7628. image: {
  7629. source: "./media/characters/ranek/side.svg"
  7630. }
  7631. },
  7632. back: {
  7633. height: math.unit(194, "cm"),
  7634. weight: math.unit(90, "kg"),
  7635. name: "Back",
  7636. image: {
  7637. source: "./media/characters/ranek/back.svg"
  7638. }
  7639. },
  7640. feral: {
  7641. height: math.unit(30, "cm"),
  7642. weight: math.unit(1.6, "lbs"),
  7643. name: "Feral",
  7644. image: {
  7645. source: "./media/characters/ranek/feral.svg"
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(194, "cm"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(100, "meters")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(5 + 6 / 12, "feet"),
  7666. weight: math.unit(153, "lbs"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/andrew-cooper/front.svg"
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Nano",
  7676. height: math.unit(1, "mm")
  7677. },
  7678. {
  7679. name: "Micro",
  7680. height: math.unit(2, "inches")
  7681. },
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(5 + 6 / 12, "feet"),
  7685. default: true
  7686. }
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(180, "lbs"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/akane-sato/front.svg",
  7698. extra: 1219 / 1140
  7699. }
  7700. },
  7701. back: {
  7702. height: math.unit(6, "feet"),
  7703. weight: math.unit(180, "lbs"),
  7704. name: "Back",
  7705. image: {
  7706. source: "./media/characters/akane-sato/back.svg",
  7707. extra: 1219 / 1170
  7708. }
  7709. },
  7710. },
  7711. [
  7712. {
  7713. name: "Normal",
  7714. height: math.unit(2.5, "meters")
  7715. },
  7716. {
  7717. name: "Macro",
  7718. height: math.unit(250, "meters"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Megamacro",
  7723. height: math.unit(25, "km")
  7724. },
  7725. ]
  7726. ))
  7727. characterMakers.push(() => makeCharacter(
  7728. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7729. {
  7730. front: {
  7731. height: math.unit(6, "feet"),
  7732. weight: math.unit(65, "kg"),
  7733. name: "Front",
  7734. image: {
  7735. source: "./media/characters/rook/front.svg",
  7736. extra: 960 / 950
  7737. }
  7738. }
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(8.8, "feet")
  7744. },
  7745. {
  7746. name: "Macro",
  7747. height: math.unit(88, "feet"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Megamacro",
  7752. height: math.unit(8, "miles")
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(12 + 2 / 12, "feet"),
  7761. weight: math.unit(808, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/prodigy/front.svg"
  7765. }
  7766. }
  7767. },
  7768. [
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(12 + 2 / 12, "feet"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(143, "feet")
  7777. },
  7778. {
  7779. name: "Macro+",
  7780. height: math.unit(400, "feet")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(225, "lbs"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/daniel/front.svg"
  7793. }
  7794. },
  7795. leaning: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(225, "lbs"),
  7798. name: "Leaning",
  7799. image: {
  7800. source: "./media/characters/daniel/leaning.svg"
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(1000, "feet"),
  7808. default: true
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(6, "feet"),
  7817. weight: math.unit(88, "lbs"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/chiros/front.svg",
  7821. extra: 306 / 226
  7822. }
  7823. },
  7824. side: {
  7825. height: math.unit(6, "feet"),
  7826. weight: math.unit(88, "lbs"),
  7827. name: "Side",
  7828. image: {
  7829. source: "./media/characters/chiros/side.svg",
  7830. extra: 306 / 226
  7831. }
  7832. },
  7833. },
  7834. [
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(6, "cm"),
  7838. default: true
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7844. {
  7845. front: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(100, "lbs"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/selka/front.svg",
  7851. extra: 947 / 887
  7852. }
  7853. }
  7854. },
  7855. [
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(5, "cm"),
  7859. default: true
  7860. },
  7861. ]
  7862. ))
  7863. characterMakers.push(() => makeCharacter(
  7864. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7865. {
  7866. front: {
  7867. height: math.unit(8 + 3 / 12, "feet"),
  7868. weight: math.unit(424, "lbs"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/verin/front.svg",
  7872. extra: 1845 / 1550
  7873. }
  7874. },
  7875. frontArmored: {
  7876. height: math.unit(8 + 3 / 12, "feet"),
  7877. weight: math.unit(424, "lbs"),
  7878. name: "Front (Armored)",
  7879. image: {
  7880. source: "./media/characters/verin/front-armor.svg",
  7881. extra: 1845 / 1550,
  7882. bottom: 0.01
  7883. }
  7884. },
  7885. back: {
  7886. height: math.unit(8 + 3 / 12, "feet"),
  7887. weight: math.unit(424, "lbs"),
  7888. name: "Back",
  7889. image: {
  7890. source: "./media/characters/verin/back.svg",
  7891. bottom: 0.1,
  7892. extra: 1
  7893. }
  7894. },
  7895. foot: {
  7896. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7897. name: "Foot",
  7898. image: {
  7899. source: "./media/characters/verin/foot.svg"
  7900. }
  7901. },
  7902. },
  7903. [
  7904. {
  7905. name: "Normal",
  7906. height: math.unit(8 + 3 / 12, "feet")
  7907. },
  7908. {
  7909. name: "Minimacro",
  7910. height: math.unit(21, "feet"),
  7911. default: true
  7912. },
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(626, "feet")
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7921. {
  7922. front: {
  7923. height: math.unit(2.718, "meters"),
  7924. weight: math.unit(150, "lbs"),
  7925. name: "Front",
  7926. image: {
  7927. source: "./media/characters/sovrim-terraquian/front.svg"
  7928. }
  7929. },
  7930. back: {
  7931. height: math.unit(2.718, "meters"),
  7932. weight: math.unit(150, "lbs"),
  7933. name: "Back",
  7934. image: {
  7935. source: "./media/characters/sovrim-terraquian/back.svg"
  7936. }
  7937. }
  7938. },
  7939. [
  7940. {
  7941. name: "Micro",
  7942. height: math.unit(2, "inches")
  7943. },
  7944. {
  7945. name: "Small",
  7946. height: math.unit(1, "meter")
  7947. },
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(Math.E, "meters"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Macro",
  7955. height: math.unit(20, "meters")
  7956. },
  7957. {
  7958. name: "Macro+",
  7959. height: math.unit(400, "meters")
  7960. },
  7961. ]
  7962. ))
  7963. characterMakers.push(() => makeCharacter(
  7964. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7965. {
  7966. front: {
  7967. height: math.unit(7, "feet"),
  7968. weight: math.unit(489, "lbs"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/reece-silvermane/front.svg",
  7972. bottom: 0.02,
  7973. extra: 1
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(1.5, "miles"),
  7981. default: true
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(78, "kg"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/kane/front.svg",
  7994. extra: 978 / 899
  7995. }
  7996. },
  7997. },
  7998. [
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(2.1, "m"),
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(1, "km"),
  8006. default: true
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(200, "kg"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/tegon/front.svg",
  8019. bottom: 0.01,
  8020. extra: 1
  8021. }
  8022. },
  8023. },
  8024. [
  8025. {
  8026. name: "Micro",
  8027. height: math.unit(1, "inch")
  8028. },
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(6 + 3 / 12, "feet"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(300, "feet")
  8037. },
  8038. {
  8039. name: "Megamacro",
  8040. height: math.unit(69, "miles")
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8046. {
  8047. side: {
  8048. height: math.unit(6, "feet"),
  8049. weight: math.unit(2304, "lbs"),
  8050. name: "Side",
  8051. image: {
  8052. source: "./media/characters/arcturax/side.svg",
  8053. extra: 790 / 376,
  8054. bottom: 0.01
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Micro",
  8061. height: math.unit(2, "inch")
  8062. },
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(6, "feet")
  8066. },
  8067. {
  8068. name: "Macro",
  8069. height: math.unit(39, "feet"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Megamacro",
  8074. height: math.unit(7, "miles")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(6, "feet"),
  8083. weight: math.unit(50, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/sentri/front.svg",
  8087. extra: 1750 / 1570,
  8088. bottom: 0.025
  8089. }
  8090. },
  8091. frontAlt: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(50, "lbs"),
  8094. name: "Front (Alt)",
  8095. image: {
  8096. source: "./media/characters/sentri/front-alt.svg",
  8097. extra: 1750 / 1570,
  8098. bottom: 0.025
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Normal",
  8105. height: math.unit(15, "feet"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "Macro",
  8110. height: math.unit(2500, "feet")
  8111. }
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(5 + 8 / 12, "feet"),
  8119. weight: math.unit(130, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/corvin/front.svg",
  8123. extra: 1803 / 1629
  8124. }
  8125. },
  8126. frontShirt: {
  8127. height: math.unit(5 + 8 / 12, "feet"),
  8128. weight: math.unit(130, "lbs"),
  8129. name: "Front (Shirt)",
  8130. image: {
  8131. source: "./media/characters/corvin/front-shirt.svg",
  8132. extra: 1803 / 1629
  8133. }
  8134. },
  8135. frontPoncho: {
  8136. height: math.unit(5 + 8 / 12, "feet"),
  8137. weight: math.unit(130, "lbs"),
  8138. name: "Front (Poncho)",
  8139. image: {
  8140. source: "./media/characters/corvin/front-poncho.svg",
  8141. extra: 1803 / 1629
  8142. }
  8143. },
  8144. side: {
  8145. height: math.unit(5 + 8 / 12, "feet"),
  8146. weight: math.unit(130, "lbs"),
  8147. name: "Side",
  8148. image: {
  8149. source: "./media/characters/corvin/side.svg",
  8150. extra: 1012 / 945
  8151. }
  8152. },
  8153. back: {
  8154. height: math.unit(5 + 8 / 12, "feet"),
  8155. weight: math.unit(130, "lbs"),
  8156. name: "Back",
  8157. image: {
  8158. source: "./media/characters/corvin/back.svg",
  8159. extra: 1803 / 1629
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(3, "inches")
  8167. },
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(5 + 8 / 12, "feet")
  8171. },
  8172. {
  8173. name: "Macro",
  8174. height: math.unit(300, "feet"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Megamacro",
  8179. height: math.unit(500, "miles")
  8180. }
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(135, "lbs"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/q/front.svg",
  8192. extra: 854 / 752,
  8193. bottom: 0.005
  8194. }
  8195. },
  8196. back: {
  8197. height: math.unit(6, "feet"),
  8198. weight: math.unit(130, "lbs"),
  8199. name: "Back",
  8200. image: {
  8201. source: "./media/characters/q/back.svg",
  8202. extra: 854 / 752
  8203. }
  8204. },
  8205. },
  8206. [
  8207. {
  8208. name: "Macro",
  8209. height: math.unit(90, "feet"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Extra Macro",
  8214. height: math.unit(300, "feet"),
  8215. },
  8216. {
  8217. name: "BIG WALF",
  8218. height: math.unit(750, "feet"),
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(6, "feet"),
  8227. weight: math.unit(150, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/carley/front.svg",
  8231. extra: 3927 / 3540,
  8232. bottom: 29.2 / 735
  8233. }
  8234. }
  8235. },
  8236. [
  8237. {
  8238. name: "Normal",
  8239. height: math.unit(6 + 3 / 12, "feet")
  8240. },
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(185, "feet"),
  8244. default: true
  8245. },
  8246. {
  8247. name: "Megamacro",
  8248. height: math.unit(8, "miles"),
  8249. },
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(3, "feet"),
  8257. weight: math.unit(28, "lbs"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/citrine/front.svg"
  8261. }
  8262. }
  8263. },
  8264. [
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(3, "feet"),
  8268. default: true
  8269. }
  8270. ]
  8271. ))
  8272. characterMakers.push(() => makeCharacter(
  8273. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8274. {
  8275. front: {
  8276. height: math.unit(14, "feet"),
  8277. weight: math.unit(1450, "kg"),
  8278. capacity: math.unit(15, "people"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/aura-starwind/front.svg",
  8282. extra: 1440/1327,
  8283. bottom: 11/1451
  8284. }
  8285. },
  8286. side: {
  8287. height: math.unit(14, "feet"),
  8288. weight: math.unit(1450, "kg"),
  8289. capacity: math.unit(15, "people"),
  8290. name: "Side",
  8291. image: {
  8292. source: "./media/characters/aura-starwind/side.svg",
  8293. extra: 1654 / 1497
  8294. }
  8295. },
  8296. taur: {
  8297. height: math.unit(18, "feet"),
  8298. weight: math.unit(5500, "kg"),
  8299. capacity: math.unit(50, "people"),
  8300. name: "Taur",
  8301. image: {
  8302. source: "./media/characters/aura-starwind/taur.svg",
  8303. extra: 1760 / 1650
  8304. }
  8305. },
  8306. feral: {
  8307. height: math.unit(46, "feet"),
  8308. weight: math.unit(25000, "kg"),
  8309. capacity: math.unit(120, "people"),
  8310. name: "Feral",
  8311. image: {
  8312. source: "./media/characters/aura-starwind/feral.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(14, "feet"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(50, "meters")
  8325. },
  8326. {
  8327. name: "Megamacro",
  8328. height: math.unit(5000, "meters")
  8329. },
  8330. {
  8331. name: "Gigamacro",
  8332. height: math.unit(100000, "kilometers")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(2 + 7 / 12, "feet"),
  8341. weight: math.unit(32, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/rivet/front.svg",
  8345. extra: 1716 / 1658,
  8346. bottom: 0.03
  8347. }
  8348. },
  8349. foot: {
  8350. height: math.unit(0.551, "feet"),
  8351. name: "Rivet's Foot",
  8352. image: {
  8353. source: "./media/characters/rivet/foot.svg"
  8354. },
  8355. rename: true
  8356. }
  8357. },
  8358. [
  8359. {
  8360. name: "Micro",
  8361. height: math.unit(1.5, "inches"),
  8362. },
  8363. {
  8364. name: "Normal",
  8365. height: math.unit(2 + 7 / 12, "feet"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Macro",
  8370. height: math.unit(85, "feet")
  8371. },
  8372. {
  8373. name: "Megamacro",
  8374. height: math.unit(2.2, "km")
  8375. }
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(5 + 9 / 12, "feet"),
  8383. weight: math.unit(150, "lbs"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/coffee/front.svg",
  8387. extra: 3666 / 3032,
  8388. bottom: 0.04
  8389. }
  8390. },
  8391. foot: {
  8392. height: math.unit(1.29, "feet"),
  8393. name: "Foot",
  8394. image: {
  8395. source: "./media/characters/coffee/foot.svg"
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Micro",
  8402. height: math.unit(2, "inches"),
  8403. },
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(5 + 9 / 12, "feet"),
  8407. default: true
  8408. },
  8409. {
  8410. name: "Macro",
  8411. height: math.unit(800, "feet")
  8412. },
  8413. {
  8414. name: "Megamacro",
  8415. height: math.unit(25, "miles")
  8416. }
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(200, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/chari-gal/front.svg",
  8428. extra: 1568 / 1385,
  8429. bottom: 0.047
  8430. }
  8431. },
  8432. gigantamax: {
  8433. height: math.unit(6 * 16, "feet"),
  8434. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8435. name: "Gigantamax",
  8436. image: {
  8437. source: "./media/characters/chari-gal/gigantamax.svg",
  8438. extra: 1124 / 888,
  8439. bottom: 0.03
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(5 + 7 / 12, "feet")
  8447. },
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(200, "feet"),
  8451. default: true
  8452. }
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(150, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/nova/front.svg",
  8464. extra: 5000 / 4722,
  8465. bottom: 0.02
  8466. }
  8467. }
  8468. },
  8469. [
  8470. {
  8471. name: "Micro-",
  8472. height: math.unit(0.8, "inches")
  8473. },
  8474. {
  8475. name: "Micro",
  8476. height: math.unit(2, "inches"),
  8477. default: true
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(3 + 1 / 12, "feet"),
  8486. weight: math.unit(21.7, "lbs"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/argent/front.svg",
  8490. extra: 1471 / 1331,
  8491. bottom: 100.8 / 1575.5
  8492. }
  8493. }
  8494. },
  8495. [
  8496. {
  8497. name: "Micro",
  8498. height: math.unit(2, "inches")
  8499. },
  8500. {
  8501. name: "Normal",
  8502. height: math.unit(3 + 1 / 12, "feet"),
  8503. default: true
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(120, "feet")
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8513. {
  8514. lamp: {
  8515. height: math.unit(7 * 1559 / 989, "feet"),
  8516. name: "Magic Lamp",
  8517. image: {
  8518. source: "./media/characters/mira-al-cul/lamp.svg",
  8519. extra: 1617 / 1559
  8520. }
  8521. },
  8522. front: {
  8523. height: math.unit(7, "feet"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/mira-al-cul/front.svg",
  8527. extra: 1044 / 990
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Heavily Restricted",
  8534. height: math.unit(7 * 1559 / 989, "feet")
  8535. },
  8536. {
  8537. name: "Freshly Freed",
  8538. height: math.unit(50 * 1559 / 989, "feet")
  8539. },
  8540. {
  8541. name: "World Encompassing",
  8542. height: math.unit(10000 * 1559 / 989, "miles")
  8543. },
  8544. {
  8545. name: "Galactic",
  8546. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8547. },
  8548. {
  8549. name: "Palmed Universe",
  8550. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Multiversal Matriarch",
  8555. height: math.unit(8.87e10, "yottameters")
  8556. },
  8557. {
  8558. name: "Void Mother",
  8559. height: math.unit(3.14e110, "yottaparsecs")
  8560. },
  8561. {
  8562. name: "Toying with Transcendence",
  8563. height: math.unit(1e307, "meters")
  8564. },
  8565. ]
  8566. ))
  8567. characterMakers.push(() => makeCharacter(
  8568. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8569. {
  8570. front: {
  8571. height: math.unit(17 + 1 / 12, "feet"),
  8572. weight: math.unit(476.2 * 5, "lbs"),
  8573. name: "Front",
  8574. image: {
  8575. source: "./media/characters/kuro-shi-uchū/front.svg",
  8576. extra: 2329 / 1835,
  8577. bottom: 0.02
  8578. }
  8579. },
  8580. },
  8581. [
  8582. {
  8583. name: "Micro",
  8584. height: math.unit(2, "inches")
  8585. },
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(12, "meters")
  8589. },
  8590. {
  8591. name: "Planetary",
  8592. height: math.unit(0.00929, "AU"),
  8593. default: true
  8594. },
  8595. {
  8596. name: "Universal",
  8597. height: math.unit(20, "gigaparsecs")
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8603. {
  8604. front: {
  8605. height: math.unit(5 + 2 / 12, "feet"),
  8606. weight: math.unit(120, "lbs"),
  8607. name: "Front",
  8608. image: {
  8609. source: "./media/characters/katherine/front.svg",
  8610. extra: 2075 / 1969
  8611. }
  8612. },
  8613. dress: {
  8614. height: math.unit(5 + 2 / 12, "feet"),
  8615. weight: math.unit(120, "lbs"),
  8616. name: "Dress",
  8617. image: {
  8618. source: "./media/characters/katherine/dress.svg",
  8619. extra: 2258 / 2064
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Micro",
  8626. height: math.unit(1, "inches"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "Normal",
  8631. height: math.unit(5 + 2 / 12, "feet")
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(100, "meters")
  8636. },
  8637. {
  8638. name: "Megamacro",
  8639. height: math.unit(80, "miles")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(7 + 8 / 12, "feet"),
  8648. weight: math.unit(250, "lbs"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/yevis/front.svg",
  8652. extra: 1938 / 1755
  8653. }
  8654. }
  8655. },
  8656. [
  8657. {
  8658. name: "Mortal",
  8659. height: math.unit(7 + 8 / 12, "feet")
  8660. },
  8661. {
  8662. name: "Battle",
  8663. height: math.unit(25 + 11 / 12, "feet")
  8664. },
  8665. {
  8666. name: "Wrath",
  8667. height: math.unit(1654 + 11 / 12, "feet")
  8668. },
  8669. {
  8670. name: "Planet Destroyer",
  8671. height: math.unit(12000, "miles")
  8672. },
  8673. {
  8674. name: "Galaxy Conqueror",
  8675. height: math.unit(1.45, "zettameters"),
  8676. default: true
  8677. },
  8678. {
  8679. name: "Universal War",
  8680. height: math.unit(184, "gigaparsecs")
  8681. },
  8682. {
  8683. name: "Eternity War",
  8684. height: math.unit(1.98e55, "yottaparsecs")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(5 + 8 / 12, "feet"),
  8693. weight: math.unit(63, "kg"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/xavier/front.svg",
  8697. extra: 944 / 883
  8698. }
  8699. },
  8700. frontStretch: {
  8701. height: math.unit(5 + 8 / 12, "feet"),
  8702. weight: math.unit(63, "kg"),
  8703. name: "Stretching",
  8704. image: {
  8705. source: "./media/characters/xavier/front-stretch.svg",
  8706. extra: 962 / 820
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(5 + 8 / 12, "feet")
  8714. },
  8715. {
  8716. name: "Macro",
  8717. height: math.unit(100, "meters"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "McLargeHuge",
  8722. height: math.unit(10, "miles")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(5 + 5 / 12, "feet"),
  8731. weight: math.unit(150, "lb"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/joshii/front.svg",
  8735. extra: 765 / 653,
  8736. bottom: 51 / 816
  8737. }
  8738. },
  8739. foot: {
  8740. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8741. name: "Foot",
  8742. image: {
  8743. source: "./media/characters/joshii/foot.svg"
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Micro",
  8750. height: math.unit(2, "inches"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Normal",
  8755. height: math.unit(5 + 5 / 12, "feet")
  8756. },
  8757. {
  8758. name: "Macro",
  8759. height: math.unit(785, "feet")
  8760. },
  8761. {
  8762. name: "Megamacro",
  8763. height: math.unit(24.5, "miles")
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(6, "feet"),
  8772. weight: math.unit(150, "lb"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/goddess-elizabeth/front.svg",
  8776. extra: 1800 / 1525,
  8777. bottom: 0.005
  8778. }
  8779. },
  8780. foot: {
  8781. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8782. name: "Foot",
  8783. image: {
  8784. source: "./media/characters/goddess-elizabeth/foot.svg"
  8785. }
  8786. },
  8787. mouth: {
  8788. height: math.unit(6, "feet"),
  8789. name: "Mouth",
  8790. image: {
  8791. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Micro",
  8798. height: math.unit(12, "feet")
  8799. },
  8800. {
  8801. name: "Normal",
  8802. height: math.unit(80, "miles"),
  8803. default: true
  8804. },
  8805. {
  8806. name: "Macro",
  8807. height: math.unit(15000, "parsecs")
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8813. {
  8814. front: {
  8815. height: math.unit(5 + 9 / 12, "feet"),
  8816. weight: math.unit(144, "lb"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/kara/front.svg"
  8820. }
  8821. },
  8822. feet: {
  8823. height: math.unit(6 / 6.765, "feet"),
  8824. name: "Kara's Feet",
  8825. rename: true,
  8826. image: {
  8827. source: "./media/characters/kara/feet.svg"
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(5 + 9 / 12, "feet")
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(174, "feet"),
  8839. default: true
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(18, "feet"),
  8848. weight: math.unit(4050, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/tyrone/front.svg",
  8852. extra: 2405 / 2270,
  8853. bottom: 182 / 2587
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(18, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Macro",
  8865. height: math.unit(300, "feet")
  8866. },
  8867. {
  8868. name: "Megamacro",
  8869. height: math.unit(15, "km")
  8870. },
  8871. {
  8872. name: "Gigamacro",
  8873. height: math.unit(500, "km")
  8874. },
  8875. {
  8876. name: "Teramacro",
  8877. height: math.unit(0.5, "gigameters")
  8878. },
  8879. {
  8880. name: "Omnimacro",
  8881. height: math.unit(1e252, "yottauniverse")
  8882. },
  8883. ]
  8884. ))
  8885. characterMakers.push(() => makeCharacter(
  8886. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8887. {
  8888. front: {
  8889. height: math.unit(7 + 8 / 12, "feet"),
  8890. weight: math.unit(120, "lb"),
  8891. name: "Front",
  8892. image: {
  8893. source: "./media/characters/danny/front.svg",
  8894. extra: 1490 / 1350
  8895. }
  8896. },
  8897. back: {
  8898. height: math.unit(7 + 8 / 12, "feet"),
  8899. weight: math.unit(120, "lb"),
  8900. name: "Back",
  8901. image: {
  8902. source: "./media/characters/danny/back.svg",
  8903. extra: 1490 / 1350
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Normal",
  8910. height: math.unit(7 + 8 / 12, "feet"),
  8911. default: true
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8917. {
  8918. front: {
  8919. height: math.unit(3.5, "inches"),
  8920. weight: math.unit(19, "grams"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/mallow/front.svg",
  8924. extra: 471 / 431
  8925. }
  8926. },
  8927. back: {
  8928. height: math.unit(3.5, "inches"),
  8929. weight: math.unit(19, "grams"),
  8930. name: "Back",
  8931. image: {
  8932. source: "./media/characters/mallow/back.svg",
  8933. extra: 471 / 431
  8934. }
  8935. },
  8936. },
  8937. [
  8938. {
  8939. name: "Normal",
  8940. height: math.unit(3.5, "inches"),
  8941. default: true
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8947. {
  8948. front: {
  8949. height: math.unit(9, "feet"),
  8950. weight: math.unit(230, "kg"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/starry-aqua/front.svg"
  8954. }
  8955. },
  8956. back: {
  8957. height: math.unit(9, "feet"),
  8958. weight: math.unit(230, "kg"),
  8959. name: "Back",
  8960. image: {
  8961. source: "./media/characters/starry-aqua/back.svg"
  8962. }
  8963. },
  8964. hand: {
  8965. height: math.unit(9 * 0.1168, "feet"),
  8966. name: "Hand",
  8967. image: {
  8968. source: "./media/characters/starry-aqua/hand.svg"
  8969. }
  8970. },
  8971. foot: {
  8972. height: math.unit(9 * 0.18, "feet"),
  8973. name: "Foot",
  8974. image: {
  8975. source: "./media/characters/starry-aqua/foot.svg"
  8976. }
  8977. }
  8978. },
  8979. [
  8980. {
  8981. name: "Micro",
  8982. height: math.unit(3, "inches")
  8983. },
  8984. {
  8985. name: "Normal",
  8986. height: math.unit(9, "feet")
  8987. },
  8988. {
  8989. name: "Macro",
  8990. height: math.unit(300, "feet"),
  8991. default: true
  8992. },
  8993. {
  8994. name: "Megamacro",
  8995. height: math.unit(3200, "feet")
  8996. }
  8997. ]
  8998. ))
  8999. characterMakers.push(() => makeCharacter(
  9000. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9001. {
  9002. front: {
  9003. height: math.unit(15, "feet"),
  9004. weight: math.unit(5026, "lb"),
  9005. name: "Front",
  9006. image: {
  9007. source: "./media/characters/luka-towers/front.svg",
  9008. extra: 1269/1133,
  9009. bottom: 51/1320
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Normal",
  9016. height: math.unit(15, "feet"),
  9017. default: true
  9018. },
  9019. {
  9020. name: "Minimacro",
  9021. height: math.unit(25, "feet")
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(320, "feet")
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(35000, "feet")
  9030. },
  9031. {
  9032. name: "Gigamacro",
  9033. height: math.unit(4000, "miles")
  9034. },
  9035. {
  9036. name: "Teramacro",
  9037. height: math.unit(15000, "miles")
  9038. },
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9043. {
  9044. front: {
  9045. height: math.unit(6, "feet"),
  9046. weight: math.unit(150, "lb"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/natalie-nightring/front.svg",
  9050. extra: 1,
  9051. bottom: 0.06
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Uh Oh",
  9058. height: math.unit(0.1, "mm")
  9059. },
  9060. {
  9061. name: "Small",
  9062. height: math.unit(3, "inches")
  9063. },
  9064. {
  9065. name: "Human Scale",
  9066. height: math.unit(6, "feet")
  9067. },
  9068. {
  9069. name: "Librarian",
  9070. height: math.unit(50, "feet"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Immense",
  9075. height: math.unit(200, "miles")
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(180, "lbs"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/danni-rosie/front.svg",
  9088. extra: 1260 / 1128,
  9089. bottom: 0.022
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Micro",
  9096. height: math.unit(2, "inches"),
  9097. default: true
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(5 + 9 / 12, "feet"),
  9106. weight: math.unit(220, "lb"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/samantha-kruse/front.svg",
  9110. extra: (985 / 935),
  9111. bottom: 0.03
  9112. }
  9113. },
  9114. frontUndressed: {
  9115. height: math.unit(5 + 9 / 12, "feet"),
  9116. weight: math.unit(220, "lb"),
  9117. name: "Front (Undressed)",
  9118. image: {
  9119. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9120. extra: (973 / 923),
  9121. bottom: 0.025
  9122. }
  9123. },
  9124. fat: {
  9125. height: math.unit(5 + 9 / 12, "feet"),
  9126. weight: math.unit(900, "lb"),
  9127. name: "Front (Fat)",
  9128. image: {
  9129. source: "./media/characters/samantha-kruse/fat.svg",
  9130. extra: 2688 / 2561
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(5 + 9 / 12, "feet"),
  9138. default: true
  9139. }
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9144. {
  9145. back: {
  9146. height: math.unit(5 + 4 / 12, "feet"),
  9147. weight: math.unit(4963, "lb"),
  9148. name: "Back",
  9149. image: {
  9150. source: "./media/characters/amelia-rosie/back.svg",
  9151. extra: 1113 / 963,
  9152. bottom: 0.01
  9153. }
  9154. },
  9155. },
  9156. [
  9157. {
  9158. name: "Level 0",
  9159. height: math.unit(5 + 4 / 12, "feet")
  9160. },
  9161. {
  9162. name: "Level 1",
  9163. height: math.unit(164597, "feet"),
  9164. default: true
  9165. },
  9166. {
  9167. name: "Level 2",
  9168. height: math.unit(956243, "miles")
  9169. },
  9170. {
  9171. name: "Level 3",
  9172. height: math.unit(29421709423, "miles")
  9173. },
  9174. {
  9175. name: "Level 4",
  9176. height: math.unit(154, "lightyears")
  9177. },
  9178. {
  9179. name: "Level 5",
  9180. height: math.unit(4738272, "lightyears")
  9181. },
  9182. {
  9183. name: "Level 6",
  9184. height: math.unit(145787152896, "lightyears")
  9185. },
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(5 + 11 / 12, "feet"),
  9193. weight: math.unit(65, "kg"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/rook-kitara/front.svg",
  9197. extra: 1347 / 1274,
  9198. bottom: 0.005
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Totally Unfair",
  9205. height: math.unit(1.8, "mm")
  9206. },
  9207. {
  9208. name: "Lap Rookie",
  9209. height: math.unit(1.4, "feet")
  9210. },
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(5 + 11 / 12, "feet"),
  9214. default: true
  9215. },
  9216. {
  9217. name: "How Did This Happen",
  9218. height: math.unit(80, "miles")
  9219. }
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9224. {
  9225. front: {
  9226. height: math.unit(7, "feet"),
  9227. weight: math.unit(300, "lb"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/pisces/front.svg",
  9231. extra: 2255 / 2115,
  9232. bottom: 0.03
  9233. }
  9234. },
  9235. back: {
  9236. height: math.unit(7, "feet"),
  9237. weight: math.unit(300, "lb"),
  9238. name: "Back",
  9239. image: {
  9240. source: "./media/characters/pisces/back.svg",
  9241. extra: 2146 / 2055,
  9242. bottom: 0.04
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Normal",
  9249. height: math.unit(7, "feet"),
  9250. default: true
  9251. },
  9252. {
  9253. name: "Swimming Pool",
  9254. height: math.unit(12.2, "meters")
  9255. },
  9256. {
  9257. name: "Olympic Swimming Pool",
  9258. height: math.unit(56.3, "meters")
  9259. },
  9260. {
  9261. name: "Lake Superior",
  9262. height: math.unit(93900, "meters")
  9263. },
  9264. {
  9265. name: "Mediterranean Sea",
  9266. height: math.unit(644457, "meters")
  9267. },
  9268. {
  9269. name: "World's Oceans",
  9270. height: math.unit(4567491, "meters")
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(2.3, "meters"),
  9279. weight: math.unit(120, "kg"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/zelas/front.svg"
  9283. }
  9284. },
  9285. side: {
  9286. height: math.unit(2.3, "meters"),
  9287. weight: math.unit(120, "kg"),
  9288. name: "Side",
  9289. image: {
  9290. source: "./media/characters/zelas/side.svg"
  9291. }
  9292. },
  9293. back: {
  9294. height: math.unit(2.3, "meters"),
  9295. weight: math.unit(120, "kg"),
  9296. name: "Back",
  9297. image: {
  9298. source: "./media/characters/zelas/back.svg"
  9299. }
  9300. },
  9301. foot: {
  9302. height: math.unit(1.116, "feet"),
  9303. name: "Foot",
  9304. image: {
  9305. source: "./media/characters/zelas/foot.svg"
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(2.3, "meters")
  9313. },
  9314. {
  9315. name: "Macro",
  9316. height: math.unit(30, "meters"),
  9317. default: true
  9318. },
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(1, "inch"),
  9326. weight: math.unit(0.21, "grams"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/talbot/front.svg",
  9330. extra: 594 / 544
  9331. }
  9332. },
  9333. },
  9334. [
  9335. {
  9336. name: "Micro",
  9337. height: math.unit(1, "inch"),
  9338. default: true
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9344. {
  9345. front: {
  9346. height: math.unit(3 + 3 / 12, "feet"),
  9347. weight: math.unit(51.8, "lb"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/fliss/front.svg",
  9351. extra: 840 / 640
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Teeny Tiny",
  9358. height: math.unit(1, "mm")
  9359. },
  9360. {
  9361. name: "Small",
  9362. height: math.unit(1, "inch"),
  9363. default: true
  9364. },
  9365. {
  9366. name: "Standard Sylveon",
  9367. height: math.unit(3 + 3 / 12, "feet")
  9368. },
  9369. {
  9370. name: "Large Nuisance",
  9371. height: math.unit(33, "feet")
  9372. },
  9373. {
  9374. name: "City Filler",
  9375. height: math.unit(3000, "feet")
  9376. },
  9377. {
  9378. name: "New Horizon",
  9379. height: math.unit(6000, "miles")
  9380. },
  9381. ]
  9382. ))
  9383. characterMakers.push(() => makeCharacter(
  9384. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9385. {
  9386. front: {
  9387. height: math.unit(5, "cm"),
  9388. weight: math.unit(1.94, "g"),
  9389. name: "Front",
  9390. image: {
  9391. source: "./media/characters/fleta/front.svg",
  9392. extra: 835 / 803
  9393. }
  9394. },
  9395. back: {
  9396. height: math.unit(5, "cm"),
  9397. weight: math.unit(1.94, "g"),
  9398. name: "Back",
  9399. image: {
  9400. source: "./media/characters/fleta/back.svg",
  9401. extra: 835 / 803
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Micro",
  9408. height: math.unit(5, "cm"),
  9409. default: true
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(6, "feet"),
  9418. weight: math.unit(225, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/dominic/front.svg",
  9422. extra: 1770 / 1620,
  9423. bottom: 0.025
  9424. }
  9425. },
  9426. back: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(225, "lb"),
  9429. name: "Back",
  9430. image: {
  9431. source: "./media/characters/dominic/back.svg",
  9432. extra: 1745 / 1620,
  9433. bottom: 0.065
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Nano",
  9440. height: math.unit(0.1, "mm")
  9441. },
  9442. {
  9443. name: "Micro-",
  9444. height: math.unit(1, "mm")
  9445. },
  9446. {
  9447. name: "Micro",
  9448. height: math.unit(4, "inches")
  9449. },
  9450. {
  9451. name: "Normal",
  9452. height: math.unit(6 + 4 / 12, "feet"),
  9453. default: true
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(115, "feet")
  9458. },
  9459. {
  9460. name: "Macro+",
  9461. height: math.unit(955, "feet")
  9462. },
  9463. {
  9464. name: "Megamacro",
  9465. height: math.unit(8990, "feet")
  9466. },
  9467. {
  9468. name: "Gigmacro",
  9469. height: math.unit(9310, "miles")
  9470. },
  9471. {
  9472. name: "Teramacro",
  9473. height: math.unit(1567005010, "miles")
  9474. },
  9475. {
  9476. name: "Examacro",
  9477. height: math.unit(1425, "parsecs")
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(400, "feet"),
  9486. weight: math.unit(44444444, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/major-colonel/front.svg"
  9490. }
  9491. },
  9492. back: {
  9493. height: math.unit(400, "feet"),
  9494. weight: math.unit(44444444, "lb"),
  9495. name: "Back",
  9496. image: {
  9497. source: "./media/characters/major-colonel/back.svg"
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Macro",
  9504. height: math.unit(400, "feet"),
  9505. default: true
  9506. },
  9507. ]
  9508. ))
  9509. characterMakers.push(() => makeCharacter(
  9510. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9511. {
  9512. catFront: {
  9513. height: math.unit(6, "feet"),
  9514. weight: math.unit(120, "lb"),
  9515. name: "Front (Cat Side)",
  9516. image: {
  9517. source: "./media/characters/axel-lycan/cat-front.svg",
  9518. extra: 430 / 402,
  9519. bottom: 43 / 472.35
  9520. }
  9521. },
  9522. catBack: {
  9523. height: math.unit(6, "feet"),
  9524. weight: math.unit(120, "lb"),
  9525. name: "Back (Cat Side)",
  9526. image: {
  9527. source: "./media/characters/axel-lycan/cat-back.svg",
  9528. extra: 447 / 419,
  9529. bottom: 23.3 / 469
  9530. }
  9531. },
  9532. wolfFront: {
  9533. height: math.unit(6, "feet"),
  9534. weight: math.unit(120, "lb"),
  9535. name: "Front (Wolf Side)",
  9536. image: {
  9537. source: "./media/characters/axel-lycan/wolf-front.svg",
  9538. extra: 485 / 456,
  9539. bottom: 19 / 504
  9540. }
  9541. },
  9542. wolfBack: {
  9543. height: math.unit(6, "feet"),
  9544. weight: math.unit(120, "lb"),
  9545. name: "Back (Wolf Side)",
  9546. image: {
  9547. source: "./media/characters/axel-lycan/wolf-back.svg",
  9548. extra: 475 / 438,
  9549. bottom: 39.2 / 514
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(1, "km"),
  9557. default: true
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9563. {
  9564. front: {
  9565. height: math.unit(5 + 9 / 12, "feet"),
  9566. weight: math.unit(175, "lb"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/vanrel-hyena/front.svg",
  9570. extra: 1086 / 1010,
  9571. bottom: 0.04
  9572. }
  9573. },
  9574. },
  9575. [
  9576. {
  9577. name: "Normal",
  9578. height: math.unit(5 + 9 / 12, "feet"),
  9579. default: true
  9580. },
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(6, "feet"),
  9588. weight: math.unit(103, "lb"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/abbott-absol/front.svg",
  9592. extra: 2010 / 1842
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Megamicro",
  9599. height: math.unit(0.1, "mm")
  9600. },
  9601. {
  9602. name: "Micro",
  9603. height: math.unit(1, "inch")
  9604. },
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(6, "feet"),
  9608. default: true
  9609. },
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9614. {
  9615. front: {
  9616. height: math.unit(6, "feet"),
  9617. weight: math.unit(264, "lb"),
  9618. name: "Front",
  9619. image: {
  9620. source: "./media/characters/hector/front.svg",
  9621. extra: 2280 / 2130,
  9622. bottom: 0.07
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Normal",
  9629. height: math.unit(12.25, "foot"),
  9630. default: true
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(160, "feet")
  9635. },
  9636. ]
  9637. ))
  9638. characterMakers.push(() => makeCharacter(
  9639. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9640. {
  9641. front: {
  9642. height: math.unit(6, "feet"),
  9643. weight: math.unit(150, "lb"),
  9644. name: "Front",
  9645. image: {
  9646. source: "./media/characters/sal/front.svg",
  9647. extra: 1846 / 1699,
  9648. bottom: 0.04
  9649. }
  9650. },
  9651. },
  9652. [
  9653. {
  9654. name: "Megamacro",
  9655. height: math.unit(10, "miles"),
  9656. default: true
  9657. },
  9658. ]
  9659. ))
  9660. characterMakers.push(() => makeCharacter(
  9661. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9662. {
  9663. front: {
  9664. height: math.unit(3, "meters"),
  9665. weight: math.unit(450, "kg"),
  9666. name: "front",
  9667. image: {
  9668. source: "./media/characters/ranger/front.svg",
  9669. extra: 2401 / 2243,
  9670. bottom: 0.05
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Normal",
  9677. height: math.unit(3, "meters"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(14, "feet"),
  9687. weight: math.unit(800, "kg"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/theresa/front.svg",
  9691. extra: 3575 / 3346,
  9692. bottom: 0.03
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(14, "feet"),
  9700. default: true
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9706. {
  9707. front: {
  9708. height: math.unit(6, "feet"),
  9709. weight: math.unit(3, "kg"),
  9710. name: "Front",
  9711. image: {
  9712. source: "./media/characters/ine/front.svg",
  9713. extra: 678 / 539,
  9714. bottom: 0.023
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(2.265, "feet"),
  9722. default: true
  9723. },
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9728. {
  9729. front: {
  9730. height: math.unit(5, "feet"),
  9731. weight: math.unit(30, "kg"),
  9732. name: "Front",
  9733. image: {
  9734. source: "./media/characters/vial/front.svg",
  9735. extra: 1365 / 1277,
  9736. bottom: 0.04
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(5, "feet"),
  9744. default: true
  9745. },
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9750. {
  9751. side: {
  9752. height: math.unit(3.4, "meters"),
  9753. weight: math.unit(1000, "lb"),
  9754. name: "Side",
  9755. image: {
  9756. source: "./media/characters/rovoska/side.svg",
  9757. extra: 4403 / 1515
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(3.4, "meters"),
  9765. default: true
  9766. },
  9767. ]
  9768. ))
  9769. characterMakers.push(() => makeCharacter(
  9770. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9771. {
  9772. front: {
  9773. height: math.unit(8, "feet"),
  9774. weight: math.unit(315, "lb"),
  9775. name: "Front",
  9776. image: {
  9777. source: "./media/characters/gunner-rotthbauer/front.svg"
  9778. }
  9779. },
  9780. back: {
  9781. height: math.unit(8, "feet"),
  9782. weight: math.unit(315, "lb"),
  9783. name: "Back",
  9784. image: {
  9785. source: "./media/characters/gunner-rotthbauer/back.svg"
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Micro",
  9792. height: math.unit(3.5, "inches")
  9793. },
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(8, "feet"),
  9797. default: true
  9798. },
  9799. {
  9800. name: "Macro",
  9801. height: math.unit(250, "feet")
  9802. },
  9803. {
  9804. name: "Megamacro",
  9805. height: math.unit(1, "AU")
  9806. },
  9807. ]
  9808. ))
  9809. characterMakers.push(() => makeCharacter(
  9810. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9811. {
  9812. front: {
  9813. height: math.unit(5 + 5 / 12, "feet"),
  9814. weight: math.unit(140, "lb"),
  9815. name: "Front",
  9816. image: {
  9817. source: "./media/characters/allatia/front.svg",
  9818. extra: 1227 / 1180,
  9819. bottom: 0.027
  9820. }
  9821. },
  9822. },
  9823. [
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(5 + 5 / 12, "feet")
  9827. },
  9828. {
  9829. name: "Macro",
  9830. height: math.unit(250, "feet"),
  9831. default: true
  9832. },
  9833. {
  9834. name: "Megamacro",
  9835. height: math.unit(8, "miles")
  9836. }
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(6, "feet"),
  9844. weight: math.unit(120, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/tene/front.svg",
  9848. extra: 1728 / 1578,
  9849. bottom: 0.022
  9850. }
  9851. },
  9852. stomping: {
  9853. height: math.unit(2.025, "meters"),
  9854. weight: math.unit(120, "lb"),
  9855. name: "Stomping",
  9856. image: {
  9857. source: "./media/characters/tene/stomping.svg",
  9858. extra: 938 / 873,
  9859. bottom: 0.01
  9860. }
  9861. },
  9862. sitting: {
  9863. height: math.unit(1, "meter"),
  9864. weight: math.unit(120, "lb"),
  9865. name: "Sitting",
  9866. image: {
  9867. source: "./media/characters/tene/sitting.svg",
  9868. extra: 437 / 415,
  9869. bottom: 0.1
  9870. }
  9871. },
  9872. feral: {
  9873. height: math.unit(3.9, "feet"),
  9874. weight: math.unit(250, "lb"),
  9875. name: "Feral",
  9876. image: {
  9877. source: "./media/characters/tene/feral.svg",
  9878. extra: 717 / 458,
  9879. bottom: 0.179
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(6, "feet")
  9887. },
  9888. {
  9889. name: "Macro",
  9890. height: math.unit(300, "feet"),
  9891. default: true
  9892. },
  9893. {
  9894. name: "Megamacro",
  9895. height: math.unit(5, "miles")
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9901. {
  9902. side: {
  9903. height: math.unit(6, "feet"),
  9904. name: "Side",
  9905. image: {
  9906. source: "./media/characters/evander/side.svg",
  9907. extra: 877 / 477
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(0.83, "meters"),
  9915. default: true
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(12, "feet"),
  9924. weight: math.unit(1000, "lb"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9928. extra: 1762 / 1611
  9929. }
  9930. },
  9931. back: {
  9932. height: math.unit(12, "feet"),
  9933. weight: math.unit(1000, "lb"),
  9934. name: "Back",
  9935. image: {
  9936. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9937. extra: 1762 / 1611
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(12, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Kaiju",
  9949. height: math.unit(150, "feet")
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(6, "feet"),
  9958. weight: math.unit(150, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/zero-alurus/front.svg"
  9962. }
  9963. },
  9964. back: {
  9965. height: math.unit(6, "feet"),
  9966. weight: math.unit(150, "lb"),
  9967. name: "Back",
  9968. image: {
  9969. source: "./media/characters/zero-alurus/back.svg"
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(5 + 10 / 12, "feet")
  9977. },
  9978. {
  9979. name: "Macro",
  9980. height: math.unit(60, "feet"),
  9981. default: true
  9982. },
  9983. {
  9984. name: "Macro+",
  9985. height: math.unit(450, "feet")
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(6, "feet"),
  9994. weight: math.unit(200, "lb"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/mega-shi/front.svg",
  9998. extra: 1279 / 1250,
  9999. bottom: 0.02
  10000. }
  10001. },
  10002. back: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(200, "lb"),
  10005. name: "Back",
  10006. image: {
  10007. source: "./media/characters/mega-shi/back.svg",
  10008. extra: 1279 / 1250,
  10009. bottom: 0.02
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Micro",
  10016. height: math.unit(16 + 6 / 12, "feet")
  10017. },
  10018. {
  10019. name: "Third Dimension",
  10020. height: math.unit(40, "meters")
  10021. },
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(660, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Megamacro",
  10029. height: math.unit(10, "miles")
  10030. },
  10031. {
  10032. name: "Planetary Launch",
  10033. height: math.unit(500, "miles")
  10034. },
  10035. {
  10036. name: "Interstellar",
  10037. height: math.unit(1e9, "miles")
  10038. },
  10039. {
  10040. name: "Leaving the Universe",
  10041. height: math.unit(1, "gigaparsec")
  10042. },
  10043. {
  10044. name: "Travelling Universes",
  10045. height: math.unit(30e15, "parsecs")
  10046. },
  10047. ]
  10048. ))
  10049. characterMakers.push(() => makeCharacter(
  10050. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10051. {
  10052. front: {
  10053. height: math.unit(6, "feet"),
  10054. weight: math.unit(150, "lb"),
  10055. name: "Front",
  10056. image: {
  10057. source: "./media/characters/odyssey/front.svg",
  10058. extra: 1782 / 1582,
  10059. bottom: 0.01
  10060. }
  10061. },
  10062. side: {
  10063. height: math.unit(5.7, "feet"),
  10064. weight: math.unit(140, "lb"),
  10065. name: "Side",
  10066. image: {
  10067. source: "./media/characters/odyssey/side.svg",
  10068. extra: 6462 / 5700
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(5 + 4 / 12, "feet")
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(1, "km")
  10080. },
  10081. {
  10082. name: "Megamacro",
  10083. height: math.unit(3000, "km")
  10084. },
  10085. {
  10086. name: "Gigamacro",
  10087. height: math.unit(1, "AU"),
  10088. default: true
  10089. },
  10090. {
  10091. name: "Omniversal",
  10092. height: math.unit(100e14, "lightyears")
  10093. },
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10098. {
  10099. front: {
  10100. height: math.unit(6, "feet"),
  10101. weight: math.unit(300, "lb"),
  10102. name: "Front",
  10103. image: {
  10104. source: "./media/characters/mekuto/front.svg",
  10105. extra: 921 / 832,
  10106. bottom: 0.03
  10107. }
  10108. },
  10109. hand: {
  10110. height: math.unit(6 / 10.24, "feet"),
  10111. name: "Hand",
  10112. image: {
  10113. source: "./media/characters/mekuto/hand.svg"
  10114. }
  10115. },
  10116. foot: {
  10117. height: math.unit(6 / 5.05, "feet"),
  10118. name: "Foot",
  10119. image: {
  10120. source: "./media/characters/mekuto/foot.svg"
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Minimicro",
  10127. height: math.unit(0.2, "inches")
  10128. },
  10129. {
  10130. name: "Micro",
  10131. height: math.unit(1.5, "inches")
  10132. },
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(5 + 11 / 12, "feet"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Minimacro",
  10140. height: math.unit(17 + 9 / 12, "feet")
  10141. },
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(177.5, "feet")
  10145. },
  10146. {
  10147. name: "Megamacro",
  10148. height: math.unit(152, "miles")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(6.5, "inches"),
  10157. weight: math.unit(13, "oz"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/dafydd-tomos/front.svg",
  10161. extra: 2990 / 2603,
  10162. bottom: 0.03
  10163. }
  10164. },
  10165. },
  10166. [
  10167. {
  10168. name: "Micro",
  10169. height: math.unit(6.5, "inches"),
  10170. default: true
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(6, "feet"),
  10179. weight: math.unit(150, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/splinter/front.svg",
  10183. extra: 2990 / 2882,
  10184. bottom: 0.04
  10185. }
  10186. },
  10187. back: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(150, "lb"),
  10190. name: "Back",
  10191. image: {
  10192. source: "./media/characters/splinter/back.svg",
  10193. extra: 2990 / 2882,
  10194. bottom: 0.04
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(6, "feet")
  10202. },
  10203. {
  10204. name: "Macro",
  10205. height: math.unit(230, "meters"),
  10206. default: true
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(4 + 10 / 12, "feet"),
  10215. weight: math.unit(480, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/snow-gabumon/front.svg",
  10219. extra: 1140 / 963,
  10220. bottom: 0.058
  10221. }
  10222. },
  10223. back: {
  10224. height: math.unit(4 + 10 / 12, "feet"),
  10225. weight: math.unit(480, "lb"),
  10226. name: "Back",
  10227. image: {
  10228. source: "./media/characters/snow-gabumon/back.svg",
  10229. extra: 1115 / 962,
  10230. bottom: 0.041
  10231. }
  10232. },
  10233. frontUndresed: {
  10234. height: math.unit(4 + 10 / 12, "feet"),
  10235. weight: math.unit(480, "lb"),
  10236. name: "Front (Undressed)",
  10237. image: {
  10238. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10239. extra: 1061 / 960,
  10240. bottom: 0.045
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Micro",
  10247. height: math.unit(1, "inch")
  10248. },
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(4 + 10 / 12, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(200, "feet")
  10257. },
  10258. {
  10259. name: "Megamacro",
  10260. height: math.unit(120, "miles")
  10261. },
  10262. {
  10263. name: "Gigamacro",
  10264. height: math.unit(9800, "miles")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(1.7, "meters"),
  10273. weight: math.unit(140, "lb"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/moody/front.svg",
  10277. extra: 3226 / 3007,
  10278. bottom: 0.087
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Micro",
  10285. height: math.unit(1, "mm")
  10286. },
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(1.7, "meters"),
  10290. default: true
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(80, "meters")
  10295. },
  10296. {
  10297. name: "Macro+",
  10298. height: math.unit(500, "meters")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(6, "feet"),
  10307. weight: math.unit(150, "lb"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/zyas/front.svg",
  10311. extra: 1180 / 1120,
  10312. bottom: 0.045
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(10, "feet"),
  10320. default: true
  10321. },
  10322. {
  10323. name: "Macro",
  10324. height: math.unit(500, "feet")
  10325. },
  10326. {
  10327. name: "Megamacro",
  10328. height: math.unit(5, "miles")
  10329. },
  10330. {
  10331. name: "Teramacro",
  10332. height: math.unit(150000, "miles")
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(150, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/cuon/front.svg",
  10345. extra: 1390 / 1320,
  10346. bottom: 0.008
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Micro",
  10353. height: math.unit(3, "inches")
  10354. },
  10355. {
  10356. name: "Normal",
  10357. height: math.unit(18 + 9 / 12, "feet"),
  10358. default: true
  10359. },
  10360. {
  10361. name: "Macro",
  10362. height: math.unit(360, "feet")
  10363. },
  10364. {
  10365. name: "Megamacro",
  10366. height: math.unit(360, "miles")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(2.4, "meters"),
  10375. weight: math.unit(70, "kg"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/nyanuxk/front.svg",
  10379. extra: 1172 / 1084,
  10380. bottom: 0.065
  10381. }
  10382. },
  10383. side: {
  10384. height: math.unit(2.4, "meters"),
  10385. weight: math.unit(70, "kg"),
  10386. name: "Side",
  10387. image: {
  10388. source: "./media/characters/nyanuxk/side.svg",
  10389. extra: 1190 / 1132,
  10390. bottom: 0.007
  10391. }
  10392. },
  10393. back: {
  10394. height: math.unit(2.4, "meters"),
  10395. weight: math.unit(70, "kg"),
  10396. name: "Back",
  10397. image: {
  10398. source: "./media/characters/nyanuxk/back.svg",
  10399. extra: 1200 / 1141,
  10400. bottom: 0.015
  10401. }
  10402. },
  10403. foot: {
  10404. height: math.unit(0.52, "meters"),
  10405. name: "Foot",
  10406. image: {
  10407. source: "./media/characters/nyanuxk/foot.svg"
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Micro",
  10414. height: math.unit(2, "cm")
  10415. },
  10416. {
  10417. name: "Normal",
  10418. height: math.unit(2.4, "meters"),
  10419. default: true
  10420. },
  10421. {
  10422. name: "Smaller Macro",
  10423. height: math.unit(120, "meters")
  10424. },
  10425. {
  10426. name: "Bigger Macro",
  10427. height: math.unit(1.2, "km")
  10428. },
  10429. {
  10430. name: "Megamacro",
  10431. height: math.unit(15, "kilometers")
  10432. },
  10433. {
  10434. name: "Gigamacro",
  10435. height: math.unit(2000, "km")
  10436. },
  10437. {
  10438. name: "Teramacro",
  10439. height: math.unit(500000, "km")
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10445. {
  10446. side: {
  10447. height: math.unit(6, "feet"),
  10448. name: "Side",
  10449. image: {
  10450. source: "./media/characters/ailbhe/side.svg",
  10451. extra: 757 / 464,
  10452. bottom: 0.041
  10453. }
  10454. },
  10455. },
  10456. [
  10457. {
  10458. name: "Normal",
  10459. height: math.unit(1.07, "meters"),
  10460. default: true
  10461. },
  10462. ]
  10463. ))
  10464. characterMakers.push(() => makeCharacter(
  10465. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10466. {
  10467. front: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(120, "kg"),
  10470. name: "Front",
  10471. image: {
  10472. source: "./media/characters/zevulfius/front.svg",
  10473. extra: 965 / 903
  10474. }
  10475. },
  10476. side: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(120, "kg"),
  10479. name: "Side",
  10480. image: {
  10481. source: "./media/characters/zevulfius/side.svg",
  10482. extra: 939 / 900
  10483. }
  10484. },
  10485. back: {
  10486. height: math.unit(6, "feet"),
  10487. weight: math.unit(120, "kg"),
  10488. name: "Back",
  10489. image: {
  10490. source: "./media/characters/zevulfius/back.svg",
  10491. extra: 918 / 854,
  10492. bottom: 0.005
  10493. }
  10494. },
  10495. foot: {
  10496. height: math.unit(6 / 3.72, "feet"),
  10497. name: "Foot",
  10498. image: {
  10499. source: "./media/characters/zevulfius/foot.svg"
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Macro",
  10506. height: math.unit(750, "meters")
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(20, "km"),
  10511. default: true
  10512. },
  10513. {
  10514. name: "Gigamacro",
  10515. height: math.unit(2000, "km")
  10516. },
  10517. {
  10518. name: "Teramacro",
  10519. height: math.unit(250000, "km")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10525. {
  10526. front: {
  10527. height: math.unit(100, "feet"),
  10528. weight: math.unit(350, "kg"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/rikes/front.svg",
  10532. extra: 1565 / 1483,
  10533. bottom: 0.017
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Macro",
  10540. height: math.unit(100, "feet"),
  10541. default: true
  10542. },
  10543. ]
  10544. ))
  10545. characterMakers.push(() => makeCharacter(
  10546. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10547. {
  10548. front: {
  10549. height: math.unit(8, "feet"),
  10550. weight: math.unit(356, "lb"),
  10551. name: "Front",
  10552. image: {
  10553. source: "./media/characters/adam-silver-mane/front.svg",
  10554. extra: 1036/937,
  10555. bottom: 63/1099
  10556. }
  10557. },
  10558. side: {
  10559. height: math.unit(8, "feet"),
  10560. weight: math.unit(356, "lb"),
  10561. name: "Side",
  10562. image: {
  10563. source: "./media/characters/adam-silver-mane/side.svg",
  10564. extra: 997/901,
  10565. bottom: 59/1056
  10566. }
  10567. },
  10568. frontNsfw: {
  10569. height: math.unit(8, "feet"),
  10570. weight: math.unit(356, "lb"),
  10571. name: "Front (NSFW)",
  10572. image: {
  10573. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10574. extra: 1036/937,
  10575. bottom: 63/1099
  10576. }
  10577. },
  10578. sideNsfw: {
  10579. height: math.unit(8, "feet"),
  10580. weight: math.unit(356, "lb"),
  10581. name: "Side (NSFW)",
  10582. image: {
  10583. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10584. extra: 997/901,
  10585. bottom: 59/1056
  10586. }
  10587. },
  10588. dick: {
  10589. height: math.unit(2.1, "feet"),
  10590. name: "Dick",
  10591. image: {
  10592. source: "./media/characters/adam-silver-mane/dick.svg"
  10593. }
  10594. },
  10595. taur: {
  10596. height: math.unit(16, "feet"),
  10597. weight: math.unit(1500, "kg"),
  10598. name: "Taur",
  10599. image: {
  10600. source: "./media/characters/adam-silver-mane/taur.svg",
  10601. extra: 1713 / 1571,
  10602. bottom: 0.01
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Normal",
  10609. height: math.unit(8, "feet")
  10610. },
  10611. {
  10612. name: "Minimacro",
  10613. height: math.unit(80, "feet")
  10614. },
  10615. {
  10616. name: "MDA",
  10617. height: math.unit(80, "meters")
  10618. },
  10619. {
  10620. name: "Macro",
  10621. height: math.unit(800, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(8000, "feet")
  10627. },
  10628. {
  10629. name: "Gigamacro",
  10630. height: math.unit(800, "miles")
  10631. },
  10632. {
  10633. name: "Teramacro",
  10634. height: math.unit(80000, "miles")
  10635. },
  10636. {
  10637. name: "Celestial",
  10638. height: math.unit(8e6, "miles")
  10639. },
  10640. {
  10641. name: "Star Dragon",
  10642. height: math.unit(800000, "parsecs")
  10643. },
  10644. {
  10645. name: "Godly",
  10646. height: math.unit(800, "teraparsecs")
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10652. {
  10653. front: {
  10654. height: math.unit(6, "feet"),
  10655. weight: math.unit(150, "lb"),
  10656. name: "Front",
  10657. image: {
  10658. source: "./media/characters/ky'owin/front.svg",
  10659. extra: 3888 / 3068,
  10660. bottom: 0.015
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(6 + 8 / 12, "feet")
  10668. },
  10669. {
  10670. name: "Large",
  10671. height: math.unit(68, "feet")
  10672. },
  10673. {
  10674. name: "Macro",
  10675. height: math.unit(132, "feet")
  10676. },
  10677. {
  10678. name: "Macro+",
  10679. height: math.unit(340, "feet")
  10680. },
  10681. {
  10682. name: "Macro++",
  10683. height: math.unit(680, "feet"),
  10684. default: true
  10685. },
  10686. {
  10687. name: "Megamacro",
  10688. height: math.unit(1, "mile")
  10689. },
  10690. {
  10691. name: "Megamacro+",
  10692. height: math.unit(10, "miles")
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10698. {
  10699. front: {
  10700. height: math.unit(4, "feet"),
  10701. weight: math.unit(50, "lb"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/mal/front.svg",
  10705. extra: 785 / 724,
  10706. bottom: 0.07
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Micro",
  10713. height: math.unit(4, "inches")
  10714. },
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(4, "feet"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(200, "feet")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(150, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/jordan-deware/front.svg",
  10735. extra: 1191 / 1012
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Nano",
  10742. height: math.unit(0.01, "mm")
  10743. },
  10744. {
  10745. name: "Minimicro",
  10746. height: math.unit(1, "mm")
  10747. },
  10748. {
  10749. name: "Micro",
  10750. height: math.unit(0.5, "inches")
  10751. },
  10752. {
  10753. name: "Normal",
  10754. height: math.unit(4, "feet"),
  10755. default: true
  10756. },
  10757. {
  10758. name: "Minimacro",
  10759. height: math.unit(40, "meters")
  10760. },
  10761. {
  10762. name: "Small Macro",
  10763. height: math.unit(400, "meters")
  10764. },
  10765. {
  10766. name: "Macro",
  10767. height: math.unit(4, "miles")
  10768. },
  10769. {
  10770. name: "Megamacro",
  10771. height: math.unit(40, "miles")
  10772. },
  10773. {
  10774. name: "Megamacro+",
  10775. height: math.unit(400, "miles")
  10776. },
  10777. {
  10778. name: "Gigamacro",
  10779. height: math.unit(400000, "miles")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10785. {
  10786. side: {
  10787. height: math.unit(6, "feet"),
  10788. weight: math.unit(150, "lb"),
  10789. name: "Side",
  10790. image: {
  10791. source: "./media/characters/kimiko/side.svg",
  10792. extra: 600 / 358
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(15, "feet"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(220, "feet")
  10805. },
  10806. {
  10807. name: "Macro+",
  10808. height: math.unit(1450, "feet")
  10809. },
  10810. {
  10811. name: "Megamacro",
  10812. height: math.unit(11500, "feet")
  10813. },
  10814. {
  10815. name: "Gigamacro",
  10816. height: math.unit(9500, "miles")
  10817. },
  10818. {
  10819. name: "Teramacro",
  10820. height: math.unit(2208005005, "miles")
  10821. },
  10822. {
  10823. name: "Examacro",
  10824. height: math.unit(2750, "parsecs")
  10825. },
  10826. {
  10827. name: "Zettamacro",
  10828. height: math.unit(101500, "parsecs")
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(70, "kg"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/andrew-sleepy/front.svg"
  10841. }
  10842. },
  10843. side: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(70, "kg"),
  10846. name: "Side",
  10847. image: {
  10848. source: "./media/characters/andrew-sleepy/side.svg"
  10849. }
  10850. },
  10851. },
  10852. [
  10853. {
  10854. name: "Micro",
  10855. height: math.unit(1, "mm"),
  10856. default: true
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10862. {
  10863. front: {
  10864. height: math.unit(6, "feet"),
  10865. weight: math.unit(150, "lb"),
  10866. name: "Front",
  10867. image: {
  10868. source: "./media/characters/judio/front.svg",
  10869. extra: 1258 / 1110
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(5 + 6 / 12, "feet")
  10877. },
  10878. {
  10879. name: "Macro",
  10880. height: math.unit(1000, "feet"),
  10881. default: true
  10882. },
  10883. {
  10884. name: "Megamacro",
  10885. height: math.unit(10, "miles")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(6, "feet"),
  10894. weight: math.unit(68, "kg"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/nomaxice/front.svg",
  10898. extra: 1498 / 1073,
  10899. bottom: 0.075
  10900. }
  10901. },
  10902. foot: {
  10903. height: math.unit(1.1, "feet"),
  10904. name: "Foot",
  10905. image: {
  10906. source: "./media/characters/nomaxice/foot.svg"
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Micro",
  10913. height: math.unit(8, "cm")
  10914. },
  10915. {
  10916. name: "Norm",
  10917. height: math.unit(1.82, "m")
  10918. },
  10919. {
  10920. name: "Norm+",
  10921. height: math.unit(8.8, "feet")
  10922. },
  10923. {
  10924. name: "Big",
  10925. height: math.unit(8, "meters"),
  10926. default: true
  10927. },
  10928. {
  10929. name: "Macro",
  10930. height: math.unit(18, "meters")
  10931. },
  10932. {
  10933. name: "Macro+",
  10934. height: math.unit(88, "meters")
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(12, "feet"),
  10943. weight: math.unit(1.5, "tons"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/dydros/front.svg",
  10947. extra: 863 / 800,
  10948. bottom: 0.015
  10949. }
  10950. },
  10951. back: {
  10952. height: math.unit(12, "feet"),
  10953. weight: math.unit(1.5, "tons"),
  10954. name: "Back",
  10955. image: {
  10956. source: "./media/characters/dydros/back.svg",
  10957. extra: 900 / 843,
  10958. bottom: 0.005
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Normal",
  10965. height: math.unit(12, "feet"),
  10966. default: true
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(100, "kg"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/riggi/front.svg",
  10979. extra: 5787 / 5303
  10980. }
  10981. },
  10982. hyper: {
  10983. height: math.unit(6 * 5 / 3, "feet"),
  10984. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10985. name: "Hyper",
  10986. image: {
  10987. source: "./media/characters/riggi/hyper.svg",
  10988. extra: 3595 / 3485
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Small Macro",
  10995. height: math.unit(50, "feet")
  10996. },
  10997. {
  10998. name: "Default",
  10999. height: math.unit(200, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Loom",
  11004. height: math.unit(10000, "feet")
  11005. },
  11006. {
  11007. name: "Cruising Altitude",
  11008. height: math.unit(30000, "feet")
  11009. },
  11010. {
  11011. name: "Megamacro",
  11012. height: math.unit(100, "miles")
  11013. },
  11014. {
  11015. name: "Continent Sized",
  11016. height: math.unit(2800, "miles")
  11017. },
  11018. {
  11019. name: "Earth Sized",
  11020. height: math.unit(8000, "miles")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(250, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/alexi/front.svg",
  11033. extra: 3483 / 3291,
  11034. bottom: 0.04
  11035. }
  11036. },
  11037. back: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(250, "lb"),
  11040. name: "Back",
  11041. image: {
  11042. source: "./media/characters/alexi/back.svg",
  11043. extra: 3533 / 3356,
  11044. bottom: 0.021
  11045. }
  11046. },
  11047. frontTransforming: {
  11048. height: math.unit(8.58, "feet"),
  11049. weight: math.unit(1300, "lb"),
  11050. name: "Transforming",
  11051. image: {
  11052. source: "./media/characters/alexi/front-transforming.svg",
  11053. extra: 437 / 409,
  11054. bottom: 19 / 458.66
  11055. }
  11056. },
  11057. frontTransformed: {
  11058. height: math.unit(12.5, "feet"),
  11059. weight: math.unit(4000, "lb"),
  11060. name: "Transformed",
  11061. image: {
  11062. source: "./media/characters/alexi/front-transformed.svg",
  11063. extra: 639 / 614,
  11064. bottom: 30.55 / 671
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(14, "feet"),
  11072. default: true
  11073. },
  11074. {
  11075. name: "Minimacro",
  11076. height: math.unit(30, "meters")
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(500, "meters")
  11081. },
  11082. {
  11083. name: "Megamacro",
  11084. height: math.unit(9000, "km")
  11085. },
  11086. {
  11087. name: "Teramacro",
  11088. height: math.unit(384000, "km")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/kayroo/front.svg",
  11101. extra: 1153 / 1038,
  11102. bottom: 0.06
  11103. }
  11104. },
  11105. foot: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(150, "lb"),
  11108. name: "Foot",
  11109. image: {
  11110. source: "./media/characters/kayroo/foot.svg"
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(8, "feet"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Minimacro",
  11122. height: math.unit(250, "feet")
  11123. },
  11124. {
  11125. name: "Macro",
  11126. height: math.unit(2800, "feet")
  11127. },
  11128. {
  11129. name: "Megamacro",
  11130. height: math.unit(5200, "feet")
  11131. },
  11132. {
  11133. name: "Gigamacro",
  11134. height: math.unit(27000, "feet")
  11135. },
  11136. {
  11137. name: "Omega",
  11138. height: math.unit(45000, "feet")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(18, "feet"),
  11147. weight: math.unit(5800, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/rhys/front.svg",
  11151. extra: 3386 / 3090,
  11152. bottom: 0.07
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(18, "feet"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Working Size",
  11164. height: math.unit(200, "feet")
  11165. },
  11166. {
  11167. name: "Demolition Size",
  11168. height: math.unit(2000, "feet")
  11169. },
  11170. {
  11171. name: "Maximum Licensed Size",
  11172. height: math.unit(5, "miles")
  11173. },
  11174. {
  11175. name: "Maximum Observed Size",
  11176. height: math.unit(10, "yottameters")
  11177. },
  11178. ]
  11179. ))
  11180. characterMakers.push(() => makeCharacter(
  11181. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11182. {
  11183. front: {
  11184. height: math.unit(6, "feet"),
  11185. weight: math.unit(250, "lb"),
  11186. name: "Front",
  11187. image: {
  11188. source: "./media/characters/toto/front.svg",
  11189. extra: 527 / 479,
  11190. bottom: 0.05
  11191. }
  11192. },
  11193. },
  11194. [
  11195. {
  11196. name: "Micro",
  11197. height: math.unit(3, "feet")
  11198. },
  11199. {
  11200. name: "Normal",
  11201. height: math.unit(10, "feet")
  11202. },
  11203. {
  11204. name: "Macro",
  11205. height: math.unit(150, "feet"),
  11206. default: true
  11207. },
  11208. {
  11209. name: "Megamacro",
  11210. height: math.unit(1200, "feet")
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "King", species: ["lion"], tags: ["anthro"] },
  11216. {
  11217. back: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(150, "lb"),
  11220. name: "Back",
  11221. image: {
  11222. source: "./media/characters/king/back.svg"
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Micro",
  11229. height: math.unit(2, "inches")
  11230. },
  11231. {
  11232. name: "Normal",
  11233. height: math.unit(8, "feet")
  11234. },
  11235. {
  11236. name: "Macro",
  11237. height: math.unit(200, "feet"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Megamacro",
  11242. height: math.unit(50, "miles")
  11243. },
  11244. ]
  11245. ))
  11246. characterMakers.push(() => makeCharacter(
  11247. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11248. {
  11249. front: {
  11250. height: math.unit(11, "feet"),
  11251. weight: math.unit(1400, "lb"),
  11252. name: "Front",
  11253. image: {
  11254. source: "./media/characters/cordite/front.svg",
  11255. extra: 1919/1827,
  11256. bottom: 40/1959
  11257. }
  11258. },
  11259. side: {
  11260. height: math.unit(11, "feet"),
  11261. weight: math.unit(1400, "lb"),
  11262. name: "Side",
  11263. image: {
  11264. source: "./media/characters/cordite/side.svg",
  11265. extra: 1908/1793,
  11266. bottom: 38/1946
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(11, "feet"),
  11271. weight: math.unit(1400, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/cordite/back.svg",
  11275. extra: 1938/1837,
  11276. bottom: 10/1948
  11277. }
  11278. },
  11279. feral: {
  11280. height: math.unit(2, "feet"),
  11281. weight: math.unit(90, "lb"),
  11282. name: "Feral",
  11283. image: {
  11284. source: "./media/characters/cordite/feral.svg",
  11285. extra: 1260 / 755,
  11286. bottom: 0.05
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(11, "feet"),
  11294. default: true
  11295. },
  11296. ]
  11297. ))
  11298. characterMakers.push(() => makeCharacter(
  11299. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11300. {
  11301. front: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(150, "lb"),
  11304. name: "Front",
  11305. image: {
  11306. source: "./media/characters/pianostrong/front.svg",
  11307. extra: 6577 / 6254,
  11308. bottom: 0.02
  11309. }
  11310. },
  11311. side: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(150, "lb"),
  11314. name: "Side",
  11315. image: {
  11316. source: "./media/characters/pianostrong/side.svg",
  11317. extra: 6106 / 5730
  11318. }
  11319. },
  11320. back: {
  11321. height: math.unit(6, "feet"),
  11322. weight: math.unit(150, "lb"),
  11323. name: "Back",
  11324. image: {
  11325. source: "./media/characters/pianostrong/back.svg",
  11326. extra: 6085 / 5733,
  11327. bottom: 0.01
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Macro",
  11334. height: math.unit(100, "feet")
  11335. },
  11336. {
  11337. name: "Macro+",
  11338. height: math.unit(300, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Macro++",
  11343. height: math.unit(1000, "feet")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(6, "feet"),
  11352. weight: math.unit(150, "lb"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/kona/front.svg",
  11356. extra: 2960 / 2629,
  11357. bottom: 0.005
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Normal",
  11364. height: math.unit(11 + 8 / 12, "feet")
  11365. },
  11366. {
  11367. name: "Macro",
  11368. height: math.unit(850, "feet"),
  11369. default: true
  11370. },
  11371. {
  11372. name: "Macro+",
  11373. height: math.unit(1.5, "km"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(80, "miles")
  11379. },
  11380. {
  11381. name: "Gigamacro",
  11382. height: math.unit(3500, "miles")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11388. {
  11389. side: {
  11390. height: math.unit(1.9, "meters"),
  11391. weight: math.unit(326, "kg"),
  11392. name: "Side",
  11393. image: {
  11394. source: "./media/characters/levi/side.svg",
  11395. extra: 1704 / 1334,
  11396. bottom: 0.02
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(1.9, "meters"),
  11404. default: true
  11405. },
  11406. {
  11407. name: "Macro",
  11408. height: math.unit(20, "meters")
  11409. },
  11410. {
  11411. name: "Macro+",
  11412. height: math.unit(200, "meters")
  11413. },
  11414. {
  11415. name: "Megamacro",
  11416. height: math.unit(2, "km")
  11417. },
  11418. {
  11419. name: "Megamacro+",
  11420. height: math.unit(20, "km")
  11421. },
  11422. {
  11423. name: "Gigamacro",
  11424. height: math.unit(2500, "km")
  11425. },
  11426. {
  11427. name: "Gigamacro+",
  11428. height: math.unit(120000, "km")
  11429. },
  11430. {
  11431. name: "Teramacro",
  11432. height: math.unit(7.77e6, "km")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(6 + 4/12, "feet"),
  11441. weight: math.unit(190, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/bmc/front.svg",
  11445. extra: 1626/1472,
  11446. bottom: 79/1705
  11447. }
  11448. },
  11449. back: {
  11450. height: math.unit(6 + 4/12, "feet"),
  11451. weight: math.unit(190, "lb"),
  11452. name: "Back",
  11453. image: {
  11454. source: "./media/characters/bmc/back.svg",
  11455. extra: 1640/1479,
  11456. bottom: 45/1685
  11457. }
  11458. },
  11459. frontArmor: {
  11460. height: math.unit(6 + 4/12, "feet"),
  11461. weight: math.unit(190, "lb"),
  11462. name: "Front-armor",
  11463. image: {
  11464. source: "./media/characters/bmc/front-armor.svg",
  11465. extra: 1538/1468,
  11466. bottom: 79/1617
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Human-sized",
  11473. height: math.unit(6 + 4 / 12, "feet")
  11474. },
  11475. {
  11476. name: "Interactive Size",
  11477. height: math.unit(25, "feet")
  11478. },
  11479. {
  11480. name: "Small",
  11481. height: math.unit(250, "feet")
  11482. },
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(1250, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Good Day",
  11490. height: math.unit(88, "miles")
  11491. },
  11492. {
  11493. name: "Largest Measured Size",
  11494. height: math.unit(105.960, "galaxies")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11500. {
  11501. front: {
  11502. height: math.unit(20, "feet"),
  11503. weight: math.unit(2016, "kg"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/sven-the-kaiju/front.svg",
  11507. extra: 1277/1250,
  11508. bottom: 35/1312
  11509. }
  11510. },
  11511. mouth: {
  11512. height: math.unit(1.85, "feet"),
  11513. name: "Mouth",
  11514. image: {
  11515. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11516. }
  11517. },
  11518. },
  11519. [
  11520. {
  11521. name: "Fairy",
  11522. height: math.unit(6, "inches")
  11523. },
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(20, "feet"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Rampage",
  11531. height: math.unit(200, "feet")
  11532. },
  11533. {
  11534. name: "Archfey Forest Guardian",
  11535. height: math.unit(1, "mile")
  11536. },
  11537. ]
  11538. ))
  11539. characterMakers.push(() => makeCharacter(
  11540. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11541. {
  11542. front: {
  11543. height: math.unit(4, "meters"),
  11544. weight: math.unit(2, "tons"),
  11545. name: "Front",
  11546. image: {
  11547. source: "./media/characters/marik/front.svg",
  11548. extra: 1057 / 1003,
  11549. bottom: 0.08
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(4, "meters"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Macro",
  11561. height: math.unit(20, "meters")
  11562. },
  11563. {
  11564. name: "Megamacro",
  11565. height: math.unit(50, "km")
  11566. },
  11567. {
  11568. name: "Gigamacro",
  11569. height: math.unit(100, "km")
  11570. },
  11571. {
  11572. name: "Alpha Macro",
  11573. height: math.unit(7.88e7, "yottameters")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(6, "feet"),
  11582. weight: math.unit(110, "lb"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/mel/front.svg",
  11586. extra: 736 / 617,
  11587. bottom: 0.017
  11588. }
  11589. },
  11590. },
  11591. [
  11592. {
  11593. name: "Pico",
  11594. height: math.unit(3, "pm")
  11595. },
  11596. {
  11597. name: "Nano",
  11598. height: math.unit(3, "nm")
  11599. },
  11600. {
  11601. name: "Micro",
  11602. height: math.unit(0.3, "mm"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Micro+",
  11607. height: math.unit(3, "mm")
  11608. },
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(5 + 10.5 / 12, "feet")
  11612. },
  11613. ]
  11614. ))
  11615. characterMakers.push(() => makeCharacter(
  11616. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11617. {
  11618. kaiju: {
  11619. height: math.unit(1.75, "meters"),
  11620. weight: math.unit(55, "kg"),
  11621. name: "Kaiju",
  11622. image: {
  11623. source: "./media/characters/lykonous/kaiju.svg",
  11624. extra: 1055 / 946,
  11625. bottom: 0.135
  11626. }
  11627. },
  11628. },
  11629. [
  11630. {
  11631. name: "Normal",
  11632. height: math.unit(2.5, "meters"),
  11633. default: true
  11634. },
  11635. {
  11636. name: "Kaiju Dragon",
  11637. height: math.unit(60, "meters")
  11638. },
  11639. {
  11640. name: "Mega Kaiju",
  11641. height: math.unit(120, "km")
  11642. },
  11643. {
  11644. name: "Giga Kaiju",
  11645. height: math.unit(200, "megameters")
  11646. },
  11647. {
  11648. name: "Terra Kaiju",
  11649. height: math.unit(400, "gigameters")
  11650. },
  11651. {
  11652. name: "Kaiju Dragon God",
  11653. height: math.unit(13000, "exaparsecs")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11659. {
  11660. front: {
  11661. height: math.unit(6, "feet"),
  11662. weight: math.unit(150, "lb"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/blü/front.svg",
  11666. extra: 1883 / 1564,
  11667. bottom: 0.031
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(13, "feet"),
  11675. default: true
  11676. },
  11677. {
  11678. name: "Big Boi",
  11679. height: math.unit(150, "meters")
  11680. },
  11681. {
  11682. name: "Mini Stomper",
  11683. height: math.unit(300, "meters")
  11684. },
  11685. {
  11686. name: "Macro",
  11687. height: math.unit(1000, "meters")
  11688. },
  11689. {
  11690. name: "Megamacro",
  11691. height: math.unit(11000, "meters")
  11692. },
  11693. {
  11694. name: "Gigamacro",
  11695. height: math.unit(11000, "km")
  11696. },
  11697. {
  11698. name: "Teramacro",
  11699. height: math.unit(420000, "km")
  11700. },
  11701. {
  11702. name: "Examacro",
  11703. height: math.unit(120, "parsecs")
  11704. },
  11705. {
  11706. name: "God Tho",
  11707. height: math.unit(98000000000, "parsecs")
  11708. },
  11709. ]
  11710. ))
  11711. characterMakers.push(() => makeCharacter(
  11712. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11713. {
  11714. taurFront: {
  11715. height: math.unit(6, "feet"),
  11716. weight: math.unit(200, "lb"),
  11717. name: "Taur (Front)",
  11718. image: {
  11719. source: "./media/characters/scales/taur-front.svg",
  11720. extra: 1,
  11721. bottom: 0.05
  11722. }
  11723. },
  11724. taurBack: {
  11725. height: math.unit(6, "feet"),
  11726. weight: math.unit(200, "lb"),
  11727. name: "Taur (Back)",
  11728. image: {
  11729. source: "./media/characters/scales/taur-back.svg",
  11730. extra: 1,
  11731. bottom: 0.08
  11732. }
  11733. },
  11734. anthro: {
  11735. height: math.unit(6 * 7 / 12, "feet"),
  11736. weight: math.unit(100, "lb"),
  11737. name: "Anthro",
  11738. image: {
  11739. source: "./media/characters/scales/anthro.svg",
  11740. extra: 1,
  11741. bottom: 0.06
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Normal",
  11748. height: math.unit(12, "feet"),
  11749. default: true
  11750. },
  11751. ]
  11752. ))
  11753. characterMakers.push(() => makeCharacter(
  11754. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11755. {
  11756. front: {
  11757. height: math.unit(6, "feet"),
  11758. weight: math.unit(150, "lb"),
  11759. name: "Front",
  11760. image: {
  11761. source: "./media/characters/koragos/front.svg",
  11762. extra: 841 / 794,
  11763. bottom: 0.035
  11764. }
  11765. },
  11766. back: {
  11767. height: math.unit(6, "feet"),
  11768. weight: math.unit(150, "lb"),
  11769. name: "Back",
  11770. image: {
  11771. source: "./media/characters/koragos/back.svg",
  11772. extra: 841 / 810,
  11773. bottom: 0.022
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(6 + 11 / 12, "feet"),
  11781. default: true
  11782. },
  11783. {
  11784. name: "Macro",
  11785. height: math.unit(490, "feet")
  11786. },
  11787. {
  11788. name: "Megamacro",
  11789. height: math.unit(10, "miles")
  11790. },
  11791. {
  11792. name: "Gigamacro",
  11793. height: math.unit(50, "miles")
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11799. {
  11800. front: {
  11801. height: math.unit(6, "feet"),
  11802. weight: math.unit(250, "lb"),
  11803. name: "Front",
  11804. image: {
  11805. source: "./media/characters/xylrem/front.svg",
  11806. extra: 3323 / 3050,
  11807. bottom: 0.065
  11808. }
  11809. },
  11810. },
  11811. [
  11812. {
  11813. name: "Micro",
  11814. height: math.unit(4, "feet")
  11815. },
  11816. {
  11817. name: "Normal",
  11818. height: math.unit(16, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Macro",
  11823. height: math.unit(2720, "feet")
  11824. },
  11825. {
  11826. name: "Megamacro",
  11827. height: math.unit(25000, "miles")
  11828. },
  11829. ]
  11830. ))
  11831. characterMakers.push(() => makeCharacter(
  11832. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11833. {
  11834. front: {
  11835. height: math.unit(8, "feet"),
  11836. weight: math.unit(250, "kg"),
  11837. name: "Front",
  11838. image: {
  11839. source: "./media/characters/ikideru/front.svg",
  11840. extra: 930 / 870,
  11841. bottom: 0.087
  11842. }
  11843. },
  11844. back: {
  11845. height: math.unit(8, "feet"),
  11846. weight: math.unit(250, "kg"),
  11847. name: "Back",
  11848. image: {
  11849. source: "./media/characters/ikideru/back.svg",
  11850. extra: 919 / 852,
  11851. bottom: 0.055
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Rare",
  11858. height: math.unit(8, "feet"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Playful Loom",
  11863. height: math.unit(80, "feet")
  11864. },
  11865. {
  11866. name: "City Leaner",
  11867. height: math.unit(230, "feet")
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(2500, "feet")
  11872. },
  11873. {
  11874. name: "Gigamacro",
  11875. height: math.unit(26400, "feet")
  11876. },
  11877. {
  11878. name: "Tectonic Shifter",
  11879. height: math.unit(1.7, "megameters")
  11880. },
  11881. {
  11882. name: "Planet Carer",
  11883. height: math.unit(21, "megameters")
  11884. },
  11885. {
  11886. name: "God",
  11887. height: math.unit(11157.22, "parsecs")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(6, "feet"),
  11896. weight: math.unit(120, "lb"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/neo/front.svg"
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Micro",
  11906. height: math.unit(2, "inches"),
  11907. default: true
  11908. },
  11909. {
  11910. name: "Human Size",
  11911. height: math.unit(5 + 8 / 12, "feet")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(13 + 10 / 12, "feet"),
  11920. weight: math.unit(5320, "lb"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/chauncey-chantz/front.svg",
  11924. extra: 1587 / 1435,
  11925. bottom: 0.02
  11926. }
  11927. },
  11928. },
  11929. [
  11930. {
  11931. name: "Normal",
  11932. height: math.unit(13 + 10 / 12, "feet"),
  11933. default: true
  11934. },
  11935. {
  11936. name: "Macro",
  11937. height: math.unit(45, "feet")
  11938. },
  11939. {
  11940. name: "Megamacro",
  11941. height: math.unit(250, "miles")
  11942. },
  11943. {
  11944. name: "Planetary",
  11945. height: math.unit(10000, "miles")
  11946. },
  11947. {
  11948. name: "Galactic",
  11949. height: math.unit(40000, "parsecs")
  11950. },
  11951. {
  11952. name: "Universal",
  11953. height: math.unit(1, "yottameter")
  11954. },
  11955. ]
  11956. ))
  11957. characterMakers.push(() => makeCharacter(
  11958. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11959. {
  11960. front: {
  11961. height: math.unit(6, "feet"),
  11962. weight: math.unit(150, "lb"),
  11963. name: "Front",
  11964. image: {
  11965. source: "./media/characters/epifox/front.svg",
  11966. extra: 1,
  11967. bottom: 0.075
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Micro",
  11974. height: math.unit(6, "inches")
  11975. },
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(12, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Macro",
  11983. height: math.unit(3810, "feet")
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(500, "miles")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(1.8796, "m"),
  11996. weight: math.unit(230, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/colin-t/front.svg",
  12000. extra: 1272 / 1193,
  12001. bottom: 0.07
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Micro",
  12008. height: math.unit(0.571, "meters")
  12009. },
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(1.8796, "meters"),
  12013. default: true
  12014. },
  12015. {
  12016. name: "Tall",
  12017. height: math.unit(4, "meters")
  12018. },
  12019. {
  12020. name: "Macro",
  12021. height: math.unit(67.241, "meters")
  12022. },
  12023. {
  12024. name: "Megamacro",
  12025. height: math.unit(371.856, "meters")
  12026. },
  12027. {
  12028. name: "Planetary",
  12029. height: math.unit(12631.5689, "km")
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12035. {
  12036. front: {
  12037. height: math.unit(1.85, "meters"),
  12038. weight: math.unit(80, "kg"),
  12039. name: "Front",
  12040. image: {
  12041. source: "./media/characters/matvei/front.svg",
  12042. extra: 614 / 594,
  12043. bottom: 0.01
  12044. }
  12045. },
  12046. },
  12047. [
  12048. {
  12049. name: "Normal",
  12050. height: math.unit(1.85, "meters"),
  12051. default: true
  12052. },
  12053. ]
  12054. ))
  12055. characterMakers.push(() => makeCharacter(
  12056. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12057. {
  12058. front: {
  12059. height: math.unit(5 + 9 / 12, "feet"),
  12060. weight: math.unit(70, "lb"),
  12061. name: "Front",
  12062. image: {
  12063. source: "./media/characters/quincy/front.svg",
  12064. extra: 3041 / 2751
  12065. }
  12066. },
  12067. back: {
  12068. height: math.unit(5 + 9 / 12, "feet"),
  12069. weight: math.unit(70, "lb"),
  12070. name: "Back",
  12071. image: {
  12072. source: "./media/characters/quincy/back.svg",
  12073. extra: 3041 / 2751
  12074. }
  12075. },
  12076. flying: {
  12077. height: math.unit(5 + 4 / 12, "feet"),
  12078. weight: math.unit(70, "lb"),
  12079. name: "Flying",
  12080. image: {
  12081. source: "./media/characters/quincy/flying.svg",
  12082. extra: 1044 / 930
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Micro",
  12089. height: math.unit(3, "cm")
  12090. },
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(5 + 9 / 12, "feet")
  12094. },
  12095. {
  12096. name: "Macro",
  12097. height: math.unit(200, "meters"),
  12098. default: true
  12099. },
  12100. {
  12101. name: "Megamacro",
  12102. height: math.unit(1000, "meters")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(3 + 11/12, "feet"),
  12111. weight: math.unit(50, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/vanrel/front.svg",
  12115. extra: 1104/949,
  12116. bottom: 52/1156
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(3 + 11/12, "feet"),
  12121. weight: math.unit(50, "lb"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/vanrel/back.svg",
  12125. extra: 1119/976,
  12126. bottom: 37/1156
  12127. }
  12128. },
  12129. tome: {
  12130. height: math.unit(1.35, "feet"),
  12131. weight: math.unit(10, "lb"),
  12132. name: "Vanrel's Tome",
  12133. rename: true,
  12134. image: {
  12135. source: "./media/characters/vanrel/tome.svg"
  12136. }
  12137. },
  12138. beans: {
  12139. height: math.unit(0.89, "feet"),
  12140. name: "Beans",
  12141. image: {
  12142. source: "./media/characters/vanrel/beans.svg"
  12143. }
  12144. },
  12145. },
  12146. [
  12147. {
  12148. name: "Normal",
  12149. height: math.unit(3 + 11/12, "feet"),
  12150. default: true
  12151. },
  12152. ]
  12153. ))
  12154. characterMakers.push(() => makeCharacter(
  12155. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12156. {
  12157. front: {
  12158. height: math.unit(7 + 5 / 12, "feet"),
  12159. name: "Front",
  12160. image: {
  12161. source: "./media/characters/kuiper-vanrel/front.svg",
  12162. extra: 1219/1169,
  12163. bottom: 69/1288
  12164. }
  12165. },
  12166. back: {
  12167. height: math.unit(7 + 5 / 12, "feet"),
  12168. name: "Back",
  12169. image: {
  12170. source: "./media/characters/kuiper-vanrel/back.svg",
  12171. extra: 1236/1193,
  12172. bottom: 27/1263
  12173. }
  12174. },
  12175. foot: {
  12176. height: math.unit(0.55, "meters"),
  12177. name: "Foot",
  12178. image: {
  12179. source: "./media/characters/kuiper-vanrel/foot.svg",
  12180. }
  12181. },
  12182. battle: {
  12183. height: math.unit(6.824, "feet"),
  12184. name: "Battle",
  12185. image: {
  12186. source: "./media/characters/kuiper-vanrel/battle.svg",
  12187. extra: 1466 / 1327,
  12188. bottom: 29 / 1492.5
  12189. }
  12190. },
  12191. meerkui: {
  12192. height: math.unit(18, "inches"),
  12193. name: "Meerkui",
  12194. image: {
  12195. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12196. extra: 1354/1289,
  12197. bottom: 69/1423
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(7 + 5 / 12, "feet"),
  12205. default: true
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(8 + 5 / 12, "feet"),
  12214. name: "Front",
  12215. image: {
  12216. source: "./media/characters/keset-vanrel/front.svg",
  12217. extra: 1231/1148,
  12218. bottom: 82/1313
  12219. }
  12220. },
  12221. back: {
  12222. height: math.unit(8 + 5 / 12, "feet"),
  12223. name: "Back",
  12224. image: {
  12225. source: "./media/characters/keset-vanrel/back.svg",
  12226. extra: 1240/1174,
  12227. bottom: 33/1273
  12228. }
  12229. },
  12230. hand: {
  12231. height: math.unit(0.6, "meters"),
  12232. name: "Hand",
  12233. image: {
  12234. source: "./media/characters/keset-vanrel/hand.svg"
  12235. }
  12236. },
  12237. foot: {
  12238. height: math.unit(0.94978, "meters"),
  12239. name: "Foot",
  12240. image: {
  12241. source: "./media/characters/keset-vanrel/foot.svg"
  12242. }
  12243. },
  12244. battle: {
  12245. height: math.unit(7.408, "feet"),
  12246. name: "Battle",
  12247. image: {
  12248. source: "./media/characters/keset-vanrel/battle.svg",
  12249. extra: 1890 / 1386,
  12250. bottom: 73.28 / 1970
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(8 + 5 / 12, "feet"),
  12258. default: true
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(6, "feet"),
  12267. weight: math.unit(150, "lb"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/neos/front.svg",
  12271. extra: 1696 / 992,
  12272. bottom: 0.14
  12273. }
  12274. },
  12275. },
  12276. [
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(54, "cm"),
  12280. default: true
  12281. },
  12282. {
  12283. name: "Macro",
  12284. height: math.unit(100, "m")
  12285. },
  12286. {
  12287. name: "Megamacro",
  12288. height: math.unit(10, "km")
  12289. },
  12290. {
  12291. name: "Megamacro+",
  12292. height: math.unit(100, "km")
  12293. },
  12294. {
  12295. name: "Gigamacro",
  12296. height: math.unit(100, "Mm")
  12297. },
  12298. {
  12299. name: "Teramacro",
  12300. height: math.unit(100, "Gm")
  12301. },
  12302. {
  12303. name: "Examacro",
  12304. height: math.unit(100, "Em")
  12305. },
  12306. {
  12307. name: "Godly",
  12308. height: math.unit(10000, "Ym")
  12309. },
  12310. {
  12311. name: "Beyond Godly",
  12312. height: math.unit(25, "multiverses")
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12318. {
  12319. feminine: {
  12320. height: math.unit(5, "feet"),
  12321. weight: math.unit(100, "lb"),
  12322. name: "Feminine",
  12323. image: {
  12324. source: "./media/characters/sammy-mouse/feminine.svg",
  12325. extra: 2526 / 2425,
  12326. bottom: 0.123
  12327. }
  12328. },
  12329. masculine: {
  12330. height: math.unit(5, "feet"),
  12331. weight: math.unit(100, "lb"),
  12332. name: "Masculine",
  12333. image: {
  12334. source: "./media/characters/sammy-mouse/masculine.svg",
  12335. extra: 2526 / 2425,
  12336. bottom: 0.123
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Micro",
  12343. height: math.unit(5, "inches")
  12344. },
  12345. {
  12346. name: "Normal",
  12347. height: math.unit(5, "feet"),
  12348. default: true
  12349. },
  12350. {
  12351. name: "Macro",
  12352. height: math.unit(60, "feet")
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(4, "feet"),
  12361. weight: math.unit(50, "lb"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/kole/front.svg",
  12365. extra: 1423 / 1303,
  12366. bottom: 0.025
  12367. }
  12368. },
  12369. back: {
  12370. height: math.unit(4, "feet"),
  12371. weight: math.unit(50, "lb"),
  12372. name: "Back",
  12373. image: {
  12374. source: "./media/characters/kole/back.svg",
  12375. extra: 1426 / 1280,
  12376. bottom: 0.02
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Normal",
  12383. height: math.unit(4, "feet"),
  12384. default: true
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(2.5, "feet"),
  12393. weight: math.unit(32, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/rufran/front.svg",
  12397. extra: 1313/885,
  12398. bottom: 94/1407
  12399. }
  12400. },
  12401. side: {
  12402. height: math.unit(2.5, "feet"),
  12403. weight: math.unit(32, "lb"),
  12404. name: "Side",
  12405. image: {
  12406. source: "./media/characters/rufran/side.svg",
  12407. extra: 1109/852,
  12408. bottom: 118/1227
  12409. }
  12410. },
  12411. back: {
  12412. height: math.unit(2.5, "feet"),
  12413. weight: math.unit(32, "lb"),
  12414. name: "Back",
  12415. image: {
  12416. source: "./media/characters/rufran/back.svg",
  12417. extra: 1280/878,
  12418. bottom: 131/1411
  12419. }
  12420. },
  12421. mouth: {
  12422. height: math.unit(1.13, "feet"),
  12423. name: "Mouth",
  12424. image: {
  12425. source: "./media/characters/rufran/mouth.svg"
  12426. }
  12427. },
  12428. foot: {
  12429. height: math.unit(1.33, "feet"),
  12430. name: "Foot",
  12431. image: {
  12432. source: "./media/characters/rufran/foot.svg"
  12433. }
  12434. },
  12435. koboldFront: {
  12436. height: math.unit(2 + 6 / 12, "feet"),
  12437. weight: math.unit(20, "lb"),
  12438. name: "Front (Kobold)",
  12439. image: {
  12440. source: "./media/characters/rufran/kobold-front.svg",
  12441. extra: 2041 / 1839,
  12442. bottom: 0.055
  12443. }
  12444. },
  12445. koboldBack: {
  12446. height: math.unit(2 + 6 / 12, "feet"),
  12447. weight: math.unit(20, "lb"),
  12448. name: "Back (Kobold)",
  12449. image: {
  12450. source: "./media/characters/rufran/kobold-back.svg",
  12451. extra: 2054 / 1839,
  12452. bottom: 0.01
  12453. }
  12454. },
  12455. koboldHand: {
  12456. height: math.unit(0.2166, "meters"),
  12457. name: "Hand (Kobold)",
  12458. image: {
  12459. source: "./media/characters/rufran/kobold-hand.svg"
  12460. }
  12461. },
  12462. koboldFoot: {
  12463. height: math.unit(0.185, "meters"),
  12464. name: "Foot (Kobold)",
  12465. image: {
  12466. source: "./media/characters/rufran/kobold-foot.svg"
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Micro",
  12473. height: math.unit(1, "inch")
  12474. },
  12475. {
  12476. name: "Normal",
  12477. height: math.unit(2 + 6 / 12, "feet"),
  12478. default: true
  12479. },
  12480. {
  12481. name: "Big",
  12482. height: math.unit(60, "feet")
  12483. },
  12484. {
  12485. name: "Macro",
  12486. height: math.unit(325, "feet")
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(0.3, "meters"),
  12495. weight: math.unit(3.5, "kg"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/chip/front.svg",
  12499. extra: 748 / 674
  12500. }
  12501. },
  12502. },
  12503. [
  12504. {
  12505. name: "Micro",
  12506. height: math.unit(1, "inch"),
  12507. default: true
  12508. },
  12509. ]
  12510. ))
  12511. characterMakers.push(() => makeCharacter(
  12512. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12513. {
  12514. side: {
  12515. height: math.unit(2.3, "meters"),
  12516. weight: math.unit(3500, "lb"),
  12517. name: "Side",
  12518. image: {
  12519. source: "./media/characters/torvid/side.svg",
  12520. extra: 1972 / 722,
  12521. bottom: 0.035
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Normal",
  12528. height: math.unit(2.3, "meters"),
  12529. default: true
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(2, "meters"),
  12538. weight: math.unit(150.5, "kg"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/susan/front.svg",
  12542. extra: 693 / 635,
  12543. bottom: 0.05
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Megamacro",
  12550. height: math.unit(505, "miles"),
  12551. default: true
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12557. {
  12558. front: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(150, "lb"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/raindrops/front.svg",
  12564. extra: 2655 / 2461,
  12565. bottom: 49 / 2705
  12566. }
  12567. },
  12568. back: {
  12569. height: math.unit(6, "feet"),
  12570. weight: math.unit(150, "lb"),
  12571. name: "Back",
  12572. image: {
  12573. source: "./media/characters/raindrops/back.svg",
  12574. extra: 2574 / 2400,
  12575. bottom: 65 / 2634
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Micro",
  12582. height: math.unit(6, "inches")
  12583. },
  12584. {
  12585. name: "Normal",
  12586. height: math.unit(6 + 2 / 12, "feet")
  12587. },
  12588. {
  12589. name: "Macro",
  12590. height: math.unit(131, "feet"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Megamacro",
  12595. height: math.unit(15, "miles")
  12596. },
  12597. {
  12598. name: "Gigamacro",
  12599. height: math.unit(4000, "miles")
  12600. },
  12601. {
  12602. name: "Teramacro",
  12603. height: math.unit(315000, "miles")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(2.794, "meters"),
  12612. weight: math.unit(325, "kg"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/tezwa/front.svg",
  12616. extra: 2083 / 1906,
  12617. bottom: 0.031
  12618. }
  12619. },
  12620. foot: {
  12621. height: math.unit(0.687, "meters"),
  12622. name: "Foot",
  12623. image: {
  12624. source: "./media/characters/tezwa/foot.svg"
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(9 + 2 / 12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12638. {
  12639. front: {
  12640. height: math.unit(58, "feet"),
  12641. weight: math.unit(89000, "lb"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/typhus/front.svg",
  12645. extra: 816 / 800,
  12646. bottom: 0.065
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(58, "feet"),
  12654. default: true
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(12, "feet"),
  12663. weight: math.unit(6, "tonnes"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/lyra-von-wulf/front.svg",
  12667. extra: 1,
  12668. bottom: 0.10
  12669. }
  12670. },
  12671. frontMecha: {
  12672. height: math.unit(12, "feet"),
  12673. weight: math.unit(12, "tonnes"),
  12674. name: "Front (Mecha)",
  12675. image: {
  12676. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12677. extra: 1,
  12678. bottom: 0.042
  12679. }
  12680. },
  12681. maw: {
  12682. height: math.unit(2.2, "feet"),
  12683. name: "Maw",
  12684. image: {
  12685. source: "./media/characters/lyra-von-wulf/maw.svg"
  12686. }
  12687. },
  12688. },
  12689. [
  12690. {
  12691. name: "Normal",
  12692. height: math.unit(12, "feet"),
  12693. default: true
  12694. },
  12695. {
  12696. name: "Classic",
  12697. height: math.unit(50, "feet")
  12698. },
  12699. {
  12700. name: "Macro",
  12701. height: math.unit(500, "feet")
  12702. },
  12703. {
  12704. name: "Megamacro",
  12705. height: math.unit(1, "mile")
  12706. },
  12707. {
  12708. name: "Gigamacro",
  12709. height: math.unit(400, "miles")
  12710. },
  12711. {
  12712. name: "Teramacro",
  12713. height: math.unit(22000, "miles")
  12714. },
  12715. {
  12716. name: "Solarmacro",
  12717. height: math.unit(8600000, "miles")
  12718. },
  12719. {
  12720. name: "Galactic",
  12721. height: math.unit(1057000, "lightyears")
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12727. {
  12728. front: {
  12729. height: math.unit(6 + 10 / 12, "feet"),
  12730. weight: math.unit(150, "lb"),
  12731. name: "Front",
  12732. image: {
  12733. source: "./media/characters/dixon/front.svg",
  12734. extra: 3361 / 3209,
  12735. bottom: 0.01
  12736. }
  12737. },
  12738. },
  12739. [
  12740. {
  12741. name: "Normal",
  12742. height: math.unit(6 + 10 / 12, "feet"),
  12743. default: true
  12744. },
  12745. {
  12746. name: "Big",
  12747. height: math.unit(12, "meters")
  12748. },
  12749. {
  12750. name: "Macro",
  12751. height: math.unit(500, "meters")
  12752. },
  12753. {
  12754. name: "Megamacro",
  12755. height: math.unit(2, "km")
  12756. },
  12757. ]
  12758. ))
  12759. characterMakers.push(() => makeCharacter(
  12760. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12761. {
  12762. front: {
  12763. height: math.unit(185, "cm"),
  12764. weight: math.unit(68, "kg"),
  12765. name: "Front",
  12766. image: {
  12767. source: "./media/characters/kauko/front.svg",
  12768. extra: 1455 / 1421,
  12769. bottom: 0.03
  12770. }
  12771. },
  12772. back: {
  12773. height: math.unit(185, "cm"),
  12774. weight: math.unit(68, "kg"),
  12775. name: "Back",
  12776. image: {
  12777. source: "./media/characters/kauko/back.svg",
  12778. extra: 1455 / 1421,
  12779. bottom: 0.004
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(185, "cm"),
  12787. default: true
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(6, "feet"),
  12796. weight: math.unit(150, "kg"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/varg/front.svg",
  12800. extra: 1108 / 1018,
  12801. bottom: 0.0375
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Normal",
  12808. height: math.unit(5, "meters")
  12809. },
  12810. {
  12811. name: "Macro",
  12812. height: math.unit(200, "meters")
  12813. },
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(20, "kilometers")
  12817. },
  12818. {
  12819. name: "True Size",
  12820. height: math.unit(211, "km"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Gigamacro",
  12825. height: math.unit(1000, "km")
  12826. },
  12827. {
  12828. name: "Gigamacro+",
  12829. height: math.unit(8000, "km")
  12830. },
  12831. {
  12832. name: "Teramacro",
  12833. height: math.unit(1000000, "km")
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12839. {
  12840. front: {
  12841. height: math.unit(7 + 7 / 12, "feet"),
  12842. weight: math.unit(267, "lb"),
  12843. name: "Front",
  12844. image: {
  12845. source: "./media/characters/dayza/front.svg",
  12846. extra: 1262 / 1200,
  12847. bottom: 0.035
  12848. }
  12849. },
  12850. side: {
  12851. height: math.unit(7 + 7 / 12, "feet"),
  12852. weight: math.unit(267, "lb"),
  12853. name: "Side",
  12854. image: {
  12855. source: "./media/characters/dayza/side.svg",
  12856. extra: 1295 / 1245,
  12857. bottom: 0.05
  12858. }
  12859. },
  12860. back: {
  12861. height: math.unit(7 + 7 / 12, "feet"),
  12862. weight: math.unit(267, "lb"),
  12863. name: "Back",
  12864. image: {
  12865. source: "./media/characters/dayza/back.svg",
  12866. extra: 1241 / 1170
  12867. }
  12868. },
  12869. },
  12870. [
  12871. {
  12872. name: "Normal",
  12873. height: math.unit(7 + 7 / 12, "feet"),
  12874. default: true
  12875. },
  12876. {
  12877. name: "Macro",
  12878. height: math.unit(155, "feet")
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6 + 5 / 12, "feet"),
  12887. weight: math.unit(160, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/xanthos/front.svg",
  12891. extra: 1,
  12892. bottom: 0.04
  12893. }
  12894. },
  12895. back: {
  12896. height: math.unit(6 + 5 / 12, "feet"),
  12897. weight: math.unit(160, "lb"),
  12898. name: "Back",
  12899. image: {
  12900. source: "./media/characters/xanthos/back.svg",
  12901. extra: 1,
  12902. bottom: 0.03
  12903. }
  12904. },
  12905. hand: {
  12906. height: math.unit(0.928, "feet"),
  12907. name: "Hand",
  12908. image: {
  12909. source: "./media/characters/xanthos/hand.svg"
  12910. }
  12911. },
  12912. foot: {
  12913. height: math.unit(1.286, "feet"),
  12914. name: "Foot",
  12915. image: {
  12916. source: "./media/characters/xanthos/foot.svg"
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(6 + 5 / 12, "feet"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Normal+",
  12928. height: math.unit(6, "meters")
  12929. },
  12930. {
  12931. name: "Macro",
  12932. height: math.unit(40, "feet")
  12933. },
  12934. {
  12935. name: "Macro+",
  12936. height: math.unit(200, "meters")
  12937. },
  12938. {
  12939. name: "Megamacro",
  12940. height: math.unit(20, "km")
  12941. },
  12942. {
  12943. name: "Megamacro+",
  12944. height: math.unit(100, "km")
  12945. },
  12946. {
  12947. name: "Gigamacro",
  12948. height: math.unit(200, "megameters")
  12949. },
  12950. {
  12951. name: "Gigamacro+",
  12952. height: math.unit(1.5, "gigameters")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12958. {
  12959. front: {
  12960. height: math.unit(6 + 3 / 12, "feet"),
  12961. weight: math.unit(215, "lb"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/grynn/front.svg",
  12965. extra: 4627 / 4209,
  12966. bottom: 0.047
  12967. }
  12968. },
  12969. },
  12970. [
  12971. {
  12972. name: "Micro",
  12973. height: math.unit(6, "inches")
  12974. },
  12975. {
  12976. name: "Normal",
  12977. height: math.unit(6 + 3 / 12, "feet"),
  12978. default: true
  12979. },
  12980. {
  12981. name: "Big",
  12982. height: math.unit(104, "feet")
  12983. },
  12984. {
  12985. name: "Macro",
  12986. height: math.unit(944, "feet")
  12987. },
  12988. {
  12989. name: "Macro+",
  12990. height: math.unit(9480, "feet")
  12991. },
  12992. {
  12993. name: "Megamacro",
  12994. height: math.unit(78752, "feet")
  12995. },
  12996. {
  12997. name: "Megamacro+",
  12998. height: math.unit(630128, "feet")
  12999. },
  13000. {
  13001. name: "Megamacro++",
  13002. height: math.unit(3150695, "feet")
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(7 + 5 / 12, "feet"),
  13011. weight: math.unit(450, "lb"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/mocha-aura/front.svg",
  13015. extra: 1907 / 1817,
  13016. bottom: 0.04
  13017. }
  13018. },
  13019. back: {
  13020. height: math.unit(7 + 5 / 12, "feet"),
  13021. weight: math.unit(450, "lb"),
  13022. name: "Back",
  13023. image: {
  13024. source: "./media/characters/mocha-aura/back.svg",
  13025. extra: 1900 / 1825,
  13026. bottom: 0.045
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Nano",
  13033. height: math.unit(1, "nm")
  13034. },
  13035. {
  13036. name: "Megamicro",
  13037. height: math.unit(1, "mm")
  13038. },
  13039. {
  13040. name: "Micro",
  13041. height: math.unit(3, "inches")
  13042. },
  13043. {
  13044. name: "Normal",
  13045. height: math.unit(7 + 5 / 12, "feet"),
  13046. default: true
  13047. },
  13048. {
  13049. name: "Macro",
  13050. height: math.unit(30, "feet")
  13051. },
  13052. {
  13053. name: "Megamacro",
  13054. height: math.unit(3500, "feet")
  13055. },
  13056. {
  13057. name: "Teramacro",
  13058. height: math.unit(500000, "miles")
  13059. },
  13060. {
  13061. name: "Petamacro",
  13062. height: math.unit(50000000000000000, "parsecs")
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13068. {
  13069. front: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(150, "lb"),
  13072. name: "Front",
  13073. image: {
  13074. source: "./media/characters/ilisha-devya/front.svg",
  13075. extra: 1,
  13076. bottom: 0.175
  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/ilisha-devya/back.svg",
  13085. extra: 1,
  13086. bottom: 0.015
  13087. }
  13088. },
  13089. },
  13090. [
  13091. {
  13092. name: "Macro",
  13093. height: math.unit(500, "feet"),
  13094. default: true
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(10, "miles")
  13099. },
  13100. {
  13101. name: "Gigamacro",
  13102. height: math.unit(100000, "miles")
  13103. },
  13104. {
  13105. name: "Examacro",
  13106. height: math.unit(1e9, "lightyears")
  13107. },
  13108. {
  13109. name: "Omniversal",
  13110. height: math.unit(1e33, "lightyears")
  13111. },
  13112. {
  13113. name: "Beyond Infinite",
  13114. height: math.unit(1e100, "lightyears")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13120. {
  13121. Side: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(150, "lb"),
  13124. name: "Side",
  13125. image: {
  13126. source: "./media/characters/mira/side.svg",
  13127. extra: 900 / 799,
  13128. bottom: 0.02
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Human Size",
  13135. height: math.unit(6, "feet")
  13136. },
  13137. {
  13138. name: "Macro",
  13139. height: math.unit(100, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Megamacro",
  13144. height: math.unit(10, "miles")
  13145. },
  13146. {
  13147. name: "Gigamacro",
  13148. height: math.unit(25000, "miles")
  13149. },
  13150. {
  13151. name: "Teramacro",
  13152. height: math.unit(300, "AU")
  13153. },
  13154. {
  13155. name: "Full Size",
  13156. height: math.unit(4.5e10, "lightyears")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(6, "feet"),
  13165. weight: math.unit(150, "lb"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/holly/front.svg",
  13169. extra: 639 / 606
  13170. }
  13171. },
  13172. back: {
  13173. height: math.unit(6, "feet"),
  13174. weight: math.unit(150, "lb"),
  13175. name: "Back",
  13176. image: {
  13177. source: "./media/characters/holly/back.svg",
  13178. extra: 623 / 598
  13179. }
  13180. },
  13181. frontWorking: {
  13182. height: math.unit(6, "feet"),
  13183. weight: math.unit(150, "lb"),
  13184. name: "Front (Working)",
  13185. image: {
  13186. source: "./media/characters/holly/front-working.svg",
  13187. extra: 607 / 577,
  13188. bottom: 0.048
  13189. }
  13190. },
  13191. },
  13192. [
  13193. {
  13194. name: "Normal",
  13195. height: math.unit(12 + 3 / 12, "feet"),
  13196. default: true
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "lb"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/porter/front.svg",
  13209. extra: 1,
  13210. bottom: 0.01
  13211. }
  13212. },
  13213. frontRobes: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front (Robes)",
  13217. image: {
  13218. source: "./media/characters/porter/front-robes.svg",
  13219. extra: 1.01,
  13220. bottom: 0.01
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Normal",
  13227. height: math.unit(11 + 9 / 12, "feet"),
  13228. default: true
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13234. {
  13235. legendary: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(150, "lb"),
  13238. name: "Legendary",
  13239. image: {
  13240. source: "./media/characters/lucy/legendary.svg",
  13241. extra: 1355 / 1100,
  13242. bottom: 0.045
  13243. }
  13244. },
  13245. },
  13246. [
  13247. {
  13248. name: "Legendary",
  13249. height: math.unit(86882 * 2, "miles"),
  13250. default: true
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/drusilla/front.svg",
  13263. extra: 678 / 635,
  13264. bottom: 0.03
  13265. }
  13266. },
  13267. back: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(150, "lb"),
  13270. name: "Back",
  13271. image: {
  13272. source: "./media/characters/drusilla/back.svg",
  13273. extra: 678 / 635,
  13274. bottom: 0.005
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(100, "feet")
  13282. },
  13283. {
  13284. name: "Canon Height",
  13285. height: math.unit(2000, "feet"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(180, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/renard-thatch/front.svg",
  13299. extra: 2411 / 2275,
  13300. bottom: 0.01
  13301. }
  13302. },
  13303. frontPosing: {
  13304. height: math.unit(6, "feet"),
  13305. weight: math.unit(180, "lb"),
  13306. name: "Front (Posing)",
  13307. image: {
  13308. source: "./media/characters/renard-thatch/front-posing.svg",
  13309. extra: 2381 / 2261,
  13310. bottom: 0.01
  13311. }
  13312. },
  13313. back: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(180, "lb"),
  13316. name: "Back",
  13317. image: {
  13318. source: "./media/characters/renard-thatch/back.svg",
  13319. extra: 2428 / 2288
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Micro",
  13326. height: math.unit(3, "inches")
  13327. },
  13328. {
  13329. name: "Default",
  13330. height: math.unit(6, "feet"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Macro",
  13335. height: math.unit(75, "feet")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13341. {
  13342. front: {
  13343. height: math.unit(1450, "feet"),
  13344. weight: math.unit(1.21e6, "tons"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/sekvra/front.svg",
  13348. extra: 1,
  13349. bottom: 0.03
  13350. }
  13351. },
  13352. frontClothed: {
  13353. height: math.unit(1450, "feet"),
  13354. weight: math.unit(1.21e6, "tons"),
  13355. name: "Front (Clothed)",
  13356. image: {
  13357. source: "./media/characters/sekvra/front-clothed.svg",
  13358. extra: 1,
  13359. bottom: 0.03
  13360. }
  13361. },
  13362. side: {
  13363. height: math.unit(1450, "feet"),
  13364. weight: math.unit(1.21e6, "tons"),
  13365. name: "Side",
  13366. image: {
  13367. source: "./media/characters/sekvra/side.svg",
  13368. extra: 1,
  13369. bottom: 0.025
  13370. }
  13371. },
  13372. back: {
  13373. height: math.unit(1450, "feet"),
  13374. weight: math.unit(1.21e6, "tons"),
  13375. name: "Back",
  13376. image: {
  13377. source: "./media/characters/sekvra/back.svg",
  13378. extra: 1,
  13379. bottom: 0.005
  13380. }
  13381. },
  13382. },
  13383. [
  13384. {
  13385. name: "Macro",
  13386. height: math.unit(1450, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(15000, "feet")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(6, "feet"),
  13400. weight: math.unit(150, "lb"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/carmine/front.svg",
  13404. extra: 1,
  13405. bottom: 0.035
  13406. }
  13407. },
  13408. frontArmor: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(150, "lb"),
  13411. name: "Front (Armor)",
  13412. image: {
  13413. source: "./media/characters/carmine/front-armor.svg",
  13414. extra: 1,
  13415. bottom: 0.035
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Large",
  13422. height: math.unit(1, "mile")
  13423. },
  13424. {
  13425. name: "Huge",
  13426. height: math.unit(40, "miles"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Colossal",
  13431. height: math.unit(2500, "miles")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/elyssia/front.svg",
  13444. extra: 2201 / 2035,
  13445. bottom: 0.05
  13446. }
  13447. },
  13448. frontClothed: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(150, "lb"),
  13451. name: "Front (Clothed)",
  13452. image: {
  13453. source: "./media/characters/elyssia/front-clothed.svg",
  13454. extra: 2201 / 2035,
  13455. bottom: 0.05
  13456. }
  13457. },
  13458. back: {
  13459. height: math.unit(6, "feet"),
  13460. weight: math.unit(150, "lb"),
  13461. name: "Back",
  13462. image: {
  13463. source: "./media/characters/elyssia/back.svg",
  13464. extra: 2201 / 2035,
  13465. bottom: 0.013
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Smaller",
  13472. height: math.unit(150, "feet")
  13473. },
  13474. {
  13475. name: "Standard",
  13476. height: math.unit(1400, "feet"),
  13477. default: true
  13478. },
  13479. {
  13480. name: "Distracted",
  13481. height: math.unit(15000, "feet")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(7 + 4/12, "feet"),
  13490. weight: math.unit(690, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/geno-maxwell/front.svg",
  13494. extra: 984/856,
  13495. bottom: 87/1071
  13496. }
  13497. },
  13498. back: {
  13499. height: math.unit(7 + 4/12, "feet"),
  13500. weight: math.unit(690, "lb"),
  13501. name: "Back",
  13502. image: {
  13503. source: "./media/characters/geno-maxwell/back.svg",
  13504. extra: 981/854,
  13505. bottom: 57/1038
  13506. }
  13507. },
  13508. frontCostume: {
  13509. height: math.unit(7 + 4/12, "feet"),
  13510. weight: math.unit(690, "lb"),
  13511. name: "Front (Costume)",
  13512. image: {
  13513. source: "./media/characters/geno-maxwell/front-costume.svg",
  13514. extra: 984/856,
  13515. bottom: 87/1071
  13516. }
  13517. },
  13518. backcostume: {
  13519. height: math.unit(7 + 4/12, "feet"),
  13520. weight: math.unit(690, "lb"),
  13521. name: "Back (Costume)",
  13522. image: {
  13523. source: "./media/characters/geno-maxwell/back-costume.svg",
  13524. extra: 981/854,
  13525. bottom: 57/1038
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Micro",
  13532. height: math.unit(3, "inches")
  13533. },
  13534. {
  13535. name: "Normal",
  13536. height: math.unit(7 + 4 / 12, "feet"),
  13537. default: true
  13538. },
  13539. {
  13540. name: "Macro",
  13541. height: math.unit(220, "feet")
  13542. },
  13543. {
  13544. name: "Megamacro",
  13545. height: math.unit(11, "miles")
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(7 + 4/12, "feet"),
  13554. weight: math.unit(750, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/regena-maxwell/front.svg",
  13558. extra: 984/856,
  13559. bottom: 87/1071
  13560. }
  13561. },
  13562. back: {
  13563. height: math.unit(7 + 4/12, "feet"),
  13564. weight: math.unit(750, "lb"),
  13565. name: "Back",
  13566. image: {
  13567. source: "./media/characters/regena-maxwell/back.svg",
  13568. extra: 981/854,
  13569. bottom: 57/1038
  13570. }
  13571. },
  13572. frontCostume: {
  13573. height: math.unit(7 + 4/12, "feet"),
  13574. weight: math.unit(750, "lb"),
  13575. name: "Front (Costume)",
  13576. image: {
  13577. source: "./media/characters/regena-maxwell/front-costume.svg",
  13578. extra: 984/856,
  13579. bottom: 87/1071
  13580. }
  13581. },
  13582. backcostume: {
  13583. height: math.unit(7 + 4/12, "feet"),
  13584. weight: math.unit(750, "lb"),
  13585. name: "Back (Costume)",
  13586. image: {
  13587. source: "./media/characters/regena-maxwell/back-costume.svg",
  13588. extra: 981/854,
  13589. bottom: 57/1038
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "Normal",
  13596. height: math.unit(7 + 4 / 12, "feet"),
  13597. default: true
  13598. },
  13599. {
  13600. name: "Macro",
  13601. height: math.unit(220, "feet")
  13602. },
  13603. {
  13604. name: "Megamacro",
  13605. height: math.unit(11, "miles")
  13606. },
  13607. ]
  13608. ))
  13609. characterMakers.push(() => makeCharacter(
  13610. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13611. {
  13612. front: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(150, "lb"),
  13615. name: "Front",
  13616. image: {
  13617. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13618. extra: 860 / 690,
  13619. bottom: 0.03
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Normal",
  13626. height: math.unit(1.7, "meters"),
  13627. default: true
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(6, "feet"),
  13636. weight: math.unit(150, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/quilly/front.svg",
  13640. extra: 890 / 776
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Gigamacro",
  13647. height: math.unit(404090, "miles"),
  13648. default: true
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(7 + 8 / 12, "feet"),
  13657. weight: math.unit(350, "lb"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/tempest/front.svg",
  13661. extra: 1175 / 1086,
  13662. bottom: 0.02
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(7 + 8 / 12, "feet"),
  13670. default: true
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13676. {
  13677. side: {
  13678. height: math.unit(4 + 5 / 12, "feet"),
  13679. weight: math.unit(80, "lb"),
  13680. name: "Side",
  13681. image: {
  13682. source: "./media/characters/rodger/side.svg",
  13683. extra: 1235 / 1118
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Micro",
  13690. height: math.unit(1, "inch")
  13691. },
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(4 + 5 / 12, "feet"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Macro",
  13699. height: math.unit(120, "feet")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(6, "feet"),
  13708. weight: math.unit(150, "lb"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/danyel/front.svg",
  13712. extra: 1185 / 1123,
  13713. bottom: 0.05
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Shrunken",
  13720. height: math.unit(0.5, "mm")
  13721. },
  13722. {
  13723. name: "Micro",
  13724. height: math.unit(1, "mm"),
  13725. default: true
  13726. },
  13727. {
  13728. name: "Upsized",
  13729. height: math.unit(5 + 5 / 12, "feet")
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(5 + 6 / 12, "feet"),
  13738. weight: math.unit(200, "lb"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/vivian-bijoux/front.svg",
  13742. extra: 1217/1209,
  13743. bottom: 76/1293
  13744. }
  13745. },
  13746. back: {
  13747. height: math.unit(5 + 6 / 12, "feet"),
  13748. weight: math.unit(200, "lb"),
  13749. name: "Back",
  13750. image: {
  13751. source: "./media/characters/vivian-bijoux/back.svg",
  13752. extra: 1214/1208,
  13753. bottom: 51/1265
  13754. }
  13755. },
  13756. dressed: {
  13757. height: math.unit(5 + 6 / 12, "feet"),
  13758. weight: math.unit(200, "lb"),
  13759. name: "Dressed",
  13760. image: {
  13761. source: "./media/characters/vivian-bijoux/dressed.svg",
  13762. extra: 1217/1209,
  13763. bottom: 76/1293
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Normal",
  13770. height: math.unit(5 + 6 / 12, "feet"),
  13771. default: true
  13772. },
  13773. {
  13774. name: "Bad Dream",
  13775. height: math.unit(500, "feet")
  13776. },
  13777. {
  13778. name: "Nightmare",
  13779. height: math.unit(500, "miles")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6 + 1 / 12, "feet"),
  13788. weight: math.unit(260, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/zeta/front.svg",
  13792. extra: 1968 / 1889,
  13793. bottom: 0.06
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(6 + 1 / 12, "feet"),
  13798. weight: math.unit(260, "lb"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/zeta/back.svg",
  13802. extra: 1944 / 1858,
  13803. bottom: 0.03
  13804. }
  13805. },
  13806. hand: {
  13807. height: math.unit(1.112, "feet"),
  13808. name: "Hand",
  13809. image: {
  13810. source: "./media/characters/zeta/hand.svg"
  13811. }
  13812. },
  13813. foot: {
  13814. height: math.unit(1.48, "feet"),
  13815. name: "Foot",
  13816. image: {
  13817. source: "./media/characters/zeta/foot.svg"
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Micro",
  13824. height: math.unit(6, "inches")
  13825. },
  13826. {
  13827. name: "Normal",
  13828. height: math.unit(6 + 1 / 12, "feet"),
  13829. default: true
  13830. },
  13831. {
  13832. name: "Macro",
  13833. height: math.unit(20, "feet")
  13834. },
  13835. ]
  13836. ))
  13837. characterMakers.push(() => makeCharacter(
  13838. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13839. {
  13840. front: {
  13841. height: math.unit(6, "feet"),
  13842. weight: math.unit(150, "lb"),
  13843. name: "Front",
  13844. image: {
  13845. source: "./media/characters/jamie-larsen/front.svg",
  13846. extra: 962 / 933,
  13847. bottom: 0.02
  13848. }
  13849. },
  13850. back: {
  13851. height: math.unit(6, "feet"),
  13852. weight: math.unit(150, "lb"),
  13853. name: "Back",
  13854. image: {
  13855. source: "./media/characters/jamie-larsen/back.svg",
  13856. extra: 997 / 946
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Macro",
  13863. height: math.unit(28 + 7 / 12, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Macro+",
  13868. height: math.unit(180, "feet")
  13869. },
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(10, "miles")
  13873. },
  13874. {
  13875. name: "Gigamacro",
  13876. height: math.unit(200000, "miles")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(120, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/vance/front.svg",
  13889. extra: 1980 / 1890,
  13890. bottom: 0.09
  13891. }
  13892. },
  13893. back: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(120, "lb"),
  13896. name: "Back",
  13897. image: {
  13898. source: "./media/characters/vance/back.svg",
  13899. extra: 2081 / 1994,
  13900. bottom: 0.014
  13901. }
  13902. },
  13903. hand: {
  13904. height: math.unit(0.88, "feet"),
  13905. name: "Hand",
  13906. image: {
  13907. source: "./media/characters/vance/hand.svg"
  13908. }
  13909. },
  13910. foot: {
  13911. height: math.unit(0.64, "feet"),
  13912. name: "Foot",
  13913. image: {
  13914. source: "./media/characters/vance/foot.svg"
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Small",
  13921. height: math.unit(90, "feet"),
  13922. default: true
  13923. },
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(100, "meters")
  13927. },
  13928. {
  13929. name: "Megamacro",
  13930. height: math.unit(15, "miles")
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(180, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/xochitl/front.svg",
  13943. extra: 2297 / 2261,
  13944. bottom: 0.065
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(180, "lb"),
  13950. name: "Back",
  13951. image: {
  13952. source: "./media/characters/xochitl/back.svg",
  13953. extra: 2386 / 2354,
  13954. bottom: 0.01
  13955. }
  13956. },
  13957. foot: {
  13958. height: math.unit(6 / 5 * 1.15, "feet"),
  13959. weight: math.unit(150, "lb"),
  13960. name: "Foot",
  13961. image: {
  13962. source: "./media/characters/xochitl/foot.svg"
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Macro",
  13969. height: math.unit(80, "feet")
  13970. },
  13971. {
  13972. name: "Macro+",
  13973. height: math.unit(400, "feet"),
  13974. default: true
  13975. },
  13976. {
  13977. name: "Gigamacro",
  13978. height: math.unit(80000, "miles")
  13979. },
  13980. {
  13981. name: "Gigamacro+",
  13982. height: math.unit(400000, "miles")
  13983. },
  13984. {
  13985. name: "Teramacro",
  13986. height: math.unit(300, "AU")
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(6, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/vincent/front.svg",
  13999. extra: 1130 / 1080,
  14000. bottom: 0.055
  14001. }
  14002. },
  14003. beak: {
  14004. height: math.unit(6 * 0.1, "feet"),
  14005. name: "Beak",
  14006. image: {
  14007. source: "./media/characters/vincent/beak.svg"
  14008. }
  14009. },
  14010. hand: {
  14011. height: math.unit(6 * 0.85, "feet"),
  14012. weight: math.unit(150, "lb"),
  14013. name: "Hand",
  14014. image: {
  14015. source: "./media/characters/vincent/hand.svg"
  14016. }
  14017. },
  14018. foot: {
  14019. height: math.unit(6 * 0.19, "feet"),
  14020. weight: math.unit(150, "lb"),
  14021. name: "Foot",
  14022. image: {
  14023. source: "./media/characters/vincent/foot.svg"
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Base",
  14030. height: math.unit(6 + 5 / 12, "feet"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(300, "feet")
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(2, "miles")
  14040. },
  14041. {
  14042. name: "Gigamacro",
  14043. height: math.unit(1000, "miles")
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(2, "meters"),
  14052. weight: math.unit(500, "kg"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/coatl/front.svg",
  14056. extra: 3948 / 3500,
  14057. bottom: 0.082
  14058. }
  14059. },
  14060. },
  14061. [
  14062. {
  14063. name: "Normal",
  14064. height: math.unit(4, "meters")
  14065. },
  14066. {
  14067. name: "Macro",
  14068. height: math.unit(100, "meters"),
  14069. default: true
  14070. },
  14071. {
  14072. name: "Macro+",
  14073. height: math.unit(300, "meters")
  14074. },
  14075. {
  14076. name: "Megamacro",
  14077. height: math.unit(3, "gigameters")
  14078. },
  14079. {
  14080. name: "Megamacro+",
  14081. height: math.unit(300, "terameters")
  14082. },
  14083. {
  14084. name: "Megamacro++",
  14085. height: math.unit(3, "lightyears")
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(6, "feet"),
  14094. weight: math.unit(50, "kg"),
  14095. name: "front",
  14096. image: {
  14097. source: "./media/characters/shiroryu/front.svg",
  14098. extra: 1990 / 1935
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Mortal Mingling",
  14105. height: math.unit(3, "meters")
  14106. },
  14107. {
  14108. name: "Kaiju-ish",
  14109. height: math.unit(250, "meters")
  14110. },
  14111. {
  14112. name: "Somewhat Godly",
  14113. height: math.unit(400, "km"),
  14114. default: true
  14115. },
  14116. {
  14117. name: "Planetary",
  14118. height: math.unit(300, "megameters")
  14119. },
  14120. {
  14121. name: "Galaxy-dwarfing",
  14122. height: math.unit(450, "kiloparsecs")
  14123. },
  14124. {
  14125. name: "Universe Eater",
  14126. height: math.unit(150, "gigaparsecs")
  14127. },
  14128. {
  14129. name: "Almost Immeasurable",
  14130. height: math.unit(1.3e266, "yottaparsecs")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(150, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/umeko/front.svg",
  14143. extra: 1,
  14144. bottom: 0.019
  14145. }
  14146. },
  14147. frontArmored: {
  14148. height: math.unit(6, "feet"),
  14149. weight: math.unit(150, "lb"),
  14150. name: "Front (Armored)",
  14151. image: {
  14152. source: "./media/characters/umeko/front-armored.svg",
  14153. extra: 1,
  14154. bottom: 0.021
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Macro",
  14161. height: math.unit(220, "feet"),
  14162. default: true
  14163. },
  14164. {
  14165. name: "Guardian Dragon",
  14166. height: math.unit(50, "miles")
  14167. },
  14168. {
  14169. name: "Cosmic",
  14170. height: math.unit(800000, "miles")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(150, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/cassidy/front.svg",
  14183. extra: 1,
  14184. bottom: 0.043
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Canon Height",
  14191. height: math.unit(120, "feet"),
  14192. default: true
  14193. },
  14194. {
  14195. name: "Macro+",
  14196. height: math.unit(400, "feet")
  14197. },
  14198. {
  14199. name: "Macro++",
  14200. height: math.unit(4000, "feet")
  14201. },
  14202. {
  14203. name: "Megamacro",
  14204. height: math.unit(3, "miles")
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(150, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/isaac/front.svg",
  14217. extra: 896 / 815,
  14218. bottom: 0.11
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Human Size",
  14225. height: math.unit(8, "feet"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(400, "feet")
  14231. },
  14232. {
  14233. name: "Megamacro",
  14234. height: math.unit(50, "miles")
  14235. },
  14236. {
  14237. name: "Canon Height",
  14238. height: math.unit(200, "AU")
  14239. },
  14240. ]
  14241. ))
  14242. characterMakers.push(() => makeCharacter(
  14243. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14244. {
  14245. front: {
  14246. height: math.unit(6, "feet"),
  14247. weight: math.unit(72, "kg"),
  14248. name: "Front",
  14249. image: {
  14250. source: "./media/characters/sleekit/front.svg",
  14251. extra: 4693 / 4487,
  14252. bottom: 0.012
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Minimum Height",
  14259. height: math.unit(10, "meters")
  14260. },
  14261. {
  14262. name: "Smaller",
  14263. height: math.unit(25, "meters")
  14264. },
  14265. {
  14266. name: "Larger",
  14267. height: math.unit(38, "meters"),
  14268. default: true
  14269. },
  14270. {
  14271. name: "Maximum height",
  14272. height: math.unit(100, "meters")
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/nillia/front.svg",
  14285. extra: 2195 / 2037,
  14286. bottom: 0.005
  14287. }
  14288. },
  14289. back: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(150, "lb"),
  14292. name: "Back",
  14293. image: {
  14294. source: "./media/characters/nillia/back.svg",
  14295. extra: 2195 / 2037,
  14296. bottom: 0.005
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Canon Height",
  14303. height: math.unit(489, "feet"),
  14304. default: true
  14305. }
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(6, "feet"),
  14313. weight: math.unit(150, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/mesmyriza/front.svg",
  14317. extra: 2067 / 1784,
  14318. bottom: 0.035
  14319. }
  14320. },
  14321. foot: {
  14322. height: math.unit(6 / (250 / 35), "feet"),
  14323. name: "Foot",
  14324. image: {
  14325. source: "./media/characters/mesmyriza/foot.svg"
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Macro",
  14332. height: math.unit(457, "meters"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Megamacro",
  14337. height: math.unit(8, "megameters")
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(6, "feet"),
  14346. weight: math.unit(250, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/saudade/front.svg",
  14350. extra: 1172 / 1139,
  14351. bottom: 0.035
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Micro",
  14358. height: math.unit(3, "inches")
  14359. },
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(6, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(50, "feet")
  14368. },
  14369. {
  14370. name: "Megamacro",
  14371. height: math.unit(2800, "feet")
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(5 + 4 / 12, "feet"),
  14380. weight: math.unit(100, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/keireer/front.svg",
  14384. extra: 716 / 666,
  14385. bottom: 0.05
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(5 + 4 / 12, "feet"),
  14393. default: true
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(6, "feet"),
  14402. weight: math.unit(90, "kg"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/mirja/front.svg",
  14406. extra: 1789 / 1683,
  14407. bottom: 0.05
  14408. }
  14409. },
  14410. frontDressed: {
  14411. height: math.unit(6, "feet"),
  14412. weight: math.unit(90, "lb"),
  14413. name: "Front (Dressed)",
  14414. image: {
  14415. source: "./media/characters/mirja/front-dressed.svg",
  14416. extra: 1789 / 1683,
  14417. bottom: 0.05
  14418. }
  14419. },
  14420. back: {
  14421. height: math.unit(6, "feet"),
  14422. weight: math.unit(90, "lb"),
  14423. name: "Back",
  14424. image: {
  14425. source: "./media/characters/mirja/back.svg",
  14426. extra: 953 / 917,
  14427. bottom: 0.017
  14428. }
  14429. },
  14430. },
  14431. [
  14432. {
  14433. name: "\"Incognito\"",
  14434. height: math.unit(3, "meters")
  14435. },
  14436. {
  14437. name: "Strolling Size",
  14438. height: math.unit(15, "km")
  14439. },
  14440. {
  14441. name: "Larger Strolling Size",
  14442. height: math.unit(400, "km")
  14443. },
  14444. {
  14445. name: "Preferred Size",
  14446. height: math.unit(5000, "km")
  14447. },
  14448. {
  14449. name: "True Size",
  14450. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14451. default: true
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(15, "feet"),
  14460. weight: math.unit(880, "kg"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/nightraver/front.svg",
  14464. extra: 2444 / 2160,
  14465. bottom: 0.027
  14466. }
  14467. },
  14468. back: {
  14469. height: math.unit(15, "feet"),
  14470. weight: math.unit(880, "kg"),
  14471. name: "Back",
  14472. image: {
  14473. source: "./media/characters/nightraver/back.svg",
  14474. extra: 2309 / 2180,
  14475. bottom: 0.005
  14476. }
  14477. },
  14478. sole: {
  14479. height: math.unit(2.878, "feet"),
  14480. name: "Sole",
  14481. image: {
  14482. source: "./media/characters/nightraver/sole.svg"
  14483. }
  14484. },
  14485. foot: {
  14486. height: math.unit(2.285, "feet"),
  14487. name: "Foot",
  14488. image: {
  14489. source: "./media/characters/nightraver/foot.svg"
  14490. }
  14491. },
  14492. maw: {
  14493. height: math.unit(2.67, "feet"),
  14494. name: "Maw",
  14495. image: {
  14496. source: "./media/characters/nightraver/maw.svg"
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Micro",
  14503. height: math.unit(1, "cm")
  14504. },
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(15, "feet"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Macro",
  14512. height: math.unit(300, "feet")
  14513. },
  14514. {
  14515. name: "Megamacro",
  14516. height: math.unit(300, "miles")
  14517. },
  14518. {
  14519. name: "Gigamacro",
  14520. height: math.unit(10000, "miles")
  14521. },
  14522. ]
  14523. ))
  14524. characterMakers.push(() => makeCharacter(
  14525. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14526. {
  14527. side: {
  14528. height: math.unit(2, "inches"),
  14529. weight: math.unit(5, "grams"),
  14530. name: "Side",
  14531. image: {
  14532. source: "./media/characters/arc/side.svg"
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Micro",
  14539. height: math.unit(2, "inches"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(1.1938, "meters"),
  14549. weight: math.unit(54, "kg"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/nebula-shahar/front.svg",
  14553. extra: 1642 / 1436,
  14554. bottom: 0.06
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Megamicro",
  14561. height: math.unit(0.3, "mm")
  14562. },
  14563. {
  14564. name: "Micro",
  14565. height: math.unit(3, "cm")
  14566. },
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(138, "cm"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Macro",
  14574. height: math.unit(30, "m")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(5.24, "feet"),
  14583. weight: math.unit(150, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/shayla/front.svg",
  14587. extra: 1512 / 1414,
  14588. bottom: 0.01
  14589. }
  14590. },
  14591. back: {
  14592. height: math.unit(5.24, "feet"),
  14593. weight: math.unit(150, "lb"),
  14594. name: "Back",
  14595. image: {
  14596. source: "./media/characters/shayla/back.svg",
  14597. extra: 1512 / 1414
  14598. }
  14599. },
  14600. hand: {
  14601. height: math.unit(0.7781496062992126, "feet"),
  14602. name: "Hand",
  14603. image: {
  14604. source: "./media/characters/shayla/hand.svg"
  14605. }
  14606. },
  14607. foot: {
  14608. height: math.unit(1.4206036745406823, "feet"),
  14609. name: "Foot",
  14610. image: {
  14611. source: "./media/characters/shayla/foot.svg"
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Micro",
  14618. height: math.unit(0.32, "feet")
  14619. },
  14620. {
  14621. name: "Normal",
  14622. height: math.unit(5.24, "feet"),
  14623. default: true
  14624. },
  14625. {
  14626. name: "Macro",
  14627. height: math.unit(492.12, "feet")
  14628. },
  14629. {
  14630. name: "Megamacro",
  14631. height: math.unit(186.41, "miles")
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(2.2, "m"),
  14640. weight: math.unit(120, "kg"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/pia-jr/front.svg",
  14644. extra: 1000 / 970,
  14645. bottom: 0.035
  14646. }
  14647. },
  14648. hand: {
  14649. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14650. name: "Hand",
  14651. image: {
  14652. source: "./media/characters/pia-jr/hand.svg"
  14653. }
  14654. },
  14655. paw: {
  14656. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14657. name: "Paw",
  14658. image: {
  14659. source: "./media/characters/pia-jr/paw.svg"
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Micro",
  14666. height: math.unit(1.2, "cm")
  14667. },
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(2.2, "m"),
  14671. default: true
  14672. },
  14673. {
  14674. name: "Macro",
  14675. height: math.unit(180, "m")
  14676. },
  14677. {
  14678. name: "Megamacro",
  14679. height: math.unit(420, "km")
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(2, "m"),
  14688. weight: math.unit(115, "kg"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/pia-sr/front.svg",
  14692. extra: 760 / 730,
  14693. bottom: 0.015
  14694. }
  14695. },
  14696. back: {
  14697. height: math.unit(2, "m"),
  14698. weight: math.unit(115, "kg"),
  14699. name: "Back",
  14700. image: {
  14701. source: "./media/characters/pia-sr/back.svg",
  14702. extra: 760 / 730,
  14703. bottom: 0.01
  14704. }
  14705. },
  14706. hand: {
  14707. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14708. name: "Hand",
  14709. image: {
  14710. source: "./media/characters/pia-sr/hand.svg"
  14711. }
  14712. },
  14713. foot: {
  14714. height: math.unit(1.83, "feet"),
  14715. name: "Foot",
  14716. image: {
  14717. source: "./media/characters/pia-sr/foot.svg"
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Micro",
  14724. height: math.unit(88, "mm")
  14725. },
  14726. {
  14727. name: "Normal",
  14728. height: math.unit(2, "m"),
  14729. default: true
  14730. },
  14731. {
  14732. name: "Macro",
  14733. height: math.unit(200, "m")
  14734. },
  14735. {
  14736. name: "Megamacro",
  14737. height: math.unit(420, "km")
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(8 + 2 / 12, "feet"),
  14746. weight: math.unit(300, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/kibibyte/front.svg",
  14750. extra: 2221 / 2098,
  14751. bottom: 0.04
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Normal",
  14758. height: math.unit(8 + 2 / 12, "feet"),
  14759. default: true
  14760. },
  14761. {
  14762. name: "Socialable Macro",
  14763. height: math.unit(50, "feet")
  14764. },
  14765. {
  14766. name: "Macro",
  14767. height: math.unit(300, "feet")
  14768. },
  14769. {
  14770. name: "Megamacro",
  14771. height: math.unit(500, "miles")
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14777. {
  14778. front: {
  14779. height: math.unit(6, "feet"),
  14780. weight: math.unit(150, "lb"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/felix/front.svg",
  14784. extra: 762 / 722,
  14785. bottom: 0.02
  14786. }
  14787. },
  14788. frontClothed: {
  14789. height: math.unit(6, "feet"),
  14790. weight: math.unit(150, "lb"),
  14791. name: "Front (Clothed)",
  14792. image: {
  14793. source: "./media/characters/felix/front-clothed.svg",
  14794. extra: 762 / 722,
  14795. bottom: 0.02
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Normal",
  14802. height: math.unit(6 + 8 / 12, "feet"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Macro",
  14807. height: math.unit(2600, "feet")
  14808. },
  14809. {
  14810. name: "Megamacro",
  14811. height: math.unit(450, "miles")
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(6 + 1 / 12, "feet"),
  14820. weight: math.unit(250, "lb"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/tobo/front.svg",
  14824. extra: 608 / 586,
  14825. bottom: 0.023
  14826. }
  14827. },
  14828. back: {
  14829. height: math.unit(6 + 1 / 12, "feet"),
  14830. weight: math.unit(250, "lb"),
  14831. name: "Back",
  14832. image: {
  14833. source: "./media/characters/tobo/back.svg",
  14834. extra: 608 / 586
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Nano",
  14841. height: math.unit(2, "nm")
  14842. },
  14843. {
  14844. name: "Megamicro",
  14845. height: math.unit(0.1, "mm")
  14846. },
  14847. {
  14848. name: "Micro",
  14849. height: math.unit(1, "inch"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Human-sized",
  14854. height: math.unit(6 + 1 / 12, "feet")
  14855. },
  14856. {
  14857. name: "Macro",
  14858. height: math.unit(250, "feet")
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(75, "miles")
  14863. },
  14864. {
  14865. name: "Texas-sized",
  14866. height: math.unit(750, "miles")
  14867. },
  14868. {
  14869. name: "Teramacro",
  14870. height: math.unit(50000, "miles")
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(269, "lb"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/danny-kapowsky/front.svg",
  14883. extra: 766 / 736,
  14884. bottom: 0.044
  14885. }
  14886. },
  14887. back: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(269, "lb"),
  14890. name: "Back",
  14891. image: {
  14892. source: "./media/characters/danny-kapowsky/back.svg",
  14893. extra: 797 / 760,
  14894. bottom: 0.025
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Macro",
  14901. height: math.unit(150, "feet"),
  14902. default: true
  14903. },
  14904. {
  14905. name: "Macro+",
  14906. height: math.unit(200, "feet")
  14907. },
  14908. {
  14909. name: "Macro++",
  14910. height: math.unit(300, "feet")
  14911. },
  14912. {
  14913. name: "Macro+++",
  14914. height: math.unit(400, "feet")
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14920. {
  14921. side: {
  14922. height: math.unit(6, "feet"),
  14923. weight: math.unit(170, "lb"),
  14924. name: "Side",
  14925. image: {
  14926. source: "./media/characters/finn/side.svg",
  14927. extra: 1953 / 1807,
  14928. bottom: 0.057
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Megamacro",
  14935. height: math.unit(14445, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(5 + 6 / 12, "feet"),
  14945. weight: math.unit(125, "lb"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/roy/front.svg",
  14949. extra: 1,
  14950. bottom: 0.11
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Micro",
  14957. height: math.unit(3, "inches"),
  14958. default: true
  14959. },
  14960. {
  14961. name: "Normal",
  14962. height: math.unit(5 + 6 / 12, "feet")
  14963. },
  14964. {
  14965. name: "Lesser Macro",
  14966. height: math.unit(60, "feet")
  14967. },
  14968. {
  14969. name: "Greater Macro",
  14970. height: math.unit(120, "feet")
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(6, "feet"),
  14979. weight: math.unit(100, "lb"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/aevsivs/front.svg",
  14983. extra: 1,
  14984. bottom: 0.03
  14985. }
  14986. },
  14987. back: {
  14988. height: math.unit(6, "feet"),
  14989. weight: math.unit(100, "lb"),
  14990. name: "Back",
  14991. image: {
  14992. source: "./media/characters/aevsivs/back.svg"
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Micro",
  14999. height: math.unit(2, "inches"),
  15000. default: true
  15001. },
  15002. {
  15003. name: "Normal",
  15004. height: math.unit(5, "feet")
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(5 + 7 / 12, "feet"),
  15013. weight: math.unit(159, "lb"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/hildegard/front.svg",
  15017. extra: 289 / 269,
  15018. bottom: 7.63 / 297.8
  15019. }
  15020. },
  15021. back: {
  15022. height: math.unit(5 + 7 / 12, "feet"),
  15023. weight: math.unit(159, "lb"),
  15024. name: "Back",
  15025. image: {
  15026. source: "./media/characters/hildegard/back.svg",
  15027. extra: 280 / 260,
  15028. bottom: 2.3 / 282
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(5 + 7 / 12, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15042. {
  15043. bernard: {
  15044. height: math.unit(2 + 7 / 12, "feet"),
  15045. weight: math.unit(66, "lb"),
  15046. name: "Bernard",
  15047. rename: true,
  15048. image: {
  15049. source: "./media/characters/bernard-wilder/bernard.svg",
  15050. extra: 192 / 128,
  15051. bottom: 0.05
  15052. }
  15053. },
  15054. wilder: {
  15055. height: math.unit(5 + 8 / 12, "feet"),
  15056. weight: math.unit(143, "lb"),
  15057. name: "Wilder",
  15058. rename: true,
  15059. image: {
  15060. source: "./media/characters/bernard-wilder/wilder.svg",
  15061. extra: 361 / 312,
  15062. bottom: 0.02
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(2 + 7 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15076. {
  15077. anthro: {
  15078. height: math.unit(6 + 1 / 12, "feet"),
  15079. weight: math.unit(155, "lb"),
  15080. name: "Anthro",
  15081. image: {
  15082. source: "./media/characters/hearth/anthro.svg",
  15083. extra: 260 / 250,
  15084. bottom: 0.02
  15085. }
  15086. },
  15087. feral: {
  15088. height: math.unit(3.78, "feet"),
  15089. weight: math.unit(35, "kg"),
  15090. name: "Feral",
  15091. image: {
  15092. source: "./media/characters/hearth/feral.svg",
  15093. extra: 153 / 135,
  15094. bottom: 0.03
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(6 + 1 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(6, "feet"),
  15111. weight: math.unit(182, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/ingrid/front.svg",
  15115. extra: 294 / 268,
  15116. bottom: 0.027
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(6, "feet"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15130. {
  15131. eevee: {
  15132. height: math.unit(2 + 10 / 12, "feet"),
  15133. weight: math.unit(86, "lb"),
  15134. name: "Malgam",
  15135. image: {
  15136. source: "./media/characters/malgam/eevee.svg",
  15137. extra: 218 / 180,
  15138. bottom: 0.2
  15139. }
  15140. },
  15141. sylveon: {
  15142. height: math.unit(4, "feet"),
  15143. weight: math.unit(101, "lb"),
  15144. name: "Future Malgam",
  15145. rename: true,
  15146. image: {
  15147. source: "./media/characters/malgam/sylveon.svg",
  15148. extra: 371 / 325,
  15149. bottom: 0.015
  15150. }
  15151. },
  15152. gigantamax: {
  15153. height: math.unit(50, "feet"),
  15154. name: "Gigantamax Malgam",
  15155. rename: true,
  15156. image: {
  15157. source: "./media/characters/malgam/gigantamax.svg"
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(2 + 10 / 12, "feet"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(5 + 11 / 12, "feet"),
  15174. weight: math.unit(188, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/fleur/front.svg",
  15178. extra: 309 / 283,
  15179. bottom: 0.007
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Normal",
  15186. height: math.unit(5 + 11 / 12, "feet"),
  15187. default: true
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15193. {
  15194. front: {
  15195. height: math.unit(5 + 4 / 12, "feet"),
  15196. weight: math.unit(122, "lb"),
  15197. name: "Front",
  15198. image: {
  15199. source: "./media/characters/jude/front.svg",
  15200. extra: 288 / 273,
  15201. bottom: 0.03
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(5 + 4 / 12, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(5 + 11 / 12, "feet"),
  15218. weight: math.unit(190, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/seara/front.svg",
  15222. extra: 1,
  15223. bottom: 0.05
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(5 + 11 / 12, "feet"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(16 + 5 / 12, "feet"),
  15240. weight: math.unit(524, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/caspian/front.svg",
  15244. extra: 1,
  15245. bottom: 0.04
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(16 + 5 / 12, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(5 + 7 / 12, "feet"),
  15262. weight: math.unit(170, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/mika/front.svg",
  15266. extra: 1,
  15267. bottom: 0.016
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(5 + 7 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(6 + 2 / 12, "feet"),
  15284. weight: math.unit(268, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/sol/front.svg",
  15288. extra: 247 / 231,
  15289. bottom: 0.05
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(6 + 2 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15303. {
  15304. buizel: {
  15305. height: math.unit(2 + 5 / 12, "feet"),
  15306. weight: math.unit(87, "lb"),
  15307. name: "Buizel",
  15308. image: {
  15309. source: "./media/characters/umiko/buizel.svg",
  15310. extra: 172 / 157,
  15311. bottom: 0.01
  15312. }
  15313. },
  15314. floatzel: {
  15315. height: math.unit(5 + 9 / 12, "feet"),
  15316. weight: math.unit(250, "lb"),
  15317. name: "Floatzel",
  15318. image: {
  15319. source: "./media/characters/umiko/floatzel.svg",
  15320. extra: 262 / 248
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(2 + 5 / 12, "feet"),
  15328. default: true
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(6 + 2 / 12, "feet"),
  15337. weight: math.unit(146, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/iliac/front.svg",
  15341. extra: 389 / 365,
  15342. bottom: 0.035
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Normal",
  15349. height: math.unit(6 + 2 / 12, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15356. {
  15357. front: {
  15358. height: math.unit(6, "feet"),
  15359. weight: math.unit(170, "lb"),
  15360. name: "Front",
  15361. image: {
  15362. source: "./media/characters/topaz/front.svg",
  15363. extra: 317 / 303,
  15364. bottom: 0.055
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(6, "feet"),
  15372. default: true
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(5 + 11 / 12, "feet"),
  15381. weight: math.unit(144, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/gabriel/front.svg",
  15385. extra: 285 / 262,
  15386. bottom: 0.004
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(5 + 11 / 12, "feet"),
  15394. default: true
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15400. {
  15401. side: {
  15402. height: math.unit(6 + 5 / 12, "feet"),
  15403. weight: math.unit(300, "lb"),
  15404. name: "Side",
  15405. image: {
  15406. source: "./media/characters/tempest-suicune/side.svg",
  15407. extra: 195 / 154,
  15408. bottom: 0.04
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(6 + 5 / 12, "feet"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(7 + 2 / 12, "feet"),
  15425. weight: math.unit(322, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/vulcan/front.svg",
  15429. extra: 154 / 147,
  15430. bottom: 0.04
  15431. }
  15432. },
  15433. },
  15434. [
  15435. {
  15436. name: "Normal",
  15437. height: math.unit(7 + 2 / 12, "feet"),
  15438. default: true
  15439. },
  15440. ]
  15441. ))
  15442. characterMakers.push(() => makeCharacter(
  15443. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15444. {
  15445. front: {
  15446. height: math.unit(5 + 10 / 12, "feet"),
  15447. weight: math.unit(264, "lb"),
  15448. name: "Front",
  15449. image: {
  15450. source: "./media/characters/gault/front.svg",
  15451. extra: 161 / 140,
  15452. bottom: 0.028
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(5 + 10 / 12, "feet"),
  15460. default: true
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(150, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/shard/front.svg",
  15473. extra: 273 / 238,
  15474. bottom: 0.02
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(3 + 6 / 12, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(5 + 11 / 12, "feet"),
  15491. weight: math.unit(146, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/ashe/front.svg",
  15495. extra: 400 / 373,
  15496. bottom: 0.01
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(5 + 11 / 12, "feet"),
  15504. default: true
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(5 + 5 / 12, "feet"),
  15513. weight: math.unit(135, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/beatrix/front.svg",
  15517. extra: 392 / 379,
  15518. bottom: 0.01
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(6, "feet"),
  15526. default: true
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(150, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/ignatius/front.svg",
  15539. extra: 245 / 222,
  15540. bottom: 0.01
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(5 + 5 / 12, "feet"),
  15548. default: true
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15554. {
  15555. front: {
  15556. height: math.unit(6 + 2 / 12, "feet"),
  15557. weight: math.unit(138, "lb"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/mei-li/front.svg",
  15561. extra: 237 / 229,
  15562. bottom: 0.03
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(6 + 2 / 12, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(2 + 4 / 12, "feet"),
  15579. weight: math.unit(62, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/puru/front.svg",
  15583. extra: 206 / 149,
  15584. bottom: 0.06
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(2 + 4 / 12, "feet"),
  15592. default: true
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15598. {
  15599. anthro: {
  15600. height: math.unit(5 + 8/12, "feet"),
  15601. weight: math.unit(200, "lb"),
  15602. energyNeed: math.unit(2000, "kcal"),
  15603. name: "Anthro",
  15604. image: {
  15605. source: "./media/characters/kee/anthro.svg",
  15606. extra: 3251/3184,
  15607. bottom: 250/3501
  15608. }
  15609. },
  15610. taur: {
  15611. height: math.unit(11, "feet"),
  15612. weight: math.unit(500, "lb"),
  15613. energyNeed: math.unit(5000, "kcal"),
  15614. name: "Taur",
  15615. image: {
  15616. source: "./media/characters/kee/taur.svg",
  15617. extra: 1362/1320,
  15618. bottom: 83/1445
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(5 + 8/12, "feet"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Macro",
  15630. height: math.unit(35, "feet")
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15636. {
  15637. anthro: {
  15638. height: math.unit(7, "feet"),
  15639. weight: math.unit(190, "lb"),
  15640. name: "Anthro",
  15641. image: {
  15642. source: "./media/characters/cobalt-dracha/anthro.svg",
  15643. extra: 231 / 225,
  15644. bottom: 0.04
  15645. }
  15646. },
  15647. feral: {
  15648. height: math.unit(9 + 7 / 12, "feet"),
  15649. weight: math.unit(294, "lb"),
  15650. name: "Feral",
  15651. image: {
  15652. source: "./media/characters/cobalt-dracha/feral.svg",
  15653. extra: 692 / 633,
  15654. bottom: 0.05
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(7, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15668. {
  15669. fallen: {
  15670. height: math.unit(11 + 8 / 12, "feet"),
  15671. weight: math.unit(485, "lb"),
  15672. name: "Java (Fallen)",
  15673. rename: true,
  15674. image: {
  15675. source: "./media/characters/java/fallen.svg",
  15676. extra: 226 / 208,
  15677. bottom: 0.005
  15678. }
  15679. },
  15680. godkin: {
  15681. height: math.unit(10 + 6 / 12, "feet"),
  15682. weight: math.unit(328, "lb"),
  15683. name: "Java (Godkin)",
  15684. rename: true,
  15685. image: {
  15686. source: "./media/characters/java/godkin.svg",
  15687. extra: 270 / 262,
  15688. bottom: 0.02
  15689. }
  15690. },
  15691. },
  15692. [
  15693. {
  15694. name: "Normal",
  15695. height: math.unit(11 + 8 / 12, "feet"),
  15696. default: true
  15697. },
  15698. ]
  15699. ))
  15700. characterMakers.push(() => makeCharacter(
  15701. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15702. {
  15703. front: {
  15704. height: math.unit(7 + 8 / 12, "feet"),
  15705. weight: math.unit(320, "lb"),
  15706. name: "Front",
  15707. image: {
  15708. source: "./media/characters/skoll/front.svg",
  15709. extra: 232 / 220,
  15710. bottom: 0.02
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(7 + 8 / 12, "feet"),
  15718. default: true
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15724. {
  15725. front: {
  15726. height: math.unit(5 + 9 / 12, "feet"),
  15727. weight: math.unit(170, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/purna/front.svg",
  15731. extra: 239 / 229,
  15732. bottom: 0.01
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(5 + 9 / 12, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15746. {
  15747. front: {
  15748. height: math.unit(5 + 9 / 12, "feet"),
  15749. weight: math.unit(142, "lb"),
  15750. name: "Front",
  15751. image: {
  15752. source: "./media/characters/kuva/front.svg",
  15753. extra: 281 / 271,
  15754. bottom: 0.006
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(5 + 9 / 12, "feet"),
  15762. default: true
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15768. {
  15769. anthro: {
  15770. height: math.unit(9 + 2 / 12, "feet"),
  15771. weight: math.unit(270, "lb"),
  15772. name: "Anthro",
  15773. image: {
  15774. source: "./media/characters/embra/anthro.svg",
  15775. extra: 200 / 187,
  15776. bottom: 0.02
  15777. }
  15778. },
  15779. feral: {
  15780. height: math.unit(18 + 8 / 12, "feet"),
  15781. weight: math.unit(576, "lb"),
  15782. name: "Feral",
  15783. image: {
  15784. source: "./media/characters/embra/feral.svg",
  15785. extra: 152 / 137,
  15786. bottom: 0.037
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(9 + 2 / 12, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15800. {
  15801. anthro: {
  15802. height: math.unit(10 + 9 / 12, "feet"),
  15803. weight: math.unit(224, "lb"),
  15804. name: "Anthro",
  15805. image: {
  15806. source: "./media/characters/grottos/anthro.svg",
  15807. extra: 350 / 332,
  15808. bottom: 0.045
  15809. }
  15810. },
  15811. feral: {
  15812. height: math.unit(20 + 7 / 12, "feet"),
  15813. weight: math.unit(629, "lb"),
  15814. name: "Feral",
  15815. image: {
  15816. source: "./media/characters/grottos/feral.svg",
  15817. extra: 207 / 190,
  15818. bottom: 0.05
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Normal",
  15825. height: math.unit(10 + 9 / 12, "feet"),
  15826. default: true
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15832. {
  15833. anthro: {
  15834. height: math.unit(9 + 6 / 12, "feet"),
  15835. weight: math.unit(298, "lb"),
  15836. name: "Anthro",
  15837. image: {
  15838. source: "./media/characters/frifna/anthro.svg",
  15839. extra: 282 / 269,
  15840. bottom: 0.015
  15841. }
  15842. },
  15843. feral: {
  15844. height: math.unit(16 + 2 / 12, "feet"),
  15845. weight: math.unit(624, "lb"),
  15846. name: "Feral",
  15847. image: {
  15848. source: "./media/characters/frifna/feral.svg"
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(9 + 6 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(6 + 2 / 12, "feet"),
  15865. weight: math.unit(168, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/elise/front.svg",
  15869. extra: 276 / 271
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(6 + 2 / 12, "feet"),
  15877. default: true
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(5 + 10 / 12, "feet"),
  15886. weight: math.unit(210, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/glade/front.svg",
  15890. extra: 258 / 247,
  15891. bottom: 0.008
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(5 + 10 / 12, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(5 + 10 / 12, "feet"),
  15908. weight: math.unit(129, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/rina/front.svg",
  15912. extra: 266 / 255,
  15913. bottom: 0.005
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(5 + 10 / 12, "feet"),
  15921. default: true
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(6 + 1 / 12, "feet"),
  15930. weight: math.unit(192, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/veronica/front.svg",
  15934. extra: 319 / 309,
  15935. bottom: 0.005
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(6 + 1 / 12, "feet"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(9 + 3 / 12, "feet"),
  15952. weight: math.unit(1100, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/braxton/front.svg",
  15956. extra: 1057 / 984,
  15957. bottom: 0.05
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(9 + 3 / 12, "feet")
  15965. },
  15966. {
  15967. name: "Giant",
  15968. height: math.unit(300, "feet"),
  15969. default: true
  15970. },
  15971. {
  15972. name: "Macro",
  15973. height: math.unit(700, "feet")
  15974. },
  15975. {
  15976. name: "Megamacro",
  15977. height: math.unit(6000, "feet")
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(6 + 7 / 12, "feet"),
  15986. weight: math.unit(150, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/blue-feyonics/front.svg",
  15990. extra: 1403 / 1306,
  15991. bottom: 0.047
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(6 + 7 / 12, "feet"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(1.8, "meters"),
  16008. weight: math.unit(60, "kg"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/maxwell/front.svg",
  16012. extra: 2060 / 1873
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Micro",
  16019. height: math.unit(1, "mm")
  16020. },
  16021. {
  16022. name: "Normal",
  16023. height: math.unit(1.8, "meter"),
  16024. default: true
  16025. },
  16026. {
  16027. name: "Macro",
  16028. height: math.unit(30, "meters")
  16029. },
  16030. {
  16031. name: "Megamacro",
  16032. height: math.unit(10, "km")
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(6, "feet"),
  16041. weight: math.unit(150, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/jack/front.svg",
  16045. extra: 1754 / 1640,
  16046. bottom: 0.01
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(80000, "feet"),
  16054. default: true
  16055. },
  16056. {
  16057. name: "Max size",
  16058. height: math.unit(10, "lightyears")
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16064. {
  16065. urban: {
  16066. height: math.unit(5, "feet"),
  16067. weight: math.unit(240, "lb"),
  16068. name: "Urban",
  16069. image: {
  16070. source: "./media/characters/cafat/urban.svg",
  16071. extra: 1223/1126,
  16072. bottom: 205/1428
  16073. }
  16074. },
  16075. summer: {
  16076. height: math.unit(5, "feet"),
  16077. weight: math.unit(240, "lb"),
  16078. name: "Summer",
  16079. image: {
  16080. source: "./media/characters/cafat/summer.svg",
  16081. extra: 1223/1126,
  16082. bottom: 205/1428
  16083. }
  16084. },
  16085. winter: {
  16086. height: math.unit(5, "feet"),
  16087. weight: math.unit(240, "lb"),
  16088. name: "Winter",
  16089. image: {
  16090. source: "./media/characters/cafat/winter.svg",
  16091. extra: 1223/1126,
  16092. bottom: 205/1428
  16093. }
  16094. },
  16095. lingerie: {
  16096. height: math.unit(5, "feet"),
  16097. weight: math.unit(240, "lb"),
  16098. name: "Lingerie",
  16099. image: {
  16100. source: "./media/characters/cafat/lingerie.svg",
  16101. extra: 1223/1126,
  16102. bottom: 205/1428
  16103. }
  16104. },
  16105. upright: {
  16106. height: math.unit(6.3, "feet"),
  16107. weight: math.unit(240, "lb"),
  16108. name: "Upright",
  16109. image: {
  16110. source: "./media/characters/cafat/upright.svg",
  16111. bottom: 0.01
  16112. }
  16113. },
  16114. uprightFull: {
  16115. height: math.unit(6.3, "feet"),
  16116. weight: math.unit(240, "lb"),
  16117. name: "Upright (Full)",
  16118. image: {
  16119. source: "./media/characters/cafat/upright-full.svg",
  16120. bottom: 0.01
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Small",
  16127. height: math.unit(5, "feet"),
  16128. default: true
  16129. },
  16130. {
  16131. name: "Large",
  16132. height: math.unit(13, "feet")
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(6, "feet"),
  16141. weight: math.unit(150, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/verin-raharra/front.svg",
  16145. extra: 5019 / 4835,
  16146. bottom: 0.023
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(7 + 5 / 12, "feet"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Upsized",
  16158. height: math.unit(20, "feet")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(7, "feet"),
  16167. weight: math.unit(230, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/nakata/front.svg",
  16171. extra: 1.005,
  16172. bottom: 0.01
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(7, "feet"),
  16180. default: true
  16181. },
  16182. {
  16183. name: "Big",
  16184. height: math.unit(14, "feet")
  16185. },
  16186. {
  16187. name: "Macro",
  16188. height: math.unit(400, "feet")
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(4.91, "feet"),
  16197. weight: math.unit(100, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/lily/front.svg",
  16201. extra: 1585 / 1415,
  16202. bottom: 0.02
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(4.91, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16216. {
  16217. laying: {
  16218. height: math.unit(4 + 4 / 12, "feet"),
  16219. weight: math.unit(600, "lb"),
  16220. name: "Laying",
  16221. image: {
  16222. source: "./media/characters/sheila/laying.svg",
  16223. extra: 1333 / 1265,
  16224. bottom: 0.16
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Normal",
  16231. height: math.unit(4 + 4 / 12, "feet"),
  16232. default: true
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(6, "feet"),
  16241. weight: math.unit(190, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/sax/front.svg",
  16245. extra: 1187 / 973,
  16246. bottom: 0.042
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Micro",
  16253. height: math.unit(4, "inches"),
  16254. default: true
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(6, "feet"),
  16263. weight: math.unit(150, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/pandora/front.svg",
  16267. extra: 2720 / 2556,
  16268. bottom: 0.015
  16269. }
  16270. },
  16271. back: {
  16272. height: math.unit(6, "feet"),
  16273. weight: math.unit(150, "lb"),
  16274. name: "Back",
  16275. image: {
  16276. source: "./media/characters/pandora/back.svg",
  16277. extra: 2720 / 2556,
  16278. bottom: 0.01
  16279. }
  16280. },
  16281. beans: {
  16282. height: math.unit(6 / 8, "feet"),
  16283. name: "Beans",
  16284. image: {
  16285. source: "./media/characters/pandora/beans.svg"
  16286. }
  16287. },
  16288. collar: {
  16289. height: math.unit(0.31, "feet"),
  16290. name: "Collar",
  16291. image: {
  16292. source: "./media/characters/pandora/collar.svg"
  16293. }
  16294. },
  16295. skirt: {
  16296. height: math.unit(6, "feet"),
  16297. weight: math.unit(150, "lb"),
  16298. name: "Skirt",
  16299. image: {
  16300. source: "./media/characters/pandora/skirt.svg",
  16301. extra: 1622 / 1525,
  16302. bottom: 0.015
  16303. }
  16304. },
  16305. hoodie: {
  16306. height: math.unit(6, "feet"),
  16307. weight: math.unit(150, "lb"),
  16308. name: "Hoodie",
  16309. image: {
  16310. source: "./media/characters/pandora/hoodie.svg",
  16311. extra: 1622 / 1525,
  16312. bottom: 0.015
  16313. }
  16314. },
  16315. casual: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(150, "lb"),
  16318. name: "Casual",
  16319. image: {
  16320. source: "./media/characters/pandora/casual.svg",
  16321. extra: 1622 / 1525,
  16322. bottom: 0.015
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(6, "feet")
  16330. },
  16331. {
  16332. name: "Big Steppy",
  16333. height: math.unit(1, "km"),
  16334. default: true
  16335. },
  16336. {
  16337. name: "Galactic Steppy",
  16338. height: math.unit(2, "gigameters")
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16344. {
  16345. side: {
  16346. height: math.unit(10, "feet"),
  16347. weight: math.unit(800, "kg"),
  16348. name: "Side",
  16349. image: {
  16350. source: "./media/characters/venio-darcony/side.svg",
  16351. extra: 1373 / 1003,
  16352. bottom: 0.037
  16353. }
  16354. },
  16355. front: {
  16356. height: math.unit(19, "feet"),
  16357. weight: math.unit(800, "kg"),
  16358. name: "Front",
  16359. image: {
  16360. source: "./media/characters/venio-darcony/front.svg"
  16361. }
  16362. },
  16363. back: {
  16364. height: math.unit(19, "feet"),
  16365. weight: math.unit(800, "kg"),
  16366. name: "Back",
  16367. image: {
  16368. source: "./media/characters/venio-darcony/back.svg"
  16369. }
  16370. },
  16371. sideNsfw: {
  16372. height: math.unit(10, "feet"),
  16373. weight: math.unit(800, "kg"),
  16374. name: "Side (NSFW)",
  16375. image: {
  16376. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16377. extra: 1373 / 1003,
  16378. bottom: 0.037
  16379. }
  16380. },
  16381. frontNsfw: {
  16382. height: math.unit(19, "feet"),
  16383. weight: math.unit(800, "kg"),
  16384. name: "Front (NSFW)",
  16385. image: {
  16386. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16387. }
  16388. },
  16389. backNsfw: {
  16390. height: math.unit(19, "feet"),
  16391. weight: math.unit(800, "kg"),
  16392. name: "Back (NSFW)",
  16393. image: {
  16394. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16395. }
  16396. },
  16397. sideArmored: {
  16398. height: math.unit(10, "feet"),
  16399. weight: math.unit(800, "kg"),
  16400. name: "Side (Armored)",
  16401. image: {
  16402. source: "./media/characters/venio-darcony/side-armored.svg",
  16403. extra: 1373 / 1003,
  16404. bottom: 0.037
  16405. }
  16406. },
  16407. frontArmored: {
  16408. height: math.unit(19, "feet"),
  16409. weight: math.unit(900, "kg"),
  16410. name: "Front (Armored)",
  16411. image: {
  16412. source: "./media/characters/venio-darcony/front-armored.svg"
  16413. }
  16414. },
  16415. backArmored: {
  16416. height: math.unit(19, "feet"),
  16417. weight: math.unit(900, "kg"),
  16418. name: "Back (Armored)",
  16419. image: {
  16420. source: "./media/characters/venio-darcony/back-armored.svg"
  16421. }
  16422. },
  16423. sword: {
  16424. height: math.unit(10, "feet"),
  16425. weight: math.unit(50, "lb"),
  16426. name: "Sword",
  16427. image: {
  16428. source: "./media/characters/venio-darcony/sword.svg"
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(10, "feet")
  16436. },
  16437. {
  16438. name: "Macro",
  16439. height: math.unit(130, "feet"),
  16440. default: true
  16441. },
  16442. {
  16443. name: "Macro+",
  16444. height: math.unit(240, "feet")
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(6, "feet"),
  16453. weight: math.unit(150, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/veski/front.svg",
  16457. extra: 1299 / 1225,
  16458. bottom: 0.04
  16459. }
  16460. },
  16461. back: {
  16462. height: math.unit(6, "feet"),
  16463. weight: math.unit(150, "lb"),
  16464. name: "Back",
  16465. image: {
  16466. source: "./media/characters/veski/back.svg",
  16467. extra: 1299 / 1225,
  16468. bottom: 0.008
  16469. }
  16470. },
  16471. maw: {
  16472. height: math.unit(1.5 * 1.21, "feet"),
  16473. name: "Maw",
  16474. image: {
  16475. source: "./media/characters/veski/maw.svg"
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Macro",
  16482. height: math.unit(2, "km"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(5 + 7 / 12, "feet"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/isabelle/front.svg",
  16495. extra: 2130 / 1976,
  16496. bottom: 0.05
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Supermicro",
  16503. height: math.unit(10, "micrometers")
  16504. },
  16505. {
  16506. name: "Micro",
  16507. height: math.unit(1, "inch")
  16508. },
  16509. {
  16510. name: "Tiny",
  16511. height: math.unit(5, "inches")
  16512. },
  16513. {
  16514. name: "Standard",
  16515. height: math.unit(5 + 7 / 12, "inches")
  16516. },
  16517. {
  16518. name: "Macro",
  16519. height: math.unit(80, "meters"),
  16520. default: true
  16521. },
  16522. {
  16523. name: "Megamacro",
  16524. height: math.unit(250, "meters")
  16525. },
  16526. {
  16527. name: "Gigamacro",
  16528. height: math.unit(5, "km")
  16529. },
  16530. {
  16531. name: "Cosmic",
  16532. height: math.unit(2.5e6, "miles")
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(6, "feet"),
  16541. weight: math.unit(150, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/hanzo/front.svg",
  16545. extra: 374 / 344,
  16546. bottom: 0.02
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(8, "feet"),
  16554. default: true
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16560. {
  16561. front: {
  16562. height: math.unit(7, "feet"),
  16563. weight: math.unit(130, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/anna/front.svg",
  16567. extra: 169 / 145,
  16568. bottom: 0.06
  16569. }
  16570. },
  16571. full: {
  16572. height: math.unit(4.96, "feet"),
  16573. weight: math.unit(220, "lb"),
  16574. name: "Full",
  16575. image: {
  16576. source: "./media/characters/anna/full.svg",
  16577. extra: 138 / 114,
  16578. bottom: 0.15
  16579. }
  16580. },
  16581. tongue: {
  16582. height: math.unit(2.53, "feet"),
  16583. name: "Tongue",
  16584. image: {
  16585. source: "./media/characters/anna/tongue.svg"
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(7, "feet"),
  16593. default: true
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(7, "feet"),
  16602. weight: math.unit(150, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/ian-corvid/front.svg",
  16606. extra: 150 / 142,
  16607. bottom: 0.02
  16608. }
  16609. },
  16610. back: {
  16611. height: math.unit(7, "feet"),
  16612. weight: math.unit(150, "lb"),
  16613. name: "Back",
  16614. image: {
  16615. source: "./media/characters/ian-corvid/back.svg",
  16616. extra: 150 / 143,
  16617. bottom: 0.01
  16618. }
  16619. },
  16620. stomping: {
  16621. height: math.unit(7, "feet"),
  16622. weight: math.unit(150, "lb"),
  16623. name: "Stomping",
  16624. image: {
  16625. source: "./media/characters/ian-corvid/stomping.svg",
  16626. extra: 76 / 72
  16627. }
  16628. },
  16629. sitting: {
  16630. height: math.unit(7 / 1.8, "feet"),
  16631. weight: math.unit(150, "lb"),
  16632. name: "Sitting",
  16633. image: {
  16634. source: "./media/characters/ian-corvid/sitting.svg",
  16635. extra: 1400 / 1269,
  16636. bottom: 0.15
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Tiny Microw",
  16643. height: math.unit(1, "inch")
  16644. },
  16645. {
  16646. name: "Microw",
  16647. height: math.unit(6, "inches")
  16648. },
  16649. {
  16650. name: "Crow",
  16651. height: math.unit(7 + 1 / 12, "feet"),
  16652. default: true
  16653. },
  16654. {
  16655. name: "Macrow",
  16656. height: math.unit(176, "feet")
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(5 + 7 / 12, "feet"),
  16665. weight: math.unit(147, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/natalie-kellon/front.svg",
  16669. extra: 1214 / 1141,
  16670. bottom: 0.02
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Micro",
  16677. height: math.unit(1 / 16, "inch")
  16678. },
  16679. {
  16680. name: "Tiny",
  16681. height: math.unit(4, "inches")
  16682. },
  16683. {
  16684. name: "Normal",
  16685. height: math.unit(5 + 7 / 12, "feet"),
  16686. default: true
  16687. },
  16688. {
  16689. name: "Amazon",
  16690. height: math.unit(12, "feet")
  16691. },
  16692. {
  16693. name: "Giantess",
  16694. height: math.unit(160, "meters")
  16695. },
  16696. {
  16697. name: "Titaness",
  16698. height: math.unit(800, "meters")
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16704. {
  16705. front: {
  16706. height: math.unit(6, "feet"),
  16707. weight: math.unit(150, "lb"),
  16708. name: "Front",
  16709. image: {
  16710. source: "./media/characters/alluria/front.svg",
  16711. extra: 806 / 738,
  16712. bottom: 0.01
  16713. }
  16714. },
  16715. side: {
  16716. height: math.unit(6, "feet"),
  16717. weight: math.unit(150, "lb"),
  16718. name: "Side",
  16719. image: {
  16720. source: "./media/characters/alluria/side.svg",
  16721. extra: 800 / 750,
  16722. }
  16723. },
  16724. back: {
  16725. height: math.unit(6, "feet"),
  16726. weight: math.unit(150, "lb"),
  16727. name: "Back",
  16728. image: {
  16729. source: "./media/characters/alluria/back.svg",
  16730. extra: 806 / 738,
  16731. }
  16732. },
  16733. frontMaid: {
  16734. height: math.unit(6, "feet"),
  16735. weight: math.unit(150, "lb"),
  16736. name: "Front (Maid)",
  16737. image: {
  16738. source: "./media/characters/alluria/front-maid.svg",
  16739. extra: 806 / 738,
  16740. bottom: 0.01
  16741. }
  16742. },
  16743. sideMaid: {
  16744. height: math.unit(6, "feet"),
  16745. weight: math.unit(150, "lb"),
  16746. name: "Side (Maid)",
  16747. image: {
  16748. source: "./media/characters/alluria/side-maid.svg",
  16749. extra: 800 / 750,
  16750. bottom: 0.005
  16751. }
  16752. },
  16753. backMaid: {
  16754. height: math.unit(6, "feet"),
  16755. weight: math.unit(150, "lb"),
  16756. name: "Back (Maid)",
  16757. image: {
  16758. source: "./media/characters/alluria/back-maid.svg",
  16759. extra: 806 / 738,
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Micro",
  16766. height: math.unit(6, "inches"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(150, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/kyle/front.svg",
  16780. extra: 1069 / 962,
  16781. bottom: 77.228 / 1727.45
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Macro",
  16788. height: math.unit(150, "feet"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(6, "feet"),
  16798. weight: math.unit(300, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/duncan/front.svg",
  16802. extra: 1650 / 1482,
  16803. bottom: 0.05
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Macro",
  16810. height: math.unit(100, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(5 + 4 / 12, "feet"),
  16820. weight: math.unit(220, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/memory/front.svg",
  16824. extra: 3641 / 3545,
  16825. bottom: 0.03
  16826. }
  16827. },
  16828. back: {
  16829. height: math.unit(5 + 4 / 12, "feet"),
  16830. weight: math.unit(220, "lb"),
  16831. name: "Back",
  16832. image: {
  16833. source: "./media/characters/memory/back.svg",
  16834. extra: 3641 / 3545,
  16835. bottom: 0.025
  16836. }
  16837. },
  16838. frontSkirt: {
  16839. height: math.unit(5 + 4 / 12, "feet"),
  16840. weight: math.unit(220, "lb"),
  16841. name: "Front (Skirt)",
  16842. image: {
  16843. source: "./media/characters/memory/front-skirt.svg",
  16844. extra: 3641 / 3545,
  16845. bottom: 0.03
  16846. }
  16847. },
  16848. frontDress: {
  16849. height: math.unit(5 + 4 / 12, "feet"),
  16850. weight: math.unit(220, "lb"),
  16851. name: "Front (Dress)",
  16852. image: {
  16853. source: "./media/characters/memory/front-dress.svg",
  16854. extra: 3641 / 3545,
  16855. bottom: 0.03
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Micro",
  16862. height: math.unit(6, "inches"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Normal",
  16867. height: math.unit(5 + 4 / 12, "feet")
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(4 + 11 / 12, "feet"),
  16876. weight: math.unit(100, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/luno/front.svg",
  16880. extra: 1535 / 1487,
  16881. bottom: 0.03
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Micro",
  16888. height: math.unit(3, "inches")
  16889. },
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(4 + 11 / 12, "feet"),
  16893. default: true
  16894. },
  16895. {
  16896. name: "Macro",
  16897. height: math.unit(300, "feet")
  16898. },
  16899. {
  16900. name: "Megamacro",
  16901. height: math.unit(700, "miles")
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(6 + 2 / 12, "feet"),
  16910. weight: math.unit(170, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/jamesy/front.svg",
  16914. extra: 440 / 382,
  16915. bottom: 0.005
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Micro",
  16922. height: math.unit(3, "inches")
  16923. },
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(6 + 2 / 12, "feet"),
  16927. default: true
  16928. },
  16929. {
  16930. name: "Macro",
  16931. height: math.unit(300, "feet")
  16932. },
  16933. {
  16934. name: "Megamacro",
  16935. height: math.unit(700, "miles")
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16941. {
  16942. front: {
  16943. height: math.unit(6, "feet"),
  16944. weight: math.unit(160, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/mark/front.svg",
  16948. extra: 3300 / 3100,
  16949. bottom: 136.42 / 3440.47
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Macro",
  16956. height: math.unit(120, "meters")
  16957. },
  16958. {
  16959. name: "Bigger Macro",
  16960. height: math.unit(350, "meters")
  16961. },
  16962. {
  16963. name: "Megamacro",
  16964. height: math.unit(8, "km"),
  16965. default: true
  16966. },
  16967. {
  16968. name: "Continental",
  16969. height: math.unit(4550, "km")
  16970. },
  16971. {
  16972. name: "Planetary",
  16973. height: math.unit(65000, "km")
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16979. {
  16980. front: {
  16981. height: math.unit(6, "feet"),
  16982. weight: math.unit(400, "lb"),
  16983. name: "Front",
  16984. image: {
  16985. source: "./media/characters/mac/front.svg",
  16986. extra: 1048 / 987.7,
  16987. bottom: 60 / 1107.6,
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Macro",
  16994. height: math.unit(500, "feet"),
  16995. default: true
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17001. {
  17002. front: {
  17003. height: math.unit(5 + 2 / 12, "feet"),
  17004. weight: math.unit(190, "lb"),
  17005. name: "Front",
  17006. image: {
  17007. source: "./media/characters/bari/front.svg",
  17008. extra: 3156 / 2880,
  17009. bottom: 0.03
  17010. }
  17011. },
  17012. back: {
  17013. height: math.unit(5 + 2 / 12, "feet"),
  17014. weight: math.unit(190, "lb"),
  17015. name: "Back",
  17016. image: {
  17017. source: "./media/characters/bari/back.svg",
  17018. extra: 3260 / 2834,
  17019. bottom: 0.025
  17020. }
  17021. },
  17022. frontPlush: {
  17023. height: math.unit(5 + 2 / 12, "feet"),
  17024. weight: math.unit(190, "lb"),
  17025. name: "Front (Plush)",
  17026. image: {
  17027. source: "./media/characters/bari/front-plush.svg",
  17028. extra: 1112 / 1061,
  17029. bottom: 0.002
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Micro",
  17036. height: math.unit(3, "inches")
  17037. },
  17038. {
  17039. name: "Normal",
  17040. height: math.unit(5 + 2 / 12, "feet"),
  17041. default: true
  17042. },
  17043. {
  17044. name: "Macro",
  17045. height: math.unit(20, "feet")
  17046. },
  17047. ]
  17048. ))
  17049. characterMakers.push(() => makeCharacter(
  17050. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17051. {
  17052. front: {
  17053. height: math.unit(6 + 1 / 12, "feet"),
  17054. weight: math.unit(275, "lb"),
  17055. name: "Front",
  17056. image: {
  17057. source: "./media/characters/hunter-misha-raven/front.svg"
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Mortal",
  17064. height: math.unit(6 + 1 / 12, "feet")
  17065. },
  17066. {
  17067. name: "Divine",
  17068. height: math.unit(1.12134e34, "parsecs"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17075. {
  17076. front: {
  17077. height: math.unit(6 + 3 / 12, "feet"),
  17078. weight: math.unit(220, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/max-calore/front.svg",
  17082. extra: 1700 / 1648,
  17083. bottom: 0.01
  17084. }
  17085. },
  17086. back: {
  17087. height: math.unit(6 + 3 / 12, "feet"),
  17088. weight: math.unit(220, "lb"),
  17089. name: "Back",
  17090. image: {
  17091. source: "./media/characters/max-calore/back.svg",
  17092. extra: 1700 / 1648,
  17093. bottom: 0.01
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(6 + 3 / 12, "feet"),
  17101. default: true
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17107. {
  17108. side: {
  17109. height: math.unit(2 + 8 / 12, "feet"),
  17110. weight: math.unit(99, "lb"),
  17111. name: "Side",
  17112. image: {
  17113. source: "./media/characters/aspen/side.svg",
  17114. extra: 152 / 138,
  17115. bottom: 0.032
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(2 + 8 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17129. {
  17130. side: {
  17131. height: math.unit(3 + 2 / 12, "feet"),
  17132. weight: math.unit(224, "lb"),
  17133. name: "Side",
  17134. image: {
  17135. source: "./media/characters/sheila-feral-wolf/side.svg",
  17136. extra: 179 / 166,
  17137. bottom: 0.03
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(3 + 2 / 12, "feet"),
  17145. default: true
  17146. },
  17147. ]
  17148. ))
  17149. characterMakers.push(() => makeCharacter(
  17150. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17151. {
  17152. side: {
  17153. height: math.unit(1 + 9 / 12, "feet"),
  17154. weight: math.unit(38, "lb"),
  17155. name: "Side",
  17156. image: {
  17157. source: "./media/characters/michelle/side.svg",
  17158. extra: 147 / 136.7,
  17159. bottom: 0.03
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(1 + 9 / 12, "feet"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17173. {
  17174. front: {
  17175. height: math.unit(1 + 1 / 12, "feet"),
  17176. weight: math.unit(18, "lb"),
  17177. name: "Front",
  17178. image: {
  17179. source: "./media/characters/nino/front.svg"
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(1 + 1 / 12, "feet"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17193. {
  17194. front: {
  17195. height: math.unit(1, "feet"),
  17196. weight: math.unit(16, "lb"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/viola/front.svg"
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(1, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17213. {
  17214. front: {
  17215. height: math.unit(6 + 5 / 12, "feet"),
  17216. weight: math.unit(580, "lb"),
  17217. name: "Front",
  17218. image: {
  17219. source: "./media/characters/atlas/front.svg",
  17220. extra: 298.5 / 290,
  17221. bottom: 0.015
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(6 + 5 / 12, "feet"),
  17229. default: true
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17235. {
  17236. side: {
  17237. height: math.unit(1 + 10 / 12, "feet"),
  17238. weight: math.unit(25, "lb"),
  17239. name: "Side",
  17240. image: {
  17241. source: "./media/characters/davy/side.svg",
  17242. extra: 200 / 170,
  17243. bottom: 0.01
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(1 + 10 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17257. {
  17258. side: {
  17259. height: math.unit(4 + 8 / 12, "feet"),
  17260. weight: math.unit(166, "lb"),
  17261. name: "Side",
  17262. image: {
  17263. source: "./media/characters/fiona/side.svg",
  17264. extra: 232 / 220,
  17265. bottom: 0.03
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(4 + 8 / 12, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17279. {
  17280. front: {
  17281. height: math.unit(2, "feet"),
  17282. weight: math.unit(62, "lb"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/lyla/front.svg",
  17286. bottom: 0.1
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(2, "feet"),
  17294. default: true
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17300. {
  17301. side: {
  17302. height: math.unit(1.8, "feet"),
  17303. weight: math.unit(44, "lb"),
  17304. name: "Side",
  17305. image: {
  17306. source: "./media/characters/perseus/side.svg",
  17307. bottom: 0.21
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Normal",
  17314. height: math.unit(1.8, "feet"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17321. {
  17322. side: {
  17323. height: math.unit(4 + 2 / 12, "feet"),
  17324. weight: math.unit(20, "lb"),
  17325. name: "Side",
  17326. image: {
  17327. source: "./media/characters/remus/side.svg"
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(4 + 2 / 12, "feet"),
  17335. default: true
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17341. {
  17342. front: {
  17343. height: math.unit(4 + 11 / 12, "feet"),
  17344. weight: math.unit(114, "lb"),
  17345. name: "Front",
  17346. image: {
  17347. source: "./media/characters/raf/front.svg",
  17348. extra: 1504/1339,
  17349. bottom: 26/1530
  17350. }
  17351. },
  17352. side: {
  17353. height: math.unit(4 + 11 / 12, "feet"),
  17354. weight: math.unit(114, "lb"),
  17355. name: "Side",
  17356. image: {
  17357. source: "./media/characters/raf/side.svg",
  17358. extra: 1466/1316,
  17359. bottom: 29/1495
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Micro",
  17366. height: math.unit(2, "inches")
  17367. },
  17368. {
  17369. name: "Normal",
  17370. height: math.unit(4 + 11 / 12, "feet"),
  17371. default: true
  17372. },
  17373. {
  17374. name: "Macro",
  17375. height: math.unit(70, "feet")
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17381. {
  17382. front: {
  17383. height: math.unit(1.5, "meters"),
  17384. weight: math.unit(68, "kg"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/liam-einarr/front.svg",
  17388. extra: 2822 / 2666
  17389. }
  17390. },
  17391. back: {
  17392. height: math.unit(1.5, "meters"),
  17393. weight: math.unit(68, "kg"),
  17394. name: "Back",
  17395. image: {
  17396. source: "./media/characters/liam-einarr/back.svg",
  17397. extra: 2822 / 2666,
  17398. bottom: 0.015
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(1.5, "meters"),
  17406. default: true
  17407. },
  17408. {
  17409. name: "Macro",
  17410. height: math.unit(150, "meters")
  17411. },
  17412. {
  17413. name: "Megamacro",
  17414. height: math.unit(35, "km")
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17420. {
  17421. front: {
  17422. height: math.unit(6, "feet"),
  17423. weight: math.unit(75, "kg"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/linda/front.svg",
  17427. extra: 930 / 874,
  17428. bottom: 0.004
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(6, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(6 + 8 / 12, "feet"),
  17445. weight: math.unit(220, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/caylex/front.svg",
  17449. extra: 821 / 772,
  17450. bottom: 0.07
  17451. }
  17452. },
  17453. back: {
  17454. height: math.unit(6 + 8 / 12, "feet"),
  17455. weight: math.unit(220, "lb"),
  17456. name: "Back",
  17457. image: {
  17458. source: "./media/characters/caylex/back.svg",
  17459. extra: 821 / 772,
  17460. bottom: 0.022
  17461. }
  17462. },
  17463. hand: {
  17464. height: math.unit(1.25, "feet"),
  17465. name: "Hand",
  17466. image: {
  17467. source: "./media/characters/caylex/hand.svg"
  17468. }
  17469. },
  17470. foot: {
  17471. height: math.unit(1.6, "feet"),
  17472. name: "Foot",
  17473. image: {
  17474. source: "./media/characters/caylex/foot.svg"
  17475. }
  17476. },
  17477. armored: {
  17478. height: math.unit(6 + 8 / 12, "feet"),
  17479. weight: math.unit(250, "lb"),
  17480. name: "Armored",
  17481. image: {
  17482. source: "./media/characters/caylex/armored.svg",
  17483. extra: 1420 / 1310,
  17484. bottom: 0.045
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Normal",
  17491. height: math.unit(6 + 8 / 12, "feet"),
  17492. default: true
  17493. },
  17494. {
  17495. name: "Normal+",
  17496. height: math.unit(12, "feet")
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17502. {
  17503. front: {
  17504. height: math.unit(7 + 6 / 12, "feet"),
  17505. weight: math.unit(288, "lb"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/alana/front.svg",
  17509. extra: 679 / 653,
  17510. bottom: 22.5 / 701
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(7 + 6 / 12, "feet")
  17518. },
  17519. {
  17520. name: "Large",
  17521. height: math.unit(50, "feet")
  17522. },
  17523. {
  17524. name: "Macro",
  17525. height: math.unit(100, "feet"),
  17526. default: true
  17527. },
  17528. {
  17529. name: "Macro+",
  17530. height: math.unit(200, "feet")
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17536. {
  17537. front: {
  17538. height: math.unit(6 + 1 / 12, "feet"),
  17539. weight: math.unit(210, "lb"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/hasani/front.svg",
  17543. extra: 244 / 232,
  17544. bottom: 0.01
  17545. }
  17546. },
  17547. back: {
  17548. height: math.unit(6 + 1 / 12, "feet"),
  17549. weight: math.unit(210, "lb"),
  17550. name: "Back",
  17551. image: {
  17552. source: "./media/characters/hasani/back.svg",
  17553. extra: 244 / 232,
  17554. bottom: 0.01
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(6 + 1 / 12, "feet")
  17562. },
  17563. {
  17564. name: "Macro",
  17565. height: math.unit(175, "feet"),
  17566. default: true
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(1.82, "meters"),
  17575. weight: math.unit(140, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/nita/front.svg",
  17579. extra: 2473 / 2363,
  17580. bottom: 0.01
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(1.82, "m")
  17588. },
  17589. {
  17590. name: "Macro",
  17591. height: math.unit(300, "m")
  17592. },
  17593. {
  17594. name: "Mistake Canon",
  17595. height: math.unit(0.5, "miles"),
  17596. default: true
  17597. },
  17598. {
  17599. name: "Big Mistake",
  17600. height: math.unit(13, "miles")
  17601. },
  17602. {
  17603. name: "Playing God",
  17604. height: math.unit(2450, "miles")
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17610. {
  17611. front: {
  17612. height: math.unit(4, "feet"),
  17613. weight: math.unit(120, "lb"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/shiriko/front.svg",
  17617. extra: 970/934,
  17618. bottom: 5/975
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Normal",
  17625. height: math.unit(4, "feet"),
  17626. default: true
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17632. {
  17633. front: {
  17634. height: math.unit(6, "feet"),
  17635. name: "front",
  17636. image: {
  17637. source: "./media/characters/deja/front.svg",
  17638. extra: 926 / 840,
  17639. bottom: 0.07
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Planck Length",
  17646. height: math.unit(1.6e-35, "meters")
  17647. },
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(30.48, "meters"),
  17651. default: true
  17652. },
  17653. {
  17654. name: "Universal",
  17655. height: math.unit(8.8e26, "meters")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17661. {
  17662. side: {
  17663. height: math.unit(8, "feet"),
  17664. weight: math.unit(6300, "lb"),
  17665. name: "Side",
  17666. image: {
  17667. source: "./media/characters/anima/side.svg",
  17668. bottom: 0.035
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(8, "feet"),
  17676. default: true
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17682. {
  17683. front: {
  17684. height: math.unit(8, "feet"),
  17685. weight: math.unit(350, "lb"),
  17686. name: "Front",
  17687. image: {
  17688. source: "./media/characters/bianca/front.svg",
  17689. extra: 234 / 225,
  17690. bottom: 0.03
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(8, "feet"),
  17698. default: true
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(6, "feet"),
  17707. weight: math.unit(150, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/adinia/front.svg",
  17711. extra: 1845 / 1672,
  17712. bottom: 0.02
  17713. }
  17714. },
  17715. back: {
  17716. height: math.unit(6, "feet"),
  17717. weight: math.unit(150, "lb"),
  17718. name: "Back",
  17719. image: {
  17720. source: "./media/characters/adinia/back.svg",
  17721. extra: 1845 / 1672,
  17722. bottom: 0.002
  17723. }
  17724. },
  17725. },
  17726. [
  17727. {
  17728. name: "Normal",
  17729. height: math.unit(11 + 5 / 12, "feet"),
  17730. default: true
  17731. },
  17732. ]
  17733. ))
  17734. characterMakers.push(() => makeCharacter(
  17735. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17736. {
  17737. front: {
  17738. height: math.unit(3, "meters"),
  17739. weight: math.unit(200, "kg"),
  17740. name: "Front",
  17741. image: {
  17742. source: "./media/characters/lykasa/front.svg",
  17743. extra: 1076 / 976,
  17744. bottom: 0.06
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(3, "meters")
  17752. },
  17753. {
  17754. name: "Kaiju",
  17755. height: math.unit(120, "meters"),
  17756. default: true
  17757. },
  17758. {
  17759. name: "Mega Kaiju",
  17760. height: math.unit(240, "km")
  17761. },
  17762. {
  17763. name: "Giga Kaiju",
  17764. height: math.unit(400, "megameters")
  17765. },
  17766. {
  17767. name: "Tera Kaiju",
  17768. height: math.unit(800, "gigameters")
  17769. },
  17770. {
  17771. name: "Kaiju Dragon Goddess",
  17772. height: math.unit(26, "zettaparsecs")
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17778. {
  17779. side: {
  17780. height: math.unit(283 / 124 * 6, "feet"),
  17781. weight: math.unit(35000, "lb"),
  17782. name: "Side",
  17783. image: {
  17784. source: "./media/characters/malfaren/side.svg",
  17785. extra: 2500 / 1010,
  17786. bottom: 0.01
  17787. }
  17788. },
  17789. front: {
  17790. height: math.unit(22.36, "feet"),
  17791. weight: math.unit(35000, "lb"),
  17792. name: "Front",
  17793. image: {
  17794. source: "./media/characters/malfaren/front.svg",
  17795. extra: 1631 / 1476,
  17796. bottom: 0.01
  17797. }
  17798. },
  17799. maw: {
  17800. height: math.unit(6.9, "feet"),
  17801. name: "Maw",
  17802. image: {
  17803. source: "./media/characters/malfaren/maw.svg"
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Big",
  17810. height: math.unit(283 / 162 * 6, "feet"),
  17811. },
  17812. {
  17813. name: "Bigger",
  17814. height: math.unit(283 / 124 * 6, "feet")
  17815. },
  17816. {
  17817. name: "Massive",
  17818. height: math.unit(283 / 92 * 6, "feet"),
  17819. default: true
  17820. },
  17821. {
  17822. name: "👀💦",
  17823. height: math.unit(283 / 73 * 6, "feet"),
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(1.7, "m"),
  17832. weight: math.unit(70, "kg"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/kernel/front.svg",
  17836. extra: 222 / 210,
  17837. bottom: 0.007
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Nano",
  17844. height: math.unit(17, "micrometers")
  17845. },
  17846. {
  17847. name: "Micro",
  17848. height: math.unit(1.7, "mm")
  17849. },
  17850. {
  17851. name: "Small",
  17852. height: math.unit(1.7, "cm")
  17853. },
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(1.7, "m"),
  17857. default: true
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(1.75, "meters"),
  17866. weight: math.unit(65, "kg"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/jayne-folest/front.svg",
  17870. extra: 2115 / 2007,
  17871. bottom: 0.02
  17872. }
  17873. },
  17874. back: {
  17875. height: math.unit(1.75, "meters"),
  17876. weight: math.unit(65, "kg"),
  17877. name: "Back",
  17878. image: {
  17879. source: "./media/characters/jayne-folest/back.svg",
  17880. extra: 2115 / 2007,
  17881. bottom: 0.005
  17882. }
  17883. },
  17884. frontClothed: {
  17885. height: math.unit(1.75, "meters"),
  17886. weight: math.unit(65, "kg"),
  17887. name: "Front (Clothed)",
  17888. image: {
  17889. source: "./media/characters/jayne-folest/front-clothed.svg",
  17890. extra: 2115 / 2007,
  17891. bottom: 0.035
  17892. }
  17893. },
  17894. hand: {
  17895. height: math.unit(1 / 1.260, "feet"),
  17896. name: "Hand",
  17897. image: {
  17898. source: "./media/characters/jayne-folest/hand.svg"
  17899. }
  17900. },
  17901. foot: {
  17902. height: math.unit(1 / 0.918, "feet"),
  17903. name: "Foot",
  17904. image: {
  17905. source: "./media/characters/jayne-folest/foot.svg"
  17906. }
  17907. },
  17908. },
  17909. [
  17910. {
  17911. name: "Micro",
  17912. height: math.unit(4, "cm")
  17913. },
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(1.75, "meters")
  17917. },
  17918. {
  17919. name: "Macro",
  17920. height: math.unit(47.5, "meters"),
  17921. default: true
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17927. {
  17928. front: {
  17929. height: math.unit(180, "cm"),
  17930. weight: math.unit(70, "kg"),
  17931. name: "Front",
  17932. image: {
  17933. source: "./media/characters/algier/front.svg",
  17934. extra: 596 / 572,
  17935. bottom: 0.04
  17936. }
  17937. },
  17938. back: {
  17939. height: math.unit(180, "cm"),
  17940. weight: math.unit(70, "kg"),
  17941. name: "Back",
  17942. image: {
  17943. source: "./media/characters/algier/back.svg",
  17944. extra: 596 / 572,
  17945. bottom: 0.025
  17946. }
  17947. },
  17948. frontdressed: {
  17949. height: math.unit(180, "cm"),
  17950. weight: math.unit(150, "kg"),
  17951. name: "Front-dressed",
  17952. image: {
  17953. source: "./media/characters/algier/front-dressed.svg",
  17954. extra: 596 / 572,
  17955. bottom: 0.038
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Micro",
  17962. height: math.unit(5, "cm")
  17963. },
  17964. {
  17965. name: "Normal",
  17966. height: math.unit(180, "cm"),
  17967. default: true
  17968. },
  17969. {
  17970. name: "Macro",
  17971. height: math.unit(64, "m")
  17972. },
  17973. ]
  17974. ))
  17975. characterMakers.push(() => makeCharacter(
  17976. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17977. {
  17978. upright: {
  17979. height: math.unit(7, "feet"),
  17980. weight: math.unit(300, "lb"),
  17981. name: "Upright",
  17982. image: {
  17983. source: "./media/characters/pretzel/upright.svg",
  17984. extra: 534 / 522,
  17985. bottom: 0.065
  17986. }
  17987. },
  17988. sprawling: {
  17989. height: math.unit(3.75, "feet"),
  17990. weight: math.unit(300, "lb"),
  17991. name: "Sprawling",
  17992. image: {
  17993. source: "./media/characters/pretzel/sprawling.svg",
  17994. extra: 314 / 281,
  17995. bottom: 0.1
  17996. }
  17997. },
  17998. tongue: {
  17999. height: math.unit(2, "feet"),
  18000. name: "Tongue",
  18001. image: {
  18002. source: "./media/characters/pretzel/tongue.svg"
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Normal",
  18009. height: math.unit(7, "feet"),
  18010. default: true
  18011. },
  18012. {
  18013. name: "Oversized",
  18014. height: math.unit(15, "feet")
  18015. },
  18016. {
  18017. name: "Huge",
  18018. height: math.unit(30, "feet")
  18019. },
  18020. {
  18021. name: "Macro",
  18022. height: math.unit(250, "feet")
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18028. {
  18029. sideFront: {
  18030. height: math.unit(5 + 2 / 12, "feet"),
  18031. weight: math.unit(120, "lb"),
  18032. name: "Front Side",
  18033. image: {
  18034. source: "./media/characters/roxi/side-front.svg",
  18035. extra: 2924 / 2717,
  18036. bottom: 0.08
  18037. }
  18038. },
  18039. sideBack: {
  18040. height: math.unit(5 + 2 / 12, "feet"),
  18041. weight: math.unit(120, "lb"),
  18042. name: "Back Side",
  18043. image: {
  18044. source: "./media/characters/roxi/side-back.svg",
  18045. extra: 2904 / 2693,
  18046. bottom: 0.06
  18047. }
  18048. },
  18049. front: {
  18050. height: math.unit(5 + 2 / 12, "feet"),
  18051. weight: math.unit(120, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/roxi/front.svg",
  18055. extra: 2028 / 1907,
  18056. bottom: 0.01
  18057. }
  18058. },
  18059. frontAlt: {
  18060. height: math.unit(5 + 2 / 12, "feet"),
  18061. weight: math.unit(120, "lb"),
  18062. name: "Front (Alt)",
  18063. image: {
  18064. source: "./media/characters/roxi/front-alt.svg",
  18065. extra: 1828 / 1798,
  18066. bottom: 0.01
  18067. }
  18068. },
  18069. sitting: {
  18070. height: math.unit(2.8, "feet"),
  18071. weight: math.unit(120, "lb"),
  18072. name: "Sitting",
  18073. image: {
  18074. source: "./media/characters/roxi/sitting.svg",
  18075. extra: 2660 / 2462,
  18076. bottom: 0.1
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(5 + 2 / 12, "feet"),
  18084. default: true
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18090. {
  18091. side: {
  18092. height: math.unit(55, "feet"),
  18093. weight: math.unit(153, "tons"),
  18094. name: "Side",
  18095. image: {
  18096. source: "./media/characters/shadow/side.svg",
  18097. extra: 701 / 628,
  18098. bottom: 0.02
  18099. }
  18100. },
  18101. flying: {
  18102. height: math.unit(145, "feet"),
  18103. weight: math.unit(153, "tons"),
  18104. name: "Flying",
  18105. image: {
  18106. source: "./media/characters/shadow/flying.svg"
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(55, "feet"),
  18114. default: true
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(6, "feet"),
  18123. weight: math.unit(200, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/marcie/front.svg",
  18127. extra: 960 / 876,
  18128. bottom: 58 / 1017.87
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Macro",
  18135. height: math.unit(1, "mile"),
  18136. default: true
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(7, "feet"),
  18145. weight: math.unit(200, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/kachina/front.svg",
  18149. extra: 1290.68 / 1119,
  18150. bottom: 36.5 / 1327.18
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Normal",
  18157. height: math.unit(7, "feet"),
  18158. default: true
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18164. {
  18165. looking: {
  18166. height: math.unit(2, "meters"),
  18167. weight: math.unit(300, "kg"),
  18168. name: "Looking",
  18169. image: {
  18170. source: "./media/characters/kash/looking.svg",
  18171. extra: 474 / 344,
  18172. bottom: 0.03
  18173. }
  18174. },
  18175. side: {
  18176. height: math.unit(2, "meters"),
  18177. weight: math.unit(300, "kg"),
  18178. name: "Side",
  18179. image: {
  18180. source: "./media/characters/kash/side.svg",
  18181. extra: 302 / 251,
  18182. bottom: 0.03
  18183. }
  18184. },
  18185. front: {
  18186. height: math.unit(2, "meters"),
  18187. weight: math.unit(300, "kg"),
  18188. name: "Front",
  18189. image: {
  18190. source: "./media/characters/kash/front.svg",
  18191. extra: 495 / 360,
  18192. bottom: 0.015
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(2, "meters"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Big",
  18204. height: math.unit(3, "meters")
  18205. },
  18206. {
  18207. name: "Large",
  18208. height: math.unit(5, "meters")
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18214. {
  18215. feeding: {
  18216. height: math.unit(6.7, "feet"),
  18217. weight: math.unit(350, "lb"),
  18218. name: "Feeding",
  18219. image: {
  18220. source: "./media/characters/lalim/feeding.svg",
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(6.7, "feet"),
  18228. default: true
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(9.5, "feet"),
  18237. weight: math.unit(600, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/de'vout/front.svg",
  18241. extra: 1443 / 1328,
  18242. bottom: 0.025
  18243. }
  18244. },
  18245. back: {
  18246. height: math.unit(9.5, "feet"),
  18247. weight: math.unit(600, "lb"),
  18248. name: "Back",
  18249. image: {
  18250. source: "./media/characters/de'vout/back.svg",
  18251. extra: 1443 / 1328
  18252. }
  18253. },
  18254. frontDressed: {
  18255. height: math.unit(9.5, "feet"),
  18256. weight: math.unit(600, "lb"),
  18257. name: "Front (Dressed",
  18258. image: {
  18259. source: "./media/characters/de'vout/front-dressed.svg",
  18260. extra: 1443 / 1328,
  18261. bottom: 0.025
  18262. }
  18263. },
  18264. backDressed: {
  18265. height: math.unit(9.5, "feet"),
  18266. weight: math.unit(600, "lb"),
  18267. name: "Back (Dressed",
  18268. image: {
  18269. source: "./media/characters/de'vout/back-dressed.svg",
  18270. extra: 1443 / 1328
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Normal",
  18277. height: math.unit(9.5, "feet"),
  18278. default: true
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(8, "feet"),
  18287. weight: math.unit(225, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/talana/front.svg",
  18291. extra: 1410 / 1300,
  18292. bottom: 0.015
  18293. }
  18294. },
  18295. frontDressed: {
  18296. height: math.unit(8, "feet"),
  18297. weight: math.unit(225, "lb"),
  18298. name: "Front (Dressed",
  18299. image: {
  18300. source: "./media/characters/talana/front-dressed.svg",
  18301. extra: 1410 / 1300,
  18302. bottom: 0.015
  18303. }
  18304. },
  18305. },
  18306. [
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(8, "feet"),
  18310. default: true
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18316. {
  18317. side: {
  18318. height: math.unit(7.2, "feet"),
  18319. weight: math.unit(150, "lb"),
  18320. name: "Side",
  18321. image: {
  18322. source: "./media/characters/xeauvok/side.svg",
  18323. extra: 1975 / 1523,
  18324. bottom: 0.07
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(7.2, "feet"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18338. {
  18339. side: {
  18340. height: math.unit(10, "feet"),
  18341. weight: math.unit(900, "kg"),
  18342. name: "Side",
  18343. image: {
  18344. source: "./media/characters/zara/side.svg",
  18345. extra: 504 / 498
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(10, "feet"),
  18353. default: true
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18359. {
  18360. side: {
  18361. height: math.unit(6, "feet"),
  18362. weight: math.unit(150, "lb"),
  18363. name: "Side",
  18364. image: {
  18365. source: "./media/characters/richard-dragon/side.svg",
  18366. extra: 845 / 340,
  18367. bottom: 0.017
  18368. }
  18369. },
  18370. maw: {
  18371. height: math.unit(2.97, "feet"),
  18372. name: "Maw",
  18373. image: {
  18374. source: "./media/characters/richard-dragon/maw.svg"
  18375. }
  18376. },
  18377. },
  18378. [
  18379. ]
  18380. ))
  18381. characterMakers.push(() => makeCharacter(
  18382. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18383. {
  18384. front: {
  18385. height: math.unit(4, "feet"),
  18386. weight: math.unit(100, "lb"),
  18387. name: "Front",
  18388. image: {
  18389. source: "./media/characters/richard-smeargle/front.svg",
  18390. extra: 2952 / 2820,
  18391. bottom: 0.028
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(4, "feet"),
  18399. default: true
  18400. },
  18401. {
  18402. name: "Dynamax",
  18403. height: math.unit(20, "meters")
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(6, "feet"),
  18412. weight: math.unit(110, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/klay/front.svg",
  18416. extra: 962 / 883,
  18417. bottom: 0.04
  18418. }
  18419. },
  18420. back: {
  18421. height: math.unit(6, "feet"),
  18422. weight: math.unit(110, "lb"),
  18423. name: "Back",
  18424. image: {
  18425. source: "./media/characters/klay/back.svg",
  18426. extra: 962 / 883
  18427. }
  18428. },
  18429. beans: {
  18430. height: math.unit(1.15, "feet"),
  18431. name: "Beans",
  18432. image: {
  18433. source: "./media/characters/klay/beans.svg"
  18434. }
  18435. },
  18436. },
  18437. [
  18438. {
  18439. name: "Micro",
  18440. height: math.unit(6, "inches")
  18441. },
  18442. {
  18443. name: "Mini",
  18444. height: math.unit(3, "feet")
  18445. },
  18446. {
  18447. name: "Normal",
  18448. height: math.unit(6, "feet"),
  18449. default: true
  18450. },
  18451. {
  18452. name: "Big",
  18453. height: math.unit(25, "feet")
  18454. },
  18455. {
  18456. name: "Macro",
  18457. height: math.unit(100, "feet")
  18458. },
  18459. {
  18460. name: "Megamacro",
  18461. height: math.unit(400, "feet")
  18462. },
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18467. {
  18468. front: {
  18469. height: math.unit(6, "feet"),
  18470. weight: math.unit(160, "lb"),
  18471. name: "Front",
  18472. image: {
  18473. source: "./media/characters/marcus/front.svg",
  18474. extra: 734 / 676,
  18475. bottom: 0.03
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Little",
  18482. height: math.unit(6, "feet")
  18483. },
  18484. {
  18485. name: "Normal",
  18486. height: math.unit(110, "feet"),
  18487. default: true
  18488. },
  18489. {
  18490. name: "Macro",
  18491. height: math.unit(250, "feet")
  18492. },
  18493. {
  18494. name: "Megamacro",
  18495. height: math.unit(1000, "feet")
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18501. {
  18502. front: {
  18503. height: math.unit(7, "feet"),
  18504. weight: math.unit(275, "lb"),
  18505. name: "Front",
  18506. image: {
  18507. source: "./media/characters/claude-delroute/front.svg",
  18508. extra: 230 / 214,
  18509. bottom: 0.007
  18510. }
  18511. },
  18512. side: {
  18513. height: math.unit(7, "feet"),
  18514. weight: math.unit(275, "lb"),
  18515. name: "Side",
  18516. image: {
  18517. source: "./media/characters/claude-delroute/side.svg",
  18518. extra: 222 / 214,
  18519. bottom: 0.01
  18520. }
  18521. },
  18522. back: {
  18523. height: math.unit(7, "feet"),
  18524. weight: math.unit(275, "lb"),
  18525. name: "Back",
  18526. image: {
  18527. source: "./media/characters/claude-delroute/back.svg",
  18528. extra: 230 / 214,
  18529. bottom: 0.015
  18530. }
  18531. },
  18532. maw: {
  18533. height: math.unit(0.6407, "meters"),
  18534. name: "Maw",
  18535. image: {
  18536. source: "./media/characters/claude-delroute/maw.svg"
  18537. }
  18538. },
  18539. },
  18540. [
  18541. {
  18542. name: "Normal",
  18543. height: math.unit(7, "feet"),
  18544. default: true
  18545. },
  18546. {
  18547. name: "Lorge",
  18548. height: math.unit(20, "feet")
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18554. {
  18555. front: {
  18556. height: math.unit(8 + 4 / 12, "feet"),
  18557. weight: math.unit(600, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/dragonien/front.svg",
  18561. extra: 100 / 94,
  18562. bottom: 3.3 / 103.3445
  18563. }
  18564. },
  18565. back: {
  18566. height: math.unit(8 + 4 / 12, "feet"),
  18567. weight: math.unit(600, "lb"),
  18568. name: "Back",
  18569. image: {
  18570. source: "./media/characters/dragonien/back.svg",
  18571. extra: 776 / 746,
  18572. bottom: 6.4 / 782.0616
  18573. }
  18574. },
  18575. foot: {
  18576. height: math.unit(1.54, "feet"),
  18577. name: "Foot",
  18578. image: {
  18579. source: "./media/characters/dragonien/foot.svg",
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(8 + 4 / 12, "feet"),
  18587. default: true
  18588. },
  18589. {
  18590. name: "Macro",
  18591. height: math.unit(200, "feet")
  18592. },
  18593. {
  18594. name: "Megamacro",
  18595. height: math.unit(1, "mile")
  18596. },
  18597. {
  18598. name: "Gigamacro",
  18599. height: math.unit(1000, "miles")
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(5 + 2 / 12, "feet"),
  18608. weight: math.unit(110, "lb"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/desta/front.svg",
  18612. extra: 767 / 726,
  18613. bottom: 11.7 / 779
  18614. }
  18615. },
  18616. back: {
  18617. height: math.unit(5 + 2 / 12, "feet"),
  18618. weight: math.unit(110, "lb"),
  18619. name: "Back",
  18620. image: {
  18621. source: "./media/characters/desta/back.svg",
  18622. extra: 777 / 728,
  18623. bottom: 6 / 784
  18624. }
  18625. },
  18626. frontAlt: {
  18627. height: math.unit(5 + 2 / 12, "feet"),
  18628. weight: math.unit(110, "lb"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/desta/front-alt.svg",
  18632. extra: 1482 / 1417
  18633. }
  18634. },
  18635. side: {
  18636. height: math.unit(5 + 2 / 12, "feet"),
  18637. weight: math.unit(110, "lb"),
  18638. name: "Side",
  18639. image: {
  18640. source: "./media/characters/desta/side.svg",
  18641. extra: 2579 / 2491,
  18642. bottom: 0.053
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Micro",
  18649. height: math.unit(6, "inches")
  18650. },
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(5 + 2 / 12, "feet"),
  18654. default: true
  18655. },
  18656. {
  18657. name: "Macro",
  18658. height: math.unit(62, "feet")
  18659. },
  18660. {
  18661. name: "Megamacro",
  18662. height: math.unit(1800, "feet")
  18663. },
  18664. ]
  18665. ))
  18666. characterMakers.push(() => makeCharacter(
  18667. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18668. {
  18669. front: {
  18670. height: math.unit(10, "feet"),
  18671. weight: math.unit(700, "lb"),
  18672. name: "Front",
  18673. image: {
  18674. source: "./media/characters/storm-alystar/front.svg",
  18675. extra: 2112 / 1898,
  18676. bottom: 0.034
  18677. }
  18678. },
  18679. },
  18680. [
  18681. {
  18682. name: "Micro",
  18683. height: math.unit(3.5, "inches")
  18684. },
  18685. {
  18686. name: "Normal",
  18687. height: math.unit(10, "feet"),
  18688. default: true
  18689. },
  18690. {
  18691. name: "Macro",
  18692. height: math.unit(400, "feet")
  18693. },
  18694. {
  18695. name: "Deific",
  18696. height: math.unit(60, "miles")
  18697. },
  18698. ]
  18699. ))
  18700. characterMakers.push(() => makeCharacter(
  18701. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18702. {
  18703. front: {
  18704. height: math.unit(2.35, "meters"),
  18705. weight: math.unit(119, "kg"),
  18706. name: "Front",
  18707. image: {
  18708. source: "./media/characters/ilia/front.svg",
  18709. extra: 1285 / 1255,
  18710. bottom: 0.06
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(2.35, "meters")
  18718. },
  18719. {
  18720. name: "Macro",
  18721. height: math.unit(140, "meters"),
  18722. default: true
  18723. },
  18724. {
  18725. name: "Megamacro",
  18726. height: math.unit(100, "miles")
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(6 + 5 / 12, "feet"),
  18735. weight: math.unit(190, "lb"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/kingdead/front.svg",
  18739. extra: 1228 / 1177
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Micro",
  18746. height: math.unit(7, "inches")
  18747. },
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(6 + 5 / 12, "feet")
  18751. },
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(150, "feet"),
  18755. default: true
  18756. },
  18757. {
  18758. name: "Megamacro",
  18759. height: math.unit(200, "miles")
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(8, "feet"),
  18768. weight: math.unit(600, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/kyrehx/front.svg",
  18772. extra: 1195 / 1095,
  18773. bottom: 0.034
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Micro",
  18780. height: math.unit(2, "inches")
  18781. },
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(8, "feet"),
  18785. default: true
  18786. },
  18787. {
  18788. name: "Macro",
  18789. height: math.unit(255, "feet")
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18798. weight: math.unit(184, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/xang/front.svg",
  18802. extra: 845 / 755
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18810. default: true
  18811. },
  18812. {
  18813. name: "Macro",
  18814. height: math.unit(0.935 * 146, "feet")
  18815. },
  18816. {
  18817. name: "Megamacro",
  18818. height: math.unit(0.935 * 3, "miles")
  18819. },
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18824. {
  18825. frontDressed: {
  18826. height: math.unit(5 + 7 / 12, "feet"),
  18827. weight: math.unit(140, "lb"),
  18828. name: "Front (Dressed)",
  18829. image: {
  18830. source: "./media/characters/doc-weardno/front-dressed.svg",
  18831. extra: 263 / 234
  18832. }
  18833. },
  18834. backDressed: {
  18835. height: math.unit(5 + 7 / 12, "feet"),
  18836. weight: math.unit(140, "lb"),
  18837. name: "Back (Dressed)",
  18838. image: {
  18839. source: "./media/characters/doc-weardno/back-dressed.svg",
  18840. extra: 266 / 238
  18841. }
  18842. },
  18843. front: {
  18844. height: math.unit(5 + 7 / 12, "feet"),
  18845. weight: math.unit(140, "lb"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/doc-weardno/front.svg",
  18849. extra: 254 / 233
  18850. }
  18851. },
  18852. },
  18853. [
  18854. {
  18855. name: "Micro",
  18856. height: math.unit(3, "inches")
  18857. },
  18858. {
  18859. name: "Normal",
  18860. height: math.unit(5 + 7 / 12, "feet"),
  18861. default: true
  18862. },
  18863. {
  18864. name: "Macro",
  18865. height: math.unit(25, "feet")
  18866. },
  18867. {
  18868. name: "Megamacro",
  18869. height: math.unit(2, "miles")
  18870. },
  18871. ]
  18872. ))
  18873. characterMakers.push(() => makeCharacter(
  18874. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18875. {
  18876. front: {
  18877. height: math.unit(6 + 2 / 12, "feet"),
  18878. weight: math.unit(153, "lb"),
  18879. name: "Front",
  18880. image: {
  18881. source: "./media/characters/seth-whilst/front.svg",
  18882. bottom: 0.07
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Micro",
  18889. height: math.unit(5, "inches")
  18890. },
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(6 + 2 / 12, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(3, "inches"),
  18903. weight: math.unit(8, "grams"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/pocket-jabari/front.svg",
  18907. extra: 1024 / 974,
  18908. bottom: 0.039
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Minimicro",
  18915. height: math.unit(8, "mm")
  18916. },
  18917. {
  18918. name: "Micro",
  18919. height: math.unit(3, "inches"),
  18920. default: true
  18921. },
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(3, "feet")
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18930. {
  18931. front: {
  18932. height: math.unit(15, "feet"),
  18933. weight: math.unit(3280, "lb"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/sapphy/front.svg",
  18937. extra: 671 / 577,
  18938. bottom: 0.085
  18939. }
  18940. },
  18941. back: {
  18942. height: math.unit(15, "feet"),
  18943. weight: math.unit(3280, "lb"),
  18944. name: "Back",
  18945. image: {
  18946. source: "./media/characters/sapphy/back.svg",
  18947. extra: 631 / 607,
  18948. bottom: 0.045
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(15, "feet")
  18956. },
  18957. {
  18958. name: "Casual Macro",
  18959. height: math.unit(120, "feet")
  18960. },
  18961. {
  18962. name: "Macro",
  18963. height: math.unit(2150, "feet"),
  18964. default: true
  18965. },
  18966. {
  18967. name: "Megamacro",
  18968. height: math.unit(8, "miles")
  18969. },
  18970. {
  18971. name: "Galaxy Mom",
  18972. height: math.unit(6, "megalightyears")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(6, "feet"),
  18981. weight: math.unit(170, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/kiro/front.svg",
  18985. extra: 1064 / 1012,
  18986. bottom: 0.052
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Micro",
  18993. height: math.unit(6, "inches")
  18994. },
  18995. {
  18996. name: "Normal",
  18997. height: math.unit(6, "feet"),
  18998. default: true
  18999. },
  19000. {
  19001. name: "Macro",
  19002. height: math.unit(72, "feet")
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(5 + 9 / 12, "feet"),
  19011. weight: math.unit(175, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/irishfox/front.svg",
  19015. extra: 1912 / 1680,
  19016. bottom: 0.02
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Nano",
  19023. height: math.unit(1, "mm")
  19024. },
  19025. {
  19026. name: "Micro",
  19027. height: math.unit(2, "inches")
  19028. },
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(5 + 9 / 12, "feet"),
  19032. default: true
  19033. },
  19034. {
  19035. name: "Macro",
  19036. height: math.unit(45, "feet")
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(6 + 1 / 12, "feet"),
  19045. weight: math.unit(75, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/aronai-sieyes/front.svg",
  19049. extra: 1556 / 1480,
  19050. bottom: 0.015
  19051. }
  19052. },
  19053. side: {
  19054. height: math.unit(6 + 1 / 12, "feet"),
  19055. weight: math.unit(75, "lb"),
  19056. name: "Side",
  19057. image: {
  19058. source: "./media/characters/aronai-sieyes/side.svg",
  19059. extra: 1433 / 1390,
  19060. bottom: 0.0393
  19061. }
  19062. },
  19063. back: {
  19064. height: math.unit(6 + 1 / 12, "feet"),
  19065. weight: math.unit(75, "lb"),
  19066. name: "Back",
  19067. image: {
  19068. source: "./media/characters/aronai-sieyes/back.svg",
  19069. extra: 1544 / 1494,
  19070. bottom: 0.02
  19071. }
  19072. },
  19073. frontClothed: {
  19074. height: math.unit(6 + 1 / 12, "feet"),
  19075. weight: math.unit(75, "lb"),
  19076. name: "Front (Clothed)",
  19077. image: {
  19078. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  19079. extra: 1582 / 1527
  19080. }
  19081. },
  19082. feral: {
  19083. height: math.unit(18, "feet"),
  19084. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19085. name: "Feral",
  19086. image: {
  19087. source: "./media/characters/aronai-sieyes/feral.svg",
  19088. extra: 1530 / 1240,
  19089. bottom: 0.035
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Micro",
  19096. height: math.unit(2, "inches")
  19097. },
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(6 + 1 / 12, "feet"),
  19101. default: true
  19102. }
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19107. {
  19108. front: {
  19109. height: math.unit(12, "feet"),
  19110. weight: math.unit(410, "kg"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/xuna/front.svg",
  19114. extra: 2184 / 1980
  19115. }
  19116. },
  19117. side: {
  19118. height: math.unit(12, "feet"),
  19119. weight: math.unit(410, "kg"),
  19120. name: "Side",
  19121. image: {
  19122. source: "./media/characters/xuna/side.svg",
  19123. extra: 2184 / 1980
  19124. }
  19125. },
  19126. back: {
  19127. height: math.unit(12, "feet"),
  19128. weight: math.unit(410, "kg"),
  19129. name: "Back",
  19130. image: {
  19131. source: "./media/characters/xuna/back.svg",
  19132. extra: 2184 / 1980
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Nano glow",
  19139. height: math.unit(10, "nm")
  19140. },
  19141. {
  19142. name: "Micro floof",
  19143. height: math.unit(0.3, "m")
  19144. },
  19145. {
  19146. name: "Huggable softy boi",
  19147. height: math.unit(3.6576, "m"),
  19148. default: true
  19149. },
  19150. {
  19151. name: "Admirable floof",
  19152. height: math.unit(80, "meters")
  19153. },
  19154. {
  19155. name: "Gentle macro",
  19156. height: math.unit(300, "meters")
  19157. },
  19158. {
  19159. name: "Very careful floof",
  19160. height: math.unit(3200, "meters")
  19161. },
  19162. {
  19163. name: "The mega floof",
  19164. height: math.unit(36000, "meters")
  19165. },
  19166. {
  19167. name: "Giga-fur-Wicker",
  19168. height: math.unit(4800000, "meters")
  19169. },
  19170. {
  19171. name: "Licky world",
  19172. height: math.unit(20000000, "meters")
  19173. },
  19174. {
  19175. name: "Floofy cyan sun",
  19176. height: math.unit(1500000000, "meters")
  19177. },
  19178. {
  19179. name: "Milky Wicker",
  19180. height: math.unit(1000000000000000000000, "meters")
  19181. },
  19182. {
  19183. name: "The observing Wicker",
  19184. height: math.unit(999999999999999999999999999, "meters")
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19190. {
  19191. front: {
  19192. height: math.unit(5 + 9 / 12, "feet"),
  19193. weight: math.unit(150, "lb"),
  19194. name: "Front",
  19195. image: {
  19196. source: "./media/characters/arokha-sieyes/front.svg",
  19197. extra: 1425 / 1284,
  19198. bottom: 0.05
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(5 + 9 / 12, "feet")
  19206. },
  19207. {
  19208. name: "Macro",
  19209. height: math.unit(30, "meters"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(6, "feet"),
  19219. weight: math.unit(180, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/arokh-sieyes/front.svg",
  19223. extra: 1830 / 1769,
  19224. bottom: 0.01
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(6, "feet")
  19232. },
  19233. {
  19234. name: "Macro",
  19235. height: math.unit(30, "meters"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19242. {
  19243. side: {
  19244. height: math.unit(13 + 1 / 12, "feet"),
  19245. weight: math.unit(8.5, "tonnes"),
  19246. name: "Side",
  19247. image: {
  19248. source: "./media/characters/goldeneye/side.svg",
  19249. extra: 1182 / 778,
  19250. bottom: 0.067
  19251. }
  19252. },
  19253. paw: {
  19254. height: math.unit(3.4, "feet"),
  19255. name: "Paw",
  19256. image: {
  19257. source: "./media/characters/goldeneye/paw.svg"
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(13 + 1 / 12, "feet"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19271. {
  19272. front: {
  19273. height: math.unit(6 + 1 / 12, "feet"),
  19274. weight: math.unit(210, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/leonardo-lycheborne/front.svg",
  19278. extra: 776/723,
  19279. bottom: 34/810
  19280. }
  19281. },
  19282. side: {
  19283. height: math.unit(6 + 1 / 12, "feet"),
  19284. weight: math.unit(210, "lb"),
  19285. name: "Side",
  19286. image: {
  19287. source: "./media/characters/leonardo-lycheborne/side.svg",
  19288. extra: 780/728,
  19289. bottom: 12/792
  19290. }
  19291. },
  19292. back: {
  19293. height: math.unit(6 + 1 / 12, "feet"),
  19294. weight: math.unit(210, "lb"),
  19295. name: "Back",
  19296. image: {
  19297. source: "./media/characters/leonardo-lycheborne/back.svg",
  19298. extra: 775/721,
  19299. bottom: 17/792
  19300. }
  19301. },
  19302. hand: {
  19303. height: math.unit(1.08, "feet"),
  19304. name: "Hand",
  19305. image: {
  19306. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19307. }
  19308. },
  19309. foot: {
  19310. height: math.unit(1.32, "feet"),
  19311. name: "Foot",
  19312. image: {
  19313. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19314. }
  19315. },
  19316. maw: {
  19317. height: math.unit(1, "feet"),
  19318. name: "Maw",
  19319. image: {
  19320. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19321. }
  19322. },
  19323. were: {
  19324. height: math.unit(20, "feet"),
  19325. weight: math.unit(7800, "lb"),
  19326. name: "Were",
  19327. image: {
  19328. source: "./media/characters/leonardo-lycheborne/were.svg",
  19329. extra: 1224/1165,
  19330. bottom: 72/1296
  19331. }
  19332. },
  19333. feral: {
  19334. height: math.unit(7.5, "feet"),
  19335. weight: math.unit(600, "lb"),
  19336. name: "Feral",
  19337. image: {
  19338. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19339. extra: 797/702,
  19340. bottom: 139/936
  19341. }
  19342. },
  19343. taur: {
  19344. height: math.unit(11, "feet"),
  19345. weight: math.unit(3300, "lb"),
  19346. name: "Taur",
  19347. image: {
  19348. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19349. extra: 1271/1197,
  19350. bottom: 47/1318
  19351. }
  19352. },
  19353. barghest: {
  19354. height: math.unit(11, "feet"),
  19355. weight: math.unit(1300, "lb"),
  19356. name: "Barghest",
  19357. image: {
  19358. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19359. extra: 1291/1204,
  19360. bottom: 37/1328
  19361. }
  19362. },
  19363. dick: {
  19364. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19365. name: "Dick",
  19366. image: {
  19367. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19368. }
  19369. },
  19370. dickWere: {
  19371. height: math.unit((20) / 3.8, "feet"),
  19372. name: "Dick (Were)",
  19373. image: {
  19374. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(6 + 1 / 12, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19388. {
  19389. front: {
  19390. height: math.unit(10, "feet"),
  19391. weight: math.unit(350, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/jet/front.svg",
  19395. extra: 2050 / 1980,
  19396. bottom: 0.013
  19397. }
  19398. },
  19399. back: {
  19400. height: math.unit(10, "feet"),
  19401. weight: math.unit(350, "lb"),
  19402. name: "Back",
  19403. image: {
  19404. source: "./media/characters/jet/back.svg",
  19405. extra: 2050 / 1980,
  19406. bottom: 0.013
  19407. }
  19408. },
  19409. },
  19410. [
  19411. {
  19412. name: "Micro",
  19413. height: math.unit(6, "inches")
  19414. },
  19415. {
  19416. name: "Normal",
  19417. height: math.unit(10, "feet"),
  19418. default: true
  19419. },
  19420. {
  19421. name: "Macro",
  19422. height: math.unit(100, "feet")
  19423. },
  19424. ]
  19425. ))
  19426. characterMakers.push(() => makeCharacter(
  19427. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19428. {
  19429. front: {
  19430. height: math.unit(15, "feet"),
  19431. weight: math.unit(2800, "lb"),
  19432. name: "Front",
  19433. image: {
  19434. source: "./media/characters/tanarath/front.svg",
  19435. extra: 2392 / 2220,
  19436. bottom: 0.03
  19437. }
  19438. },
  19439. back: {
  19440. height: math.unit(15, "feet"),
  19441. weight: math.unit(2800, "lb"),
  19442. name: "Back",
  19443. image: {
  19444. source: "./media/characters/tanarath/back.svg",
  19445. extra: 2392 / 2220,
  19446. bottom: 0.03
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(15, "feet"),
  19454. default: true
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19460. {
  19461. front: {
  19462. height: math.unit(7 + 1 / 12, "feet"),
  19463. weight: math.unit(175, "lb"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/patty-cattybatty/front.svg",
  19467. extra: 908 / 874,
  19468. bottom: 0.025
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Micro",
  19475. height: math.unit(1, "inch")
  19476. },
  19477. {
  19478. name: "Normal",
  19479. height: math.unit(7 + 1 / 12, "feet")
  19480. },
  19481. {
  19482. name: "Mini Macro",
  19483. height: math.unit(155, "feet")
  19484. },
  19485. {
  19486. name: "Macro",
  19487. height: math.unit(1077, "feet")
  19488. },
  19489. {
  19490. name: "Mega Macro",
  19491. height: math.unit(47650, "feet"),
  19492. default: true
  19493. },
  19494. {
  19495. name: "Giga Macro",
  19496. height: math.unit(440, "miles")
  19497. },
  19498. {
  19499. name: "Tera Macro",
  19500. height: math.unit(8700, "miles")
  19501. },
  19502. {
  19503. name: "Planetary Macro",
  19504. height: math.unit(32700, "miles")
  19505. },
  19506. {
  19507. name: "Solar Macro",
  19508. height: math.unit(550000, "miles")
  19509. },
  19510. {
  19511. name: "Celestial Macro",
  19512. height: math.unit(2.5, "AU")
  19513. },
  19514. ]
  19515. ))
  19516. characterMakers.push(() => makeCharacter(
  19517. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19518. {
  19519. front: {
  19520. height: math.unit(4 + 5 / 12, "feet"),
  19521. weight: math.unit(90, "lb"),
  19522. name: "Front",
  19523. image: {
  19524. source: "./media/characters/cappu/front.svg",
  19525. extra: 1247 / 1152,
  19526. bottom: 0.012
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(4 + 5 / 12, "feet"),
  19534. default: true
  19535. },
  19536. ]
  19537. ))
  19538. characterMakers.push(() => makeCharacter(
  19539. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19540. {
  19541. frontDressed: {
  19542. height: math.unit(70, "cm"),
  19543. weight: math.unit(6, "kg"),
  19544. name: "Front (Dressed)",
  19545. image: {
  19546. source: "./media/characters/sebi/front-dressed.svg",
  19547. extra: 713.5 / 686.5,
  19548. bottom: 0.003
  19549. }
  19550. },
  19551. front: {
  19552. height: math.unit(70, "cm"),
  19553. weight: math.unit(5, "kg"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/sebi/front.svg",
  19557. extra: 713.5 / 686.5,
  19558. bottom: 0.003
  19559. }
  19560. }
  19561. },
  19562. [
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(70, "cm"),
  19566. default: true
  19567. },
  19568. {
  19569. name: "Macro",
  19570. height: math.unit(8, "meters")
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19576. {
  19577. front: {
  19578. height: math.unit(6, "feet"),
  19579. weight: math.unit(150, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/typhek/front.svg",
  19583. extra: 1948 / 1929,
  19584. bottom: 0.025
  19585. }
  19586. },
  19587. side: {
  19588. height: math.unit(6, "feet"),
  19589. weight: math.unit(150, "lb"),
  19590. name: "Side",
  19591. image: {
  19592. source: "./media/characters/typhek/side.svg",
  19593. extra: 2034 / 2010,
  19594. bottom: 0.003
  19595. }
  19596. },
  19597. back: {
  19598. height: math.unit(6, "feet"),
  19599. weight: math.unit(150, "lb"),
  19600. name: "Back",
  19601. image: {
  19602. source: "./media/characters/typhek/back.svg",
  19603. extra: 2005 / 1978,
  19604. bottom: 0.004
  19605. }
  19606. },
  19607. palm: {
  19608. height: math.unit(1.2, "feet"),
  19609. name: "Palm",
  19610. image: {
  19611. source: "./media/characters/typhek/palm.svg"
  19612. }
  19613. },
  19614. fist: {
  19615. height: math.unit(1.1, "feet"),
  19616. name: "Fist",
  19617. image: {
  19618. source: "./media/characters/typhek/fist.svg"
  19619. }
  19620. },
  19621. foot: {
  19622. height: math.unit(1.57, "feet"),
  19623. name: "Foot",
  19624. image: {
  19625. source: "./media/characters/typhek/foot.svg"
  19626. }
  19627. },
  19628. sole: {
  19629. height: math.unit(2.05, "feet"),
  19630. name: "Sole",
  19631. image: {
  19632. source: "./media/characters/typhek/sole.svg"
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Macro",
  19639. height: math.unit(40, "stories"),
  19640. default: true
  19641. },
  19642. {
  19643. name: "Megamacro",
  19644. height: math.unit(1, "mile")
  19645. },
  19646. {
  19647. name: "Gigamacro",
  19648. height: math.unit(4000, "solarradii")
  19649. },
  19650. {
  19651. name: "Universal",
  19652. height: math.unit(1.1, "universes")
  19653. }
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19658. {
  19659. side: {
  19660. height: math.unit(5 + 7 / 12, "feet"),
  19661. weight: math.unit(150, "lb"),
  19662. name: "Side",
  19663. image: {
  19664. source: "./media/characters/kassy/side.svg",
  19665. extra: 1280 / 1225,
  19666. bottom: 0.002
  19667. }
  19668. },
  19669. front: {
  19670. height: math.unit(5 + 7 / 12, "feet"),
  19671. weight: math.unit(150, "lb"),
  19672. name: "Front",
  19673. image: {
  19674. source: "./media/characters/kassy/front.svg",
  19675. extra: 1280 / 1225,
  19676. bottom: 0.025
  19677. }
  19678. },
  19679. back: {
  19680. height: math.unit(5 + 7 / 12, "feet"),
  19681. weight: math.unit(150, "lb"),
  19682. name: "Back",
  19683. image: {
  19684. source: "./media/characters/kassy/back.svg",
  19685. extra: 1280 / 1225,
  19686. bottom: 0.002
  19687. }
  19688. },
  19689. foot: {
  19690. height: math.unit(1.266, "feet"),
  19691. name: "Foot",
  19692. image: {
  19693. source: "./media/characters/kassy/foot.svg"
  19694. }
  19695. },
  19696. },
  19697. [
  19698. {
  19699. name: "Normal",
  19700. height: math.unit(5 + 7 / 12, "feet")
  19701. },
  19702. {
  19703. name: "Macro",
  19704. height: math.unit(137, "feet"),
  19705. default: true
  19706. },
  19707. {
  19708. name: "Megamacro",
  19709. height: math.unit(1, "mile")
  19710. },
  19711. ]
  19712. ))
  19713. characterMakers.push(() => makeCharacter(
  19714. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19715. {
  19716. front: {
  19717. height: math.unit(6 + 1 / 12, "feet"),
  19718. weight: math.unit(200, "lb"),
  19719. name: "Front",
  19720. image: {
  19721. source: "./media/characters/neil/front.svg",
  19722. extra: 1326 / 1250,
  19723. bottom: 0.023
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(6 + 1 / 12, "feet"),
  19731. default: true
  19732. },
  19733. {
  19734. name: "Macro",
  19735. height: math.unit(200, "feet")
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(5 + 9 / 12, "feet"),
  19744. weight: math.unit(190, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/atticus/front.svg",
  19748. extra: 2934 / 2785,
  19749. bottom: 0.025
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(5 + 9 / 12, "feet"),
  19757. default: true
  19758. },
  19759. {
  19760. name: "Macro",
  19761. height: math.unit(180, "feet")
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19767. {
  19768. side: {
  19769. height: math.unit(9, "feet"),
  19770. weight: math.unit(650, "lb"),
  19771. name: "Side",
  19772. image: {
  19773. source: "./media/characters/milo/side.svg",
  19774. extra: 2644 / 2310,
  19775. bottom: 0.032
  19776. }
  19777. },
  19778. },
  19779. [
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(9, "feet"),
  19783. default: true
  19784. },
  19785. {
  19786. name: "Macro",
  19787. height: math.unit(300, "feet")
  19788. },
  19789. ]
  19790. ))
  19791. characterMakers.push(() => makeCharacter(
  19792. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19793. {
  19794. side: {
  19795. height: math.unit(8, "meters"),
  19796. weight: math.unit(90000, "kg"),
  19797. name: "Side",
  19798. image: {
  19799. source: "./media/characters/ijzer/side.svg",
  19800. extra: 2756 / 1600,
  19801. bottom: 0.01
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Small",
  19808. height: math.unit(3, "meters")
  19809. },
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(8, "meters"),
  19813. default: true
  19814. },
  19815. {
  19816. name: "Normal+",
  19817. height: math.unit(10, "meters")
  19818. },
  19819. {
  19820. name: "Bigger",
  19821. height: math.unit(24, "meters")
  19822. },
  19823. {
  19824. name: "Huge",
  19825. height: math.unit(80, "meters")
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(6 + 2 / 12, "feet"),
  19834. weight: math.unit(153, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/luca-cervicum/front.svg",
  19838. extra: 370 / 327,
  19839. bottom: 0.015
  19840. }
  19841. },
  19842. back: {
  19843. height: math.unit(6 + 2 / 12, "feet"),
  19844. weight: math.unit(153, "lb"),
  19845. name: "Back",
  19846. image: {
  19847. source: "./media/characters/luca-cervicum/back.svg",
  19848. extra: 367 / 333,
  19849. bottom: 0.005
  19850. }
  19851. },
  19852. frontGear: {
  19853. height: math.unit(6 + 2 / 12, "feet"),
  19854. weight: math.unit(173, "lb"),
  19855. name: "Front (Gear)",
  19856. image: {
  19857. source: "./media/characters/luca-cervicum/front-gear.svg",
  19858. extra: 377 / 333,
  19859. bottom: 0.006
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(6 + 2 / 12, "feet"),
  19867. default: true
  19868. },
  19869. ]
  19870. ))
  19871. characterMakers.push(() => makeCharacter(
  19872. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19873. {
  19874. front: {
  19875. height: math.unit(6 + 1 / 12, "feet"),
  19876. weight: math.unit(304, "lb"),
  19877. name: "Front",
  19878. image: {
  19879. source: "./media/characters/oliver/front.svg",
  19880. extra: 157 / 143,
  19881. bottom: 0.08
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(6 + 1 / 12, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(5 + 7 / 12, "feet"),
  19898. weight: math.unit(140, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/shane/front.svg",
  19902. extra: 304 / 289,
  19903. bottom: 0.005
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(5 + 7 / 12, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19917. {
  19918. front: {
  19919. height: math.unit(5 + 9 / 12, "feet"),
  19920. weight: math.unit(178, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/shin/front.svg",
  19924. extra: 159 / 151,
  19925. bottom: 0.015
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Normal",
  19932. height: math.unit(5 + 9 / 12, "feet"),
  19933. default: true
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19939. {
  19940. front: {
  19941. height: math.unit(5 + 10 / 12, "feet"),
  19942. weight: math.unit(168, "lb"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/xerxes/front.svg",
  19946. extra: 282 / 260,
  19947. bottom: 0.045
  19948. }
  19949. },
  19950. },
  19951. [
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(5 + 10 / 12, "feet"),
  19955. default: true
  19956. },
  19957. ]
  19958. ))
  19959. characterMakers.push(() => makeCharacter(
  19960. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19961. {
  19962. front: {
  19963. height: math.unit(6 + 7 / 12, "feet"),
  19964. weight: math.unit(208, "lb"),
  19965. name: "Front",
  19966. image: {
  19967. source: "./media/characters/chaska/front.svg",
  19968. extra: 332 / 319,
  19969. bottom: 0.015
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(6 + 7 / 12, "feet"),
  19977. default: true
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19983. {
  19984. front: {
  19985. height: math.unit(5 + 8 / 12, "feet"),
  19986. weight: math.unit(208, "lb"),
  19987. name: "Front",
  19988. image: {
  19989. source: "./media/characters/enuk/front.svg",
  19990. extra: 437 / 406,
  19991. bottom: 0.02
  19992. }
  19993. },
  19994. },
  19995. [
  19996. {
  19997. name: "Normal",
  19998. height: math.unit(5 + 8 / 12, "feet"),
  19999. default: true
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20005. {
  20006. front: {
  20007. height: math.unit(5 + 10 / 12, "feet"),
  20008. weight: math.unit(252, "lb"),
  20009. name: "Front",
  20010. image: {
  20011. source: "./media/characters/bruun/front.svg",
  20012. extra: 197 / 187,
  20013. bottom: 0.012
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(5 + 10 / 12, "feet"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(6 + 10 / 12, "feet"),
  20030. weight: math.unit(255, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/alexeev/front.svg",
  20034. extra: 213 / 200,
  20035. bottom: 0.05
  20036. }
  20037. },
  20038. },
  20039. [
  20040. {
  20041. name: "Normal",
  20042. height: math.unit(6 + 10 / 12, "feet"),
  20043. default: true
  20044. },
  20045. ]
  20046. ))
  20047. characterMakers.push(() => makeCharacter(
  20048. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20049. {
  20050. front: {
  20051. height: math.unit(2 + 8 / 12, "feet"),
  20052. weight: math.unit(22, "lb"),
  20053. name: "Front",
  20054. image: {
  20055. source: "./media/characters/evelyn/front.svg",
  20056. extra: 208 / 180
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(2 + 8 / 12, "feet"),
  20064. default: true
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(5 + 9 / 12, "feet"),
  20073. weight: math.unit(139, "lb"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/inca/front.svg",
  20077. extra: 294 / 291,
  20078. bottom: 0.03
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(5 + 9 / 12, "feet"),
  20086. default: true
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(5 + 1 / 12, "feet"),
  20095. weight: math.unit(84, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/magdalene/front.svg",
  20099. extra: 293 / 273
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(5 + 1 / 12, "feet"),
  20107. default: true
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(6 + 3 / 12, "feet"),
  20116. weight: math.unit(185, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/mera/front.svg",
  20120. extra: 291 / 277,
  20121. bottom: 0.03
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(6 + 3 / 12, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(6 + 7 / 12, "feet"),
  20138. weight: math.unit(160, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/ceres/front.svg",
  20142. extra: 1023 / 950,
  20143. bottom: 0.027
  20144. }
  20145. },
  20146. back: {
  20147. height: math.unit(6 + 7 / 12, "feet"),
  20148. weight: math.unit(160, "lb"),
  20149. name: "Back",
  20150. image: {
  20151. source: "./media/characters/ceres/back.svg",
  20152. extra: 1023 / 950
  20153. }
  20154. },
  20155. },
  20156. [
  20157. {
  20158. name: "Normal",
  20159. height: math.unit(6 + 7 / 12, "feet"),
  20160. default: true
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20166. {
  20167. front: {
  20168. height: math.unit(5 + 10 / 12, "feet"),
  20169. weight: math.unit(150, "lb"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/kris/front.svg",
  20173. extra: 885 / 803,
  20174. bottom: 0.03
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(5 + 10 / 12, "feet"),
  20182. default: true
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20188. {
  20189. front: {
  20190. height: math.unit(7, "feet"),
  20191. weight: math.unit(120, "kg"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/taluthus/front.svg",
  20195. extra: 903 / 833,
  20196. bottom: 0.015
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(7, "feet"),
  20204. default: true
  20205. },
  20206. {
  20207. name: "Macro",
  20208. height: math.unit(300, "feet")
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20214. {
  20215. front: {
  20216. height: math.unit(5 + 9 / 12, "feet"),
  20217. weight: math.unit(145, "lb"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/dawn/front.svg",
  20221. extra: 2094 / 2016,
  20222. bottom: 0.025
  20223. }
  20224. },
  20225. back: {
  20226. height: math.unit(5 + 9 / 12, "feet"),
  20227. weight: math.unit(160, "lb"),
  20228. name: "Back",
  20229. image: {
  20230. source: "./media/characters/dawn/back.svg",
  20231. extra: 2112 / 2080,
  20232. bottom: 0.005
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Normal",
  20239. height: math.unit(6 + 7 / 12, "feet"),
  20240. default: true
  20241. },
  20242. ]
  20243. ))
  20244. characterMakers.push(() => makeCharacter(
  20245. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20246. {
  20247. anthro: {
  20248. height: math.unit(8 + 3 / 12, "feet"),
  20249. weight: math.unit(450, "lb"),
  20250. name: "Anthro",
  20251. image: {
  20252. source: "./media/characters/arador/anthro.svg",
  20253. extra: 1835 / 1718,
  20254. bottom: 0.025
  20255. }
  20256. },
  20257. feral: {
  20258. height: math.unit(4, "feet"),
  20259. weight: math.unit(200, "lb"),
  20260. name: "Feral",
  20261. image: {
  20262. source: "./media/characters/arador/feral.svg",
  20263. extra: 1683 / 1514,
  20264. bottom: 0.07
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(8 + 3 / 12, "feet")
  20272. },
  20273. {
  20274. name: "Macro",
  20275. height: math.unit(82.5, "feet"),
  20276. default: true
  20277. },
  20278. ]
  20279. ))
  20280. characterMakers.push(() => makeCharacter(
  20281. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20282. {
  20283. front: {
  20284. height: math.unit(5 + 10 / 12, "feet"),
  20285. weight: math.unit(125, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/dharsi/front.svg",
  20289. extra: 716 / 630,
  20290. bottom: 0.035
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Nano",
  20297. height: math.unit(100, "nm")
  20298. },
  20299. {
  20300. name: "Micro",
  20301. height: math.unit(2, "inches")
  20302. },
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(5 + 10 / 12, "feet"),
  20306. default: true
  20307. },
  20308. {
  20309. name: "Macro",
  20310. height: math.unit(1000, "feet")
  20311. },
  20312. {
  20313. name: "Megamacro",
  20314. height: math.unit(10, "miles")
  20315. },
  20316. {
  20317. name: "Gigamacro",
  20318. height: math.unit(3000, "miles")
  20319. },
  20320. {
  20321. name: "Teramacro",
  20322. height: math.unit(500000, "miles")
  20323. },
  20324. {
  20325. name: "Teramacro+",
  20326. height: math.unit(30, "galaxies")
  20327. },
  20328. ]
  20329. ))
  20330. characterMakers.push(() => makeCharacter(
  20331. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20332. {
  20333. front: {
  20334. height: math.unit(6, "feet"),
  20335. weight: math.unit(150, "lb"),
  20336. name: "Front",
  20337. image: {
  20338. source: "./media/characters/deathy/front.svg",
  20339. extra: 1552 / 1463,
  20340. bottom: 0.025
  20341. }
  20342. },
  20343. side: {
  20344. height: math.unit(6, "feet"),
  20345. weight: math.unit(150, "lb"),
  20346. name: "Side",
  20347. image: {
  20348. source: "./media/characters/deathy/side.svg",
  20349. extra: 1604 / 1455,
  20350. bottom: 0.025
  20351. }
  20352. },
  20353. back: {
  20354. height: math.unit(6, "feet"),
  20355. weight: math.unit(150, "lb"),
  20356. name: "Back",
  20357. image: {
  20358. source: "./media/characters/deathy/back.svg",
  20359. extra: 1580 / 1463,
  20360. bottom: 0.005
  20361. }
  20362. },
  20363. },
  20364. [
  20365. {
  20366. name: "Micro",
  20367. height: math.unit(5, "millimeters")
  20368. },
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(6 + 5 / 12, "feet"),
  20372. default: true
  20373. },
  20374. ]
  20375. ))
  20376. characterMakers.push(() => makeCharacter(
  20377. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20378. {
  20379. front: {
  20380. height: math.unit(16, "feet"),
  20381. weight: math.unit(4000, "lb"),
  20382. name: "Front",
  20383. image: {
  20384. source: "./media/characters/juniper/front.svg",
  20385. bottom: 0.04
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(16, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20399. {
  20400. front: {
  20401. height: math.unit(6, "feet"),
  20402. weight: math.unit(150, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/hipster/front.svg",
  20406. extra: 1312 / 1209,
  20407. bottom: 0.025
  20408. }
  20409. },
  20410. back: {
  20411. height: math.unit(6, "feet"),
  20412. weight: math.unit(150, "lb"),
  20413. name: "Back",
  20414. image: {
  20415. source: "./media/characters/hipster/back.svg",
  20416. extra: 1281 / 1196,
  20417. bottom: 0.01
  20418. }
  20419. },
  20420. },
  20421. [
  20422. {
  20423. name: "Micro",
  20424. height: math.unit(1, "mm")
  20425. },
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(4, "inches"),
  20429. default: true
  20430. },
  20431. {
  20432. name: "Macro",
  20433. height: math.unit(500, "feet")
  20434. },
  20435. {
  20436. name: "Megamacro",
  20437. height: math.unit(1000, "miles")
  20438. },
  20439. ]
  20440. ))
  20441. characterMakers.push(() => makeCharacter(
  20442. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20443. {
  20444. front: {
  20445. height: math.unit(6, "feet"),
  20446. weight: math.unit(150, "lb"),
  20447. name: "Front",
  20448. image: {
  20449. source: "./media/characters/tendirmuldr/front.svg",
  20450. extra: 1878 / 1772,
  20451. bottom: 0.015
  20452. }
  20453. },
  20454. },
  20455. [
  20456. {
  20457. name: "Megamacro",
  20458. height: math.unit(1500, "miles"),
  20459. default: true
  20460. },
  20461. ]
  20462. ))
  20463. characterMakers.push(() => makeCharacter(
  20464. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20465. {
  20466. front: {
  20467. height: math.unit(14, "feet"),
  20468. weight: math.unit(12000, "lb"),
  20469. name: "Front",
  20470. image: {
  20471. source: "./media/characters/mort/front.svg",
  20472. extra: 365 / 318,
  20473. bottom: 0.01
  20474. }
  20475. },
  20476. side: {
  20477. height: math.unit(14, "feet"),
  20478. weight: math.unit(12000, "lb"),
  20479. name: "Side",
  20480. image: {
  20481. source: "./media/characters/mort/side.svg",
  20482. extra: 365 / 318,
  20483. bottom: 0.052
  20484. },
  20485. default: true
  20486. },
  20487. back: {
  20488. height: math.unit(14, "feet"),
  20489. weight: math.unit(12000, "lb"),
  20490. name: "Back",
  20491. image: {
  20492. source: "./media/characters/mort/back.svg",
  20493. extra: 371 / 332,
  20494. bottom: 0.18
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(14, "feet"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20508. {
  20509. front: {
  20510. height: math.unit(8, "feet"),
  20511. weight: math.unit(1, "ton"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/lycoa/front.svg",
  20515. extra: 1875 / 1789,
  20516. bottom: 0.022
  20517. }
  20518. },
  20519. back: {
  20520. height: math.unit(8, "feet"),
  20521. weight: math.unit(1, "ton"),
  20522. name: "Back",
  20523. image: {
  20524. source: "./media/characters/lycoa/back.svg",
  20525. extra: 1835 / 1781,
  20526. bottom: 0.03
  20527. }
  20528. },
  20529. head: {
  20530. height: math.unit(2.1, "feet"),
  20531. name: "Head",
  20532. image: {
  20533. source: "./media/characters/lycoa/head.svg"
  20534. }
  20535. },
  20536. tailmaw: {
  20537. height: math.unit(1.9, "feet"),
  20538. name: "Tailmaw",
  20539. image: {
  20540. source: "./media/characters/lycoa/tailmaw.svg"
  20541. }
  20542. },
  20543. tentacles: {
  20544. height: math.unit(2.1, "feet"),
  20545. name: "Tentacles",
  20546. image: {
  20547. source: "./media/characters/lycoa/tentacles.svg"
  20548. }
  20549. },
  20550. dick: {
  20551. height: math.unit(1.73, "feet"),
  20552. name: "Dick",
  20553. image: {
  20554. source: "./media/characters/lycoa/dick.svg"
  20555. }
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Normal",
  20561. height: math.unit(8, "feet"),
  20562. default: true
  20563. },
  20564. {
  20565. name: "Macro",
  20566. height: math.unit(30, "feet")
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20572. {
  20573. front: {
  20574. height: math.unit(4 + 2 / 12, "feet"),
  20575. weight: math.unit(70, "lb"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/naldara/front.svg",
  20579. extra: 841 / 720,
  20580. bottom: 0.04
  20581. }
  20582. },
  20583. naga: {
  20584. height: math.unit(23, "feet"),
  20585. weight: math.unit(15000, "kg"),
  20586. name: "Naga",
  20587. image: {
  20588. source: "./media/characters/naldara/naga.svg",
  20589. extra: 3290 / 2959,
  20590. bottom: 124 / 3432
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Normal",
  20597. height: math.unit(4 + 2 / 12, "feet"),
  20598. default: true
  20599. },
  20600. ]
  20601. ))
  20602. characterMakers.push(() => makeCharacter(
  20603. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20604. {
  20605. front: {
  20606. height: math.unit(13 + 7 / 12, "feet"),
  20607. weight: math.unit(1500, "lb"),
  20608. name: "Front",
  20609. image: {
  20610. source: "./media/characters/briar/front.svg",
  20611. extra: 626 / 596,
  20612. bottom: 0.08
  20613. }
  20614. },
  20615. },
  20616. [
  20617. {
  20618. name: "Normal",
  20619. height: math.unit(13 + 7 / 12, "feet"),
  20620. default: true
  20621. },
  20622. ]
  20623. ))
  20624. characterMakers.push(() => makeCharacter(
  20625. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20626. {
  20627. side: {
  20628. height: math.unit(10, "feet"),
  20629. weight: math.unit(500, "lb"),
  20630. name: "Side",
  20631. image: {
  20632. source: "./media/characters/vanguard/side.svg",
  20633. extra: 502 / 425,
  20634. bottom: 0.087
  20635. }
  20636. },
  20637. },
  20638. [
  20639. {
  20640. name: "Normal",
  20641. height: math.unit(10, "feet"),
  20642. default: true
  20643. },
  20644. ]
  20645. ))
  20646. characterMakers.push(() => makeCharacter(
  20647. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20648. {
  20649. front: {
  20650. height: math.unit(7.5, "feet"),
  20651. weight: math.unit(2, "lb"),
  20652. name: "Front",
  20653. image: {
  20654. source: "./media/characters/artemis/front.svg",
  20655. extra: 1192 / 1075,
  20656. bottom: 0.07
  20657. }
  20658. },
  20659. frontNsfw: {
  20660. height: math.unit(7.5, "feet"),
  20661. weight: math.unit(2, "lb"),
  20662. name: "Front (NSFW)",
  20663. image: {
  20664. source: "./media/characters/artemis/front-nsfw.svg",
  20665. extra: 1192 / 1075,
  20666. bottom: 0.07
  20667. }
  20668. },
  20669. frontNsfwer: {
  20670. height: math.unit(7.5, "feet"),
  20671. weight: math.unit(2, "lb"),
  20672. name: "Front (NSFW-er)",
  20673. image: {
  20674. source: "./media/characters/artemis/front-nsfwer.svg",
  20675. extra: 1192 / 1075,
  20676. bottom: 0.07
  20677. }
  20678. },
  20679. side: {
  20680. height: math.unit(7.5, "feet"),
  20681. weight: math.unit(2, "lb"),
  20682. name: "Side",
  20683. image: {
  20684. source: "./media/characters/artemis/side.svg",
  20685. extra: 1192 / 1075,
  20686. bottom: 0.07
  20687. }
  20688. },
  20689. sideNsfw: {
  20690. height: math.unit(7.5, "feet"),
  20691. weight: math.unit(2, "lb"),
  20692. name: "Side (NSFW)",
  20693. image: {
  20694. source: "./media/characters/artemis/side-nsfw.svg",
  20695. extra: 1192 / 1075,
  20696. bottom: 0.07
  20697. }
  20698. },
  20699. sideNsfwer: {
  20700. height: math.unit(7.5, "feet"),
  20701. weight: math.unit(2, "lb"),
  20702. name: "Side (NSFW-er)",
  20703. image: {
  20704. source: "./media/characters/artemis/side-nsfwer.svg",
  20705. extra: 1192 / 1075,
  20706. bottom: 0.07
  20707. }
  20708. },
  20709. maw: {
  20710. height: math.unit(1.1, "feet"),
  20711. name: "Maw",
  20712. image: {
  20713. source: "./media/characters/artemis/maw.svg"
  20714. }
  20715. },
  20716. stomach: {
  20717. height: math.unit(0.95, "feet"),
  20718. name: "Stomach",
  20719. image: {
  20720. source: "./media/characters/artemis/stomach.svg"
  20721. }
  20722. },
  20723. dickCanine: {
  20724. height: math.unit(1, "feet"),
  20725. name: "Dick (Canine)",
  20726. image: {
  20727. source: "./media/characters/artemis/dick-canine.svg"
  20728. }
  20729. },
  20730. dickEquine: {
  20731. height: math.unit(0.85, "feet"),
  20732. name: "Dick (Equine)",
  20733. image: {
  20734. source: "./media/characters/artemis/dick-equine.svg"
  20735. }
  20736. },
  20737. dickExotic: {
  20738. height: math.unit(0.85, "feet"),
  20739. name: "Dick (Exotic)",
  20740. image: {
  20741. source: "./media/characters/artemis/dick-exotic.svg"
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(7.5, "feet"),
  20749. default: true
  20750. },
  20751. {
  20752. name: "Enlarged",
  20753. height: math.unit(12, "feet")
  20754. },
  20755. ]
  20756. ))
  20757. characterMakers.push(() => makeCharacter(
  20758. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20759. {
  20760. front: {
  20761. height: math.unit(5 + 3 / 12, "feet"),
  20762. weight: math.unit(160, "lb"),
  20763. name: "Front",
  20764. image: {
  20765. source: "./media/characters/kira/front.svg",
  20766. extra: 906 / 786,
  20767. bottom: 0.01
  20768. }
  20769. },
  20770. back: {
  20771. height: math.unit(5 + 3 / 12, "feet"),
  20772. weight: math.unit(160, "lb"),
  20773. name: "Back",
  20774. image: {
  20775. source: "./media/characters/kira/back.svg",
  20776. extra: 882 / 757,
  20777. bottom: 0.005
  20778. }
  20779. },
  20780. frontDressed: {
  20781. height: math.unit(5 + 3 / 12, "feet"),
  20782. weight: math.unit(160, "lb"),
  20783. name: "Front (Dressed)",
  20784. image: {
  20785. source: "./media/characters/kira/front-dressed.svg",
  20786. extra: 906 / 786,
  20787. bottom: 0.01
  20788. }
  20789. },
  20790. beans: {
  20791. height: math.unit(0.92, "feet"),
  20792. name: "Beans",
  20793. image: {
  20794. source: "./media/characters/kira/beans.svg"
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(5 + 3 / 12, "feet"),
  20802. default: true
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20808. {
  20809. front: {
  20810. height: math.unit(5 + 4 / 12, "feet"),
  20811. weight: math.unit(145, "lb"),
  20812. name: "Front",
  20813. image: {
  20814. source: "./media/characters/scramble/front.svg",
  20815. extra: 763 / 727,
  20816. bottom: 0.05
  20817. }
  20818. },
  20819. back: {
  20820. height: math.unit(5 + 4 / 12, "feet"),
  20821. weight: math.unit(145, "lb"),
  20822. name: "Back",
  20823. image: {
  20824. source: "./media/characters/scramble/back.svg",
  20825. extra: 826 / 737,
  20826. bottom: 0.002
  20827. }
  20828. },
  20829. },
  20830. [
  20831. {
  20832. name: "Normal",
  20833. height: math.unit(5 + 4 / 12, "feet"),
  20834. default: true
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20840. {
  20841. side: {
  20842. height: math.unit(6 + 2 / 12, "feet"),
  20843. weight: math.unit(190, "lb"),
  20844. name: "Side",
  20845. image: {
  20846. source: "./media/characters/biscuit/side.svg",
  20847. extra: 858 / 791,
  20848. bottom: 0.044
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(6 + 2 / 12, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(5 + 2 / 12, "feet"),
  20865. weight: math.unit(120, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/poffin/front.svg",
  20869. extra: 786 / 680,
  20870. bottom: 0.005
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(5 + 2 / 12, "feet"),
  20878. default: true
  20879. },
  20880. ]
  20881. ))
  20882. characterMakers.push(() => makeCharacter(
  20883. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20884. {
  20885. front: {
  20886. height: math.unit(6 + 3 / 12, "feet"),
  20887. weight: math.unit(519, "lb"),
  20888. name: "Front",
  20889. image: {
  20890. source: "./media/characters/dhari/front.svg",
  20891. extra: 1048 / 946,
  20892. bottom: 0.015
  20893. }
  20894. },
  20895. back: {
  20896. height: math.unit(6 + 3 / 12, "feet"),
  20897. weight: math.unit(519, "lb"),
  20898. name: "Back",
  20899. image: {
  20900. source: "./media/characters/dhari/back.svg",
  20901. extra: 1048 / 931,
  20902. bottom: 0.005
  20903. }
  20904. },
  20905. frontDressed: {
  20906. height: math.unit(6 + 3 / 12, "feet"),
  20907. weight: math.unit(519, "lb"),
  20908. name: "Front (Dressed)",
  20909. image: {
  20910. source: "./media/characters/dhari/front-dressed.svg",
  20911. extra: 1713 / 1546,
  20912. bottom: 0.02
  20913. }
  20914. },
  20915. backDressed: {
  20916. height: math.unit(6 + 3 / 12, "feet"),
  20917. weight: math.unit(519, "lb"),
  20918. name: "Back (Dressed)",
  20919. image: {
  20920. source: "./media/characters/dhari/back-dressed.svg",
  20921. extra: 1699 / 1537,
  20922. bottom: 0.01
  20923. }
  20924. },
  20925. maw: {
  20926. height: math.unit(0.95, "feet"),
  20927. name: "Maw",
  20928. image: {
  20929. source: "./media/characters/dhari/maw.svg"
  20930. }
  20931. },
  20932. wereFront: {
  20933. height: math.unit(12 + 8 / 12, "feet"),
  20934. weight: math.unit(4000, "lb"),
  20935. name: "Front (Were)",
  20936. image: {
  20937. source: "./media/characters/dhari/were-front.svg",
  20938. extra: 1065 / 969,
  20939. bottom: 0.015
  20940. }
  20941. },
  20942. wereBack: {
  20943. height: math.unit(12 + 8 / 12, "feet"),
  20944. weight: math.unit(4000, "lb"),
  20945. name: "Back (Were)",
  20946. image: {
  20947. source: "./media/characters/dhari/were-back.svg",
  20948. extra: 1065 / 969,
  20949. bottom: 0.012
  20950. }
  20951. },
  20952. wereMaw: {
  20953. height: math.unit(0.625, "meters"),
  20954. name: "Maw (Were)",
  20955. image: {
  20956. source: "./media/characters/dhari/were-maw.svg"
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(6 + 3 / 12, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20970. {
  20971. anthro: {
  20972. height: math.unit(5 + 7 / 12, "feet"),
  20973. weight: math.unit(175, "lb"),
  20974. name: "Anthro",
  20975. image: {
  20976. source: "./media/characters/rena-dyne/anthro.svg",
  20977. extra: 1849 / 1785,
  20978. bottom: 0.005
  20979. }
  20980. },
  20981. taur: {
  20982. height: math.unit(15 + 6 / 12, "feet"),
  20983. weight: math.unit(8000, "lb"),
  20984. name: "Taur",
  20985. image: {
  20986. source: "./media/characters/rena-dyne/taur.svg",
  20987. extra: 2315 / 2234,
  20988. bottom: 0.033
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(5 + 7 / 12, "feet"),
  20996. default: true
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(8, "feet"),
  21005. weight: math.unit(600, "lb"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/weremeep/front.svg",
  21009. extra: 967 / 862,
  21010. bottom: 0.01
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(8, "feet"),
  21018. default: true
  21019. },
  21020. {
  21021. name: "Lorg",
  21022. height: math.unit(12, "feet")
  21023. },
  21024. {
  21025. name: "Oh Lawd She Comin'",
  21026. height: math.unit(20, "feet")
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21032. {
  21033. front: {
  21034. height: math.unit(4, "feet"),
  21035. weight: math.unit(90, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/reza/front.svg",
  21039. extra: 1183 / 1111,
  21040. bottom: 0.017
  21041. }
  21042. },
  21043. back: {
  21044. height: math.unit(4, "feet"),
  21045. weight: math.unit(90, "lb"),
  21046. name: "Back",
  21047. image: {
  21048. source: "./media/characters/reza/back.svg",
  21049. extra: 1183 / 1111,
  21050. bottom: 0.01
  21051. }
  21052. },
  21053. drake: {
  21054. height: math.unit(30, "feet"),
  21055. weight: math.unit(246960, "lb"),
  21056. name: "Drake",
  21057. image: {
  21058. source: "./media/characters/reza/drake.svg",
  21059. extra: 2350 / 2024,
  21060. bottom: 60.7 / 2403
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(4, "feet"),
  21068. default: true
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21074. {
  21075. side: {
  21076. height: math.unit(15, "feet"),
  21077. weight: math.unit(14, "tons"),
  21078. name: "Side",
  21079. image: {
  21080. source: "./media/characters/athea/side.svg",
  21081. extra: 960 / 540,
  21082. bottom: 0.003
  21083. }
  21084. },
  21085. sitting: {
  21086. height: math.unit(6 * 2.85, "feet"),
  21087. weight: math.unit(14, "tons"),
  21088. name: "Sitting",
  21089. image: {
  21090. source: "./media/characters/athea/sitting.svg",
  21091. extra: 621 / 581,
  21092. bottom: 0.075
  21093. }
  21094. },
  21095. maw: {
  21096. height: math.unit(7.59498031496063, "feet"),
  21097. name: "Maw",
  21098. image: {
  21099. source: "./media/characters/athea/maw.svg"
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Lap Cat",
  21106. height: math.unit(2.5, "feet")
  21107. },
  21108. {
  21109. name: "Minimacro",
  21110. height: math.unit(15, "feet"),
  21111. default: true
  21112. },
  21113. {
  21114. name: "Macro",
  21115. height: math.unit(120, "feet")
  21116. },
  21117. {
  21118. name: "Macro+",
  21119. height: math.unit(640, "feet")
  21120. },
  21121. {
  21122. name: "Colossus",
  21123. height: math.unit(2.2, "miles")
  21124. },
  21125. ]
  21126. ))
  21127. characterMakers.push(() => makeCharacter(
  21128. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21129. {
  21130. front: {
  21131. height: math.unit(8 + 8 / 12, "feet"),
  21132. weight: math.unit(130, "kg"),
  21133. name: "Front",
  21134. image: {
  21135. source: "./media/characters/seroko/front.svg",
  21136. extra: 1385 / 1280,
  21137. bottom: 0.025
  21138. }
  21139. },
  21140. back: {
  21141. height: math.unit(8 + 8 / 12, "feet"),
  21142. weight: math.unit(130, "kg"),
  21143. name: "Back",
  21144. image: {
  21145. source: "./media/characters/seroko/back.svg",
  21146. extra: 1369 / 1238,
  21147. bottom: 0.018
  21148. }
  21149. },
  21150. frontDressed: {
  21151. height: math.unit(8 + 8 / 12, "feet"),
  21152. weight: math.unit(130, "kg"),
  21153. name: "Front (Dressed)",
  21154. image: {
  21155. source: "./media/characters/seroko/front-dressed.svg",
  21156. extra: 1366 / 1275,
  21157. bottom: 0.03
  21158. }
  21159. },
  21160. },
  21161. [
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(8 + 8 / 12, "feet"),
  21165. default: true
  21166. },
  21167. ]
  21168. ))
  21169. characterMakers.push(() => makeCharacter(
  21170. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21171. {
  21172. front: {
  21173. height: math.unit(5.5, "feet"),
  21174. weight: math.unit(160, "lb"),
  21175. name: "Front",
  21176. image: {
  21177. source: "./media/characters/quatzi/front.svg",
  21178. extra: 2346 / 2242,
  21179. bottom: 0.015
  21180. }
  21181. },
  21182. },
  21183. [
  21184. {
  21185. name: "Normal",
  21186. height: math.unit(5.5, "feet"),
  21187. default: true
  21188. },
  21189. {
  21190. name: "Big",
  21191. height: math.unit(7.7, "feet")
  21192. },
  21193. ]
  21194. ))
  21195. characterMakers.push(() => makeCharacter(
  21196. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21197. {
  21198. front: {
  21199. height: math.unit(5 + 11 / 12, "feet"),
  21200. weight: math.unit(180, "lb"),
  21201. name: "Front",
  21202. image: {
  21203. source: "./media/characters/sen/front.svg",
  21204. extra: 1321 / 1254,
  21205. bottom: 0.015
  21206. }
  21207. },
  21208. side: {
  21209. height: math.unit(5 + 11 / 12, "feet"),
  21210. weight: math.unit(180, "lb"),
  21211. name: "Side",
  21212. image: {
  21213. source: "./media/characters/sen/side.svg",
  21214. extra: 1321 / 1254,
  21215. bottom: 0.007
  21216. }
  21217. },
  21218. back: {
  21219. height: math.unit(5 + 11 / 12, "feet"),
  21220. weight: math.unit(180, "lb"),
  21221. name: "Back",
  21222. image: {
  21223. source: "./media/characters/sen/back.svg",
  21224. extra: 1321 / 1254
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Normal",
  21231. height: math.unit(5 + 11 / 12, "feet"),
  21232. default: true
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(166.6, "cm"),
  21241. weight: math.unit(66.6, "kg"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/fruity/front.svg",
  21245. extra: 1510 / 1386,
  21246. bottom: 0.04
  21247. }
  21248. },
  21249. back: {
  21250. height: math.unit(166.6, "cm"),
  21251. weight: math.unit(66.6, "lb"),
  21252. name: "Back",
  21253. image: {
  21254. source: "./media/characters/fruity/back.svg",
  21255. extra: 1563 / 1435,
  21256. bottom: 0.005
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(166.6, "cm"),
  21264. default: true
  21265. },
  21266. {
  21267. name: "Demonic",
  21268. height: math.unit(166.6, "feet")
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21274. {
  21275. side: {
  21276. height: math.unit(10, "feet"),
  21277. weight: math.unit(500, "lb"),
  21278. name: "Side",
  21279. image: {
  21280. source: "./media/characters/zost/side.svg",
  21281. extra: 966 / 880,
  21282. bottom: 0.075
  21283. }
  21284. },
  21285. mawFront: {
  21286. height: math.unit(1.08, "meters"),
  21287. name: "Maw (Front)",
  21288. image: {
  21289. source: "./media/characters/zost/maw-front.svg"
  21290. }
  21291. },
  21292. mawSide: {
  21293. height: math.unit(2.66, "feet"),
  21294. name: "Maw (Side)",
  21295. image: {
  21296. source: "./media/characters/zost/maw-side.svg"
  21297. }
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(10, "feet"),
  21304. default: true
  21305. },
  21306. ]
  21307. ))
  21308. characterMakers.push(() => makeCharacter(
  21309. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21310. {
  21311. front: {
  21312. height: math.unit(5 + 4 / 12, "feet"),
  21313. weight: math.unit(120, "lb"),
  21314. name: "Front",
  21315. image: {
  21316. source: "./media/characters/luci/front.svg",
  21317. extra: 1985 / 1884,
  21318. bottom: 0.04
  21319. }
  21320. },
  21321. back: {
  21322. height: math.unit(5 + 4 / 12, "feet"),
  21323. weight: math.unit(120, "lb"),
  21324. name: "Back",
  21325. image: {
  21326. source: "./media/characters/luci/back.svg",
  21327. extra: 1892 / 1791,
  21328. bottom: 0.002
  21329. }
  21330. },
  21331. },
  21332. [
  21333. {
  21334. name: "Normal",
  21335. height: math.unit(5 + 4 / 12, "feet"),
  21336. default: true
  21337. },
  21338. ]
  21339. ))
  21340. characterMakers.push(() => makeCharacter(
  21341. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21342. {
  21343. front: {
  21344. height: math.unit(1500, "feet"),
  21345. weight: math.unit(3.8e6, "tons"),
  21346. name: "Front",
  21347. image: {
  21348. source: "./media/characters/2th/front.svg",
  21349. extra: 3489 / 3350,
  21350. bottom: 0.1
  21351. }
  21352. },
  21353. foot: {
  21354. height: math.unit(461, "feet"),
  21355. name: "Foot",
  21356. image: {
  21357. source: "./media/characters/2th/foot.svg"
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "\"Micro\"",
  21364. height: math.unit(15 + 7 / 12, "feet")
  21365. },
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(1500, "feet"),
  21369. default: true
  21370. },
  21371. {
  21372. name: "Macro",
  21373. height: math.unit(5000, "feet")
  21374. },
  21375. {
  21376. name: "Megamacro",
  21377. height: math.unit(15, "miles")
  21378. },
  21379. {
  21380. name: "Gigamacro",
  21381. height: math.unit(4000, "miles")
  21382. },
  21383. {
  21384. name: "Galactic",
  21385. height: math.unit(50, "AU")
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21391. {
  21392. front: {
  21393. height: math.unit(5 + 6 / 12, "feet"),
  21394. weight: math.unit(220, "lb"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/amethyst/front.svg",
  21398. extra: 2078 / 2040,
  21399. bottom: 0.045
  21400. }
  21401. },
  21402. back: {
  21403. height: math.unit(5 + 6 / 12, "feet"),
  21404. weight: math.unit(220, "lb"),
  21405. name: "Back",
  21406. image: {
  21407. source: "./media/characters/amethyst/back.svg",
  21408. extra: 2021 / 1989,
  21409. bottom: 0.02
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(5 + 6 / 12, "feet"),
  21417. default: true
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21423. {
  21424. front: {
  21425. height: math.unit(4 + 11 / 12, "feet"),
  21426. weight: math.unit(120, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/yumi-akiyama/front.svg",
  21430. extra: 1327 / 1235,
  21431. bottom: 0.02
  21432. }
  21433. },
  21434. back: {
  21435. height: math.unit(4 + 11 / 12, "feet"),
  21436. weight: math.unit(120, "lb"),
  21437. name: "Back",
  21438. image: {
  21439. source: "./media/characters/yumi-akiyama/back.svg",
  21440. extra: 1287 / 1245,
  21441. bottom: 0.002
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "Galactic",
  21448. height: math.unit(50, "galaxies"),
  21449. default: true
  21450. },
  21451. {
  21452. name: "Universal",
  21453. height: math.unit(100, "universes")
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21459. {
  21460. front: {
  21461. height: math.unit(8, "feet"),
  21462. weight: math.unit(500, "lb"),
  21463. name: "Front",
  21464. image: {
  21465. source: "./media/characters/rifter-yrmori/front.svg",
  21466. extra: 1180 / 1125,
  21467. bottom: 0.02
  21468. }
  21469. },
  21470. back: {
  21471. height: math.unit(8, "feet"),
  21472. weight: math.unit(500, "lb"),
  21473. name: "Back",
  21474. image: {
  21475. source: "./media/characters/rifter-yrmori/back.svg",
  21476. extra: 1190 / 1145,
  21477. bottom: 0.001
  21478. }
  21479. },
  21480. wings: {
  21481. height: math.unit(7.75, "feet"),
  21482. weight: math.unit(500, "lb"),
  21483. name: "Wings",
  21484. image: {
  21485. source: "./media/characters/rifter-yrmori/wings.svg",
  21486. extra: 1357 / 1285
  21487. }
  21488. },
  21489. maw: {
  21490. height: math.unit(0.8, "feet"),
  21491. name: "Maw",
  21492. image: {
  21493. source: "./media/characters/rifter-yrmori/maw.svg"
  21494. }
  21495. },
  21496. mawfront: {
  21497. height: math.unit(1.45, "feet"),
  21498. name: "Maw (Front)",
  21499. image: {
  21500. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21501. }
  21502. },
  21503. },
  21504. [
  21505. {
  21506. name: "Normal",
  21507. height: math.unit(8, "feet"),
  21508. default: true
  21509. },
  21510. {
  21511. name: "Macro",
  21512. height: math.unit(42, "meters")
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21518. {
  21519. were: {
  21520. height: math.unit(25 + 6 / 12, "feet"),
  21521. weight: math.unit(10000, "lb"),
  21522. name: "Were",
  21523. image: {
  21524. source: "./media/characters/tahajin/were.svg",
  21525. extra: 801 / 770,
  21526. bottom: 0.042
  21527. }
  21528. },
  21529. aquatic: {
  21530. height: math.unit(6 + 4 / 12, "feet"),
  21531. weight: math.unit(160, "lb"),
  21532. name: "Aquatic",
  21533. image: {
  21534. source: "./media/characters/tahajin/aquatic.svg",
  21535. extra: 572 / 542,
  21536. bottom: 0.04
  21537. }
  21538. },
  21539. chow: {
  21540. height: math.unit(8 + 11 / 12, "feet"),
  21541. weight: math.unit(450, "lb"),
  21542. name: "Chow",
  21543. image: {
  21544. source: "./media/characters/tahajin/chow.svg",
  21545. extra: 660 / 640,
  21546. bottom: 0.015
  21547. }
  21548. },
  21549. demiNaga: {
  21550. height: math.unit(6 + 8 / 12, "feet"),
  21551. weight: math.unit(300, "lb"),
  21552. name: "Demi Naga",
  21553. image: {
  21554. source: "./media/characters/tahajin/demi-naga.svg",
  21555. extra: 643 / 615,
  21556. bottom: 0.1
  21557. }
  21558. },
  21559. data: {
  21560. height: math.unit(5, "inches"),
  21561. weight: math.unit(0.1, "lb"),
  21562. name: "Data",
  21563. image: {
  21564. source: "./media/characters/tahajin/data.svg"
  21565. }
  21566. },
  21567. fluu: {
  21568. height: math.unit(5 + 7 / 12, "feet"),
  21569. weight: math.unit(140, "lb"),
  21570. name: "Fluu",
  21571. image: {
  21572. source: "./media/characters/tahajin/fluu.svg",
  21573. extra: 628 / 592,
  21574. bottom: 0.02
  21575. }
  21576. },
  21577. starWarrior: {
  21578. height: math.unit(4 + 5 / 12, "feet"),
  21579. weight: math.unit(50, "lb"),
  21580. name: "Star Warrior",
  21581. image: {
  21582. source: "./media/characters/tahajin/star-warrior.svg"
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Normal",
  21589. height: math.unit(25 + 6 / 12, "feet"),
  21590. default: true
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(8, "feet"),
  21599. weight: math.unit(350, "lb"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/gabira/front.svg",
  21603. extra: 608 / 580,
  21604. bottom: 0.03
  21605. }
  21606. },
  21607. back: {
  21608. height: math.unit(8, "feet"),
  21609. weight: math.unit(350, "lb"),
  21610. name: "Back",
  21611. image: {
  21612. source: "./media/characters/gabira/back.svg",
  21613. extra: 608 / 580,
  21614. bottom: 0.03
  21615. }
  21616. },
  21617. },
  21618. [
  21619. {
  21620. name: "Normal",
  21621. height: math.unit(8, "feet"),
  21622. default: true
  21623. },
  21624. ]
  21625. ))
  21626. characterMakers.push(() => makeCharacter(
  21627. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21628. {
  21629. front: {
  21630. height: math.unit(5 + 3 / 12, "feet"),
  21631. weight: math.unit(137, "lb"),
  21632. name: "Front",
  21633. image: {
  21634. source: "./media/characters/sasha-katraine/front.svg",
  21635. bottom: 0.045
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Micro",
  21642. height: math.unit(5, "inches")
  21643. },
  21644. {
  21645. name: "Normal",
  21646. height: math.unit(5 + 3 / 12, "feet"),
  21647. default: true
  21648. },
  21649. ]
  21650. ))
  21651. characterMakers.push(() => makeCharacter(
  21652. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21653. {
  21654. side: {
  21655. height: math.unit(4, "inches"),
  21656. weight: math.unit(200, "grams"),
  21657. name: "Side",
  21658. image: {
  21659. source: "./media/characters/der/side.svg",
  21660. extra: 719 / 400,
  21661. bottom: 30.6 / 749.9187
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Micro",
  21668. height: math.unit(4, "inches"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21675. {
  21676. side: {
  21677. height: math.unit(30, "meters"),
  21678. weight: math.unit(700, "tonnes"),
  21679. name: "Side",
  21680. image: {
  21681. source: "./media/characters/fixerdragon/side.svg",
  21682. extra: (1293.0514 - 116.03) / 1106.86,
  21683. bottom: 116.03 / 1293.0514
  21684. }
  21685. },
  21686. },
  21687. [
  21688. {
  21689. name: "Planck",
  21690. height: math.unit(1.6e-35, "meters")
  21691. },
  21692. {
  21693. name: "Micro",
  21694. height: math.unit(0.4, "meters")
  21695. },
  21696. {
  21697. name: "Normal",
  21698. height: math.unit(30, "meters"),
  21699. default: true
  21700. },
  21701. {
  21702. name: "Megamacro",
  21703. height: math.unit(1.2, "megameters")
  21704. },
  21705. {
  21706. name: "Teramacro",
  21707. height: math.unit(130, "terameters")
  21708. },
  21709. {
  21710. name: "Yottamacro",
  21711. height: math.unit(6200, "yottameters")
  21712. },
  21713. ]
  21714. ));
  21715. characterMakers.push(() => makeCharacter(
  21716. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21717. {
  21718. front: {
  21719. height: math.unit(8, "feet"),
  21720. weight: math.unit(250, "lb"),
  21721. name: "Front",
  21722. image: {
  21723. source: "./media/characters/kite/front.svg",
  21724. extra: 2796 / 2659,
  21725. bottom: 0.002
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(8, "feet"),
  21733. default: true
  21734. },
  21735. {
  21736. name: "Macro",
  21737. height: math.unit(360, "feet")
  21738. },
  21739. {
  21740. name: "Megamacro",
  21741. height: math.unit(1500, "feet")
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(5 + 11/12, "feet"),
  21750. weight: math.unit(170, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/poojawa-vynar/front.svg",
  21754. extra: 1735/1585,
  21755. bottom: 96/1831
  21756. }
  21757. },
  21758. back: {
  21759. height: math.unit(5 + 11/12, "feet"),
  21760. weight: math.unit(170, "lb"),
  21761. name: "Back",
  21762. image: {
  21763. source: "./media/characters/poojawa-vynar/back.svg",
  21764. extra: 1749/1607,
  21765. bottom: 28/1777
  21766. }
  21767. },
  21768. male: {
  21769. height: math.unit(5 + 11/12, "feet"),
  21770. weight: math.unit(170, "lb"),
  21771. name: "Male",
  21772. image: {
  21773. source: "./media/characters/poojawa-vynar/male.svg",
  21774. extra: 1855/1713,
  21775. bottom: 63/1918
  21776. }
  21777. },
  21778. taur: {
  21779. height: math.unit(5 + 11/12, "feet"),
  21780. weight: math.unit(170, "lb"),
  21781. name: "Taur",
  21782. image: {
  21783. source: "./media/characters/poojawa-vynar/taur.svg",
  21784. extra: 1151/1059,
  21785. bottom: 356/1507
  21786. }
  21787. },
  21788. frontDressed: {
  21789. height: math.unit(5 + 11/12, "feet"),
  21790. weight: math.unit(170, "lb"),
  21791. name: "Front (Dressed)",
  21792. image: {
  21793. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21794. extra: 1735/1585,
  21795. bottom: 96/1831
  21796. }
  21797. },
  21798. backDressed: {
  21799. height: math.unit(5 + 11/12, "feet"),
  21800. weight: math.unit(170, "lb"),
  21801. name: "Back (Dressed)",
  21802. image: {
  21803. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21804. extra: 1749/1607,
  21805. bottom: 28/1777
  21806. }
  21807. },
  21808. maleDressed: {
  21809. height: math.unit(5 + 11/12, "feet"),
  21810. weight: math.unit(170, "lb"),
  21811. name: "Male (Dressed)",
  21812. image: {
  21813. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21814. extra: 1855/1713,
  21815. bottom: 63/1918
  21816. }
  21817. },
  21818. taurDressed: {
  21819. height: math.unit(5 + 11/12, "feet"),
  21820. weight: math.unit(170, "lb"),
  21821. name: "Taur (Dressed)",
  21822. image: {
  21823. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21824. extra: 1151/1059,
  21825. bottom: 356/1507
  21826. }
  21827. },
  21828. maw: {
  21829. height: math.unit(1.46, "feet"),
  21830. name: "Maw",
  21831. image: {
  21832. source: "./media/characters/poojawa-vynar/maw.svg"
  21833. }
  21834. },
  21835. head: {
  21836. height: math.unit(2.34, "feet"),
  21837. name: "Head",
  21838. image: {
  21839. source: "./media/characters/poojawa-vynar/head.svg"
  21840. }
  21841. },
  21842. paw: {
  21843. height: math.unit(1.61, "feet"),
  21844. name: "Paw",
  21845. image: {
  21846. source: "./media/characters/poojawa-vynar/paw.svg"
  21847. }
  21848. },
  21849. pawToering: {
  21850. height: math.unit(1.72, "feet"),
  21851. name: "Paw (Toering)",
  21852. image: {
  21853. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21854. }
  21855. },
  21856. toering: {
  21857. height: math.unit(2.9, "inches"),
  21858. name: "Toering",
  21859. image: {
  21860. source: "./media/characters/poojawa-vynar/toering.svg"
  21861. }
  21862. },
  21863. shaft: {
  21864. height: math.unit(0.625, "feet"),
  21865. name: "Shaft",
  21866. image: {
  21867. source: "./media/characters/poojawa-vynar/shaft.svg"
  21868. }
  21869. },
  21870. spade: {
  21871. height: math.unit(0.42, "feet"),
  21872. name: "Spade",
  21873. image: {
  21874. source: "./media/characters/poojawa-vynar/spade.svg"
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Shortstack",
  21881. height: math.unit(4, "feet")
  21882. },
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(5 + 11 / 12, "feet"),
  21886. default: true
  21887. },
  21888. {
  21889. name: "Tauric",
  21890. height: math.unit(4, "meters")
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21896. {
  21897. front: {
  21898. height: math.unit(293, "meters"),
  21899. weight: math.unit(70400, "tons"),
  21900. name: "Front",
  21901. image: {
  21902. source: "./media/characters/violette/front.svg",
  21903. extra: 1227 / 1180,
  21904. bottom: 0.005
  21905. }
  21906. },
  21907. back: {
  21908. height: math.unit(293, "meters"),
  21909. weight: math.unit(70400, "tons"),
  21910. name: "Back",
  21911. image: {
  21912. source: "./media/characters/violette/back.svg",
  21913. extra: 1227 / 1180,
  21914. bottom: 0.005
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Macro",
  21921. height: math.unit(293, "meters"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(1050, "feet"),
  21931. weight: math.unit(200000, "tons"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/alessandra/front.svg",
  21935. extra: 960 / 912,
  21936. bottom: 0.06
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Macro",
  21943. height: math.unit(1050, "feet")
  21944. },
  21945. {
  21946. name: "Macro+",
  21947. height: math.unit(900, "meters"),
  21948. default: true
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21954. {
  21955. front: {
  21956. height: math.unit(5, "feet"),
  21957. weight: math.unit(187, "lb"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/person/front.svg",
  21961. extra: 3087 / 2945,
  21962. bottom: 91 / 3181
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Micro",
  21969. height: math.unit(3, "inches")
  21970. },
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(5, "feet"),
  21974. default: true
  21975. },
  21976. {
  21977. name: "Macro",
  21978. height: math.unit(90, "feet")
  21979. },
  21980. {
  21981. name: "Max Size",
  21982. height: math.unit(280, "feet")
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(4.5, "meters"),
  21991. weight: math.unit(3200, "lb"),
  21992. name: "Front",
  21993. image: {
  21994. source: "./media/characters/ty/front.svg",
  21995. extra: 1038 / 960,
  21996. bottom: 31.156 / 1068
  21997. }
  21998. },
  21999. back: {
  22000. height: math.unit(4.5, "meters"),
  22001. weight: math.unit(3200, "lb"),
  22002. name: "Back",
  22003. image: {
  22004. source: "./media/characters/ty/back.svg",
  22005. extra: 1044 / 966,
  22006. bottom: 7.48 / 1049
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(4.5, "meters"),
  22014. default: true
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(5 + 4 / 12, "feet"),
  22023. weight: math.unit(115, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/rocky/front.svg",
  22027. extra: 1012 / 975,
  22028. bottom: 54 / 1066
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(5 + 4 / 12, "feet"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22042. {
  22043. upright: {
  22044. height: math.unit(6, "meters"),
  22045. weight: math.unit(4000, "kg"),
  22046. name: "Upright",
  22047. image: {
  22048. source: "./media/characters/ruin/upright.svg",
  22049. extra: 668 / 661,
  22050. bottom: 42 / 799.8396
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(6, "meters"),
  22058. default: true
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22064. {
  22065. front: {
  22066. height: math.unit(5, "feet"),
  22067. weight: math.unit(106, "lb"),
  22068. name: "Front",
  22069. image: {
  22070. source: "./media/characters/robin/front.svg",
  22071. extra: 862 / 799,
  22072. bottom: 42.4 / 914.8856
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(5, "feet"),
  22080. default: true
  22081. },
  22082. ]
  22083. ))
  22084. characterMakers.push(() => makeCharacter(
  22085. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22086. {
  22087. side: {
  22088. height: math.unit(3, "feet"),
  22089. weight: math.unit(225, "lb"),
  22090. name: "Side",
  22091. image: {
  22092. source: "./media/characters/saian/side.svg",
  22093. extra: 566 / 356,
  22094. bottom: 79.7 / 643
  22095. }
  22096. },
  22097. maw: {
  22098. height: math.unit(2.85, "feet"),
  22099. name: "Maw",
  22100. image: {
  22101. source: "./media/characters/saian/maw.svg"
  22102. }
  22103. },
  22104. },
  22105. [
  22106. {
  22107. name: "Normal",
  22108. height: math.unit(3, "feet"),
  22109. default: true
  22110. },
  22111. ]
  22112. ))
  22113. characterMakers.push(() => makeCharacter(
  22114. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22115. {
  22116. side: {
  22117. height: math.unit(8, "feet"),
  22118. weight: math.unit(300, "lb"),
  22119. name: "Side",
  22120. image: {
  22121. source: "./media/characters/equus-silvermane/side.svg",
  22122. extra: 2176 / 2050,
  22123. bottom: 65.7 / 2245
  22124. }
  22125. },
  22126. front: {
  22127. height: math.unit(8, "feet"),
  22128. weight: math.unit(300, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/equus-silvermane/front.svg",
  22132. extra: 4633 / 4400,
  22133. bottom: 71.3 / 4706.915
  22134. }
  22135. },
  22136. sideStepping: {
  22137. height: math.unit(8, "feet"),
  22138. weight: math.unit(300, "lb"),
  22139. name: "Side (Stepping)",
  22140. image: {
  22141. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22142. extra: 1968 / 1860,
  22143. bottom: 16.4 / 1989
  22144. }
  22145. },
  22146. },
  22147. [
  22148. {
  22149. name: "Normal",
  22150. height: math.unit(8, "feet")
  22151. },
  22152. {
  22153. name: "Minimacro",
  22154. height: math.unit(75, "feet"),
  22155. default: true
  22156. },
  22157. {
  22158. name: "Macro",
  22159. height: math.unit(150, "feet")
  22160. },
  22161. {
  22162. name: "Macro+",
  22163. height: math.unit(1000, "feet")
  22164. },
  22165. {
  22166. name: "Megamacro",
  22167. height: math.unit(1, "mile")
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22173. {
  22174. side: {
  22175. height: math.unit(20, "feet"),
  22176. weight: math.unit(30000, "kg"),
  22177. name: "Side",
  22178. image: {
  22179. source: "./media/characters/windar/side.svg",
  22180. extra: 1491 / 1248,
  22181. bottom: 82.56 / 1568
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(20, "feet"),
  22189. default: true
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22195. {
  22196. side: {
  22197. height: math.unit(15.66, "feet"),
  22198. weight: math.unit(150, "lb"),
  22199. name: "Side",
  22200. image: {
  22201. source: "./media/characters/melody/side.svg",
  22202. extra: 1097 / 944,
  22203. bottom: 11.8 / 1109
  22204. }
  22205. },
  22206. sideOutfit: {
  22207. height: math.unit(15.66, "feet"),
  22208. weight: math.unit(150, "lb"),
  22209. name: "Side (Outfit)",
  22210. image: {
  22211. source: "./media/characters/melody/side-outfit.svg",
  22212. extra: 1097 / 944,
  22213. bottom: 11.8 / 1109
  22214. }
  22215. },
  22216. },
  22217. [
  22218. {
  22219. name: "Normal",
  22220. height: math.unit(15.66, "feet"),
  22221. default: true
  22222. },
  22223. ]
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22227. {
  22228. front: {
  22229. height: math.unit(8, "feet"),
  22230. weight: math.unit(325, "lb"),
  22231. name: "Front",
  22232. image: {
  22233. source: "./media/characters/windera/front.svg",
  22234. extra: 3180 / 2845,
  22235. bottom: 178 / 3365
  22236. }
  22237. },
  22238. },
  22239. [
  22240. {
  22241. name: "Normal",
  22242. height: math.unit(8, "feet"),
  22243. default: true
  22244. },
  22245. ]
  22246. ))
  22247. characterMakers.push(() => makeCharacter(
  22248. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22249. {
  22250. front: {
  22251. height: math.unit(28.75, "feet"),
  22252. weight: math.unit(2000, "kg"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/sonear/front.svg",
  22256. extra: 1041.1 / 964.9,
  22257. bottom: 53.7 / 1096.6
  22258. }
  22259. },
  22260. },
  22261. [
  22262. {
  22263. name: "Normal",
  22264. height: math.unit(28.75, "feet"),
  22265. default: true
  22266. },
  22267. ]
  22268. ))
  22269. characterMakers.push(() => makeCharacter(
  22270. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22271. {
  22272. side: {
  22273. height: math.unit(25.5, "feet"),
  22274. weight: math.unit(23000, "kg"),
  22275. name: "Side",
  22276. image: {
  22277. source: "./media/characters/kanara/side.svg"
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(25.5, "feet"),
  22285. default: true
  22286. },
  22287. ]
  22288. ))
  22289. characterMakers.push(() => makeCharacter(
  22290. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22291. {
  22292. side: {
  22293. height: math.unit(10, "feet"),
  22294. weight: math.unit(1000, "kg"),
  22295. name: "Side",
  22296. image: {
  22297. source: "./media/characters/ereus/side.svg",
  22298. extra: 1157 / 959,
  22299. bottom: 153 / 1312.5
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Normal",
  22306. height: math.unit(10, "feet"),
  22307. default: true
  22308. },
  22309. ]
  22310. ))
  22311. characterMakers.push(() => makeCharacter(
  22312. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22313. {
  22314. side: {
  22315. height: math.unit(4.5, "feet"),
  22316. weight: math.unit(500, "lb"),
  22317. name: "Side",
  22318. image: {
  22319. source: "./media/characters/e-ter/side.svg",
  22320. extra: 1550 / 1248,
  22321. bottom: 146 / 1694
  22322. }
  22323. },
  22324. },
  22325. [
  22326. {
  22327. name: "Normal",
  22328. height: math.unit(4.5, "feet"),
  22329. default: true
  22330. },
  22331. ]
  22332. ))
  22333. characterMakers.push(() => makeCharacter(
  22334. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22335. {
  22336. side: {
  22337. height: math.unit(9.7, "feet"),
  22338. weight: math.unit(4000, "kg"),
  22339. name: "Side",
  22340. image: {
  22341. source: "./media/characters/yamie/side.svg"
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Normal",
  22348. height: math.unit(9.7, "feet"),
  22349. default: true
  22350. },
  22351. ]
  22352. ))
  22353. characterMakers.push(() => makeCharacter(
  22354. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22355. {
  22356. front: {
  22357. height: math.unit(50, "feet"),
  22358. weight: math.unit(50000, "kg"),
  22359. name: "Front",
  22360. image: {
  22361. source: "./media/characters/anders/front.svg",
  22362. extra: 570 / 539,
  22363. bottom: 14.7 / 586.7
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Large",
  22370. height: math.unit(50, "feet")
  22371. },
  22372. {
  22373. name: "Macro",
  22374. height: math.unit(2000, "feet"),
  22375. default: true
  22376. },
  22377. {
  22378. name: "Megamacro",
  22379. height: math.unit(12, "miles")
  22380. },
  22381. ]
  22382. ))
  22383. characterMakers.push(() => makeCharacter(
  22384. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22385. {
  22386. front: {
  22387. height: math.unit(7 + 2 / 12, "feet"),
  22388. weight: math.unit(300, "lb"),
  22389. name: "Front",
  22390. image: {
  22391. source: "./media/characters/reban/front.svg",
  22392. extra: 516 / 487,
  22393. bottom: 42.82 / 558.356
  22394. }
  22395. },
  22396. dick: {
  22397. height: math.unit(7 / 5, "feet"),
  22398. name: "Dick",
  22399. image: {
  22400. source: "./media/characters/reban/dick.svg"
  22401. }
  22402. },
  22403. },
  22404. [
  22405. {
  22406. name: "Natural Height",
  22407. height: math.unit(7 + 2 / 12, "feet")
  22408. },
  22409. {
  22410. name: "Macro",
  22411. height: math.unit(500, "feet"),
  22412. default: true
  22413. },
  22414. {
  22415. name: "Canon Height",
  22416. height: math.unit(50, "AU")
  22417. },
  22418. ]
  22419. ))
  22420. characterMakers.push(() => makeCharacter(
  22421. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22422. {
  22423. front: {
  22424. height: math.unit(6, "feet"),
  22425. weight: math.unit(150, "lb"),
  22426. name: "Front",
  22427. image: {
  22428. source: "./media/characters/terrance-keayes/front.svg",
  22429. extra: 1.005,
  22430. bottom: 151 / 1615
  22431. }
  22432. },
  22433. side: {
  22434. height: math.unit(6, "feet"),
  22435. weight: math.unit(150, "lb"),
  22436. name: "Side",
  22437. image: {
  22438. source: "./media/characters/terrance-keayes/side.svg",
  22439. extra: 1.005,
  22440. bottom: 129.4 / 1544
  22441. }
  22442. },
  22443. back: {
  22444. height: math.unit(6, "feet"),
  22445. weight: math.unit(150, "lb"),
  22446. name: "Back",
  22447. image: {
  22448. source: "./media/characters/terrance-keayes/back.svg",
  22449. extra: 1.005,
  22450. bottom: 58.4 / 1557.3
  22451. }
  22452. },
  22453. dick: {
  22454. height: math.unit(6 * 0.208, "feet"),
  22455. name: "Dick",
  22456. image: {
  22457. source: "./media/characters/terrance-keayes/dick.svg"
  22458. }
  22459. },
  22460. },
  22461. [
  22462. {
  22463. name: "Canon Height",
  22464. height: math.unit(35, "miles"),
  22465. default: true
  22466. },
  22467. ]
  22468. ))
  22469. characterMakers.push(() => makeCharacter(
  22470. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22471. {
  22472. front: {
  22473. height: math.unit(6, "feet"),
  22474. weight: math.unit(150, "lb"),
  22475. name: "Front",
  22476. image: {
  22477. source: "./media/characters/ofelia/front.svg",
  22478. extra: 546 / 541,
  22479. bottom: 39 / 583
  22480. }
  22481. },
  22482. back: {
  22483. height: math.unit(6, "feet"),
  22484. weight: math.unit(150, "lb"),
  22485. name: "Back",
  22486. image: {
  22487. source: "./media/characters/ofelia/back.svg",
  22488. extra: 564 / 559.5,
  22489. bottom: 8.69 / 573.02
  22490. }
  22491. },
  22492. maw: {
  22493. height: math.unit(1, "feet"),
  22494. name: "Maw",
  22495. image: {
  22496. source: "./media/characters/ofelia/maw.svg"
  22497. }
  22498. },
  22499. foot: {
  22500. height: math.unit(1.949, "feet"),
  22501. name: "Foot",
  22502. image: {
  22503. source: "./media/characters/ofelia/foot.svg"
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Canon Height",
  22510. height: math.unit(2000, "miles"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(6, "feet"),
  22520. weight: math.unit(150, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/samuel/front.svg",
  22524. extra: 265 / 258,
  22525. bottom: 2 / 266.1566
  22526. }
  22527. },
  22528. },
  22529. [
  22530. {
  22531. name: "Macro",
  22532. height: math.unit(100, "feet"),
  22533. default: true
  22534. },
  22535. {
  22536. name: "Full Size",
  22537. height: math.unit(1000, "miles")
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22543. {
  22544. front: {
  22545. height: math.unit(6, "feet"),
  22546. weight: math.unit(300, "lb"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/beishir-kiel/front.svg",
  22550. extra: 569 / 547,
  22551. bottom: 41.9 / 609
  22552. }
  22553. },
  22554. maw: {
  22555. height: math.unit(6 * 0.202, "feet"),
  22556. name: "Maw",
  22557. image: {
  22558. source: "./media/characters/beishir-kiel/maw.svg"
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Macro",
  22565. height: math.unit(300, "feet"),
  22566. default: true
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22572. {
  22573. front: {
  22574. height: math.unit(5 + 7/12, "feet"),
  22575. weight: math.unit(120, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/logan-grey/front.svg",
  22579. extra: 1836/1738,
  22580. bottom: 108/1944
  22581. }
  22582. },
  22583. back: {
  22584. height: math.unit(5 + 7/12, "feet"),
  22585. weight: math.unit(120, "lb"),
  22586. name: "Back",
  22587. image: {
  22588. source: "./media/characters/logan-grey/back.svg",
  22589. extra: 1880/1794,
  22590. bottom: 24/1904
  22591. }
  22592. },
  22593. frontSfw: {
  22594. height: math.unit(5 + 7/12, "feet"),
  22595. weight: math.unit(120, "lb"),
  22596. name: "Front (SFW)",
  22597. image: {
  22598. source: "./media/characters/logan-grey/front-sfw.svg",
  22599. extra: 1836/1738,
  22600. bottom: 108/1944
  22601. }
  22602. },
  22603. backSfw: {
  22604. height: math.unit(5 + 7/12, "feet"),
  22605. weight: math.unit(120, "lb"),
  22606. name: "Back (SFW)",
  22607. image: {
  22608. source: "./media/characters/logan-grey/back-sfw.svg",
  22609. extra: 1880/1794,
  22610. bottom: 24/1904
  22611. }
  22612. },
  22613. hands: {
  22614. height: math.unit(0.84, "feet"),
  22615. name: "Hands",
  22616. image: {
  22617. source: "./media/characters/logan-grey/hands.svg"
  22618. }
  22619. },
  22620. paws: {
  22621. height: math.unit(0.72, "feet"),
  22622. name: "Paws",
  22623. image: {
  22624. source: "./media/characters/logan-grey/paws.svg"
  22625. }
  22626. },
  22627. cock: {
  22628. height: math.unit(1.45, "feet"),
  22629. name: "Cock",
  22630. image: {
  22631. source: "./media/characters/logan-grey/cock.svg"
  22632. }
  22633. },
  22634. cockAlt: {
  22635. height: math.unit(1.437, "feet"),
  22636. name: "Cock (alt)",
  22637. image: {
  22638. source: "./media/characters/logan-grey/cock-alt.svg"
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Normal",
  22645. height: math.unit(5 + 8 / 12, "feet")
  22646. },
  22647. {
  22648. name: "The 500 Foot Femboy",
  22649. height: math.unit(500, "feet"),
  22650. default: true
  22651. },
  22652. {
  22653. name: "Megmacro",
  22654. height: math.unit(20, "miles")
  22655. },
  22656. ]
  22657. ))
  22658. characterMakers.push(() => makeCharacter(
  22659. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22660. {
  22661. front: {
  22662. height: math.unit(8 + 2 / 12, "feet"),
  22663. weight: math.unit(275, "lb"),
  22664. name: "Front",
  22665. image: {
  22666. source: "./media/characters/draganta/front.svg",
  22667. extra: 1177 / 1135,
  22668. bottom: 33.46 / 1212.1
  22669. }
  22670. },
  22671. },
  22672. [
  22673. {
  22674. name: "Normal",
  22675. height: math.unit(8 + 6 / 12, "feet"),
  22676. default: true
  22677. },
  22678. {
  22679. name: "Macro",
  22680. height: math.unit(150, "feet")
  22681. },
  22682. {
  22683. name: "Megamacro",
  22684. height: math.unit(1000, "miles")
  22685. },
  22686. ]
  22687. ))
  22688. characterMakers.push(() => makeCharacter(
  22689. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22690. {
  22691. front: {
  22692. height: math.unit(1.72, "m"),
  22693. weight: math.unit(80, "lb"),
  22694. name: "Front",
  22695. image: {
  22696. source: "./media/characters/voski/front.svg",
  22697. extra: 2076.22 / 2022.4,
  22698. bottom: 102.7 / 2177.3866
  22699. }
  22700. },
  22701. frontNsfw: {
  22702. height: math.unit(1.72, "m"),
  22703. weight: math.unit(80, "lb"),
  22704. name: "Front (NSFW)",
  22705. image: {
  22706. source: "./media/characters/voski/front-nsfw.svg",
  22707. extra: 2076.22 / 2022.4,
  22708. bottom: 102.7 / 2177.3866
  22709. }
  22710. },
  22711. back: {
  22712. height: math.unit(1.72, "m"),
  22713. weight: math.unit(80, "lb"),
  22714. name: "Back",
  22715. image: {
  22716. source: "./media/characters/voski/back.svg",
  22717. extra: 2104 / 2051,
  22718. bottom: 10.45 / 2113.63
  22719. }
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Normal",
  22725. height: math.unit(1.72, "m")
  22726. },
  22727. {
  22728. name: "Macro",
  22729. height: math.unit(55, "m"),
  22730. default: true
  22731. },
  22732. {
  22733. name: "Macro+",
  22734. height: math.unit(300, "m")
  22735. },
  22736. {
  22737. name: "Macro++",
  22738. height: math.unit(700, "m")
  22739. },
  22740. {
  22741. name: "Macro+++",
  22742. height: math.unit(4500, "m")
  22743. },
  22744. {
  22745. name: "Macro++++",
  22746. height: math.unit(45, "km")
  22747. },
  22748. {
  22749. name: "Macro+++++",
  22750. height: math.unit(1220, "km")
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(2.3, "m"),
  22759. weight: math.unit(304, "kg"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/icowom-lee/front.svg",
  22763. extra: 985 / 955,
  22764. bottom: 25.4 / 1012
  22765. }
  22766. },
  22767. fronttentacles: {
  22768. height: math.unit(2.3, "m"),
  22769. weight: math.unit(304, "kg"),
  22770. name: "Front-tentacles",
  22771. image: {
  22772. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22773. extra: 985 / 955,
  22774. bottom: 25.4 / 1012
  22775. }
  22776. },
  22777. back: {
  22778. height: math.unit(2.3, "m"),
  22779. weight: math.unit(304, "kg"),
  22780. name: "Back",
  22781. image: {
  22782. source: "./media/characters/icowom-lee/back.svg",
  22783. extra: 975 / 954,
  22784. bottom: 9.5 / 985
  22785. }
  22786. },
  22787. backtentacles: {
  22788. height: math.unit(2.3, "m"),
  22789. weight: math.unit(304, "kg"),
  22790. name: "Back-tentacles",
  22791. image: {
  22792. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22793. extra: 975 / 954,
  22794. bottom: 9.5 / 985
  22795. }
  22796. },
  22797. frontDressed: {
  22798. height: math.unit(2.3, "m"),
  22799. weight: math.unit(304, "kg"),
  22800. name: "Front (Dressed)",
  22801. image: {
  22802. source: "./media/characters/icowom-lee/front-dressed.svg",
  22803. extra: 3076 / 2933,
  22804. bottom: 51.4 / 3125.1889
  22805. }
  22806. },
  22807. rump: {
  22808. height: math.unit(0.776, "meters"),
  22809. name: "Rump",
  22810. image: {
  22811. source: "./media/characters/icowom-lee/rump.svg"
  22812. }
  22813. },
  22814. genitals: {
  22815. height: math.unit(0.78, "meters"),
  22816. name: "Genitals",
  22817. image: {
  22818. source: "./media/characters/icowom-lee/genitals.svg"
  22819. }
  22820. },
  22821. },
  22822. [
  22823. {
  22824. name: "Normal",
  22825. height: math.unit(2.3, "meters"),
  22826. default: true
  22827. },
  22828. {
  22829. name: "Macro",
  22830. height: math.unit(94, "meters"),
  22831. default: true
  22832. },
  22833. ]
  22834. ))
  22835. characterMakers.push(() => makeCharacter(
  22836. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22837. {
  22838. front: {
  22839. height: math.unit(22, "meters"),
  22840. weight: math.unit(21000, "kg"),
  22841. name: "Front",
  22842. image: {
  22843. source: "./media/characters/shock-diamond/front.svg",
  22844. extra: 2204 / 2053,
  22845. bottom: 65 / 2239.47
  22846. }
  22847. },
  22848. frontNude: {
  22849. height: math.unit(22, "meters"),
  22850. weight: math.unit(21000, "kg"),
  22851. name: "Front (Nude)",
  22852. image: {
  22853. source: "./media/characters/shock-diamond/front-nude.svg",
  22854. extra: 2514 / 2285,
  22855. bottom: 13 / 2527.56
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Normal",
  22862. height: math.unit(3, "meters")
  22863. },
  22864. {
  22865. name: "Macro",
  22866. height: math.unit(22, "meters"),
  22867. default: true
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22873. {
  22874. front: {
  22875. height: math.unit(5 + 4 / 12, "feet"),
  22876. weight: math.unit(120, "lb"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/rory/front.svg",
  22880. extra: 1318/1241,
  22881. bottom: 42/1360
  22882. }
  22883. },
  22884. back: {
  22885. height: math.unit(5 + 4 / 12, "feet"),
  22886. weight: math.unit(120, "lb"),
  22887. name: "Back",
  22888. image: {
  22889. source: "./media/characters/rory/back.svg",
  22890. extra: 1318/1241,
  22891. bottom: 42/1360
  22892. }
  22893. },
  22894. butt: {
  22895. height: math.unit(1.74, "feet"),
  22896. name: "Butt",
  22897. image: {
  22898. source: "./media/characters/rory/butt.svg"
  22899. }
  22900. },
  22901. dick: {
  22902. height: math.unit(1.02, "feet"),
  22903. name: "Dick",
  22904. image: {
  22905. source: "./media/characters/rory/dick.svg"
  22906. }
  22907. },
  22908. paws: {
  22909. height: math.unit(1, "feet"),
  22910. name: "Paws",
  22911. image: {
  22912. source: "./media/characters/rory/paws.svg"
  22913. }
  22914. },
  22915. frontAlt: {
  22916. height: math.unit(5 + 4 / 12, "feet"),
  22917. weight: math.unit(120, "lb"),
  22918. name: "Front (Alt)",
  22919. image: {
  22920. source: "./media/characters/rory/front-alt.svg",
  22921. extra: 589 / 556,
  22922. bottom: 45.7 / 635.76
  22923. }
  22924. },
  22925. frontAltNude: {
  22926. height: math.unit(5 + 4 / 12, "feet"),
  22927. weight: math.unit(120, "lb"),
  22928. name: "Front (Alt, Nude)",
  22929. image: {
  22930. source: "./media/characters/rory/front-alt-nude.svg",
  22931. extra: 589 / 556,
  22932. bottom: 45.7 / 635.76
  22933. }
  22934. },
  22935. side: {
  22936. height: math.unit(5 + 4 / 12, "feet"),
  22937. weight: math.unit(120, "lb"),
  22938. name: "Side",
  22939. image: {
  22940. source: "./media/characters/rory/side.svg",
  22941. extra: 597 / 564,
  22942. bottom: 55 / 653
  22943. }
  22944. },
  22945. backAlt: {
  22946. height: math.unit(5 + 4 / 12, "feet"),
  22947. weight: math.unit(120, "lb"),
  22948. name: "Back (Alt)",
  22949. image: {
  22950. source: "./media/characters/rory/back-alt.svg",
  22951. extra: 620 / 585,
  22952. bottom: 8.86 / 630.43
  22953. }
  22954. },
  22955. dickAlt: {
  22956. height: math.unit(0.86, "feet"),
  22957. name: "Dick (Alt)",
  22958. image: {
  22959. source: "./media/characters/rory/dick-alt.svg"
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(5 + 4 / 12, "feet"),
  22967. default: true
  22968. },
  22969. {
  22970. name: "Macro",
  22971. height: math.unit(100, "feet")
  22972. },
  22973. {
  22974. name: "Macro+",
  22975. height: math.unit(140, "feet")
  22976. },
  22977. {
  22978. name: "Macro++",
  22979. height: math.unit(300, "feet")
  22980. },
  22981. ]
  22982. ))
  22983. characterMakers.push(() => makeCharacter(
  22984. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22985. {
  22986. front: {
  22987. height: math.unit(5 + 9 / 12, "feet"),
  22988. weight: math.unit(190, "lb"),
  22989. name: "Front",
  22990. image: {
  22991. source: "./media/characters/sprisk/front.svg",
  22992. extra: 1225 / 1180,
  22993. bottom: 42.7 / 1266.4
  22994. }
  22995. },
  22996. frontNsfw: {
  22997. height: math.unit(5 + 9 / 12, "feet"),
  22998. weight: math.unit(190, "lb"),
  22999. name: "Front (NSFW)",
  23000. image: {
  23001. source: "./media/characters/sprisk/front-nsfw.svg",
  23002. extra: 1225 / 1180,
  23003. bottom: 42.7 / 1266.4
  23004. }
  23005. },
  23006. back: {
  23007. height: math.unit(5 + 9 / 12, "feet"),
  23008. weight: math.unit(190, "lb"),
  23009. name: "Back",
  23010. image: {
  23011. source: "./media/characters/sprisk/back.svg",
  23012. extra: 1247 / 1200,
  23013. bottom: 5.6 / 1253.04
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Tiny",
  23020. height: math.unit(2, "inches")
  23021. },
  23022. {
  23023. name: "Normal",
  23024. height: math.unit(5 + 9 / 12, "feet"),
  23025. default: true
  23026. },
  23027. {
  23028. name: "Mini Macro",
  23029. height: math.unit(18, "feet")
  23030. },
  23031. {
  23032. name: "Macro",
  23033. height: math.unit(100, "feet")
  23034. },
  23035. {
  23036. name: "MACRO",
  23037. height: math.unit(50, "miles")
  23038. },
  23039. {
  23040. name: "M A C R O",
  23041. height: math.unit(300, "miles")
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23047. {
  23048. side: {
  23049. height: math.unit(15.6, "meters"),
  23050. weight: math.unit(700000, "kg"),
  23051. name: "Side",
  23052. image: {
  23053. source: "./media/characters/bunsen/side.svg",
  23054. extra: 1644 / 358
  23055. }
  23056. },
  23057. foot: {
  23058. height: math.unit(1.611 * 1644 / 358, "meter"),
  23059. name: "Foot",
  23060. image: {
  23061. source: "./media/characters/bunsen/foot.svg"
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Small",
  23068. height: math.unit(10, "feet")
  23069. },
  23070. {
  23071. name: "Normal",
  23072. height: math.unit(15.6, "meters"),
  23073. default: true
  23074. },
  23075. ]
  23076. ))
  23077. characterMakers.push(() => makeCharacter(
  23078. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23079. {
  23080. front: {
  23081. height: math.unit(4 + 11 / 12, "feet"),
  23082. weight: math.unit(140, "lb"),
  23083. name: "Front",
  23084. image: {
  23085. source: "./media/characters/sesh/front.svg",
  23086. extra: 3420 / 3231,
  23087. bottom: 72 / 3949.5
  23088. }
  23089. },
  23090. },
  23091. [
  23092. {
  23093. name: "Normal",
  23094. height: math.unit(4 + 11 / 12, "feet")
  23095. },
  23096. {
  23097. name: "Grown",
  23098. height: math.unit(15, "feet"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Macro",
  23103. height: math.unit(1500, "feet")
  23104. },
  23105. {
  23106. name: "Megamacro",
  23107. height: math.unit(30, "miles")
  23108. },
  23109. {
  23110. name: "Continental",
  23111. height: math.unit(3000, "miles")
  23112. },
  23113. {
  23114. name: "Gravity Mass",
  23115. height: math.unit(300000, "miles")
  23116. },
  23117. {
  23118. name: "Planet Buster",
  23119. height: math.unit(30000000, "miles")
  23120. },
  23121. {
  23122. name: "Big",
  23123. height: math.unit(3000000000, "miles")
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23129. {
  23130. front: {
  23131. height: math.unit(9, "feet"),
  23132. weight: math.unit(350, "lb"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/pepper/front.svg",
  23136. extra: 1448 / 1312,
  23137. bottom: 9.4 / 1457.88
  23138. }
  23139. },
  23140. back: {
  23141. height: math.unit(9, "feet"),
  23142. weight: math.unit(350, "lb"),
  23143. name: "Back",
  23144. image: {
  23145. source: "./media/characters/pepper/back.svg",
  23146. extra: 1423 / 1300,
  23147. bottom: 4.6 / 1429
  23148. }
  23149. },
  23150. maw: {
  23151. height: math.unit(0.932, "feet"),
  23152. name: "Maw",
  23153. image: {
  23154. source: "./media/characters/pepper/maw.svg"
  23155. }
  23156. },
  23157. },
  23158. [
  23159. {
  23160. name: "Normal",
  23161. height: math.unit(9, "feet"),
  23162. default: true
  23163. },
  23164. ]
  23165. ))
  23166. characterMakers.push(() => makeCharacter(
  23167. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23168. {
  23169. front: {
  23170. height: math.unit(6, "feet"),
  23171. weight: math.unit(150, "lb"),
  23172. name: "Front",
  23173. image: {
  23174. source: "./media/characters/maelstrom/front.svg",
  23175. extra: 2100 / 1883,
  23176. bottom: 94 / 2196.7
  23177. }
  23178. },
  23179. },
  23180. [
  23181. {
  23182. name: "Less Kaiju",
  23183. height: math.unit(200, "feet")
  23184. },
  23185. {
  23186. name: "Kaiju",
  23187. height: math.unit(400, "feet"),
  23188. default: true
  23189. },
  23190. {
  23191. name: "Kaiju-er",
  23192. height: math.unit(600, "feet")
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23198. {
  23199. front: {
  23200. height: math.unit(6 + 5 / 12, "feet"),
  23201. weight: math.unit(180, "lb"),
  23202. name: "Front",
  23203. image: {
  23204. source: "./media/characters/lexir/front.svg",
  23205. extra: 180 / 172,
  23206. bottom: 12 / 192
  23207. }
  23208. },
  23209. back: {
  23210. height: math.unit(6 + 5 / 12, "feet"),
  23211. weight: math.unit(180, "lb"),
  23212. name: "Back",
  23213. image: {
  23214. source: "./media/characters/lexir/back.svg",
  23215. extra: 183.84 / 175.5,
  23216. bottom: 3.1 / 187
  23217. }
  23218. },
  23219. },
  23220. [
  23221. {
  23222. name: "Very Smal",
  23223. height: math.unit(1, "nm")
  23224. },
  23225. {
  23226. name: "Normal",
  23227. height: math.unit(6 + 5 / 12, "feet"),
  23228. default: true
  23229. },
  23230. {
  23231. name: "Macro",
  23232. height: math.unit(1, "mile")
  23233. },
  23234. {
  23235. name: "Megamacro",
  23236. height: math.unit(50, "miles")
  23237. },
  23238. ]
  23239. ))
  23240. characterMakers.push(() => makeCharacter(
  23241. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23242. {
  23243. front: {
  23244. height: math.unit(1.5, "meters"),
  23245. weight: math.unit(100, "lb"),
  23246. name: "Front",
  23247. image: {
  23248. source: "./media/characters/maksio/front.svg",
  23249. extra: 1549 / 1531,
  23250. bottom: 123.7 / 1674.5429
  23251. }
  23252. },
  23253. back: {
  23254. height: math.unit(1.5, "meters"),
  23255. weight: math.unit(100, "lb"),
  23256. name: "Back",
  23257. image: {
  23258. source: "./media/characters/maksio/back.svg",
  23259. extra: 1541 / 1509,
  23260. bottom: 97 / 1639
  23261. }
  23262. },
  23263. hand: {
  23264. height: math.unit(0.621, "feet"),
  23265. name: "Hand",
  23266. image: {
  23267. source: "./media/characters/maksio/hand.svg"
  23268. }
  23269. },
  23270. foot: {
  23271. height: math.unit(1.611, "feet"),
  23272. name: "Foot",
  23273. image: {
  23274. source: "./media/characters/maksio/foot.svg"
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Shrunken",
  23281. height: math.unit(10, "cm")
  23282. },
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(150, "cm"),
  23286. default: true
  23287. },
  23288. ]
  23289. ))
  23290. characterMakers.push(() => makeCharacter(
  23291. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23292. {
  23293. front: {
  23294. height: math.unit(100, "feet"),
  23295. name: "Front",
  23296. image: {
  23297. source: "./media/characters/erza-bear/front.svg",
  23298. extra: 2449 / 2390,
  23299. bottom: 46 / 2494
  23300. }
  23301. },
  23302. back: {
  23303. height: math.unit(100, "feet"),
  23304. name: "Back",
  23305. image: {
  23306. source: "./media/characters/erza-bear/back.svg",
  23307. extra: 2489 / 2430,
  23308. bottom: 85.4 / 2480
  23309. }
  23310. },
  23311. tail: {
  23312. height: math.unit(42, "feet"),
  23313. name: "Tail",
  23314. image: {
  23315. source: "./media/characters/erza-bear/tail.svg"
  23316. }
  23317. },
  23318. tongue: {
  23319. height: math.unit(8, "feet"),
  23320. name: "Tongue",
  23321. image: {
  23322. source: "./media/characters/erza-bear/tongue.svg"
  23323. }
  23324. },
  23325. dick: {
  23326. height: math.unit(10.5, "feet"),
  23327. name: "Dick",
  23328. image: {
  23329. source: "./media/characters/erza-bear/dick.svg"
  23330. }
  23331. },
  23332. dickVertical: {
  23333. height: math.unit(16.9, "feet"),
  23334. name: "Dick (Vertical)",
  23335. image: {
  23336. source: "./media/characters/erza-bear/dick-vertical.svg"
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Macro",
  23343. height: math.unit(100, "feet"),
  23344. default: true
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23350. {
  23351. front: {
  23352. height: math.unit(172, "cm"),
  23353. weight: math.unit(73, "kg"),
  23354. name: "Front",
  23355. image: {
  23356. source: "./media/characters/violet-flor/front.svg",
  23357. extra: 1530 / 1442,
  23358. bottom: 61.9 / 1588.8
  23359. }
  23360. },
  23361. back: {
  23362. height: math.unit(180, "cm"),
  23363. weight: math.unit(73, "kg"),
  23364. name: "Back",
  23365. image: {
  23366. source: "./media/characters/violet-flor/back.svg",
  23367. extra: 1692 / 1630,
  23368. bottom: 20 / 1712
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Normal",
  23375. height: math.unit(172, "cm"),
  23376. default: true
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23382. {
  23383. front: {
  23384. height: math.unit(6, "feet"),
  23385. weight: math.unit(220, "lb"),
  23386. name: "Front",
  23387. image: {
  23388. source: "./media/characters/lynn-rhea/front.svg",
  23389. extra: 310 / 273
  23390. }
  23391. },
  23392. back: {
  23393. height: math.unit(6, "feet"),
  23394. weight: math.unit(220, "lb"),
  23395. name: "Back",
  23396. image: {
  23397. source: "./media/characters/lynn-rhea/back.svg",
  23398. extra: 310 / 273
  23399. }
  23400. },
  23401. dicks: {
  23402. height: math.unit(0.9, "feet"),
  23403. name: "Dicks",
  23404. image: {
  23405. source: "./media/characters/lynn-rhea/dicks.svg"
  23406. }
  23407. },
  23408. slit: {
  23409. height: math.unit(0.4, "feet"),
  23410. name: "Slit",
  23411. image: {
  23412. source: "./media/characters/lynn-rhea/slit.svg"
  23413. }
  23414. },
  23415. },
  23416. [
  23417. {
  23418. name: "Micro",
  23419. height: math.unit(1, "inch")
  23420. },
  23421. {
  23422. name: "Macro",
  23423. height: math.unit(60, "feet"),
  23424. default: true
  23425. },
  23426. {
  23427. name: "Megamacro",
  23428. height: math.unit(2, "miles")
  23429. },
  23430. {
  23431. name: "Gigamacro",
  23432. height: math.unit(3, "earths")
  23433. },
  23434. {
  23435. name: "Galactic",
  23436. height: math.unit(0.8, "galaxies")
  23437. },
  23438. ]
  23439. ))
  23440. characterMakers.push(() => makeCharacter(
  23441. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23442. {
  23443. front: {
  23444. height: math.unit(1600, "feet"),
  23445. weight: math.unit(85758785169, "kg"),
  23446. name: "Front",
  23447. image: {
  23448. source: "./media/characters/valathos/front.svg",
  23449. extra: 1451 / 1339
  23450. }
  23451. },
  23452. },
  23453. [
  23454. {
  23455. name: "Macro",
  23456. height: math.unit(1600, "feet"),
  23457. default: true
  23458. },
  23459. ]
  23460. ))
  23461. characterMakers.push(() => makeCharacter(
  23462. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23463. {
  23464. front: {
  23465. height: math.unit(7 + 5 / 12, "feet"),
  23466. weight: math.unit(300, "lb"),
  23467. name: "Front",
  23468. image: {
  23469. source: "./media/characters/azula/front.svg",
  23470. extra: 3208 / 2880,
  23471. bottom: 80.2 / 3277
  23472. }
  23473. },
  23474. back: {
  23475. height: math.unit(7 + 5 / 12, "feet"),
  23476. weight: math.unit(300, "lb"),
  23477. name: "Back",
  23478. image: {
  23479. source: "./media/characters/azula/back.svg",
  23480. extra: 3169 / 2822,
  23481. bottom: 150.6 / 3321
  23482. }
  23483. },
  23484. },
  23485. [
  23486. {
  23487. name: "Normal",
  23488. height: math.unit(7 + 5 / 12, "feet"),
  23489. default: true
  23490. },
  23491. {
  23492. name: "Big",
  23493. height: math.unit(20, "feet")
  23494. },
  23495. ]
  23496. ))
  23497. characterMakers.push(() => makeCharacter(
  23498. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23499. {
  23500. front: {
  23501. height: math.unit(5 + 1 / 12, "feet"),
  23502. weight: math.unit(110, "lb"),
  23503. name: "Front",
  23504. image: {
  23505. source: "./media/characters/rupert/front.svg",
  23506. extra: 1549 / 1495,
  23507. bottom: 54.2 / 1604.4
  23508. }
  23509. },
  23510. },
  23511. [
  23512. {
  23513. name: "Normal",
  23514. height: math.unit(5 + 1 / 12, "feet"),
  23515. default: true
  23516. },
  23517. ]
  23518. ))
  23519. characterMakers.push(() => makeCharacter(
  23520. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23521. {
  23522. front: {
  23523. height: math.unit(8 + 4 / 12, "feet"),
  23524. weight: math.unit(350, "lb"),
  23525. name: "Front",
  23526. image: {
  23527. source: "./media/characters/sheera-castellar/front.svg",
  23528. extra: 1957 / 1894,
  23529. bottom: 26.97 / 1975.017
  23530. }
  23531. },
  23532. side: {
  23533. height: math.unit(8 + 4 / 12, "feet"),
  23534. weight: math.unit(350, "lb"),
  23535. name: "Side",
  23536. image: {
  23537. source: "./media/characters/sheera-castellar/side.svg",
  23538. extra: 1957 / 1894
  23539. }
  23540. },
  23541. back: {
  23542. height: math.unit(8 + 4 / 12, "feet"),
  23543. weight: math.unit(350, "lb"),
  23544. name: "Back",
  23545. image: {
  23546. source: "./media/characters/sheera-castellar/back.svg",
  23547. extra: 1957 / 1894
  23548. }
  23549. },
  23550. angled: {
  23551. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23552. weight: math.unit(350, "lb"),
  23553. name: "Angled",
  23554. image: {
  23555. source: "./media/characters/sheera-castellar/angled.svg",
  23556. extra: 1807 / 1707,
  23557. bottom: 68 / 1875
  23558. }
  23559. },
  23560. genitals: {
  23561. height: math.unit(2.2, "feet"),
  23562. name: "Genitals",
  23563. image: {
  23564. source: "./media/characters/sheera-castellar/genitals.svg"
  23565. }
  23566. },
  23567. taur: {
  23568. height: math.unit(10 + 6/12, "feet"),
  23569. name: "Taur",
  23570. image: {
  23571. source: "./media/characters/sheera-castellar/taur.svg",
  23572. extra: 2017/1909,
  23573. bottom: 185/2202
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Normal",
  23580. height: math.unit(8 + 4 / 12, "feet")
  23581. },
  23582. {
  23583. name: "Macro",
  23584. height: math.unit(150, "feet"),
  23585. default: true
  23586. },
  23587. {
  23588. name: "Macro+",
  23589. height: math.unit(800, "feet")
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23595. {
  23596. front: {
  23597. height: math.unit(6, "feet"),
  23598. weight: math.unit(150, "lb"),
  23599. name: "Front",
  23600. image: {
  23601. source: "./media/characters/jaipur/front.svg",
  23602. extra: 3860 / 3731,
  23603. bottom: 287 / 4140
  23604. }
  23605. },
  23606. back: {
  23607. height: math.unit(6, "feet"),
  23608. weight: math.unit(150, "lb"),
  23609. name: "Back",
  23610. image: {
  23611. source: "./media/characters/jaipur/back.svg",
  23612. extra: 4060 / 3930,
  23613. bottom: 151 / 4200
  23614. }
  23615. },
  23616. },
  23617. [
  23618. {
  23619. name: "Normal",
  23620. height: math.unit(1.85, "meters"),
  23621. default: true
  23622. },
  23623. {
  23624. name: "Macro",
  23625. height: math.unit(150, "meters")
  23626. },
  23627. {
  23628. name: "Macro+",
  23629. height: math.unit(0.5, "miles")
  23630. },
  23631. {
  23632. name: "Macro++",
  23633. height: math.unit(2.5, "miles")
  23634. },
  23635. {
  23636. name: "Macro+++",
  23637. height: math.unit(12, "miles")
  23638. },
  23639. {
  23640. name: "Macro++++",
  23641. height: math.unit(120, "miles")
  23642. },
  23643. {
  23644. name: "Macro+++++",
  23645. height: math.unit(1200, "miles")
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(6, "feet"),
  23654. weight: math.unit(150, "lb"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/sheila-wolf/front.svg",
  23658. extra: 1931 / 1808,
  23659. bottom: 29.5 / 1960
  23660. }
  23661. },
  23662. dick: {
  23663. height: math.unit(1.464, "feet"),
  23664. name: "Dick",
  23665. image: {
  23666. source: "./media/characters/sheila-wolf/dick.svg"
  23667. }
  23668. },
  23669. muzzle: {
  23670. height: math.unit(0.513, "feet"),
  23671. name: "Muzzle",
  23672. image: {
  23673. source: "./media/characters/sheila-wolf/muzzle.svg"
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(70, "feet"),
  23681. default: true
  23682. },
  23683. ]
  23684. ))
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23687. {
  23688. front: {
  23689. height: math.unit(32, "meters"),
  23690. weight: math.unit(300000, "kg"),
  23691. name: "Front",
  23692. image: {
  23693. source: "./media/characters/almor/front.svg",
  23694. extra: 1408 / 1322,
  23695. bottom: 94.6 / 1506.5
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Macro",
  23702. height: math.unit(32, "meters"),
  23703. default: true
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(7, "feet"),
  23712. weight: math.unit(200, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/silver/front.svg",
  23716. extra: 472.1 / 450.5,
  23717. bottom: 26.5 / 499.424
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Normal",
  23724. height: math.unit(7, "feet"),
  23725. default: true
  23726. },
  23727. {
  23728. name: "Macro",
  23729. height: math.unit(800, "feet")
  23730. },
  23731. {
  23732. name: "Megamacro",
  23733. height: math.unit(250, "miles")
  23734. },
  23735. ]
  23736. ))
  23737. characterMakers.push(() => makeCharacter(
  23738. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23739. {
  23740. front: {
  23741. height: math.unit(6, "feet"),
  23742. weight: math.unit(150, "lb"),
  23743. name: "Front",
  23744. image: {
  23745. source: "./media/characters/pliskin/front.svg",
  23746. extra: 1469 / 1359,
  23747. bottom: 70 / 1540
  23748. }
  23749. },
  23750. },
  23751. [
  23752. {
  23753. name: "Micro",
  23754. height: math.unit(3, "inches")
  23755. },
  23756. {
  23757. name: "Normal",
  23758. height: math.unit(5 + 11 / 12, "feet"),
  23759. default: true
  23760. },
  23761. {
  23762. name: "Macro",
  23763. height: math.unit(120, "feet")
  23764. },
  23765. ]
  23766. ))
  23767. characterMakers.push(() => makeCharacter(
  23768. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23769. {
  23770. front: {
  23771. height: math.unit(6, "feet"),
  23772. weight: math.unit(150, "lb"),
  23773. name: "Front",
  23774. image: {
  23775. source: "./media/characters/sammy/front.svg",
  23776. extra: 1193 / 1089,
  23777. bottom: 30.5 / 1226
  23778. }
  23779. },
  23780. },
  23781. [
  23782. {
  23783. name: "Macro",
  23784. height: math.unit(1700, "feet"),
  23785. default: true
  23786. },
  23787. {
  23788. name: "Examacro",
  23789. height: math.unit(2.5e9, "lightyears")
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23795. {
  23796. front: {
  23797. height: math.unit(21, "meters"),
  23798. weight: math.unit(12, "tonnes"),
  23799. name: "Front",
  23800. image: {
  23801. source: "./media/characters/kuru/front.svg",
  23802. extra: 4301 / 3785,
  23803. bottom: 371.3 / 4691
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Macro",
  23810. height: math.unit(21, "meters"),
  23811. default: true
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23817. {
  23818. front: {
  23819. height: math.unit(23, "meters"),
  23820. weight: math.unit(12.2, "tonnes"),
  23821. name: "Front",
  23822. image: {
  23823. source: "./media/characters/rakka/front.svg",
  23824. extra: 4670 / 4169,
  23825. bottom: 301 / 4968.7
  23826. }
  23827. },
  23828. },
  23829. [
  23830. {
  23831. name: "Macro",
  23832. height: math.unit(23, "meters"),
  23833. default: true
  23834. },
  23835. ]
  23836. ))
  23837. characterMakers.push(() => makeCharacter(
  23838. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23839. {
  23840. front: {
  23841. height: math.unit(6, "feet"),
  23842. weight: math.unit(150, "lb"),
  23843. name: "Front",
  23844. image: {
  23845. source: "./media/characters/rhys-feline/front.svg",
  23846. extra: 2488 / 2308,
  23847. bottom: 35.67 / 2519.19
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Really Small",
  23854. height: math.unit(1, "nm")
  23855. },
  23856. {
  23857. name: "Micro",
  23858. height: math.unit(4, "inches")
  23859. },
  23860. {
  23861. name: "Normal",
  23862. height: math.unit(4 + 10 / 12, "feet"),
  23863. default: true
  23864. },
  23865. {
  23866. name: "Macro",
  23867. height: math.unit(100, "feet")
  23868. },
  23869. {
  23870. name: "Megamacto",
  23871. height: math.unit(50, "miles")
  23872. },
  23873. ]
  23874. ))
  23875. characterMakers.push(() => makeCharacter(
  23876. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23877. {
  23878. side: {
  23879. height: math.unit(30, "feet"),
  23880. weight: math.unit(35000, "kg"),
  23881. name: "Side",
  23882. image: {
  23883. source: "./media/characters/alydar/side.svg",
  23884. extra: 234 / 222,
  23885. bottom: 6.5 / 241
  23886. }
  23887. },
  23888. front: {
  23889. height: math.unit(30, "feet"),
  23890. weight: math.unit(35000, "kg"),
  23891. name: "Front",
  23892. image: {
  23893. source: "./media/characters/alydar/front.svg",
  23894. extra: 223.37 / 210.2,
  23895. bottom: 22.3 / 246.76
  23896. }
  23897. },
  23898. top: {
  23899. height: math.unit(64.54, "feet"),
  23900. weight: math.unit(35000, "kg"),
  23901. name: "Top",
  23902. image: {
  23903. source: "./media/characters/alydar/top.svg"
  23904. }
  23905. },
  23906. anthro: {
  23907. height: math.unit(30, "feet"),
  23908. weight: math.unit(9000, "kg"),
  23909. name: "Anthro",
  23910. image: {
  23911. source: "./media/characters/alydar/anthro.svg",
  23912. extra: 432 / 421,
  23913. bottom: 7.18 / 440
  23914. }
  23915. },
  23916. maw: {
  23917. height: math.unit(11.693, "feet"),
  23918. name: "Maw",
  23919. image: {
  23920. source: "./media/characters/alydar/maw.svg"
  23921. }
  23922. },
  23923. head: {
  23924. height: math.unit(11.693, "feet"),
  23925. name: "Head",
  23926. image: {
  23927. source: "./media/characters/alydar/head.svg"
  23928. }
  23929. },
  23930. headAlt: {
  23931. height: math.unit(12.861, "feet"),
  23932. name: "Head (Alt)",
  23933. image: {
  23934. source: "./media/characters/alydar/head-alt.svg"
  23935. }
  23936. },
  23937. wing: {
  23938. height: math.unit(20.712, "feet"),
  23939. name: "Wing",
  23940. image: {
  23941. source: "./media/characters/alydar/wing.svg"
  23942. }
  23943. },
  23944. wingFeather: {
  23945. height: math.unit(9.662, "feet"),
  23946. name: "Wing Feather",
  23947. image: {
  23948. source: "./media/characters/alydar/wing-feather.svg"
  23949. }
  23950. },
  23951. countourFeather: {
  23952. height: math.unit(4.154, "feet"),
  23953. name: "Contour Feather",
  23954. image: {
  23955. source: "./media/characters/alydar/contour-feather.svg"
  23956. }
  23957. },
  23958. },
  23959. [
  23960. {
  23961. name: "Diplomatic",
  23962. height: math.unit(13, "feet"),
  23963. default: true
  23964. },
  23965. {
  23966. name: "Small",
  23967. height: math.unit(30, "feet")
  23968. },
  23969. {
  23970. name: "Normal",
  23971. height: math.unit(95, "feet"),
  23972. default: true
  23973. },
  23974. {
  23975. name: "Large",
  23976. height: math.unit(285, "feet")
  23977. },
  23978. {
  23979. name: "Incomprehensible",
  23980. height: math.unit(450, "megameters")
  23981. },
  23982. ]
  23983. ))
  23984. characterMakers.push(() => makeCharacter(
  23985. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23986. {
  23987. side: {
  23988. height: math.unit(11, "feet"),
  23989. weight: math.unit(1750, "kg"),
  23990. name: "Side",
  23991. image: {
  23992. source: "./media/characters/selicia/side.svg",
  23993. extra: 440 / 396,
  23994. bottom: 24.8 / 465.979
  23995. }
  23996. },
  23997. maw: {
  23998. height: math.unit(4.665, "feet"),
  23999. name: "Maw",
  24000. image: {
  24001. source: "./media/characters/selicia/maw.svg"
  24002. }
  24003. },
  24004. },
  24005. [
  24006. {
  24007. name: "Normal",
  24008. height: math.unit(11, "feet"),
  24009. default: true
  24010. },
  24011. ]
  24012. ))
  24013. characterMakers.push(() => makeCharacter(
  24014. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24015. {
  24016. side: {
  24017. height: math.unit(2 + 6 / 12, "feet"),
  24018. weight: math.unit(30, "lb"),
  24019. name: "Side",
  24020. image: {
  24021. source: "./media/characters/layla/side.svg",
  24022. extra: 244 / 188,
  24023. bottom: 18.2 / 262.1
  24024. }
  24025. },
  24026. back: {
  24027. height: math.unit(2 + 6 / 12, "feet"),
  24028. weight: math.unit(30, "lb"),
  24029. name: "Back",
  24030. image: {
  24031. source: "./media/characters/layla/back.svg",
  24032. extra: 308 / 241.5,
  24033. bottom: 8.9 / 316.8
  24034. }
  24035. },
  24036. cumming: {
  24037. height: math.unit(2 + 6 / 12, "feet"),
  24038. weight: math.unit(30, "lb"),
  24039. name: "Cumming",
  24040. image: {
  24041. source: "./media/characters/layla/cumming.svg",
  24042. extra: 342 / 279,
  24043. bottom: 595 / 938
  24044. }
  24045. },
  24046. dickFlaccid: {
  24047. height: math.unit(2.595, "feet"),
  24048. name: "Flaccid Genitals",
  24049. image: {
  24050. source: "./media/characters/layla/dick-flaccid.svg"
  24051. }
  24052. },
  24053. dickErect: {
  24054. height: math.unit(2.359, "feet"),
  24055. name: "Erect Genitals",
  24056. image: {
  24057. source: "./media/characters/layla/dick-erect.svg"
  24058. }
  24059. },
  24060. dragon: {
  24061. height: math.unit(40, "feet"),
  24062. name: "Dragon",
  24063. image: {
  24064. source: "./media/characters/layla/dragon.svg",
  24065. extra: 610/535,
  24066. bottom: 367/977
  24067. }
  24068. },
  24069. taur: {
  24070. height: math.unit(30, "feet"),
  24071. name: "Taur",
  24072. image: {
  24073. source: "./media/characters/layla/taur.svg",
  24074. extra: 1268/1199,
  24075. bottom: 112/1380
  24076. }
  24077. },
  24078. },
  24079. [
  24080. {
  24081. name: "Micro",
  24082. height: math.unit(1, "inch")
  24083. },
  24084. {
  24085. name: "Small",
  24086. height: math.unit(1, "foot")
  24087. },
  24088. {
  24089. name: "Normal",
  24090. height: math.unit(2 + 6 / 12, "feet"),
  24091. default: true
  24092. },
  24093. {
  24094. name: "Macro",
  24095. height: math.unit(200, "feet")
  24096. },
  24097. {
  24098. name: "Megamacro",
  24099. height: math.unit(1000, "miles")
  24100. },
  24101. {
  24102. name: "Planetary",
  24103. height: math.unit(8000, "miles")
  24104. },
  24105. {
  24106. name: "True Layla",
  24107. height: math.unit(200000 * 7, "multiverses")
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24113. {
  24114. back: {
  24115. height: math.unit(10.5, "feet"),
  24116. weight: math.unit(800, "lb"),
  24117. name: "Back",
  24118. image: {
  24119. source: "./media/characters/knox/back.svg",
  24120. extra: 1486 / 1089,
  24121. bottom: 107 / 1601.4
  24122. }
  24123. },
  24124. side: {
  24125. height: math.unit(10.5, "feet"),
  24126. weight: math.unit(800, "lb"),
  24127. name: "Side",
  24128. image: {
  24129. source: "./media/characters/knox/side.svg",
  24130. extra: 244 / 218,
  24131. bottom: 14 / 260
  24132. }
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Compact",
  24138. height: math.unit(10.5, "feet"),
  24139. default: true
  24140. },
  24141. {
  24142. name: "Dynamax",
  24143. height: math.unit(210, "feet")
  24144. },
  24145. {
  24146. name: "Full Macro",
  24147. height: math.unit(850, "feet")
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24153. {
  24154. front: {
  24155. height: math.unit(28, "feet"),
  24156. weight: math.unit(10500, "lb"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/kayda/front.svg",
  24160. extra: 1536 / 1428,
  24161. bottom: 68.7 / 1603
  24162. }
  24163. },
  24164. back: {
  24165. height: math.unit(28, "feet"),
  24166. weight: math.unit(10500, "lb"),
  24167. name: "Back",
  24168. image: {
  24169. source: "./media/characters/kayda/back.svg",
  24170. extra: 1557 / 1464,
  24171. bottom: 39.5 / 1597.49
  24172. }
  24173. },
  24174. dick: {
  24175. height: math.unit(3.858, "feet"),
  24176. name: "Dick",
  24177. image: {
  24178. source: "./media/characters/kayda/dick.svg"
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Macro",
  24185. height: math.unit(28, "feet"),
  24186. default: true
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24192. {
  24193. front: {
  24194. height: math.unit(10 + 11 / 12, "feet"),
  24195. weight: math.unit(1400, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/brian/front.svg",
  24199. extra: 737 / 692,
  24200. bottom: 55.4 / 785
  24201. }
  24202. },
  24203. },
  24204. [
  24205. {
  24206. name: "Normal",
  24207. height: math.unit(10 + 11 / 12, "feet"),
  24208. default: true
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24214. {
  24215. front: {
  24216. height: math.unit(5 + 8 / 12, "feet"),
  24217. weight: math.unit(140, "lb"),
  24218. name: "Front",
  24219. image: {
  24220. source: "./media/characters/khemri/front.svg",
  24221. extra: 4780 / 4059,
  24222. bottom: 80.1 / 4859.25
  24223. }
  24224. },
  24225. },
  24226. [
  24227. {
  24228. name: "Micro",
  24229. height: math.unit(6, "inches")
  24230. },
  24231. {
  24232. name: "Normal",
  24233. height: math.unit(5 + 8 / 12, "feet"),
  24234. default: true
  24235. },
  24236. ]
  24237. ))
  24238. characterMakers.push(() => makeCharacter(
  24239. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24240. {
  24241. front: {
  24242. height: math.unit(13, "feet"),
  24243. weight: math.unit(1700, "lb"),
  24244. name: "Front",
  24245. image: {
  24246. source: "./media/characters/felix-braveheart/front.svg",
  24247. extra: 1222 / 1157,
  24248. bottom: 53.2 / 1280
  24249. }
  24250. },
  24251. back: {
  24252. height: math.unit(13, "feet"),
  24253. weight: math.unit(1700, "lb"),
  24254. name: "Back",
  24255. image: {
  24256. source: "./media/characters/felix-braveheart/back.svg",
  24257. extra: 1277 / 1203,
  24258. bottom: 50.2 / 1327
  24259. }
  24260. },
  24261. feral: {
  24262. height: math.unit(6, "feet"),
  24263. weight: math.unit(400, "lb"),
  24264. name: "Feral",
  24265. image: {
  24266. source: "./media/characters/felix-braveheart/feral.svg",
  24267. extra: 682 / 625,
  24268. bottom: 6.9 / 688
  24269. }
  24270. },
  24271. },
  24272. [
  24273. {
  24274. name: "Normal",
  24275. height: math.unit(13, "feet"),
  24276. default: true
  24277. },
  24278. ]
  24279. ))
  24280. characterMakers.push(() => makeCharacter(
  24281. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24282. {
  24283. side: {
  24284. height: math.unit(5 + 11 / 12, "feet"),
  24285. weight: math.unit(1400, "lb"),
  24286. name: "Side",
  24287. image: {
  24288. source: "./media/characters/shadow-blade/side.svg",
  24289. extra: 1726 / 1267,
  24290. bottom: 58.4 / 1785
  24291. }
  24292. },
  24293. },
  24294. [
  24295. {
  24296. name: "Normal",
  24297. height: math.unit(5 + 11 / 12, "feet"),
  24298. default: true
  24299. },
  24300. ]
  24301. ))
  24302. characterMakers.push(() => makeCharacter(
  24303. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24304. {
  24305. front: {
  24306. height: math.unit(1 + 6 / 12, "feet"),
  24307. weight: math.unit(25, "lb"),
  24308. name: "Front",
  24309. image: {
  24310. source: "./media/characters/karla-halldor/front.svg",
  24311. extra: 1459 / 1383,
  24312. bottom: 12 / 1472
  24313. }
  24314. },
  24315. },
  24316. [
  24317. {
  24318. name: "Normal",
  24319. height: math.unit(1 + 6 / 12, "feet"),
  24320. default: true
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24326. {
  24327. front: {
  24328. height: math.unit(6 + 2 / 12, "feet"),
  24329. weight: math.unit(160, "lb"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/ariam/front.svg",
  24333. extra: 1073/976,
  24334. bottom: 52/1125
  24335. }
  24336. },
  24337. back: {
  24338. height: math.unit(6 + 2/12, "feet"),
  24339. weight: math.unit(160, "lb"),
  24340. name: "Back",
  24341. image: {
  24342. source: "./media/characters/ariam/back.svg",
  24343. extra: 1103/1023,
  24344. bottom: 9/1112
  24345. }
  24346. },
  24347. dressed: {
  24348. height: math.unit(6 + 2/12, "feet"),
  24349. weight: math.unit(160, "lb"),
  24350. name: "Dressed",
  24351. image: {
  24352. source: "./media/characters/ariam/dressed.svg",
  24353. extra: 1099/1009,
  24354. bottom: 25/1124
  24355. }
  24356. },
  24357. squatting: {
  24358. height: math.unit(4.1, "feet"),
  24359. weight: math.unit(160, "lb"),
  24360. name: "Squatting",
  24361. image: {
  24362. source: "./media/characters/ariam/squatting.svg",
  24363. extra: 2617 / 2112,
  24364. bottom: 61.2 / 2681,
  24365. }
  24366. },
  24367. },
  24368. [
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(6 + 2 / 12, "feet"),
  24372. default: true
  24373. },
  24374. {
  24375. name: "Normal+",
  24376. height: math.unit(4, "meters")
  24377. },
  24378. {
  24379. name: "Macro",
  24380. height: math.unit(50, "meters")
  24381. },
  24382. {
  24383. name: "Macro+",
  24384. height: math.unit(100, "meters")
  24385. },
  24386. {
  24387. name: "Megamacro",
  24388. height: math.unit(20, "km")
  24389. },
  24390. {
  24391. name: "Caretaker",
  24392. height: math.unit(444, "megameters")
  24393. },
  24394. ]
  24395. ))
  24396. characterMakers.push(() => makeCharacter(
  24397. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24398. {
  24399. front: {
  24400. height: math.unit(1.67, "meters"),
  24401. weight: math.unit(140, "lb"),
  24402. name: "Front",
  24403. image: {
  24404. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24405. extra: 438 / 410,
  24406. bottom: 0.75 / 439
  24407. }
  24408. },
  24409. },
  24410. [
  24411. {
  24412. name: "Shrunken",
  24413. height: math.unit(7.6, "cm")
  24414. },
  24415. {
  24416. name: "Human Scale",
  24417. height: math.unit(1.67, "meters")
  24418. },
  24419. {
  24420. name: "Wolxi Scale",
  24421. height: math.unit(36.7, "meters"),
  24422. default: true
  24423. },
  24424. ]
  24425. ))
  24426. characterMakers.push(() => makeCharacter(
  24427. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24428. {
  24429. front: {
  24430. height: math.unit(1.73, "meters"),
  24431. weight: math.unit(240, "lb"),
  24432. name: "Front",
  24433. image: {
  24434. source: "./media/characters/izue-two-mothers/front.svg",
  24435. extra: 469 / 437,
  24436. bottom: 1.24 / 470.6
  24437. }
  24438. },
  24439. },
  24440. [
  24441. {
  24442. name: "Shrunken",
  24443. height: math.unit(7.86, "cm")
  24444. },
  24445. {
  24446. name: "Human Scale",
  24447. height: math.unit(1.73, "meters")
  24448. },
  24449. {
  24450. name: "Wolxi Scale",
  24451. height: math.unit(38, "meters"),
  24452. default: true
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24458. {
  24459. front: {
  24460. height: math.unit(1.55, "meters"),
  24461. weight: math.unit(120, "lb"),
  24462. name: "Front",
  24463. image: {
  24464. source: "./media/characters/teeku-love-shack/front.svg",
  24465. extra: 387 / 362,
  24466. bottom: 1.51 / 388
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Shrunken",
  24473. height: math.unit(7, "cm")
  24474. },
  24475. {
  24476. name: "Human Scale",
  24477. height: math.unit(1.55, "meters")
  24478. },
  24479. {
  24480. name: "Wolxi Scale",
  24481. height: math.unit(34.1, "meters"),
  24482. default: true
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(1.83, "meters"),
  24491. weight: math.unit(135, "lb"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/dejma-the-red/front.svg",
  24495. extra: 480 / 458,
  24496. bottom: 1.8 / 482
  24497. }
  24498. },
  24499. },
  24500. [
  24501. {
  24502. name: "Shrunken",
  24503. height: math.unit(8.3, "cm")
  24504. },
  24505. {
  24506. name: "Human Scale",
  24507. height: math.unit(1.83, "meters")
  24508. },
  24509. {
  24510. name: "Wolxi Scale",
  24511. height: math.unit(40, "meters"),
  24512. default: true
  24513. },
  24514. ]
  24515. ))
  24516. characterMakers.push(() => makeCharacter(
  24517. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24518. {
  24519. front: {
  24520. height: math.unit(1.78, "meters"),
  24521. weight: math.unit(65, "kg"),
  24522. name: "Front",
  24523. image: {
  24524. source: "./media/characters/aki/front.svg",
  24525. extra: 452 / 415
  24526. }
  24527. },
  24528. frontNsfw: {
  24529. height: math.unit(1.78, "meters"),
  24530. weight: math.unit(65, "kg"),
  24531. name: "Front (NSFW)",
  24532. image: {
  24533. source: "./media/characters/aki/front-nsfw.svg",
  24534. extra: 452 / 415
  24535. }
  24536. },
  24537. back: {
  24538. height: math.unit(1.78, "meters"),
  24539. weight: math.unit(65, "kg"),
  24540. name: "Back",
  24541. image: {
  24542. source: "./media/characters/aki/back.svg",
  24543. extra: 452 / 415
  24544. }
  24545. },
  24546. rump: {
  24547. height: math.unit(2.05, "feet"),
  24548. name: "Rump",
  24549. image: {
  24550. source: "./media/characters/aki/rump.svg"
  24551. }
  24552. },
  24553. dick: {
  24554. height: math.unit(0.95, "feet"),
  24555. name: "Dick",
  24556. image: {
  24557. source: "./media/characters/aki/dick.svg"
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Micro",
  24564. height: math.unit(15, "cm")
  24565. },
  24566. {
  24567. name: "Normal",
  24568. height: math.unit(178, "cm"),
  24569. default: true
  24570. },
  24571. {
  24572. name: "Macro",
  24573. height: math.unit(214, "m")
  24574. },
  24575. {
  24576. name: "Macro+",
  24577. height: math.unit(534, "m")
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24583. {
  24584. front: {
  24585. height: math.unit(5 + 5 / 12, "feet"),
  24586. weight: math.unit(120, "lb"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/ari/front.svg",
  24590. extra: 714.5 / 682,
  24591. bottom: 8 / 722.5
  24592. }
  24593. },
  24594. },
  24595. [
  24596. {
  24597. name: "Normal",
  24598. height: math.unit(5 + 5 / 12, "feet")
  24599. },
  24600. {
  24601. name: "Macro",
  24602. height: math.unit(100, "feet"),
  24603. default: true
  24604. },
  24605. {
  24606. name: "Megamacro",
  24607. height: math.unit(100, "miles")
  24608. },
  24609. {
  24610. name: "Gigamacro",
  24611. height: math.unit(80000, "miles")
  24612. },
  24613. ]
  24614. ))
  24615. characterMakers.push(() => makeCharacter(
  24616. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24617. {
  24618. side: {
  24619. height: math.unit(9, "feet"),
  24620. weight: math.unit(400, "kg"),
  24621. name: "Side",
  24622. image: {
  24623. source: "./media/characters/bolt/side.svg",
  24624. extra: 1126 / 896,
  24625. bottom: 60 / 1187.3,
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Micro",
  24632. height: math.unit(5, "inches")
  24633. },
  24634. {
  24635. name: "Normal",
  24636. height: math.unit(9, "feet"),
  24637. default: true
  24638. },
  24639. {
  24640. name: "Macro",
  24641. height: math.unit(700, "feet")
  24642. },
  24643. {
  24644. name: "Max Size",
  24645. height: math.unit(1.52e22, "yottameters")
  24646. },
  24647. ]
  24648. ))
  24649. characterMakers.push(() => makeCharacter(
  24650. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24651. {
  24652. front: {
  24653. height: math.unit(4.53, "meters"),
  24654. weight: math.unit(3, "tons"),
  24655. name: "Front",
  24656. image: {
  24657. source: "./media/characters/draekon-sylviar/front.svg",
  24658. extra: 1228 / 1068,
  24659. bottom: 41 / 1270
  24660. }
  24661. },
  24662. tail: {
  24663. height: math.unit(1.772, "meter"),
  24664. name: "Tail",
  24665. image: {
  24666. source: "./media/characters/draekon-sylviar/tail.svg"
  24667. }
  24668. },
  24669. head: {
  24670. height: math.unit(1.331, "meter"),
  24671. name: "Head",
  24672. image: {
  24673. source: "./media/characters/draekon-sylviar/head.svg"
  24674. }
  24675. },
  24676. hand: {
  24677. height: math.unit(0.564, "meter"),
  24678. name: "Hand",
  24679. image: {
  24680. source: "./media/characters/draekon-sylviar/hand.svg"
  24681. }
  24682. },
  24683. foot: {
  24684. height: math.unit(0.621, "meter"),
  24685. name: "Foot",
  24686. image: {
  24687. source: "./media/characters/draekon-sylviar/foot.svg",
  24688. bottom: 32 / 324
  24689. }
  24690. },
  24691. dick: {
  24692. height: math.unit(61, "cm"),
  24693. name: "Dick",
  24694. image: {
  24695. source: "./media/characters/draekon-sylviar/dick.svg"
  24696. }
  24697. },
  24698. dickseparated: {
  24699. height: math.unit(61, "cm"),
  24700. name: "Dick-separated",
  24701. image: {
  24702. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24703. }
  24704. },
  24705. },
  24706. [
  24707. {
  24708. name: "Small",
  24709. height: math.unit(4.53 / 2, "meters"),
  24710. default: true
  24711. },
  24712. {
  24713. name: "Normal",
  24714. height: math.unit(4.53, "meters"),
  24715. default: true
  24716. },
  24717. {
  24718. name: "Large",
  24719. height: math.unit(4.53 * 2, "meters"),
  24720. },
  24721. ]
  24722. ))
  24723. characterMakers.push(() => makeCharacter(
  24724. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24725. {
  24726. front: {
  24727. height: math.unit(6 + 2 / 12, "feet"),
  24728. weight: math.unit(180, "lb"),
  24729. name: "Front",
  24730. image: {
  24731. source: "./media/characters/brawler/front.svg",
  24732. extra: 3301 / 3027,
  24733. bottom: 138 / 3439
  24734. }
  24735. },
  24736. },
  24737. [
  24738. {
  24739. name: "Normal",
  24740. height: math.unit(6 + 2 / 12, "feet"),
  24741. default: true
  24742. },
  24743. ]
  24744. ))
  24745. characterMakers.push(() => makeCharacter(
  24746. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24747. {
  24748. front: {
  24749. height: math.unit(11, "feet"),
  24750. weight: math.unit(1000, "lb"),
  24751. name: "Front",
  24752. image: {
  24753. source: "./media/characters/alex/front.svg",
  24754. bottom: 44.5 / 620
  24755. }
  24756. },
  24757. },
  24758. [
  24759. {
  24760. name: "Micro",
  24761. height: math.unit(5, "inches")
  24762. },
  24763. {
  24764. name: "Normal",
  24765. height: math.unit(11, "feet"),
  24766. default: true
  24767. },
  24768. {
  24769. name: "Macro",
  24770. height: math.unit(9.5e9, "feet")
  24771. },
  24772. {
  24773. name: "Max Size",
  24774. height: math.unit(1.4e283, "yottameters")
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24780. {
  24781. female: {
  24782. height: math.unit(29.9, "m"),
  24783. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24784. name: "Female",
  24785. image: {
  24786. source: "./media/characters/zenari/female.svg",
  24787. extra: 3281.6 / 3217,
  24788. bottom: 72.2 / 3353
  24789. }
  24790. },
  24791. male: {
  24792. height: math.unit(27.7, "m"),
  24793. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24794. name: "Male",
  24795. image: {
  24796. source: "./media/characters/zenari/male.svg",
  24797. extra: 3008 / 2991,
  24798. bottom: 54.6 / 3069
  24799. }
  24800. },
  24801. },
  24802. [
  24803. {
  24804. name: "Macro",
  24805. height: math.unit(29.7, "meters"),
  24806. default: true
  24807. },
  24808. ]
  24809. ))
  24810. characterMakers.push(() => makeCharacter(
  24811. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24812. {
  24813. female: {
  24814. height: math.unit(23.8, "m"),
  24815. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24816. name: "Female",
  24817. image: {
  24818. source: "./media/characters/mactarian/female.svg",
  24819. extra: 2662 / 2569,
  24820. bottom: 73 / 2736
  24821. }
  24822. },
  24823. male: {
  24824. height: math.unit(23.8, "m"),
  24825. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24826. name: "Male",
  24827. image: {
  24828. source: "./media/characters/mactarian/male.svg",
  24829. extra: 2673 / 2600,
  24830. bottom: 76 / 2750
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Macro",
  24837. height: math.unit(23.8, "meters"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24844. {
  24845. female: {
  24846. height: math.unit(19.3, "m"),
  24847. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24848. name: "Female",
  24849. image: {
  24850. source: "./media/characters/umok/female.svg",
  24851. extra: 2186 / 2078,
  24852. bottom: 87 / 2277
  24853. }
  24854. },
  24855. male: {
  24856. height: math.unit(19.5, "m"),
  24857. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24858. name: "Male",
  24859. image: {
  24860. source: "./media/characters/umok/male.svg",
  24861. extra: 2233 / 2140,
  24862. bottom: 24.4 / 2258
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Macro",
  24869. height: math.unit(19.3, "meters"),
  24870. default: true
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24876. {
  24877. female: {
  24878. height: math.unit(26.15, "m"),
  24879. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24880. name: "Female",
  24881. image: {
  24882. source: "./media/characters/joraxian/female.svg",
  24883. extra: 2912 / 2824,
  24884. bottom: 36 / 2956
  24885. }
  24886. },
  24887. male: {
  24888. height: math.unit(25.4, "m"),
  24889. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24890. name: "Male",
  24891. image: {
  24892. source: "./media/characters/joraxian/male.svg",
  24893. extra: 2877 / 2721,
  24894. bottom: 82 / 2967
  24895. }
  24896. },
  24897. },
  24898. [
  24899. {
  24900. name: "Macro",
  24901. height: math.unit(26.15, "meters"),
  24902. default: true
  24903. },
  24904. ]
  24905. ))
  24906. characterMakers.push(() => makeCharacter(
  24907. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24908. {
  24909. female: {
  24910. height: math.unit(21.6, "m"),
  24911. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24912. name: "Female",
  24913. image: {
  24914. source: "./media/characters/sthara/female.svg",
  24915. extra: 2516 / 2347,
  24916. bottom: 21.5 / 2537
  24917. }
  24918. },
  24919. male: {
  24920. height: math.unit(24, "m"),
  24921. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24922. name: "Male",
  24923. image: {
  24924. source: "./media/characters/sthara/male.svg",
  24925. extra: 2732 / 2607,
  24926. bottom: 23 / 2732
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Macro",
  24933. height: math.unit(21.6, "meters"),
  24934. default: true
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(6 + 4 / 12, "feet"),
  24943. weight: math.unit(175, "lb"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/luka-bryzant/front.svg",
  24947. extra: 311 / 289,
  24948. bottom: 4 / 315
  24949. }
  24950. },
  24951. back: {
  24952. height: math.unit(6 + 4 / 12, "feet"),
  24953. weight: math.unit(175, "lb"),
  24954. name: "Back",
  24955. image: {
  24956. source: "./media/characters/luka-bryzant/back.svg",
  24957. extra: 311 / 289,
  24958. bottom: 3.8 / 313.7
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "Micro",
  24965. height: math.unit(10, "inches")
  24966. },
  24967. {
  24968. name: "Normal",
  24969. height: math.unit(6 + 4 / 12, "feet"),
  24970. default: true
  24971. },
  24972. {
  24973. name: "Large",
  24974. height: math.unit(12, "feet")
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24980. {
  24981. front: {
  24982. height: math.unit(5 + 7 / 12, "feet"),
  24983. weight: math.unit(185, "lb"),
  24984. name: "Front",
  24985. image: {
  24986. source: "./media/characters/aman-aquila/front.svg",
  24987. extra: 1013 / 976,
  24988. bottom: 45.6 / 1057
  24989. }
  24990. },
  24991. side: {
  24992. height: math.unit(5 + 7 / 12, "feet"),
  24993. weight: math.unit(185, "lb"),
  24994. name: "Side",
  24995. image: {
  24996. source: "./media/characters/aman-aquila/side.svg",
  24997. extra: 1054 / 1011,
  24998. bottom: 15 / 1070
  24999. }
  25000. },
  25001. back: {
  25002. height: math.unit(5 + 7 / 12, "feet"),
  25003. weight: math.unit(185, "lb"),
  25004. name: "Back",
  25005. image: {
  25006. source: "./media/characters/aman-aquila/back.svg",
  25007. extra: 1026 / 970,
  25008. bottom: 12 / 1039
  25009. }
  25010. },
  25011. head: {
  25012. height: math.unit(1.211, "feet"),
  25013. name: "Head",
  25014. image: {
  25015. source: "./media/characters/aman-aquila/head.svg",
  25016. }
  25017. },
  25018. },
  25019. [
  25020. {
  25021. name: "Minimicro",
  25022. height: math.unit(0.057, "inches")
  25023. },
  25024. {
  25025. name: "Micro",
  25026. height: math.unit(7, "inches")
  25027. },
  25028. {
  25029. name: "Mini",
  25030. height: math.unit(3 + 7 / 12, "feet")
  25031. },
  25032. {
  25033. name: "Normal",
  25034. height: math.unit(5 + 7 / 12, "feet"),
  25035. default: true
  25036. },
  25037. {
  25038. name: "Macro",
  25039. height: math.unit(157 + 7 / 12, "feet")
  25040. },
  25041. {
  25042. name: "Megamacro",
  25043. height: math.unit(1557 + 7 / 12, "feet")
  25044. },
  25045. {
  25046. name: "Gigamacro",
  25047. height: math.unit(15557 + 7 / 12, "feet")
  25048. },
  25049. ]
  25050. ))
  25051. characterMakers.push(() => makeCharacter(
  25052. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25053. {
  25054. front: {
  25055. height: math.unit(3 + 2 / 12, "inches"),
  25056. weight: math.unit(0.3, "ounces"),
  25057. name: "Front",
  25058. image: {
  25059. source: "./media/characters/hiphae/front.svg",
  25060. extra: 1931 / 1683,
  25061. bottom: 24 / 1955
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Normal",
  25068. height: math.unit(3 + 1 / 2, "inches"),
  25069. default: true
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(5 + 10 / 12, "feet"),
  25078. weight: math.unit(165, "lb"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/nicky/front.svg",
  25082. extra: 3144 / 2886,
  25083. bottom: 45.6 / 3192
  25084. }
  25085. },
  25086. back: {
  25087. height: math.unit(5 + 10 / 12, "feet"),
  25088. weight: math.unit(165, "lb"),
  25089. name: "Back",
  25090. image: {
  25091. source: "./media/characters/nicky/back.svg",
  25092. extra: 3055 / 2804,
  25093. bottom: 28.4 / 3087
  25094. }
  25095. },
  25096. frontclothed: {
  25097. height: math.unit(5 + 10 / 12, "feet"),
  25098. weight: math.unit(165, "lb"),
  25099. name: "Front-clothed",
  25100. image: {
  25101. source: "./media/characters/nicky/front-clothed.svg",
  25102. extra: 3184.9 / 2926.9,
  25103. bottom: 86.5 / 3239.9
  25104. }
  25105. },
  25106. foot: {
  25107. height: math.unit(1.16, "feet"),
  25108. name: "Foot",
  25109. image: {
  25110. source: "./media/characters/nicky/foot.svg"
  25111. }
  25112. },
  25113. feet: {
  25114. height: math.unit(1.34, "feet"),
  25115. name: "Feet",
  25116. image: {
  25117. source: "./media/characters/nicky/feet.svg"
  25118. }
  25119. },
  25120. maw: {
  25121. height: math.unit(0.9, "feet"),
  25122. name: "Maw",
  25123. image: {
  25124. source: "./media/characters/nicky/maw.svg"
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(5 + 10 / 12, "feet"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Macro",
  25136. height: math.unit(60, "feet")
  25137. },
  25138. {
  25139. name: "Megamacro",
  25140. height: math.unit(1, "mile")
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25146. {
  25147. side: {
  25148. height: math.unit(10, "feet"),
  25149. weight: math.unit(600, "lb"),
  25150. name: "Side",
  25151. image: {
  25152. source: "./media/characters/blair/side.svg",
  25153. bottom: 16.6 / 475,
  25154. extra: 458 / 431
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Micro",
  25161. height: math.unit(8, "inches")
  25162. },
  25163. {
  25164. name: "Normal",
  25165. height: math.unit(10, "feet"),
  25166. default: true
  25167. },
  25168. {
  25169. name: "Macro",
  25170. height: math.unit(180, "feet")
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(5 + 4 / 12, "feet"),
  25179. weight: math.unit(125, "lb"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/fisher/front.svg",
  25183. extra: 444 / 390,
  25184. bottom: 2 / 444.8
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Micro",
  25191. height: math.unit(4, "inches")
  25192. },
  25193. {
  25194. name: "Normal",
  25195. height: math.unit(5 + 4 / 12, "feet"),
  25196. default: true
  25197. },
  25198. {
  25199. name: "Macro",
  25200. height: math.unit(100, "feet")
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25206. {
  25207. front: {
  25208. height: math.unit(6.71, "feet"),
  25209. weight: math.unit(200, "lb"),
  25210. capacity: math.unit(1000000, "people"),
  25211. name: "Front",
  25212. image: {
  25213. source: "./media/characters/gliss/front.svg",
  25214. extra: 2347 / 2231,
  25215. bottom: 113 / 2462
  25216. }
  25217. },
  25218. hammerspaceSize: {
  25219. height: math.unit(6.71 * 717, "feet"),
  25220. weight: math.unit(200, "lb"),
  25221. capacity: math.unit(1000000, "people"),
  25222. name: "Hammerspace Size",
  25223. image: {
  25224. source: "./media/characters/gliss/front.svg",
  25225. extra: 2347 / 2231,
  25226. bottom: 113 / 2462
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Normal",
  25233. height: math.unit(6.71, "feet"),
  25234. default: true
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25240. {
  25241. side: {
  25242. height: math.unit(1.44, "m"),
  25243. weight: math.unit(80, "kg"),
  25244. name: "Side",
  25245. image: {
  25246. source: "./media/characters/dune-anderson/side.svg",
  25247. bottom: 49 / 1426
  25248. }
  25249. },
  25250. },
  25251. [
  25252. {
  25253. name: "Wolf-sized",
  25254. height: math.unit(1.44, "meters")
  25255. },
  25256. {
  25257. name: "Normal",
  25258. height: math.unit(5.05, "meters"),
  25259. default: true
  25260. },
  25261. {
  25262. name: "Big",
  25263. height: math.unit(14.4, "meters")
  25264. },
  25265. {
  25266. name: "Huge",
  25267. height: math.unit(144, "meters")
  25268. },
  25269. ]
  25270. ))
  25271. characterMakers.push(() => makeCharacter(
  25272. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25273. {
  25274. front: {
  25275. height: math.unit(7, "feet"),
  25276. weight: math.unit(425, "lb"),
  25277. name: "Front",
  25278. image: {
  25279. source: "./media/characters/hind/front.svg",
  25280. extra: 2091 / 1860,
  25281. bottom: 129 / 2220
  25282. }
  25283. },
  25284. back: {
  25285. height: math.unit(7, "feet"),
  25286. weight: math.unit(425, "lb"),
  25287. name: "Back",
  25288. image: {
  25289. source: "./media/characters/hind/back.svg",
  25290. extra: 2091 / 1860,
  25291. bottom: 24.6 / 2309
  25292. }
  25293. },
  25294. tail: {
  25295. height: math.unit(2.8, "feet"),
  25296. name: "Tail",
  25297. image: {
  25298. source: "./media/characters/hind/tail.svg"
  25299. }
  25300. },
  25301. head: {
  25302. height: math.unit(2.55, "feet"),
  25303. name: "Head",
  25304. image: {
  25305. source: "./media/characters/hind/head.svg"
  25306. }
  25307. },
  25308. },
  25309. [
  25310. {
  25311. name: "XS",
  25312. height: math.unit(0.7, "feet")
  25313. },
  25314. {
  25315. name: "Normal",
  25316. height: math.unit(7, "feet"),
  25317. default: true
  25318. },
  25319. {
  25320. name: "XL",
  25321. height: math.unit(70, "feet")
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25327. {
  25328. front: {
  25329. height: math.unit(2.1, "meters"),
  25330. weight: math.unit(150, "lb"),
  25331. name: "Front",
  25332. image: {
  25333. source: "./media/characters/tharquench-sizestealer/front.svg",
  25334. extra: 1605/1470,
  25335. bottom: 36/1641
  25336. }
  25337. },
  25338. frontAlt: {
  25339. height: math.unit(2.1, "meters"),
  25340. weight: math.unit(150, "lb"),
  25341. name: "Front (Alt)",
  25342. image: {
  25343. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25344. extra: 2318 / 2063,
  25345. bottom: 93.4 / 2410
  25346. }
  25347. },
  25348. },
  25349. [
  25350. {
  25351. name: "Nano",
  25352. height: math.unit(1, "mm")
  25353. },
  25354. {
  25355. name: "Micro",
  25356. height: math.unit(1, "cm")
  25357. },
  25358. {
  25359. name: "Normal",
  25360. height: math.unit(2.1, "meters"),
  25361. default: true
  25362. },
  25363. ]
  25364. ))
  25365. characterMakers.push(() => makeCharacter(
  25366. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25367. {
  25368. front: {
  25369. height: math.unit(7 + 5 / 12, "feet"),
  25370. weight: math.unit(357, "lb"),
  25371. name: "Front",
  25372. image: {
  25373. source: "./media/characters/solex-draconov/front.svg",
  25374. extra: 1993 / 1865,
  25375. bottom: 117 / 2111
  25376. }
  25377. },
  25378. },
  25379. [
  25380. {
  25381. name: "Natural Height",
  25382. height: math.unit(7 + 5 / 12, "feet"),
  25383. default: true
  25384. },
  25385. {
  25386. name: "Macro",
  25387. height: math.unit(350, "feet")
  25388. },
  25389. {
  25390. name: "Macro+",
  25391. height: math.unit(1000, "feet")
  25392. },
  25393. {
  25394. name: "Megamacro",
  25395. height: math.unit(20, "km")
  25396. },
  25397. {
  25398. name: "Megamacro+",
  25399. height: math.unit(1000, "km")
  25400. },
  25401. {
  25402. name: "Gigamacro",
  25403. height: math.unit(2.5, "Gm")
  25404. },
  25405. {
  25406. name: "Teramacro",
  25407. height: math.unit(15, "Tm")
  25408. },
  25409. {
  25410. name: "Galactic",
  25411. height: math.unit(30, "Zm")
  25412. },
  25413. {
  25414. name: "Universal",
  25415. height: math.unit(21000, "Ym")
  25416. },
  25417. {
  25418. name: "Omniversal",
  25419. height: math.unit(9.861e50, "Ym")
  25420. },
  25421. {
  25422. name: "Existential",
  25423. height: math.unit(1e300, "meters")
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25429. {
  25430. side: {
  25431. height: math.unit(25, "feet"),
  25432. weight: math.unit(90000, "lb"),
  25433. name: "Side",
  25434. image: {
  25435. source: "./media/characters/mandarax/side.svg",
  25436. extra: 614 / 332,
  25437. bottom: 55 / 630
  25438. }
  25439. },
  25440. head: {
  25441. height: math.unit(11.4, "feet"),
  25442. name: "Head",
  25443. image: {
  25444. source: "./media/characters/mandarax/head.svg"
  25445. }
  25446. },
  25447. belly: {
  25448. height: math.unit(33, "feet"),
  25449. name: "Belly",
  25450. capacity: math.unit(500, "people"),
  25451. image: {
  25452. source: "./media/characters/mandarax/belly.svg"
  25453. }
  25454. },
  25455. dick: {
  25456. height: math.unit(8.46, "feet"),
  25457. name: "Dick",
  25458. image: {
  25459. source: "./media/characters/mandarax/dick.svg"
  25460. }
  25461. },
  25462. top: {
  25463. height: math.unit(28, "meters"),
  25464. name: "Top",
  25465. image: {
  25466. source: "./media/characters/mandarax/top.svg"
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Normal",
  25473. height: math.unit(25, "feet"),
  25474. default: true
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25480. {
  25481. front: {
  25482. height: math.unit(5, "feet"),
  25483. weight: math.unit(90, "lb"),
  25484. name: "Front",
  25485. image: {
  25486. source: "./media/characters/pixil/front.svg",
  25487. extra: 2000 / 1618,
  25488. bottom: 12.3 / 2011
  25489. }
  25490. },
  25491. },
  25492. [
  25493. {
  25494. name: "Normal",
  25495. height: math.unit(5, "feet"),
  25496. default: true
  25497. },
  25498. {
  25499. name: "Megamacro",
  25500. height: math.unit(10, "miles"),
  25501. },
  25502. ]
  25503. ))
  25504. characterMakers.push(() => makeCharacter(
  25505. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25506. {
  25507. front: {
  25508. height: math.unit(7 + 2 / 12, "feet"),
  25509. weight: math.unit(200, "lb"),
  25510. name: "Front",
  25511. image: {
  25512. source: "./media/characters/angel/front.svg",
  25513. extra: 1830 / 1737,
  25514. bottom: 22.6 / 1854,
  25515. }
  25516. },
  25517. },
  25518. [
  25519. {
  25520. name: "Normal",
  25521. height: math.unit(7 + 2 / 12, "feet"),
  25522. default: true
  25523. },
  25524. {
  25525. name: "Macro",
  25526. height: math.unit(1000, "feet")
  25527. },
  25528. {
  25529. name: "Megamacro",
  25530. height: math.unit(2, "miles")
  25531. },
  25532. {
  25533. name: "Gigamacro",
  25534. height: math.unit(20, "earths")
  25535. },
  25536. ]
  25537. ))
  25538. characterMakers.push(() => makeCharacter(
  25539. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25540. {
  25541. front: {
  25542. height: math.unit(5, "feet"),
  25543. weight: math.unit(180, "lb"),
  25544. name: "Front",
  25545. image: {
  25546. source: "./media/characters/mekana/front.svg",
  25547. extra: 1671 / 1605,
  25548. bottom: 3.5 / 1691
  25549. }
  25550. },
  25551. side: {
  25552. height: math.unit(5, "feet"),
  25553. weight: math.unit(180, "lb"),
  25554. name: "Side",
  25555. image: {
  25556. source: "./media/characters/mekana/side.svg",
  25557. extra: 1671 / 1605,
  25558. bottom: 3.5 / 1691
  25559. }
  25560. },
  25561. back: {
  25562. height: math.unit(5, "feet"),
  25563. weight: math.unit(180, "lb"),
  25564. name: "Back",
  25565. image: {
  25566. source: "./media/characters/mekana/back.svg",
  25567. extra: 1671 / 1605,
  25568. bottom: 3.5 / 1691
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Normal",
  25575. height: math.unit(5, "feet"),
  25576. default: true
  25577. },
  25578. ]
  25579. ))
  25580. characterMakers.push(() => makeCharacter(
  25581. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25582. {
  25583. front: {
  25584. height: math.unit(4 + 6 / 12, "feet"),
  25585. weight: math.unit(80, "lb"),
  25586. name: "Front",
  25587. image: {
  25588. source: "./media/characters/pixie/front.svg",
  25589. extra: 1924 / 1825,
  25590. bottom: 22.4 / 1946
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Normal",
  25597. height: math.unit(4 + 6 / 12, "feet"),
  25598. default: true
  25599. },
  25600. {
  25601. name: "Macro",
  25602. height: math.unit(40, "feet")
  25603. },
  25604. ]
  25605. ))
  25606. characterMakers.push(() => makeCharacter(
  25607. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25608. {
  25609. front: {
  25610. height: math.unit(2.1, "meters"),
  25611. weight: math.unit(200, "lb"),
  25612. name: "Front",
  25613. image: {
  25614. source: "./media/characters/the-lascivious/front.svg",
  25615. extra: 1 / 0.893,
  25616. bottom: 3.5 / 573.7
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Human Scale",
  25623. height: math.unit(2.1, "meters")
  25624. },
  25625. {
  25626. name: "Wolxi Scale",
  25627. height: math.unit(46.2, "m"),
  25628. default: true
  25629. },
  25630. {
  25631. name: "Boinker of Buildings",
  25632. height: math.unit(10, "km")
  25633. },
  25634. {
  25635. name: "Shagger of Skyscrapers",
  25636. height: math.unit(40, "km")
  25637. },
  25638. {
  25639. name: "Banger of Boroughs",
  25640. height: math.unit(4000, "km")
  25641. },
  25642. {
  25643. name: "Screwer of States",
  25644. height: math.unit(100000, "km")
  25645. },
  25646. {
  25647. name: "Pounder of Planets",
  25648. height: math.unit(2000000, "km")
  25649. },
  25650. ]
  25651. ))
  25652. characterMakers.push(() => makeCharacter(
  25653. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25654. {
  25655. front: {
  25656. height: math.unit(6, "feet"),
  25657. weight: math.unit(150, "lb"),
  25658. name: "Front",
  25659. image: {
  25660. source: "./media/characters/aj/front.svg",
  25661. extra: 2039 / 1562,
  25662. bottom: 40 / 2079
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Normal",
  25669. height: math.unit(11 + 6 / 12, "feet"),
  25670. default: true
  25671. },
  25672. {
  25673. name: "Megamacro",
  25674. height: math.unit(60, "megameters")
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25680. {
  25681. side: {
  25682. height: math.unit(31 + 8 / 12, "feet"),
  25683. weight: math.unit(75000, "kg"),
  25684. name: "Side",
  25685. image: {
  25686. source: "./media/characters/koros/side.svg",
  25687. extra: 1442 / 1297,
  25688. bottom: 122.7 / 1562
  25689. }
  25690. },
  25691. dicksKingsCrown: {
  25692. height: math.unit(6, "feet"),
  25693. name: "Dicks (King's Crown)",
  25694. image: {
  25695. source: "./media/characters/koros/dicks-kings-crown.svg"
  25696. }
  25697. },
  25698. dicksTailSet: {
  25699. height: math.unit(3, "feet"),
  25700. name: "Dicks (Tail Set)",
  25701. image: {
  25702. source: "./media/characters/koros/dicks-tail-set.svg"
  25703. }
  25704. },
  25705. dickCumming: {
  25706. height: math.unit(7.98, "feet"),
  25707. name: "Dick (Cumming)",
  25708. image: {
  25709. source: "./media/characters/koros/dick-cumming.svg"
  25710. }
  25711. },
  25712. dicksBack: {
  25713. height: math.unit(5.9, "feet"),
  25714. name: "Dicks (Back)",
  25715. image: {
  25716. source: "./media/characters/koros/dicks-back.svg"
  25717. }
  25718. },
  25719. dicksFront: {
  25720. height: math.unit(3.72, "feet"),
  25721. name: "Dicks (Front)",
  25722. image: {
  25723. source: "./media/characters/koros/dicks-front.svg"
  25724. }
  25725. },
  25726. dicksPeeking: {
  25727. height: math.unit(3.0, "feet"),
  25728. name: "Dicks (Peeking)",
  25729. image: {
  25730. source: "./media/characters/koros/dicks-peeking.svg"
  25731. }
  25732. },
  25733. eye: {
  25734. height: math.unit(1.7, "feet"),
  25735. name: "Eye",
  25736. image: {
  25737. source: "./media/characters/koros/eye.svg"
  25738. }
  25739. },
  25740. headFront: {
  25741. height: math.unit(11.69, "feet"),
  25742. name: "Head (Front)",
  25743. image: {
  25744. source: "./media/characters/koros/head-front.svg"
  25745. }
  25746. },
  25747. headSide: {
  25748. height: math.unit(14, "feet"),
  25749. name: "Head (Side)",
  25750. image: {
  25751. source: "./media/characters/koros/head-side.svg"
  25752. }
  25753. },
  25754. leg: {
  25755. height: math.unit(17, "feet"),
  25756. name: "Leg",
  25757. image: {
  25758. source: "./media/characters/koros/leg.svg"
  25759. }
  25760. },
  25761. mawSide: {
  25762. height: math.unit(12.8, "feet"),
  25763. name: "Maw (Side)",
  25764. image: {
  25765. source: "./media/characters/koros/maw-side.svg"
  25766. }
  25767. },
  25768. mawSpitting: {
  25769. height: math.unit(17, "feet"),
  25770. name: "Maw (Spitting)",
  25771. image: {
  25772. source: "./media/characters/koros/maw-spitting.svg"
  25773. }
  25774. },
  25775. slit: {
  25776. height: math.unit(2.8, "feet"),
  25777. name: "Slit",
  25778. image: {
  25779. source: "./media/characters/koros/slit.svg"
  25780. }
  25781. },
  25782. stomach: {
  25783. height: math.unit(6.8, "feet"),
  25784. capacity: math.unit(20, "people"),
  25785. name: "Stomach",
  25786. image: {
  25787. source: "./media/characters/koros/stomach.svg"
  25788. }
  25789. },
  25790. wingspanBottom: {
  25791. height: math.unit(114, "feet"),
  25792. name: "Wingspan (Bottom)",
  25793. image: {
  25794. source: "./media/characters/koros/wingspan-bottom.svg"
  25795. }
  25796. },
  25797. wingspanTop: {
  25798. height: math.unit(104, "feet"),
  25799. name: "Wingspan (Top)",
  25800. image: {
  25801. source: "./media/characters/koros/wingspan-top.svg"
  25802. }
  25803. },
  25804. },
  25805. [
  25806. {
  25807. name: "Normal",
  25808. height: math.unit(31 + 8 / 12, "feet"),
  25809. default: true
  25810. },
  25811. ]
  25812. ))
  25813. characterMakers.push(() => makeCharacter(
  25814. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25815. {
  25816. front: {
  25817. height: math.unit(18 + 5 / 12, "feet"),
  25818. weight: math.unit(3750, "kg"),
  25819. name: "Front",
  25820. image: {
  25821. source: "./media/characters/vexx/front.svg",
  25822. extra: 426 / 396,
  25823. bottom: 31.5 / 458
  25824. }
  25825. },
  25826. maw: {
  25827. height: math.unit(6, "feet"),
  25828. name: "Maw",
  25829. image: {
  25830. source: "./media/characters/vexx/maw.svg"
  25831. }
  25832. },
  25833. },
  25834. [
  25835. {
  25836. name: "Normal",
  25837. height: math.unit(18 + 5 / 12, "feet"),
  25838. default: true
  25839. },
  25840. ]
  25841. ))
  25842. characterMakers.push(() => makeCharacter(
  25843. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25844. {
  25845. front: {
  25846. height: math.unit(17 + 6 / 12, "feet"),
  25847. weight: math.unit(150, "lb"),
  25848. name: "Front",
  25849. image: {
  25850. source: "./media/characters/baadra/front.svg",
  25851. extra: 3137 / 2890,
  25852. bottom: 168.4 / 3305
  25853. }
  25854. },
  25855. back: {
  25856. height: math.unit(17 + 6 / 12, "feet"),
  25857. weight: math.unit(150, "lb"),
  25858. name: "Back",
  25859. image: {
  25860. source: "./media/characters/baadra/back.svg",
  25861. extra: 3142 / 2890,
  25862. bottom: 220 / 3371
  25863. }
  25864. },
  25865. head: {
  25866. height: math.unit(5.45, "feet"),
  25867. name: "Head",
  25868. image: {
  25869. source: "./media/characters/baadra/head.svg"
  25870. }
  25871. },
  25872. headAngry: {
  25873. height: math.unit(4.95, "feet"),
  25874. name: "Head (Angry)",
  25875. image: {
  25876. source: "./media/characters/baadra/head-angry.svg"
  25877. }
  25878. },
  25879. headOpen: {
  25880. height: math.unit(6, "feet"),
  25881. name: "Head (Open)",
  25882. image: {
  25883. source: "./media/characters/baadra/head-open.svg"
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Normal",
  25890. height: math.unit(17 + 6 / 12, "feet"),
  25891. default: true
  25892. },
  25893. ]
  25894. ))
  25895. characterMakers.push(() => makeCharacter(
  25896. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25897. {
  25898. front: {
  25899. height: math.unit(7 + 3 / 12, "feet"),
  25900. weight: math.unit(180, "lb"),
  25901. name: "Front",
  25902. image: {
  25903. source: "./media/characters/juri/front.svg",
  25904. extra: 1401 / 1237,
  25905. bottom: 18.5 / 1418
  25906. }
  25907. },
  25908. side: {
  25909. height: math.unit(7 + 3 / 12, "feet"),
  25910. weight: math.unit(180, "lb"),
  25911. name: "Side",
  25912. image: {
  25913. source: "./media/characters/juri/side.svg",
  25914. extra: 1424 / 1242,
  25915. bottom: 18.5 / 1447
  25916. }
  25917. },
  25918. sitting: {
  25919. height: math.unit(6, "feet"),
  25920. weight: math.unit(180, "lb"),
  25921. name: "Sitting",
  25922. image: {
  25923. source: "./media/characters/juri/sitting.svg",
  25924. extra: 1270 / 1143,
  25925. bottom: 100 / 1343
  25926. }
  25927. },
  25928. back: {
  25929. height: math.unit(7 + 3 / 12, "feet"),
  25930. weight: math.unit(180, "lb"),
  25931. name: "Back",
  25932. image: {
  25933. source: "./media/characters/juri/back.svg",
  25934. extra: 1377 / 1240,
  25935. bottom: 23.7 / 1405
  25936. }
  25937. },
  25938. maw: {
  25939. height: math.unit(2.8, "feet"),
  25940. name: "Maw",
  25941. image: {
  25942. source: "./media/characters/juri/maw.svg"
  25943. }
  25944. },
  25945. stomach: {
  25946. height: math.unit(0.89, "feet"),
  25947. capacity: math.unit(4, "liters"),
  25948. name: "Stomach",
  25949. image: {
  25950. source: "./media/characters/juri/stomach.svg"
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(7 + 3 / 12, "feet"),
  25958. default: true
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25964. {
  25965. fox: {
  25966. height: math.unit(5 + 6 / 12, "feet"),
  25967. weight: math.unit(140, "lb"),
  25968. name: "Fox",
  25969. image: {
  25970. source: "./media/characters/maxene-sita/fox.svg",
  25971. extra: 146 / 138,
  25972. bottom: 2.1 / 148.19
  25973. }
  25974. },
  25975. foxLaying: {
  25976. height: math.unit(1.70, "feet"),
  25977. weight: math.unit(140, "lb"),
  25978. name: "Fox (Laying)",
  25979. image: {
  25980. source: "./media/characters/maxene-sita/fox-laying.svg",
  25981. extra: 910 / 572,
  25982. bottom: 71 / 981
  25983. }
  25984. },
  25985. kitsune: {
  25986. height: math.unit(10, "feet"),
  25987. weight: math.unit(800, "lb"),
  25988. name: "Kitsune",
  25989. image: {
  25990. source: "./media/characters/maxene-sita/kitsune.svg",
  25991. extra: 185 / 176,
  25992. bottom: 4.7 / 189.9
  25993. }
  25994. },
  25995. hellhound: {
  25996. height: math.unit(10, "feet"),
  25997. weight: math.unit(700, "lb"),
  25998. name: "Hellhound",
  25999. image: {
  26000. source: "./media/characters/maxene-sita/hellhound.svg",
  26001. extra: 1600 / 1545,
  26002. bottom: 81 / 1681
  26003. }
  26004. },
  26005. },
  26006. [
  26007. {
  26008. name: "Normal",
  26009. height: math.unit(5 + 6 / 12, "feet"),
  26010. default: true
  26011. },
  26012. ]
  26013. ))
  26014. characterMakers.push(() => makeCharacter(
  26015. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26016. {
  26017. front: {
  26018. height: math.unit(3 + 4 / 12, "feet"),
  26019. weight: math.unit(70, "lb"),
  26020. name: "Front",
  26021. image: {
  26022. source: "./media/characters/maia/front.svg",
  26023. extra: 227 / 219.5,
  26024. bottom: 40 / 267
  26025. }
  26026. },
  26027. back: {
  26028. height: math.unit(3 + 4 / 12, "feet"),
  26029. weight: math.unit(70, "lb"),
  26030. name: "Back",
  26031. image: {
  26032. source: "./media/characters/maia/back.svg",
  26033. extra: 237 / 225
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(3 + 4 / 12, "feet"),
  26041. default: true
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(5 + 10 / 12, "feet"),
  26050. weight: math.unit(197, "lb"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/jabaro/front.svg",
  26054. extra: 225 / 216,
  26055. bottom: 5.06 / 230
  26056. }
  26057. },
  26058. back: {
  26059. height: math.unit(5 + 10 / 12, "feet"),
  26060. weight: math.unit(197, "lb"),
  26061. name: "Back",
  26062. image: {
  26063. source: "./media/characters/jabaro/back.svg",
  26064. extra: 225 / 219,
  26065. bottom: 1.9 / 227
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Normal",
  26072. height: math.unit(5 + 10 / 12, "feet"),
  26073. default: true
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26079. {
  26080. front: {
  26081. height: math.unit(5 + 8 / 12, "feet"),
  26082. weight: math.unit(139, "lb"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/risa/front.svg",
  26086. extra: 270 / 260,
  26087. bottom: 11.2 / 282
  26088. }
  26089. },
  26090. back: {
  26091. height: math.unit(5 + 8 / 12, "feet"),
  26092. weight: math.unit(139, "lb"),
  26093. name: "Back",
  26094. image: {
  26095. source: "./media/characters/risa/back.svg",
  26096. extra: 264 / 255,
  26097. bottom: 4 / 268
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(5 + 8 / 12, "feet"),
  26105. default: true
  26106. },
  26107. ]
  26108. ))
  26109. characterMakers.push(() => makeCharacter(
  26110. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26111. {
  26112. front: {
  26113. height: math.unit(2 + 11 / 12, "feet"),
  26114. weight: math.unit(30, "lb"),
  26115. name: "Front",
  26116. image: {
  26117. source: "./media/characters/weatley/front.svg",
  26118. bottom: 10.7 / 414,
  26119. extra: 403.5 / 362
  26120. }
  26121. },
  26122. back: {
  26123. height: math.unit(2 + 11 / 12, "feet"),
  26124. weight: math.unit(30, "lb"),
  26125. name: "Back",
  26126. image: {
  26127. source: "./media/characters/weatley/back.svg",
  26128. bottom: 10.7 / 414,
  26129. extra: 403.5 / 362
  26130. }
  26131. },
  26132. },
  26133. [
  26134. {
  26135. name: "Normal",
  26136. height: math.unit(2 + 11 / 12, "feet"),
  26137. default: true
  26138. },
  26139. ]
  26140. ))
  26141. characterMakers.push(() => makeCharacter(
  26142. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26143. {
  26144. front: {
  26145. height: math.unit(5 + 2 / 12, "feet"),
  26146. weight: math.unit(50, "kg"),
  26147. name: "Front",
  26148. image: {
  26149. source: "./media/characters/mercury-crescent/front.svg",
  26150. extra: 1088 / 1033,
  26151. bottom: 18.9 / 1109
  26152. }
  26153. },
  26154. },
  26155. [
  26156. {
  26157. name: "Normal",
  26158. height: math.unit(5 + 2 / 12, "feet"),
  26159. default: true
  26160. },
  26161. ]
  26162. ))
  26163. characterMakers.push(() => makeCharacter(
  26164. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26165. {
  26166. front: {
  26167. height: math.unit(2, "feet"),
  26168. weight: math.unit(15, "kg"),
  26169. name: "Front",
  26170. image: {
  26171. source: "./media/characters/diamond-jones/front.svg",
  26172. extra: 727/723,
  26173. bottom: 46/773
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Normal",
  26180. height: math.unit(2, "feet"),
  26181. default: true
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26187. {
  26188. front: {
  26189. height: math.unit(3, "feet"),
  26190. weight: math.unit(30, "kg"),
  26191. name: "Front",
  26192. image: {
  26193. source: "./media/characters/sweet-bit/front.svg",
  26194. extra: 675 / 567,
  26195. bottom: 27.7 / 703
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Normal",
  26202. height: math.unit(3, "feet"),
  26203. default: true
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26209. {
  26210. side: {
  26211. height: math.unit(9.178, "feet"),
  26212. weight: math.unit(500, "lb"),
  26213. name: "Side",
  26214. image: {
  26215. source: "./media/characters/umbrazen/side.svg",
  26216. extra: 1730 / 1473,
  26217. bottom: 34.6 / 1765
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(9.178, "feet"),
  26225. default: true
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26231. {
  26232. front: {
  26233. height: math.unit(10, "feet"),
  26234. weight: math.unit(750, "lb"),
  26235. name: "Front",
  26236. image: {
  26237. source: "./media/characters/arlist/front.svg",
  26238. extra: 961 / 778,
  26239. bottom: 6.2 / 986
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(10, "feet"),
  26247. default: true
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26253. {
  26254. front: {
  26255. height: math.unit(5 + 1 / 12, "feet"),
  26256. weight: math.unit(110, "lb"),
  26257. name: "Front",
  26258. image: {
  26259. source: "./media/characters/aradel/front.svg",
  26260. extra: 324 / 303,
  26261. bottom: 3.6 / 329.4
  26262. }
  26263. },
  26264. },
  26265. [
  26266. {
  26267. name: "Normal",
  26268. height: math.unit(5 + 1 / 12, "feet"),
  26269. default: true
  26270. },
  26271. ]
  26272. ))
  26273. characterMakers.push(() => makeCharacter(
  26274. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26275. {
  26276. front: {
  26277. height: math.unit(3 + 8 / 12, "feet"),
  26278. weight: math.unit(50, "lb"),
  26279. name: "Front",
  26280. image: {
  26281. source: "./media/characters/serryn/front.svg",
  26282. extra: 1792 / 1656,
  26283. bottom: 43.5 / 1840
  26284. }
  26285. },
  26286. },
  26287. [
  26288. {
  26289. name: "Normal",
  26290. height: math.unit(3 + 8 / 12, "feet"),
  26291. default: true
  26292. },
  26293. ]
  26294. ))
  26295. characterMakers.push(() => makeCharacter(
  26296. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26297. {
  26298. front: {
  26299. height: math.unit(7 + 10 / 12, "feet"),
  26300. weight: math.unit(255, "lb"),
  26301. name: "Front",
  26302. image: {
  26303. source: "./media/characters/xavier-thyme/front.svg",
  26304. extra: 3733 / 3642,
  26305. bottom: 131 / 3869
  26306. }
  26307. },
  26308. frontRaven: {
  26309. height: math.unit(7 + 10 / 12, "feet"),
  26310. weight: math.unit(255, "lb"),
  26311. name: "Front (Raven)",
  26312. image: {
  26313. source: "./media/characters/xavier-thyme/front-raven.svg",
  26314. extra: 4385 / 3642,
  26315. bottom: 131 / 4517
  26316. }
  26317. },
  26318. },
  26319. [
  26320. {
  26321. name: "Normal",
  26322. height: math.unit(7 + 10 / 12, "feet"),
  26323. default: true
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(1.6, "m"),
  26332. weight: math.unit(50, "kg"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/kiki/front.svg",
  26336. extra: 4682 / 3610,
  26337. bottom: 115 / 4777
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Normal",
  26344. height: math.unit(1.6, "meters"),
  26345. default: true
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(50, "m"),
  26354. weight: math.unit(500, "tonnes"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/ryoko/front.svg",
  26358. extra: 4632 / 3926,
  26359. bottom: 193 / 4823
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(50, "meters"),
  26367. default: true
  26368. },
  26369. ]
  26370. ))
  26371. characterMakers.push(() => makeCharacter(
  26372. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26373. {
  26374. front: {
  26375. height: math.unit(30, "m"),
  26376. weight: math.unit(22, "tonnes"),
  26377. name: "Front",
  26378. image: {
  26379. source: "./media/characters/elio/front.svg",
  26380. extra: 4582 / 3720,
  26381. bottom: 236 / 4828
  26382. }
  26383. },
  26384. },
  26385. [
  26386. {
  26387. name: "Normal",
  26388. height: math.unit(30, "meters"),
  26389. default: true
  26390. },
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26395. {
  26396. front: {
  26397. height: math.unit(6 + 3 / 12, "feet"),
  26398. weight: math.unit(120, "lb"),
  26399. name: "Front",
  26400. image: {
  26401. source: "./media/characters/azura/front.svg",
  26402. extra: 1149 / 1135,
  26403. bottom: 45 / 1194
  26404. }
  26405. },
  26406. frontClothed: {
  26407. height: math.unit(6 + 3 / 12, "feet"),
  26408. weight: math.unit(120, "lb"),
  26409. name: "Front (Clothed)",
  26410. image: {
  26411. source: "./media/characters/azura/front-clothed.svg",
  26412. extra: 1149 / 1135,
  26413. bottom: 45 / 1194
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Normal",
  26420. height: math.unit(6 + 3 / 12, "feet"),
  26421. default: true
  26422. },
  26423. {
  26424. name: "Macro",
  26425. height: math.unit(20 + 6 / 12, "feet")
  26426. },
  26427. {
  26428. name: "Megamacro",
  26429. height: math.unit(12, "miles")
  26430. },
  26431. {
  26432. name: "Gigamacro",
  26433. height: math.unit(10000, "miles")
  26434. },
  26435. {
  26436. name: "Teramacro",
  26437. height: math.unit(900000, "miles")
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(12, "feet"),
  26446. weight: math.unit(1, "ton"),
  26447. capacity: math.unit(660000, "gallons"),
  26448. name: "Front",
  26449. image: {
  26450. source: "./media/characters/zeus/front.svg",
  26451. extra: 5005 / 4717,
  26452. bottom: 363 / 5388
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Normal",
  26459. height: math.unit(12, "feet")
  26460. },
  26461. {
  26462. name: "Preferred Size",
  26463. height: math.unit(0.5, "miles"),
  26464. default: true
  26465. },
  26466. {
  26467. name: "Giga Horse",
  26468. height: math.unit(300, "miles")
  26469. },
  26470. {
  26471. name: "Riding Planets",
  26472. height: math.unit(30, "megameters")
  26473. },
  26474. {
  26475. name: "Cosmic Giant",
  26476. height: math.unit(3, "zettameters")
  26477. },
  26478. {
  26479. name: "Breeding God",
  26480. height: math.unit(9.92e22, "yottameters")
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26486. {
  26487. side: {
  26488. height: math.unit(9, "feet"),
  26489. weight: math.unit(1500, "kg"),
  26490. name: "Side",
  26491. image: {
  26492. source: "./media/characters/fang/side.svg",
  26493. extra: 924 / 866,
  26494. bottom: 47.5 / 972.3
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(9, "feet"),
  26502. default: true
  26503. },
  26504. {
  26505. name: "Macro",
  26506. height: math.unit(75 + 6 / 12, "feet")
  26507. },
  26508. {
  26509. name: "Teramacro",
  26510. height: math.unit(50000, "miles")
  26511. },
  26512. ]
  26513. ))
  26514. characterMakers.push(() => makeCharacter(
  26515. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26516. {
  26517. front: {
  26518. height: math.unit(10, "feet"),
  26519. weight: math.unit(2, "tons"),
  26520. name: "Front",
  26521. image: {
  26522. source: "./media/characters/rekhit/front.svg",
  26523. extra: 2796 / 2590,
  26524. bottom: 225 / 3022
  26525. }
  26526. },
  26527. },
  26528. [
  26529. {
  26530. name: "Normal",
  26531. height: math.unit(10, "feet"),
  26532. default: true
  26533. },
  26534. {
  26535. name: "Macro",
  26536. height: math.unit(500, "feet")
  26537. },
  26538. ]
  26539. ))
  26540. characterMakers.push(() => makeCharacter(
  26541. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26542. {
  26543. front: {
  26544. height: math.unit(7 + 6.451 / 12, "feet"),
  26545. weight: math.unit(310, "lb"),
  26546. name: "Front",
  26547. image: {
  26548. source: "./media/characters/dahlia-verrick/front.svg",
  26549. extra: 1488 / 1365,
  26550. bottom: 6.2 / 1495
  26551. }
  26552. },
  26553. back: {
  26554. height: math.unit(7 + 6.451 / 12, "feet"),
  26555. weight: math.unit(310, "lb"),
  26556. name: "Back",
  26557. image: {
  26558. source: "./media/characters/dahlia-verrick/back.svg",
  26559. extra: 1472 / 1351,
  26560. bottom: 5.28 / 1477
  26561. }
  26562. },
  26563. frontBusiness: {
  26564. height: math.unit(7 + 6.451 / 12, "feet"),
  26565. weight: math.unit(200, "lb"),
  26566. name: "Front (Business)",
  26567. image: {
  26568. source: "./media/characters/dahlia-verrick/front-business.svg",
  26569. extra: 1478 / 1381,
  26570. bottom: 5.5 / 1484
  26571. }
  26572. },
  26573. frontCasual: {
  26574. height: math.unit(7 + 6.451 / 12, "feet"),
  26575. weight: math.unit(200, "lb"),
  26576. name: "Front (Casual)",
  26577. image: {
  26578. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26579. extra: 1478 / 1381,
  26580. bottom: 5.5 / 1484
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Travel-Sized",
  26587. height: math.unit(7.45, "inches")
  26588. },
  26589. {
  26590. name: "Normal",
  26591. height: math.unit(7 + 6.451 / 12, "feet"),
  26592. default: true
  26593. },
  26594. {
  26595. name: "Hitting the Town",
  26596. height: math.unit(37 + 8 / 12, "feet")
  26597. },
  26598. {
  26599. name: "Stomp in the Suburbs",
  26600. height: math.unit(964 + 9.728 / 12, "feet")
  26601. },
  26602. {
  26603. name: "Sit on the City",
  26604. height: math.unit(61747 + 10.592 / 12, "feet")
  26605. },
  26606. {
  26607. name: "Glomp the Globe",
  26608. height: math.unit(252919327 + 4.832 / 12, "feet")
  26609. },
  26610. ]
  26611. ))
  26612. characterMakers.push(() => makeCharacter(
  26613. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26614. {
  26615. front: {
  26616. height: math.unit(6 + 4 / 12, "feet"),
  26617. weight: math.unit(320, "lb"),
  26618. name: "Front",
  26619. image: {
  26620. source: "./media/characters/balina-mahigan/front.svg",
  26621. extra: 447 / 428,
  26622. bottom: 18 / 466
  26623. }
  26624. },
  26625. back: {
  26626. height: math.unit(6 + 4 / 12, "feet"),
  26627. weight: math.unit(320, "lb"),
  26628. name: "Back",
  26629. image: {
  26630. source: "./media/characters/balina-mahigan/back.svg",
  26631. extra: 445 / 428,
  26632. bottom: 4.07 / 448
  26633. }
  26634. },
  26635. arm: {
  26636. height: math.unit(1.88, "feet"),
  26637. name: "Arm",
  26638. image: {
  26639. source: "./media/characters/balina-mahigan/arm.svg"
  26640. }
  26641. },
  26642. backPort: {
  26643. height: math.unit(0.685, "feet"),
  26644. name: "Back Port",
  26645. image: {
  26646. source: "./media/characters/balina-mahigan/back-port.svg"
  26647. }
  26648. },
  26649. hoofpaw: {
  26650. height: math.unit(1.41, "feet"),
  26651. name: "Hoofpaw",
  26652. image: {
  26653. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26654. }
  26655. },
  26656. leftHandBack: {
  26657. height: math.unit(0.938, "feet"),
  26658. name: "Left Hand (Back)",
  26659. image: {
  26660. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26661. }
  26662. },
  26663. leftHandFront: {
  26664. height: math.unit(0.938, "feet"),
  26665. name: "Left Hand (Front)",
  26666. image: {
  26667. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26668. }
  26669. },
  26670. rightHandBack: {
  26671. height: math.unit(0.95, "feet"),
  26672. name: "Right Hand (Back)",
  26673. image: {
  26674. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26675. }
  26676. },
  26677. rightHandFront: {
  26678. height: math.unit(0.95, "feet"),
  26679. name: "Right Hand (Front)",
  26680. image: {
  26681. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Normal",
  26688. height: math.unit(6 + 4 / 12, "feet"),
  26689. default: true
  26690. },
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26695. {
  26696. front: {
  26697. height: math.unit(6, "feet"),
  26698. weight: math.unit(320, "lb"),
  26699. name: "Front",
  26700. image: {
  26701. source: "./media/characters/balina-mejeri/front.svg",
  26702. extra: 517 / 488,
  26703. bottom: 44.2 / 561
  26704. }
  26705. },
  26706. },
  26707. [
  26708. {
  26709. name: "Normal",
  26710. height: math.unit(6 + 4 / 12, "feet")
  26711. },
  26712. {
  26713. name: "Business",
  26714. height: math.unit(155, "feet"),
  26715. default: true
  26716. },
  26717. ]
  26718. ))
  26719. characterMakers.push(() => makeCharacter(
  26720. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26721. {
  26722. kneeling: {
  26723. height: math.unit(6 + 4 / 12, "feet"),
  26724. weight: math.unit(300 * 20, "lb"),
  26725. name: "Kneeling",
  26726. image: {
  26727. source: "./media/characters/balbarian/kneeling.svg",
  26728. extra: 922 / 862,
  26729. bottom: 42.4 / 965
  26730. }
  26731. },
  26732. },
  26733. [
  26734. {
  26735. name: "Normal",
  26736. height: math.unit(6 + 4 / 12, "feet")
  26737. },
  26738. {
  26739. name: "Treasured",
  26740. height: math.unit(18 + 9 / 12, "feet"),
  26741. default: true
  26742. },
  26743. {
  26744. name: "Macro",
  26745. height: math.unit(900, "feet")
  26746. },
  26747. ]
  26748. ))
  26749. characterMakers.push(() => makeCharacter(
  26750. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26751. {
  26752. front: {
  26753. height: math.unit(6 + 4 / 12, "feet"),
  26754. weight: math.unit(325, "lb"),
  26755. name: "Front",
  26756. image: {
  26757. source: "./media/characters/balina-amarini/front.svg",
  26758. extra: 415 / 403,
  26759. bottom: 19 / 433.4
  26760. }
  26761. },
  26762. back: {
  26763. height: math.unit(6 + 4 / 12, "feet"),
  26764. weight: math.unit(325, "lb"),
  26765. name: "Back",
  26766. image: {
  26767. source: "./media/characters/balina-amarini/back.svg",
  26768. extra: 415 / 403,
  26769. bottom: 13.5 / 432
  26770. }
  26771. },
  26772. overdrive: {
  26773. height: math.unit(6 + 4 / 12, "feet"),
  26774. weight: math.unit(400, "lb"),
  26775. name: "Overdrive",
  26776. image: {
  26777. source: "./media/characters/balina-amarini/overdrive.svg",
  26778. extra: 269 / 259,
  26779. bottom: 12 / 282
  26780. }
  26781. },
  26782. },
  26783. [
  26784. {
  26785. name: "Boom",
  26786. height: math.unit(9 + 10 / 12, "feet"),
  26787. default: true
  26788. },
  26789. {
  26790. name: "Macro",
  26791. height: math.unit(280, "feet")
  26792. },
  26793. ]
  26794. ))
  26795. characterMakers.push(() => makeCharacter(
  26796. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26797. {
  26798. goddess: {
  26799. height: math.unit(600, "feet"),
  26800. weight: math.unit(2000000, "tons"),
  26801. name: "Goddess",
  26802. image: {
  26803. source: "./media/characters/lady-kubwa/goddess.svg",
  26804. extra: 1240.5 / 1223,
  26805. bottom: 22 / 1263
  26806. }
  26807. },
  26808. goddesser: {
  26809. height: math.unit(900, "feet"),
  26810. weight: math.unit(20000000, "lb"),
  26811. name: "Goddess-er",
  26812. image: {
  26813. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26814. extra: 899 / 888,
  26815. bottom: 12.6 / 912
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Macro",
  26822. height: math.unit(600, "feet"),
  26823. default: true
  26824. },
  26825. {
  26826. name: "Megamacro",
  26827. height: math.unit(250, "miles")
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(7 + 7 / 12, "feet"),
  26836. weight: math.unit(250, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/tala-grovehorn/front.svg",
  26840. extra: 2636 / 2525,
  26841. bottom: 147 / 2781
  26842. }
  26843. },
  26844. back: {
  26845. height: math.unit(7 + 7 / 12, "feet"),
  26846. weight: math.unit(250, "lb"),
  26847. name: "Back",
  26848. image: {
  26849. source: "./media/characters/tala-grovehorn/back.svg",
  26850. extra: 2635 / 2539,
  26851. bottom: 100 / 2732.8
  26852. }
  26853. },
  26854. mouth: {
  26855. height: math.unit(1.15, "feet"),
  26856. name: "Mouth",
  26857. image: {
  26858. source: "./media/characters/tala-grovehorn/mouth.svg"
  26859. }
  26860. },
  26861. dick: {
  26862. height: math.unit(2.36, "feet"),
  26863. name: "Dick",
  26864. image: {
  26865. source: "./media/characters/tala-grovehorn/dick.svg"
  26866. }
  26867. },
  26868. slit: {
  26869. height: math.unit(0.61, "feet"),
  26870. name: "Slit",
  26871. image: {
  26872. source: "./media/characters/tala-grovehorn/slit.svg"
  26873. }
  26874. },
  26875. },
  26876. [
  26877. ]
  26878. ))
  26879. characterMakers.push(() => makeCharacter(
  26880. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26881. {
  26882. front: {
  26883. height: math.unit(7 + 7 / 12, "feet"),
  26884. weight: math.unit(225, "lb"),
  26885. name: "Front",
  26886. image: {
  26887. source: "./media/characters/epona/front.svg",
  26888. extra: 2445 / 2290,
  26889. bottom: 251 / 2696
  26890. }
  26891. },
  26892. back: {
  26893. height: math.unit(7 + 7 / 12, "feet"),
  26894. weight: math.unit(225, "lb"),
  26895. name: "Back",
  26896. image: {
  26897. source: "./media/characters/epona/back.svg",
  26898. extra: 2546 / 2408,
  26899. bottom: 44 / 2589
  26900. }
  26901. },
  26902. genitals: {
  26903. height: math.unit(1.5, "feet"),
  26904. name: "Genitals",
  26905. image: {
  26906. source: "./media/characters/epona/genitals.svg"
  26907. }
  26908. },
  26909. },
  26910. [
  26911. {
  26912. name: "Normal",
  26913. height: math.unit(7 + 7 / 12, "feet"),
  26914. default: true
  26915. },
  26916. ]
  26917. ))
  26918. characterMakers.push(() => makeCharacter(
  26919. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26920. {
  26921. front: {
  26922. height: math.unit(7, "feet"),
  26923. weight: math.unit(518, "lb"),
  26924. name: "Front",
  26925. image: {
  26926. source: "./media/characters/avia-bloodbourn/front.svg",
  26927. extra: 1466 / 1350,
  26928. bottom: 65 / 1527
  26929. }
  26930. },
  26931. },
  26932. [
  26933. ]
  26934. ))
  26935. characterMakers.push(() => makeCharacter(
  26936. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26937. {
  26938. front: {
  26939. height: math.unit(9.35, "feet"),
  26940. weight: math.unit(600, "lb"),
  26941. name: "Front",
  26942. image: {
  26943. source: "./media/characters/amera/front.svg",
  26944. extra: 891 / 818,
  26945. bottom: 30 / 922.7
  26946. }
  26947. },
  26948. back: {
  26949. height: math.unit(9.35, "feet"),
  26950. weight: math.unit(600, "lb"),
  26951. name: "Back",
  26952. image: {
  26953. source: "./media/characters/amera/back.svg",
  26954. extra: 876 / 824,
  26955. bottom: 6.8 / 884
  26956. }
  26957. },
  26958. dick: {
  26959. height: math.unit(2.14, "feet"),
  26960. name: "Dick",
  26961. image: {
  26962. source: "./media/characters/amera/dick.svg"
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(9.35, "feet"),
  26970. default: true
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26976. {
  26977. kneeling: {
  26978. height: math.unit(3 + 4 / 12, "feet"),
  26979. weight: math.unit(90, "lb"),
  26980. name: "Kneeling",
  26981. image: {
  26982. source: "./media/characters/rosewen/kneeling.svg",
  26983. extra: 1835 / 1571,
  26984. bottom: 27.7 / 1862
  26985. }
  26986. },
  26987. },
  26988. [
  26989. {
  26990. name: "Normal",
  26991. height: math.unit(3 + 4 / 12, "feet"),
  26992. default: true
  26993. },
  26994. ]
  26995. ))
  26996. characterMakers.push(() => makeCharacter(
  26997. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26998. {
  26999. front: {
  27000. height: math.unit(5 + 10 / 12, "feet"),
  27001. weight: math.unit(200, "lb"),
  27002. name: "Front",
  27003. image: {
  27004. source: "./media/characters/sabah/front.svg",
  27005. extra: 849 / 763,
  27006. bottom: 33.9 / 881
  27007. }
  27008. },
  27009. },
  27010. [
  27011. {
  27012. name: "Normal",
  27013. height: math.unit(5 + 10 / 12, "feet"),
  27014. default: true
  27015. },
  27016. ]
  27017. ))
  27018. characterMakers.push(() => makeCharacter(
  27019. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27020. {
  27021. front: {
  27022. height: math.unit(3 + 5 / 12, "feet"),
  27023. weight: math.unit(40, "kg"),
  27024. name: "Front",
  27025. image: {
  27026. source: "./media/characters/purple-flame/front.svg",
  27027. extra: 1577 / 1412,
  27028. bottom: 97 / 1694
  27029. }
  27030. },
  27031. frontDressed: {
  27032. height: math.unit(3 + 5 / 12, "feet"),
  27033. weight: math.unit(40, "kg"),
  27034. name: "Front (Dressed)",
  27035. image: {
  27036. source: "./media/characters/purple-flame/front-dressed.svg",
  27037. extra: 1577 / 1412,
  27038. bottom: 97 / 1694
  27039. }
  27040. },
  27041. headphones: {
  27042. height: math.unit(0.85, "feet"),
  27043. name: "Headphones",
  27044. image: {
  27045. source: "./media/characters/purple-flame/headphones.svg"
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Really Small",
  27052. height: math.unit(5, "cm")
  27053. },
  27054. {
  27055. name: "Micro",
  27056. height: math.unit(1 + 5 / 12, "feet")
  27057. },
  27058. {
  27059. name: "Normal",
  27060. height: math.unit(3 + 5 / 12, "feet"),
  27061. default: true
  27062. },
  27063. {
  27064. name: "Minimacro",
  27065. height: math.unit(125, "feet")
  27066. },
  27067. {
  27068. name: "Macro",
  27069. height: math.unit(0.5, "miles")
  27070. },
  27071. {
  27072. name: "Megamacro",
  27073. height: math.unit(50, "miles")
  27074. },
  27075. {
  27076. name: "Gigantic",
  27077. height: math.unit(750, "miles")
  27078. },
  27079. {
  27080. name: "Planetary",
  27081. height: math.unit(15000, "miles")
  27082. },
  27083. ]
  27084. ))
  27085. characterMakers.push(() => makeCharacter(
  27086. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27087. {
  27088. front: {
  27089. height: math.unit(14, "feet"),
  27090. weight: math.unit(959, "lb"),
  27091. name: "Front",
  27092. image: {
  27093. source: "./media/characters/arsenal/front.svg",
  27094. extra: 2357 / 2157,
  27095. bottom: 93 / 2458
  27096. }
  27097. },
  27098. },
  27099. [
  27100. {
  27101. name: "Normal",
  27102. height: math.unit(14, "feet"),
  27103. default: true
  27104. },
  27105. ]
  27106. ))
  27107. characterMakers.push(() => makeCharacter(
  27108. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27109. {
  27110. front: {
  27111. height: math.unit(6, "feet"),
  27112. weight: math.unit(150, "lb"),
  27113. name: "Front",
  27114. image: {
  27115. source: "./media/characters/adira/front.svg",
  27116. extra: 1078 / 1029,
  27117. bottom: 87 / 1166
  27118. }
  27119. },
  27120. },
  27121. [
  27122. {
  27123. name: "Micro",
  27124. height: math.unit(4, "inches"),
  27125. default: true
  27126. },
  27127. {
  27128. name: "Macro",
  27129. height: math.unit(50, "feet")
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27135. {
  27136. front: {
  27137. height: math.unit(16, "feet"),
  27138. weight: math.unit(1000, "lb"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/grim/front.svg",
  27142. extra: 622 / 614,
  27143. bottom: 18.1 / 642
  27144. }
  27145. },
  27146. back: {
  27147. height: math.unit(16, "feet"),
  27148. weight: math.unit(1000, "lb"),
  27149. name: "Back",
  27150. image: {
  27151. source: "./media/characters/grim/back.svg",
  27152. extra: 610.6 / 602,
  27153. bottom: 40.8 / 652
  27154. }
  27155. },
  27156. hunched: {
  27157. height: math.unit(9.75, "feet"),
  27158. weight: math.unit(1000, "lb"),
  27159. name: "Hunched",
  27160. image: {
  27161. source: "./media/characters/grim/hunched.svg",
  27162. extra: 304 / 297,
  27163. bottom: 35.4 / 394
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(16, "feet"),
  27171. default: true
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27177. {
  27178. front: {
  27179. height: math.unit(2.3, "meters"),
  27180. weight: math.unit(300, "lb"),
  27181. name: "Front",
  27182. image: {
  27183. source: "./media/characters/sinja/front-sfw.svg",
  27184. extra: 1393 / 1294,
  27185. bottom: 70 / 1463
  27186. }
  27187. },
  27188. frontNsfw: {
  27189. height: math.unit(2.3, "meters"),
  27190. weight: math.unit(300, "lb"),
  27191. name: "Front (NSFW)",
  27192. image: {
  27193. source: "./media/characters/sinja/front-nsfw.svg",
  27194. extra: 1393 / 1294,
  27195. bottom: 70 / 1463
  27196. }
  27197. },
  27198. back: {
  27199. height: math.unit(2.3, "meters"),
  27200. weight: math.unit(300, "lb"),
  27201. name: "Back",
  27202. image: {
  27203. source: "./media/characters/sinja/back.svg",
  27204. extra: 1393 / 1294,
  27205. bottom: 70 / 1463
  27206. }
  27207. },
  27208. head: {
  27209. height: math.unit(1.771, "feet"),
  27210. name: "Head",
  27211. image: {
  27212. source: "./media/characters/sinja/head.svg"
  27213. }
  27214. },
  27215. slit: {
  27216. height: math.unit(0.8, "feet"),
  27217. name: "Slit",
  27218. image: {
  27219. source: "./media/characters/sinja/slit.svg"
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(2.3, "meters")
  27227. },
  27228. {
  27229. name: "Macro",
  27230. height: math.unit(91, "meters"),
  27231. default: true
  27232. },
  27233. {
  27234. name: "Megamacro",
  27235. height: math.unit(91440, "meters")
  27236. },
  27237. {
  27238. name: "Gigamacro",
  27239. height: math.unit(60960000, "meters")
  27240. },
  27241. {
  27242. name: "Teramacro",
  27243. height: math.unit(9144000000, "meters")
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(1.7, "meters"),
  27252. weight: math.unit(130, "lb"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/kyu/front.svg",
  27256. extra: 415 / 395,
  27257. bottom: 5 / 420
  27258. }
  27259. },
  27260. head: {
  27261. height: math.unit(1.75, "feet"),
  27262. name: "Head",
  27263. image: {
  27264. source: "./media/characters/kyu/head.svg"
  27265. }
  27266. },
  27267. foot: {
  27268. height: math.unit(0.81, "feet"),
  27269. name: "Foot",
  27270. image: {
  27271. source: "./media/characters/kyu/foot.svg"
  27272. }
  27273. },
  27274. },
  27275. [
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(1.7, "meters")
  27279. },
  27280. {
  27281. name: "Macro",
  27282. height: math.unit(131, "feet"),
  27283. default: true
  27284. },
  27285. {
  27286. name: "Megamacro",
  27287. height: math.unit(91440, "meters")
  27288. },
  27289. {
  27290. name: "Gigamacro",
  27291. height: math.unit(60960000, "meters")
  27292. },
  27293. {
  27294. name: "Teramacro",
  27295. height: math.unit(9144000000, "meters")
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27301. {
  27302. front: {
  27303. height: math.unit(7 + 1 / 12, "feet"),
  27304. weight: math.unit(250, "lb"),
  27305. name: "Front",
  27306. image: {
  27307. source: "./media/characters/joey/front.svg",
  27308. extra: 1791 / 1537,
  27309. bottom: 28 / 1816
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Micro",
  27316. height: math.unit(3, "inches")
  27317. },
  27318. {
  27319. name: "Normal",
  27320. height: math.unit(7 + 1 / 12, "feet"),
  27321. default: true
  27322. },
  27323. ]
  27324. ))
  27325. characterMakers.push(() => makeCharacter(
  27326. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27327. {
  27328. front: {
  27329. height: math.unit(165, "cm"),
  27330. weight: math.unit(140, "lb"),
  27331. name: "Front",
  27332. image: {
  27333. source: "./media/characters/sam-evans/front.svg",
  27334. extra: 3417 / 3230,
  27335. bottom: 41.3 / 3417
  27336. }
  27337. },
  27338. frontSixTails: {
  27339. height: math.unit(165, "cm"),
  27340. weight: math.unit(140, "lb"),
  27341. name: "Front-six-tails",
  27342. image: {
  27343. source: "./media/characters/sam-evans/front-six-tails.svg",
  27344. extra: 3417 / 3230,
  27345. bottom: 41.3 / 3417
  27346. }
  27347. },
  27348. back: {
  27349. height: math.unit(165, "cm"),
  27350. weight: math.unit(140, "lb"),
  27351. name: "Back",
  27352. image: {
  27353. source: "./media/characters/sam-evans/back.svg",
  27354. extra: 3227 / 3032,
  27355. bottom: 6.8 / 3234
  27356. }
  27357. },
  27358. face: {
  27359. height: math.unit(0.68, "feet"),
  27360. name: "Face",
  27361. image: {
  27362. source: "./media/characters/sam-evans/face.svg"
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(165, "cm"),
  27370. default: true
  27371. },
  27372. {
  27373. name: "Macro",
  27374. height: math.unit(100, "meters")
  27375. },
  27376. {
  27377. name: "Macro+",
  27378. height: math.unit(800, "meters")
  27379. },
  27380. {
  27381. name: "Macro++",
  27382. height: math.unit(3, "km")
  27383. },
  27384. {
  27385. name: "Macro+++",
  27386. height: math.unit(30, "km")
  27387. },
  27388. ]
  27389. ))
  27390. characterMakers.push(() => makeCharacter(
  27391. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27392. {
  27393. front: {
  27394. height: math.unit(10, "feet"),
  27395. weight: math.unit(750, "lb"),
  27396. name: "Front",
  27397. image: {
  27398. source: "./media/characters/juliet-a/front.svg",
  27399. extra: 1766 / 1720,
  27400. bottom: 43 / 1809
  27401. }
  27402. },
  27403. back: {
  27404. height: math.unit(10, "feet"),
  27405. weight: math.unit(750, "lb"),
  27406. name: "Back",
  27407. image: {
  27408. source: "./media/characters/juliet-a/back.svg",
  27409. extra: 1781 / 1734,
  27410. bottom: 35 / 1810,
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(10, "feet"),
  27418. default: true
  27419. },
  27420. {
  27421. name: "Dragon Form",
  27422. height: math.unit(250, "feet")
  27423. },
  27424. {
  27425. name: "Macro",
  27426. height: math.unit(1000, "feet")
  27427. },
  27428. {
  27429. name: "Megamacro",
  27430. height: math.unit(10000, "feet")
  27431. }
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27436. {
  27437. regular: {
  27438. height: math.unit(7 + 3 / 12, "feet"),
  27439. weight: math.unit(260, "lb"),
  27440. name: "Regular",
  27441. image: {
  27442. source: "./media/characters/wild/regular.svg",
  27443. extra: 97.45 / 92,
  27444. bottom: 6.8 / 104.3
  27445. }
  27446. },
  27447. biggums: {
  27448. height: math.unit(8 + 6 / 12, "feet"),
  27449. weight: math.unit(425, "lb"),
  27450. name: "Biggums",
  27451. image: {
  27452. source: "./media/characters/wild/biggums.svg",
  27453. extra: 97.45 / 92,
  27454. bottom: 7.5 / 132.34
  27455. }
  27456. },
  27457. mawRegular: {
  27458. height: math.unit(1.24, "feet"),
  27459. name: "Maw (Regular)",
  27460. image: {
  27461. source: "./media/characters/wild/maw.svg"
  27462. }
  27463. },
  27464. mawBiggums: {
  27465. height: math.unit(1.47, "feet"),
  27466. name: "Maw (Biggums)",
  27467. image: {
  27468. source: "./media/characters/wild/maw.svg"
  27469. }
  27470. },
  27471. },
  27472. [
  27473. {
  27474. name: "Normal",
  27475. height: math.unit(7 + 3 / 12, "feet"),
  27476. default: true
  27477. },
  27478. ]
  27479. ))
  27480. characterMakers.push(() => makeCharacter(
  27481. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27482. {
  27483. front: {
  27484. height: math.unit(2.5, "meters"),
  27485. weight: math.unit(200, "kg"),
  27486. name: "Front",
  27487. image: {
  27488. source: "./media/characters/vidar/front.svg",
  27489. extra: 2994 / 2795,
  27490. bottom: 56 / 3061
  27491. }
  27492. },
  27493. back: {
  27494. height: math.unit(2.5, "meters"),
  27495. weight: math.unit(200, "kg"),
  27496. name: "Back",
  27497. image: {
  27498. source: "./media/characters/vidar/back.svg",
  27499. extra: 3131 / 2928,
  27500. bottom: 13.5 / 3141.5
  27501. }
  27502. },
  27503. feral: {
  27504. height: math.unit(2.5, "meters"),
  27505. weight: math.unit(2000, "kg"),
  27506. name: "Feral",
  27507. image: {
  27508. source: "./media/characters/vidar/feral.svg",
  27509. extra: 2790 / 1765,
  27510. bottom: 6 / 2796
  27511. }
  27512. },
  27513. },
  27514. [
  27515. {
  27516. name: "Normal",
  27517. height: math.unit(2.5, "meters"),
  27518. default: true
  27519. },
  27520. {
  27521. name: "Macro",
  27522. height: math.unit(100, "meters")
  27523. },
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27528. {
  27529. front: {
  27530. height: math.unit(5 + 9 / 12, "feet"),
  27531. weight: math.unit(120, "lb"),
  27532. name: "Front",
  27533. image: {
  27534. source: "./media/characters/ash/front.svg",
  27535. extra: 2189 / 1961,
  27536. bottom: 5.2 / 2194
  27537. }
  27538. },
  27539. },
  27540. [
  27541. {
  27542. name: "Normal",
  27543. height: math.unit(5 + 9 / 12, "feet"),
  27544. default: true
  27545. },
  27546. ]
  27547. ))
  27548. characterMakers.push(() => makeCharacter(
  27549. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27550. {
  27551. front: {
  27552. height: math.unit(9, "feet"),
  27553. weight: math.unit(10000, "lb"),
  27554. name: "Front",
  27555. image: {
  27556. source: "./media/characters/gygabite/front.svg",
  27557. bottom: 31.7 / 537.8,
  27558. extra: 505 / 370
  27559. }
  27560. },
  27561. },
  27562. [
  27563. {
  27564. name: "Normal",
  27565. height: math.unit(9, "feet"),
  27566. default: true
  27567. },
  27568. ]
  27569. ))
  27570. characterMakers.push(() => makeCharacter(
  27571. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27572. {
  27573. front: {
  27574. height: math.unit(12, "feet"),
  27575. weight: math.unit(35000, "lb"),
  27576. name: "Front",
  27577. image: {
  27578. source: "./media/characters/p0tat0/front.svg",
  27579. extra: 1065 / 921,
  27580. bottom: 55.7 / 1121.25
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Normal",
  27587. height: math.unit(12, "feet"),
  27588. default: true
  27589. },
  27590. ]
  27591. ))
  27592. characterMakers.push(() => makeCharacter(
  27593. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27594. {
  27595. side: {
  27596. height: math.unit(6.5, "feet"),
  27597. weight: math.unit(800, "lb"),
  27598. name: "Side",
  27599. image: {
  27600. source: "./media/characters/dusk/side.svg",
  27601. extra: 615 / 373,
  27602. bottom: 53 / 664
  27603. }
  27604. },
  27605. sitting: {
  27606. height: math.unit(7, "feet"),
  27607. weight: math.unit(800, "lb"),
  27608. name: "Sitting",
  27609. image: {
  27610. source: "./media/characters/dusk/sitting.svg",
  27611. extra: 753 / 425,
  27612. bottom: 33 / 774
  27613. }
  27614. },
  27615. head: {
  27616. height: math.unit(6.1, "feet"),
  27617. name: "Head",
  27618. image: {
  27619. source: "./media/characters/dusk/head.svg"
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(7, "feet"),
  27627. default: true
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27633. {
  27634. front: {
  27635. height: math.unit(15, "feet"),
  27636. weight: math.unit(7000, "lb"),
  27637. name: "Front",
  27638. image: {
  27639. source: "./media/characters/jay-direwolf/front.svg",
  27640. extra: 1810 / 1732,
  27641. bottom: 66 / 1892
  27642. }
  27643. },
  27644. },
  27645. [
  27646. {
  27647. name: "Normal",
  27648. height: math.unit(15, "feet"),
  27649. default: true
  27650. },
  27651. ]
  27652. ))
  27653. characterMakers.push(() => makeCharacter(
  27654. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27655. {
  27656. front: {
  27657. height: math.unit(4 + 9 / 12, "feet"),
  27658. weight: math.unit(130, "lb"),
  27659. name: "Front",
  27660. image: {
  27661. source: "./media/characters/anchovie/front.svg",
  27662. extra: 382 / 350,
  27663. bottom: 25 / 409
  27664. }
  27665. },
  27666. back: {
  27667. height: math.unit(4 + 9 / 12, "feet"),
  27668. weight: math.unit(130, "lb"),
  27669. name: "Back",
  27670. image: {
  27671. source: "./media/characters/anchovie/back.svg",
  27672. extra: 385 / 352,
  27673. bottom: 16.6 / 402
  27674. }
  27675. },
  27676. frontDressed: {
  27677. height: math.unit(4 + 9 / 12, "feet"),
  27678. weight: math.unit(130, "lb"),
  27679. name: "Front (Dressed)",
  27680. image: {
  27681. source: "./media/characters/anchovie/front-dressed.svg",
  27682. extra: 382 / 350,
  27683. bottom: 25 / 409
  27684. }
  27685. },
  27686. backDressed: {
  27687. height: math.unit(4 + 9 / 12, "feet"),
  27688. weight: math.unit(130, "lb"),
  27689. name: "Back (Dressed)",
  27690. image: {
  27691. source: "./media/characters/anchovie/back-dressed.svg",
  27692. extra: 385 / 352,
  27693. bottom: 16.6 / 402
  27694. }
  27695. },
  27696. },
  27697. [
  27698. {
  27699. name: "Micro",
  27700. height: math.unit(6.4, "inches")
  27701. },
  27702. {
  27703. name: "Normal",
  27704. height: math.unit(4 + 9 / 12, "feet"),
  27705. default: true
  27706. },
  27707. ]
  27708. ))
  27709. characterMakers.push(() => makeCharacter(
  27710. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27711. {
  27712. front: {
  27713. height: math.unit(2, "meters"),
  27714. weight: math.unit(180, "lb"),
  27715. name: "Front",
  27716. image: {
  27717. source: "./media/characters/acidrenamon/front.svg",
  27718. extra: 987 / 890,
  27719. bottom: 22.8 / 1009
  27720. }
  27721. },
  27722. back: {
  27723. height: math.unit(2, "meters"),
  27724. weight: math.unit(180, "lb"),
  27725. name: "Back",
  27726. image: {
  27727. source: "./media/characters/acidrenamon/back.svg",
  27728. extra: 983 / 891,
  27729. bottom: 8.4 / 992
  27730. }
  27731. },
  27732. head: {
  27733. height: math.unit(1.92, "feet"),
  27734. name: "Head",
  27735. image: {
  27736. source: "./media/characters/acidrenamon/head.svg"
  27737. }
  27738. },
  27739. rump: {
  27740. height: math.unit(1.72, "feet"),
  27741. name: "Rump",
  27742. image: {
  27743. source: "./media/characters/acidrenamon/rump.svg"
  27744. }
  27745. },
  27746. tail: {
  27747. height: math.unit(4.2, "feet"),
  27748. name: "Tail",
  27749. image: {
  27750. source: "./media/characters/acidrenamon/tail.svg"
  27751. }
  27752. },
  27753. },
  27754. [
  27755. {
  27756. name: "Normal",
  27757. height: math.unit(2, "meters"),
  27758. default: true
  27759. },
  27760. {
  27761. name: "Minimacro",
  27762. height: math.unit(7, "meters")
  27763. },
  27764. {
  27765. name: "Macro",
  27766. height: math.unit(200, "meters")
  27767. },
  27768. {
  27769. name: "Gigamacro",
  27770. height: math.unit(0.2, "earths")
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27776. {
  27777. front: {
  27778. height: math.unit(152, "feet"),
  27779. name: "Front",
  27780. image: {
  27781. source: "./media/characters/kenzie-lee/front.svg",
  27782. extra: 1869/1774,
  27783. bottom: 128/1997
  27784. }
  27785. },
  27786. side: {
  27787. height: math.unit(86, "feet"),
  27788. name: "Side",
  27789. image: {
  27790. source: "./media/characters/kenzie-lee/side.svg",
  27791. extra: 930/815,
  27792. bottom: 177/1107
  27793. }
  27794. },
  27795. paw: {
  27796. height: math.unit(15, "feet"),
  27797. name: "Paw",
  27798. image: {
  27799. source: "./media/characters/kenzie-lee/paw.svg"
  27800. }
  27801. },
  27802. },
  27803. [
  27804. {
  27805. name: "Micro",
  27806. height: math.unit(1.5, "inches")
  27807. },
  27808. {
  27809. name: "Normal",
  27810. height: math.unit(152, "feet"),
  27811. default: true
  27812. },
  27813. {
  27814. name: "Megamacro",
  27815. height: math.unit(7, "miles")
  27816. },
  27817. {
  27818. name: "Gigamacro",
  27819. height: math.unit(8000, "miles")
  27820. },
  27821. ]
  27822. ))
  27823. characterMakers.push(() => makeCharacter(
  27824. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27825. {
  27826. side: {
  27827. height: math.unit(6, "feet"),
  27828. weight: math.unit(150, "lb"),
  27829. name: "Side",
  27830. image: {
  27831. source: "./media/characters/withers/side.svg",
  27832. extra: 1830 / 1728,
  27833. bottom: 96 / 1927
  27834. }
  27835. },
  27836. front: {
  27837. height: math.unit(6, "feet"),
  27838. weight: math.unit(150, "lb"),
  27839. name: "Front",
  27840. image: {
  27841. source: "./media/characters/withers/front.svg",
  27842. extra: 1514 / 1438,
  27843. bottom: 118 / 1632
  27844. }
  27845. },
  27846. },
  27847. [
  27848. {
  27849. name: "Macro",
  27850. height: math.unit(168, "feet"),
  27851. default: true
  27852. },
  27853. {
  27854. name: "Megamacro",
  27855. height: math.unit(15, "miles")
  27856. }
  27857. ]
  27858. ))
  27859. characterMakers.push(() => makeCharacter(
  27860. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27861. {
  27862. front: {
  27863. height: math.unit(6 + 7 / 12, "feet"),
  27864. weight: math.unit(250, "lb"),
  27865. name: "Front",
  27866. image: {
  27867. source: "./media/characters/nemoskii/front.svg",
  27868. extra: 2270 / 1734,
  27869. bottom: 86 / 2354
  27870. }
  27871. },
  27872. back: {
  27873. height: math.unit(6 + 7 / 12, "feet"),
  27874. weight: math.unit(250, "lb"),
  27875. name: "Back",
  27876. image: {
  27877. source: "./media/characters/nemoskii/back.svg",
  27878. extra: 1845 / 1788,
  27879. bottom: 10.5 / 1852
  27880. }
  27881. },
  27882. head: {
  27883. height: math.unit(1.31, "feet"),
  27884. name: "Head",
  27885. image: {
  27886. source: "./media/characters/nemoskii/head.svg"
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Micro",
  27893. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27894. },
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(6 + 7 / 12, "feet"),
  27898. default: true
  27899. },
  27900. {
  27901. name: "Macro",
  27902. height: math.unit((6 + 7 / 12) * 150, "feet")
  27903. },
  27904. {
  27905. name: "Macro+",
  27906. height: math.unit((6 + 7 / 12) * 500, "feet")
  27907. },
  27908. {
  27909. name: "Megamacro",
  27910. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27911. },
  27912. ]
  27913. ))
  27914. characterMakers.push(() => makeCharacter(
  27915. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27916. {
  27917. front: {
  27918. height: math.unit(1, "mile"),
  27919. weight: math.unit(265261.9, "lb"),
  27920. name: "Front",
  27921. image: {
  27922. source: "./media/characters/shui/front.svg",
  27923. extra: 1633 / 1564,
  27924. bottom: 91.5 / 1726
  27925. }
  27926. },
  27927. },
  27928. [
  27929. {
  27930. name: "Macro",
  27931. height: math.unit(1, "mile"),
  27932. default: true
  27933. },
  27934. ]
  27935. ))
  27936. characterMakers.push(() => makeCharacter(
  27937. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27938. {
  27939. front: {
  27940. height: math.unit(12 + 6 / 12, "feet"),
  27941. weight: math.unit(1342, "lb"),
  27942. name: "Front",
  27943. image: {
  27944. source: "./media/characters/arokh-takakura/front.svg",
  27945. extra: 1089 / 1043,
  27946. bottom: 77.4 / 1176.7
  27947. }
  27948. },
  27949. back: {
  27950. height: math.unit(12 + 6 / 12, "feet"),
  27951. weight: math.unit(1342, "lb"),
  27952. name: "Back",
  27953. image: {
  27954. source: "./media/characters/arokh-takakura/back.svg",
  27955. extra: 1046 / 1019,
  27956. bottom: 102 / 1150
  27957. }
  27958. },
  27959. },
  27960. [
  27961. {
  27962. name: "Big",
  27963. height: math.unit(12 + 6 / 12, "feet"),
  27964. default: true
  27965. },
  27966. ]
  27967. ))
  27968. characterMakers.push(() => makeCharacter(
  27969. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27970. {
  27971. front: {
  27972. height: math.unit(5 + 6 / 12, "feet"),
  27973. weight: math.unit(150, "lb"),
  27974. name: "Front",
  27975. image: {
  27976. source: "./media/characters/theo/front.svg",
  27977. extra: 1184 / 1131,
  27978. bottom: 7.4 / 1191
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Micro",
  27985. height: math.unit(5, "inches")
  27986. },
  27987. {
  27988. name: "Normal",
  27989. height: math.unit(5 + 6 / 12, "feet"),
  27990. default: true
  27991. },
  27992. ]
  27993. ))
  27994. characterMakers.push(() => makeCharacter(
  27995. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27996. {
  27997. front: {
  27998. height: math.unit(5 + 9 / 12, "feet"),
  27999. weight: math.unit(130, "lb"),
  28000. name: "Front",
  28001. image: {
  28002. source: "./media/characters/cecelia-swift/front.svg",
  28003. extra: 502 / 484,
  28004. bottom: 23 / 523
  28005. }
  28006. },
  28007. back: {
  28008. height: math.unit(5 + 9 / 12, "feet"),
  28009. weight: math.unit(130, "lb"),
  28010. name: "Back",
  28011. image: {
  28012. source: "./media/characters/cecelia-swift/back.svg",
  28013. extra: 499 / 485,
  28014. bottom: 12 / 511
  28015. }
  28016. },
  28017. head: {
  28018. height: math.unit(0.90, "feet"),
  28019. name: "Head",
  28020. image: {
  28021. source: "./media/characters/cecelia-swift/head.svg"
  28022. }
  28023. },
  28024. rump: {
  28025. height: math.unit(1.75, "feet"),
  28026. name: "Rump",
  28027. image: {
  28028. source: "./media/characters/cecelia-swift/rump.svg"
  28029. }
  28030. },
  28031. },
  28032. [
  28033. {
  28034. name: "Normal",
  28035. height: math.unit(5 + 9 / 12, "feet"),
  28036. default: true
  28037. },
  28038. {
  28039. name: "Big",
  28040. height: math.unit(50, "feet")
  28041. },
  28042. {
  28043. name: "Macro",
  28044. height: math.unit(100, "feet")
  28045. },
  28046. {
  28047. name: "Macro+",
  28048. height: math.unit(500, "feet")
  28049. },
  28050. {
  28051. name: "Macro++",
  28052. height: math.unit(1000, "feet")
  28053. },
  28054. ]
  28055. ))
  28056. characterMakers.push(() => makeCharacter(
  28057. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28058. {
  28059. front: {
  28060. height: math.unit(6, "feet"),
  28061. weight: math.unit(150, "lb"),
  28062. name: "Front",
  28063. image: {
  28064. source: "./media/characters/kaunan/front.svg",
  28065. extra: 2890 / 2523,
  28066. bottom: 49 / 2939
  28067. }
  28068. },
  28069. },
  28070. [
  28071. {
  28072. name: "Macro",
  28073. height: math.unit(150, "feet"),
  28074. default: true
  28075. },
  28076. ]
  28077. ))
  28078. characterMakers.push(() => makeCharacter(
  28079. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28080. {
  28081. front: {
  28082. height: math.unit(175, "cm"),
  28083. weight: math.unit(60, "kg"),
  28084. name: "Front",
  28085. image: {
  28086. source: "./media/characters/fei/front.svg",
  28087. extra: 1873/1723,
  28088. bottom: 53/1926
  28089. }
  28090. },
  28091. },
  28092. [
  28093. {
  28094. name: "Mortal",
  28095. height: math.unit(175, "cm")
  28096. },
  28097. {
  28098. name: "Normal",
  28099. height: math.unit(3500, "m"),
  28100. default: true
  28101. },
  28102. {
  28103. name: "Stroll",
  28104. height: math.unit(17.5, "km")
  28105. },
  28106. {
  28107. name: "Showoff",
  28108. height: math.unit(175, "km")
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28114. {
  28115. front: {
  28116. height: math.unit(7, "feet"),
  28117. weight: math.unit(1000, "kg"),
  28118. name: "Front",
  28119. image: {
  28120. source: "./media/characters/edrax/front.svg",
  28121. extra: 2838 / 2550,
  28122. bottom: 130 / 2968
  28123. }
  28124. },
  28125. },
  28126. [
  28127. {
  28128. name: "Small",
  28129. height: math.unit(7, "feet")
  28130. },
  28131. {
  28132. name: "Normal",
  28133. height: math.unit(1500, "meters")
  28134. },
  28135. {
  28136. name: "Mega",
  28137. height: math.unit(12000000, "km"),
  28138. default: true
  28139. },
  28140. {
  28141. name: "Megamacro",
  28142. height: math.unit(10600000, "lightyears")
  28143. },
  28144. {
  28145. name: "Hypermacro",
  28146. height: math.unit(256, "yottameters")
  28147. },
  28148. ]
  28149. ))
  28150. characterMakers.push(() => makeCharacter(
  28151. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28152. {
  28153. front: {
  28154. height: math.unit(10, "feet"),
  28155. weight: math.unit(750, "lb"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/clove/front.svg",
  28159. extra: 1918/1751,
  28160. bottom: 52/1970
  28161. }
  28162. },
  28163. back: {
  28164. height: math.unit(10, "feet"),
  28165. weight: math.unit(750, "lb"),
  28166. name: "Back",
  28167. image: {
  28168. source: "./media/characters/clove/back.svg",
  28169. extra: 1912/1747,
  28170. bottom: 50/1962
  28171. }
  28172. },
  28173. },
  28174. [
  28175. {
  28176. name: "Normal",
  28177. height: math.unit(10, "feet"),
  28178. default: true
  28179. },
  28180. ]
  28181. ))
  28182. characterMakers.push(() => makeCharacter(
  28183. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28184. {
  28185. front: {
  28186. height: math.unit(4, "feet"),
  28187. weight: math.unit(50, "lb"),
  28188. name: "Front",
  28189. image: {
  28190. source: "./media/characters/alex-rabbit/front.svg",
  28191. extra: 507 / 458,
  28192. bottom: 18.5 / 527
  28193. }
  28194. },
  28195. back: {
  28196. height: math.unit(4, "feet"),
  28197. weight: math.unit(50, "lb"),
  28198. name: "Back",
  28199. image: {
  28200. source: "./media/characters/alex-rabbit/back.svg",
  28201. extra: 502 / 460,
  28202. bottom: 18.9 / 521
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(4, "feet"),
  28210. default: true
  28211. },
  28212. ]
  28213. ))
  28214. characterMakers.push(() => makeCharacter(
  28215. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28216. {
  28217. front: {
  28218. height: math.unit(1 + 3 / 12, "feet"),
  28219. weight: math.unit(80, "lb"),
  28220. name: "Front",
  28221. image: {
  28222. source: "./media/characters/zander-rose/front.svg",
  28223. extra: 916 / 797,
  28224. bottom: 17 / 933
  28225. }
  28226. },
  28227. back: {
  28228. height: math.unit(1 + 3 / 12, "feet"),
  28229. weight: math.unit(80, "lb"),
  28230. name: "Back",
  28231. image: {
  28232. source: "./media/characters/zander-rose/back.svg",
  28233. extra: 903 / 779,
  28234. bottom: 31 / 934
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Normal",
  28241. height: math.unit(1 + 3 / 12, "feet"),
  28242. default: true
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28248. {
  28249. anthro: {
  28250. height: math.unit(6, "feet"),
  28251. weight: math.unit(150, "lb"),
  28252. name: "Anthro",
  28253. image: {
  28254. source: "./media/characters/razz/anthro.svg",
  28255. extra: 1437 / 1343,
  28256. bottom: 48 / 1485
  28257. }
  28258. },
  28259. feral: {
  28260. height: math.unit(6, "feet"),
  28261. weight: math.unit(150, "lb"),
  28262. name: "Feral",
  28263. image: {
  28264. source: "./media/characters/razz/feral.svg",
  28265. extra: 2569 / 1385,
  28266. bottom: 95 / 2664
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(6, "feet"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(9 + 4 / 12, "feet"),
  28283. weight: math.unit(500, "lb"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/morrigan/front.svg",
  28287. extra: 2707 / 2579,
  28288. bottom: 156 / 2863
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Normal",
  28295. height: math.unit(9 + 4 / 12, "feet"),
  28296. default: true
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28302. {
  28303. front: {
  28304. height: math.unit(5, "stories"),
  28305. weight: math.unit(4000, "lb"),
  28306. name: "Front",
  28307. image: {
  28308. source: "./media/characters/jenene/front.svg",
  28309. extra: 1780 / 1710,
  28310. bottom: 57 / 1837
  28311. }
  28312. },
  28313. },
  28314. [
  28315. {
  28316. name: "Normal",
  28317. height: math.unit(5, "stories"),
  28318. default: true
  28319. },
  28320. ]
  28321. ))
  28322. characterMakers.push(() => makeCharacter(
  28323. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28324. {
  28325. taurSfw: {
  28326. height: math.unit(10, "meters"),
  28327. weight: math.unit(17500, "kg"),
  28328. name: "Taur",
  28329. image: {
  28330. source: "./media/characters/faey/taur-sfw.svg",
  28331. extra: 1200 / 968,
  28332. bottom: 41 / 1241
  28333. }
  28334. },
  28335. chestmaw: {
  28336. height: math.unit(2.01, "meters"),
  28337. name: "Chestmaw",
  28338. image: {
  28339. source: "./media/characters/faey/chestmaw.svg"
  28340. }
  28341. },
  28342. foot: {
  28343. height: math.unit(2.43, "meters"),
  28344. name: "Foot",
  28345. image: {
  28346. source: "./media/characters/faey/foot.svg"
  28347. }
  28348. },
  28349. jaws: {
  28350. height: math.unit(1.66, "meters"),
  28351. name: "Jaws",
  28352. image: {
  28353. source: "./media/characters/faey/jaws.svg"
  28354. }
  28355. },
  28356. tongues: {
  28357. height: math.unit(2.01, "meters"),
  28358. name: "Tongues",
  28359. image: {
  28360. source: "./media/characters/faey/tongues.svg"
  28361. }
  28362. },
  28363. },
  28364. [
  28365. {
  28366. name: "Small",
  28367. height: math.unit(10, "meters"),
  28368. default: true
  28369. },
  28370. {
  28371. name: "Big",
  28372. height: math.unit(500000, "km")
  28373. },
  28374. ]
  28375. ))
  28376. characterMakers.push(() => makeCharacter(
  28377. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28378. {
  28379. front: {
  28380. height: math.unit(7, "feet"),
  28381. weight: math.unit(275, "lb"),
  28382. name: "Front",
  28383. image: {
  28384. source: "./media/characters/roku/front.svg",
  28385. extra: 903 / 878,
  28386. bottom: 37 / 940
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(7, "feet"),
  28394. default: true
  28395. },
  28396. {
  28397. name: "Macro",
  28398. height: math.unit(500, "feet")
  28399. },
  28400. {
  28401. name: "Megamacro",
  28402. height: math.unit(200, "miles")
  28403. },
  28404. ]
  28405. ))
  28406. characterMakers.push(() => makeCharacter(
  28407. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28408. {
  28409. front: {
  28410. height: math.unit(6 + 2 / 12, "feet"),
  28411. weight: math.unit(150, "lb"),
  28412. name: "Front",
  28413. image: {
  28414. source: "./media/characters/lira/front.svg",
  28415. extra: 1727 / 1605,
  28416. bottom: 26 / 1753
  28417. }
  28418. },
  28419. back: {
  28420. height: math.unit(6 + 2 / 12, "feet"),
  28421. weight: math.unit(150, "lb"),
  28422. name: "Back",
  28423. image: {
  28424. source: "./media/characters/lira/back.svg",
  28425. extra: 1713/1621,
  28426. bottom: 20/1733
  28427. }
  28428. },
  28429. hand: {
  28430. height: math.unit(0.75, "feet"),
  28431. name: "Hand",
  28432. image: {
  28433. source: "./media/characters/lira/hand.svg"
  28434. }
  28435. },
  28436. maw: {
  28437. height: math.unit(0.65, "feet"),
  28438. name: "Maw",
  28439. image: {
  28440. source: "./media/characters/lira/maw.svg"
  28441. }
  28442. },
  28443. pawDigi: {
  28444. height: math.unit(1.6, "feet"),
  28445. name: "Paw Digi",
  28446. image: {
  28447. source: "./media/characters/lira/paw-digi.svg"
  28448. }
  28449. },
  28450. pawPlanti: {
  28451. height: math.unit(1.4, "feet"),
  28452. name: "Paw Planti",
  28453. image: {
  28454. source: "./media/characters/lira/paw-planti.svg"
  28455. }
  28456. },
  28457. },
  28458. [
  28459. {
  28460. name: "Normal",
  28461. height: math.unit(6 + 2 / 12, "feet"),
  28462. default: true
  28463. },
  28464. {
  28465. name: "Macro",
  28466. height: math.unit(100, "feet")
  28467. },
  28468. {
  28469. name: "Macro²",
  28470. height: math.unit(1600, "feet")
  28471. },
  28472. {
  28473. name: "Planetary",
  28474. height: math.unit(20, "earths")
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28480. {
  28481. front: {
  28482. height: math.unit(6, "feet"),
  28483. weight: math.unit(150, "lb"),
  28484. name: "Front",
  28485. image: {
  28486. source: "./media/characters/hadjet/front.svg",
  28487. extra: 1480 / 1346,
  28488. bottom: 26 / 1506
  28489. }
  28490. },
  28491. frontNsfw: {
  28492. height: math.unit(6, "feet"),
  28493. weight: math.unit(150, "lb"),
  28494. name: "Front (NSFW)",
  28495. image: {
  28496. source: "./media/characters/hadjet/front-nsfw.svg",
  28497. extra: 1440 / 1358,
  28498. bottom: 52 / 1492
  28499. }
  28500. },
  28501. },
  28502. [
  28503. {
  28504. name: "Macro",
  28505. height: math.unit(10, "stories"),
  28506. default: true
  28507. },
  28508. {
  28509. name: "Megamacro",
  28510. height: math.unit(1.5, "miles")
  28511. },
  28512. {
  28513. name: "Megamacro+",
  28514. height: math.unit(5, "miles")
  28515. },
  28516. ]
  28517. ))
  28518. characterMakers.push(() => makeCharacter(
  28519. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28520. {
  28521. side: {
  28522. height: math.unit(106, "feet"),
  28523. weight: math.unit(500, "tonnes"),
  28524. name: "Side",
  28525. image: {
  28526. source: "./media/characters/kodran/side.svg",
  28527. extra: 553 / 480,
  28528. bottom: 33 / 586
  28529. }
  28530. },
  28531. front: {
  28532. height: math.unit(132, "feet"),
  28533. weight: math.unit(500, "tonnes"),
  28534. name: "Front",
  28535. image: {
  28536. source: "./media/characters/kodran/front.svg",
  28537. extra: 667 / 643,
  28538. bottom: 42 / 709
  28539. }
  28540. },
  28541. flying: {
  28542. height: math.unit(350, "feet"),
  28543. weight: math.unit(500, "tonnes"),
  28544. name: "Flying",
  28545. image: {
  28546. source: "./media/characters/kodran/flying.svg"
  28547. }
  28548. },
  28549. foot: {
  28550. height: math.unit(33, "feet"),
  28551. name: "Foot",
  28552. image: {
  28553. source: "./media/characters/kodran/foot.svg"
  28554. }
  28555. },
  28556. footFront: {
  28557. height: math.unit(19, "feet"),
  28558. name: "Foot (Front)",
  28559. image: {
  28560. source: "./media/characters/kodran/foot-front.svg",
  28561. extra: 261 / 261,
  28562. bottom: 91 / 352
  28563. }
  28564. },
  28565. headFront: {
  28566. height: math.unit(53, "feet"),
  28567. name: "Head (Front)",
  28568. image: {
  28569. source: "./media/characters/kodran/head-front.svg"
  28570. }
  28571. },
  28572. headSide: {
  28573. height: math.unit(65, "feet"),
  28574. name: "Head (Side)",
  28575. image: {
  28576. source: "./media/characters/kodran/head-side.svg"
  28577. }
  28578. },
  28579. throat: {
  28580. height: math.unit(79, "feet"),
  28581. name: "Throat",
  28582. image: {
  28583. source: "./media/characters/kodran/throat.svg"
  28584. }
  28585. },
  28586. },
  28587. [
  28588. {
  28589. name: "Large",
  28590. height: math.unit(106, "feet"),
  28591. default: true
  28592. },
  28593. ]
  28594. ))
  28595. characterMakers.push(() => makeCharacter(
  28596. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28597. {
  28598. side: {
  28599. height: math.unit(11, "feet"),
  28600. weight: math.unit(150, "lb"),
  28601. name: "Side",
  28602. image: {
  28603. source: "./media/characters/pyxaron/side.svg",
  28604. extra: 305 / 195,
  28605. bottom: 17 / 322
  28606. }
  28607. },
  28608. },
  28609. [
  28610. {
  28611. name: "Normal",
  28612. height: math.unit(11, "feet"),
  28613. default: true
  28614. },
  28615. ]
  28616. ))
  28617. characterMakers.push(() => makeCharacter(
  28618. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28619. {
  28620. front: {
  28621. height: math.unit(6, "feet"),
  28622. weight: math.unit(150, "lb"),
  28623. name: "Front",
  28624. image: {
  28625. source: "./media/characters/meep/front.svg",
  28626. extra: 88 / 80,
  28627. bottom: 6 / 94
  28628. }
  28629. },
  28630. },
  28631. [
  28632. {
  28633. name: "Fun Sized",
  28634. height: math.unit(2, "inches"),
  28635. default: true
  28636. },
  28637. {
  28638. name: "Friend Sized",
  28639. height: math.unit(8, "inches")
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(15, "feet"),
  28648. weight: math.unit(2500, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/holly-rabbit/front.svg",
  28652. extra: 1433 / 1233,
  28653. bottom: 125 / 1558
  28654. }
  28655. },
  28656. dick: {
  28657. height: math.unit(4.6, "feet"),
  28658. name: "Dick",
  28659. image: {
  28660. source: "./media/characters/holly-rabbit/dick.svg"
  28661. }
  28662. },
  28663. },
  28664. [
  28665. {
  28666. name: "Normal",
  28667. height: math.unit(15, "feet"),
  28668. default: true
  28669. },
  28670. {
  28671. name: "Macro",
  28672. height: math.unit(250, "feet")
  28673. },
  28674. {
  28675. name: "Macro+",
  28676. height: math.unit(2500, "feet")
  28677. },
  28678. ]
  28679. ))
  28680. characterMakers.push(() => makeCharacter(
  28681. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28682. {
  28683. front: {
  28684. height: math.unit(3.02, "meters"),
  28685. weight: math.unit(500, "kg"),
  28686. name: "Front",
  28687. image: {
  28688. source: "./media/characters/drena/front.svg",
  28689. extra: 282 / 243,
  28690. bottom: 8 / 290
  28691. }
  28692. },
  28693. side: {
  28694. height: math.unit(3.02, "meters"),
  28695. weight: math.unit(500, "kg"),
  28696. name: "Side",
  28697. image: {
  28698. source: "./media/characters/drena/side.svg",
  28699. extra: 280 / 245,
  28700. bottom: 10 / 290
  28701. }
  28702. },
  28703. back: {
  28704. height: math.unit(3.02, "meters"),
  28705. weight: math.unit(500, "kg"),
  28706. name: "Back",
  28707. image: {
  28708. source: "./media/characters/drena/back.svg",
  28709. extra: 278 / 243,
  28710. bottom: 2 / 280
  28711. }
  28712. },
  28713. foot: {
  28714. height: math.unit(0.75, "meters"),
  28715. name: "Foot",
  28716. image: {
  28717. source: "./media/characters/drena/foot.svg"
  28718. }
  28719. },
  28720. maw: {
  28721. height: math.unit(0.82, "meters"),
  28722. name: "Maw",
  28723. image: {
  28724. source: "./media/characters/drena/maw.svg"
  28725. }
  28726. },
  28727. rump: {
  28728. height: math.unit(0.93, "meters"),
  28729. name: "Rump",
  28730. image: {
  28731. source: "./media/characters/drena/rump.svg"
  28732. }
  28733. },
  28734. },
  28735. [
  28736. {
  28737. name: "Normal",
  28738. height: math.unit(3.02, "meters"),
  28739. default: true
  28740. },
  28741. ]
  28742. ))
  28743. characterMakers.push(() => makeCharacter(
  28744. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28745. {
  28746. front: {
  28747. height: math.unit(6 + 4 / 12, "feet"),
  28748. weight: math.unit(250, "lb"),
  28749. name: "Front",
  28750. image: {
  28751. source: "./media/characters/remmyzilla/front.svg",
  28752. extra: 4033 / 3588,
  28753. bottom: 123 / 4156
  28754. }
  28755. },
  28756. back: {
  28757. height: math.unit(6 + 4 / 12, "feet"),
  28758. weight: math.unit(250, "lb"),
  28759. name: "Back",
  28760. image: {
  28761. source: "./media/characters/remmyzilla/back.svg",
  28762. extra: 2687 / 2555,
  28763. bottom: 48 / 2735
  28764. }
  28765. },
  28766. paw: {
  28767. height: math.unit(1.73, "feet"),
  28768. name: "Paw",
  28769. image: {
  28770. source: "./media/characters/remmyzilla/paw.svg"
  28771. }
  28772. },
  28773. maw: {
  28774. height: math.unit(1.73, "feet"),
  28775. name: "Maw",
  28776. image: {
  28777. source: "./media/characters/remmyzilla/maw.svg"
  28778. }
  28779. },
  28780. },
  28781. [
  28782. {
  28783. name: "Normal",
  28784. height: math.unit(6 + 4 / 12, "feet")
  28785. },
  28786. {
  28787. name: "Minimacro",
  28788. height: math.unit(12 + 8 / 12, "feet")
  28789. },
  28790. {
  28791. name: "Normal",
  28792. height: math.unit(640, "feet"),
  28793. default: true
  28794. },
  28795. {
  28796. name: "Megamacro",
  28797. height: math.unit(6400, "feet")
  28798. },
  28799. {
  28800. name: "Gigamacro",
  28801. height: math.unit(64000, "miles")
  28802. },
  28803. ]
  28804. ))
  28805. characterMakers.push(() => makeCharacter(
  28806. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28807. {
  28808. front: {
  28809. height: math.unit(2.5, "meters"),
  28810. weight: math.unit(300, "lb"),
  28811. name: "Front",
  28812. image: {
  28813. source: "./media/characters/lawrence/front.svg",
  28814. extra: 357 / 335,
  28815. bottom: 30 / 387
  28816. }
  28817. },
  28818. back: {
  28819. height: math.unit(2.5, "meters"),
  28820. weight: math.unit(300, "lb"),
  28821. name: "Back",
  28822. image: {
  28823. source: "./media/characters/lawrence/back.svg",
  28824. extra: 357 / 338,
  28825. bottom: 16 / 373
  28826. }
  28827. },
  28828. head: {
  28829. height: math.unit(0.9, "meter"),
  28830. name: "Head",
  28831. image: {
  28832. source: "./media/characters/lawrence/head.svg"
  28833. }
  28834. },
  28835. maw: {
  28836. height: math.unit(0.7, "meter"),
  28837. name: "Maw",
  28838. image: {
  28839. source: "./media/characters/lawrence/maw.svg"
  28840. }
  28841. },
  28842. footBottom: {
  28843. height: math.unit(0.5, "meter"),
  28844. name: "Foot (Bottom)",
  28845. image: {
  28846. source: "./media/characters/lawrence/foot-bottom.svg"
  28847. }
  28848. },
  28849. footTop: {
  28850. height: math.unit(0.5, "meter"),
  28851. name: "Foot (Top)",
  28852. image: {
  28853. source: "./media/characters/lawrence/foot-top.svg"
  28854. }
  28855. },
  28856. },
  28857. [
  28858. {
  28859. name: "Normal",
  28860. height: math.unit(2.5, "meters"),
  28861. default: true
  28862. },
  28863. {
  28864. name: "Macro",
  28865. height: math.unit(95, "meters")
  28866. },
  28867. {
  28868. name: "Megamacro",
  28869. height: math.unit(150, "km")
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28875. {
  28876. front: {
  28877. height: math.unit(4.2, "meters"),
  28878. name: "Front",
  28879. image: {
  28880. source: "./media/characters/sydney/front.svg",
  28881. extra: 1323 / 1277,
  28882. bottom: 111 / 1434
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Normal",
  28889. height: math.unit(4.2, "meters"),
  28890. default: true
  28891. },
  28892. ]
  28893. ))
  28894. characterMakers.push(() => makeCharacter(
  28895. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28896. {
  28897. back: {
  28898. height: math.unit(201, "feet"),
  28899. name: "Back",
  28900. image: {
  28901. source: "./media/characters/jessica/back.svg",
  28902. extra: 273 / 259,
  28903. bottom: 7 / 280
  28904. }
  28905. },
  28906. },
  28907. [
  28908. {
  28909. name: "Normal",
  28910. height: math.unit(201, "feet"),
  28911. default: true
  28912. },
  28913. {
  28914. name: "Megamacro",
  28915. height: math.unit(8, "miles")
  28916. },
  28917. ]
  28918. ))
  28919. characterMakers.push(() => makeCharacter(
  28920. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28921. {
  28922. side: {
  28923. height: math.unit(320, "cm"),
  28924. name: "Side",
  28925. image: {
  28926. source: "./media/characters/victoria/side.svg",
  28927. extra: 778 / 346,
  28928. bottom: 56 / 834
  28929. }
  28930. },
  28931. maw: {
  28932. height: math.unit(5.9, "feet"),
  28933. name: "Maw",
  28934. image: {
  28935. source: "./media/characters/victoria/maw.svg"
  28936. }
  28937. },
  28938. },
  28939. [
  28940. {
  28941. name: "Normal",
  28942. height: math.unit(320, "cm"),
  28943. default: true
  28944. },
  28945. ]
  28946. ))
  28947. characterMakers.push(() => makeCharacter(
  28948. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28949. {
  28950. front: {
  28951. height: math.unit(5 + 6 / 12, "feet"),
  28952. name: "Front",
  28953. image: {
  28954. source: "./media/characters/cat/front.svg",
  28955. extra: 1449/1295,
  28956. bottom: 34/1483
  28957. }
  28958. },
  28959. back: {
  28960. height: math.unit(5 + 6 / 12, "feet"),
  28961. name: "Back",
  28962. image: {
  28963. source: "./media/characters/cat/back.svg",
  28964. extra: 1466/1301,
  28965. bottom: 19/1485
  28966. }
  28967. },
  28968. taur: {
  28969. height: math.unit(7, "feet"),
  28970. name: "Taur",
  28971. image: {
  28972. source: "./media/characters/cat/taur.svg",
  28973. extra: 1389/1233,
  28974. bottom: 83/1472
  28975. }
  28976. },
  28977. lucarioFront: {
  28978. height: math.unit(4, "feet"),
  28979. name: "Lucario (Front)",
  28980. image: {
  28981. source: "./media/characters/cat/lucario-front.svg",
  28982. extra: 1149/1019,
  28983. bottom: 84/1233
  28984. }
  28985. },
  28986. lucarioBack: {
  28987. height: math.unit(4, "feet"),
  28988. name: "Lucario (Back)",
  28989. image: {
  28990. source: "./media/characters/cat/lucario-back.svg",
  28991. extra: 1190/1059,
  28992. bottom: 33/1223
  28993. }
  28994. },
  28995. megaLucario: {
  28996. height: math.unit(4, "feet"),
  28997. name: "Mega Lucario",
  28998. image: {
  28999. source: "./media/characters/cat/mega-lucario.svg",
  29000. extra: 1515 / 1319,
  29001. bottom: 63 / 1578
  29002. }
  29003. },
  29004. nickit: {
  29005. height: math.unit(2, "feet"),
  29006. name: "Nickit",
  29007. image: {
  29008. source: "./media/characters/cat/nickit.svg",
  29009. extra: 1980 / 1585,
  29010. bottom: 102 / 2082
  29011. }
  29012. },
  29013. lopunnyFront: {
  29014. height: math.unit(5, "feet"),
  29015. name: "Lopunny (Front)",
  29016. image: {
  29017. source: "./media/characters/cat/lopunny-front.svg",
  29018. extra: 1782 / 1469,
  29019. bottom: 38 / 1820
  29020. }
  29021. },
  29022. lopunnyBack: {
  29023. height: math.unit(5, "feet"),
  29024. name: "Lopunny (Back)",
  29025. image: {
  29026. source: "./media/characters/cat/lopunny-back.svg",
  29027. extra: 1660 / 1490,
  29028. bottom: 25 / 1685
  29029. }
  29030. },
  29031. },
  29032. [
  29033. {
  29034. name: "Really small",
  29035. height: math.unit(1, "nm")
  29036. },
  29037. {
  29038. name: "Micro",
  29039. height: math.unit(5, "inches")
  29040. },
  29041. {
  29042. name: "Normal",
  29043. height: math.unit(5 + 6 / 12, "feet"),
  29044. default: true
  29045. },
  29046. {
  29047. name: "Macro",
  29048. height: math.unit(50, "feet")
  29049. },
  29050. {
  29051. name: "Macro+",
  29052. height: math.unit(150, "feet")
  29053. },
  29054. {
  29055. name: "Megamacro",
  29056. height: math.unit(100, "miles")
  29057. },
  29058. ]
  29059. ))
  29060. characterMakers.push(() => makeCharacter(
  29061. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29062. {
  29063. front: {
  29064. height: math.unit(63.4, "meters"),
  29065. weight: math.unit(3.28349e+6, "kilograms"),
  29066. name: "Front",
  29067. image: {
  29068. source: "./media/characters/kirina-violet/front.svg",
  29069. extra: 2812 / 2725,
  29070. bottom: 0 / 2812
  29071. }
  29072. },
  29073. back: {
  29074. height: math.unit(63.4, "meters"),
  29075. weight: math.unit(3.28349e+6, "kilograms"),
  29076. name: "Back",
  29077. image: {
  29078. source: "./media/characters/kirina-violet/back.svg",
  29079. extra: 2812 / 2725,
  29080. bottom: 0 / 2812
  29081. }
  29082. },
  29083. mouth: {
  29084. height: math.unit(4.35, "meters"),
  29085. name: "Mouth",
  29086. image: {
  29087. source: "./media/characters/kirina-violet/mouth.svg"
  29088. }
  29089. },
  29090. paw: {
  29091. height: math.unit(5.6, "meters"),
  29092. name: "Paw",
  29093. image: {
  29094. source: "./media/characters/kirina-violet/paw.svg"
  29095. }
  29096. },
  29097. tail: {
  29098. height: math.unit(18, "meters"),
  29099. name: "Tail",
  29100. image: {
  29101. source: "./media/characters/kirina-violet/tail.svg"
  29102. }
  29103. },
  29104. },
  29105. [
  29106. {
  29107. name: "Macro",
  29108. height: math.unit(63.4, "meters"),
  29109. default: true
  29110. },
  29111. ]
  29112. ))
  29113. characterMakers.push(() => makeCharacter(
  29114. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29115. {
  29116. front: {
  29117. height: math.unit(75, "feet"),
  29118. name: "Front",
  29119. image: {
  29120. source: "./media/characters/cat-gigachu/front.svg",
  29121. extra: 1239/1027,
  29122. bottom: 32/1271
  29123. }
  29124. },
  29125. back: {
  29126. height: math.unit(75, "feet"),
  29127. name: "Back",
  29128. image: {
  29129. source: "./media/characters/cat-gigachu/back.svg",
  29130. extra: 1229/1030,
  29131. bottom: 9/1238
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Dynamax",
  29138. height: math.unit(75, "feet"),
  29139. default: true
  29140. },
  29141. ]
  29142. ))
  29143. characterMakers.push(() => makeCharacter(
  29144. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29145. {
  29146. front: {
  29147. height: math.unit(6, "feet"),
  29148. weight: math.unit(150, "lb"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/sfaiyan/front.svg",
  29152. extra: 999 / 978,
  29153. bottom: 5 / 1004
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Normal",
  29160. height: math.unit(1.82, "meters")
  29161. },
  29162. {
  29163. name: "Giant",
  29164. height: math.unit(2.27, "km"),
  29165. default: true
  29166. },
  29167. ]
  29168. ))
  29169. characterMakers.push(() => makeCharacter(
  29170. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29171. {
  29172. front: {
  29173. height: math.unit(179, "cm"),
  29174. weight: math.unit(100, "kg"),
  29175. name: "Front",
  29176. image: {
  29177. source: "./media/characters/raunehkeli/front.svg",
  29178. extra: 1934 / 1926,
  29179. bottom: 0 / 1934
  29180. }
  29181. },
  29182. },
  29183. [
  29184. {
  29185. name: "Normal",
  29186. height: math.unit(179, "cm")
  29187. },
  29188. {
  29189. name: "Maximum",
  29190. height: math.unit(575, "meters"),
  29191. default: true
  29192. },
  29193. ]
  29194. ))
  29195. characterMakers.push(() => makeCharacter(
  29196. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29197. {
  29198. front: {
  29199. height: math.unit(6, "feet"),
  29200. weight: math.unit(150, "lb"),
  29201. name: "Front",
  29202. image: {
  29203. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29204. extra: 2625 / 2518,
  29205. bottom: 60 / 2685
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Normal",
  29212. height: math.unit(6 + 2 / 12, "feet")
  29213. },
  29214. {
  29215. name: "Macro",
  29216. height: math.unit(1180, "feet"),
  29217. default: true
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29223. {
  29224. front: {
  29225. height: math.unit(5 + 6 / 12, "feet"),
  29226. weight: math.unit(108, "lb"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/lilith-zott/front.svg",
  29230. extra: 2510 / 2238,
  29231. bottom: 100 / 2610
  29232. }
  29233. },
  29234. frontDressed: {
  29235. height: math.unit(5 + 6 / 12, "feet"),
  29236. weight: math.unit(108, "lb"),
  29237. name: "Front (Dressed)",
  29238. image: {
  29239. source: "./media/characters/lilith-zott/front-dressed.svg",
  29240. extra: 2510 / 2238,
  29241. bottom: 100 / 2610
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(5 + 6 / 12, "feet")
  29249. },
  29250. {
  29251. name: "Macro",
  29252. height: math.unit(1030, "feet"),
  29253. default: true
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(6, "feet"),
  29262. weight: math.unit(150, "lb"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29266. extra: 2567 / 2435,
  29267. bottom: 39 / 2606
  29268. }
  29269. },
  29270. frontSuper: {
  29271. height: math.unit(6, "feet"),
  29272. name: "Front (Super)",
  29273. image: {
  29274. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29275. extra: 2567 / 2435,
  29276. bottom: 39 / 2606
  29277. }
  29278. },
  29279. },
  29280. [
  29281. {
  29282. name: "Normal",
  29283. height: math.unit(5 + 10 / 12, "feet")
  29284. },
  29285. {
  29286. name: "Macro",
  29287. height: math.unit(1100, "feet"),
  29288. default: true
  29289. },
  29290. ]
  29291. ))
  29292. characterMakers.push(() => makeCharacter(
  29293. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29294. {
  29295. front: {
  29296. height: math.unit(100, "miles"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/sona/front.svg",
  29300. extra: 2433 / 2201,
  29301. bottom: 53 / 2486
  29302. }
  29303. },
  29304. foot: {
  29305. height: math.unit(16.1, "miles"),
  29306. name: "Foot",
  29307. image: {
  29308. source: "./media/characters/sona/foot.svg"
  29309. }
  29310. },
  29311. },
  29312. [
  29313. {
  29314. name: "Macro",
  29315. height: math.unit(100, "miles"),
  29316. default: true
  29317. },
  29318. ]
  29319. ))
  29320. characterMakers.push(() => makeCharacter(
  29321. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29322. {
  29323. front: {
  29324. height: math.unit(6, "feet"),
  29325. weight: math.unit(150, "lb"),
  29326. name: "Front",
  29327. image: {
  29328. source: "./media/characters/bailey/front.svg",
  29329. extra: 1778 / 1724,
  29330. bottom: 30 / 1808
  29331. }
  29332. },
  29333. },
  29334. [
  29335. {
  29336. name: "Micro",
  29337. height: math.unit(4, "inches")
  29338. },
  29339. {
  29340. name: "Normal",
  29341. height: math.unit(5 + 5 / 12, "feet"),
  29342. default: true
  29343. },
  29344. {
  29345. name: "Macro",
  29346. height: math.unit(250, "feet")
  29347. },
  29348. {
  29349. name: "Megamacro",
  29350. height: math.unit(100, "miles")
  29351. },
  29352. ]
  29353. ))
  29354. characterMakers.push(() => makeCharacter(
  29355. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29356. {
  29357. front: {
  29358. height: math.unit(5 + 2 / 12, "feet"),
  29359. weight: math.unit(120, "lb"),
  29360. name: "Front",
  29361. image: {
  29362. source: "./media/characters/snaps/front.svg",
  29363. extra: 2370 / 2177,
  29364. bottom: 48 / 2418
  29365. }
  29366. },
  29367. back: {
  29368. height: math.unit(5 + 2 / 12, "feet"),
  29369. weight: math.unit(120, "lb"),
  29370. name: "Back",
  29371. image: {
  29372. source: "./media/characters/snaps/back.svg",
  29373. extra: 2408 / 2258,
  29374. bottom: 15 / 2423
  29375. }
  29376. },
  29377. },
  29378. [
  29379. {
  29380. name: "Micro",
  29381. height: math.unit(9, "inches")
  29382. },
  29383. {
  29384. name: "Normal",
  29385. height: math.unit(5 + 2 / 12, "feet"),
  29386. default: true
  29387. },
  29388. {
  29389. name: "Mini Macro",
  29390. height: math.unit(10, "feet")
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(1.8, "meters"),
  29399. weight: math.unit(85, "kg"),
  29400. name: "Front",
  29401. image: {
  29402. source: "./media/characters/azteck/front.svg",
  29403. extra: 2815 / 2625,
  29404. bottom: 89 / 2904
  29405. }
  29406. },
  29407. back: {
  29408. height: math.unit(1.8, "meters"),
  29409. weight: math.unit(85, "kg"),
  29410. name: "Back",
  29411. image: {
  29412. source: "./media/characters/azteck/back.svg",
  29413. extra: 2856 / 2648,
  29414. bottom: 85 / 2941
  29415. }
  29416. },
  29417. frontDressed: {
  29418. height: math.unit(1.8, "meters"),
  29419. weight: math.unit(85, "kg"),
  29420. name: "Front (Dressed)",
  29421. image: {
  29422. source: "./media/characters/azteck/front-dressed.svg",
  29423. extra: 2147 / 2003,
  29424. bottom: 68 / 2215
  29425. }
  29426. },
  29427. head: {
  29428. height: math.unit(0.47, "meters"),
  29429. weight: math.unit(85, "kg"),
  29430. name: "Head",
  29431. image: {
  29432. source: "./media/characters/azteck/head.svg"
  29433. }
  29434. },
  29435. },
  29436. [
  29437. {
  29438. name: "Bite sized",
  29439. height: math.unit(16, "cm")
  29440. },
  29441. {
  29442. name: "Normal",
  29443. height: math.unit(1.8, "meters"),
  29444. default: true
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29450. {
  29451. front: {
  29452. height: math.unit(6, "feet"),
  29453. weight: math.unit(150, "lb"),
  29454. name: "Front",
  29455. image: {
  29456. source: "./media/characters/pidge/front.svg",
  29457. extra: 620 / 588,
  29458. bottom: 9 / 629
  29459. }
  29460. },
  29461. back: {
  29462. height: math.unit(6, "feet"),
  29463. weight: math.unit(150, "lb"),
  29464. name: "Back",
  29465. image: {
  29466. source: "./media/characters/pidge/back.svg",
  29467. extra: 620 / 588,
  29468. bottom: 9 / 629
  29469. }
  29470. },
  29471. },
  29472. [
  29473. {
  29474. name: "Macro",
  29475. height: math.unit(1, "mile"),
  29476. default: true
  29477. },
  29478. ]
  29479. ))
  29480. characterMakers.push(() => makeCharacter(
  29481. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29482. {
  29483. front: {
  29484. height: math.unit(6, "feet"),
  29485. weight: math.unit(150, "lb"),
  29486. name: "Front",
  29487. image: {
  29488. source: "./media/characters/en/front.svg",
  29489. extra: 1697 / 1563,
  29490. bottom: 103 / 1800
  29491. }
  29492. },
  29493. back: {
  29494. height: math.unit(6, "feet"),
  29495. weight: math.unit(150, "lb"),
  29496. name: "Back",
  29497. image: {
  29498. source: "./media/characters/en/back.svg",
  29499. extra: 1700 / 1570,
  29500. bottom: 51 / 1751
  29501. }
  29502. },
  29503. frontDressed: {
  29504. height: math.unit(6, "feet"),
  29505. weight: math.unit(150, "lb"),
  29506. name: "Front (Dressed)",
  29507. image: {
  29508. source: "./media/characters/en/front-dressed.svg",
  29509. extra: 1697 / 1563,
  29510. bottom: 103 / 1800
  29511. }
  29512. },
  29513. backDressed: {
  29514. height: math.unit(6, "feet"),
  29515. weight: math.unit(150, "lb"),
  29516. name: "Back (Dressed)",
  29517. image: {
  29518. source: "./media/characters/en/back-dressed.svg",
  29519. extra: 1700 / 1570,
  29520. bottom: 51 / 1751
  29521. }
  29522. },
  29523. },
  29524. [
  29525. {
  29526. name: "Macro",
  29527. height: math.unit(210, "feet"),
  29528. default: true
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(6, "feet"),
  29537. weight: math.unit(150, "lb"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/haze-orris/front.svg",
  29541. extra: 3975 / 3525,
  29542. bottom: 137 / 4112
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Micro",
  29549. height: math.unit(150, "mm"),
  29550. default: true
  29551. },
  29552. ]
  29553. ))
  29554. characterMakers.push(() => makeCharacter(
  29555. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29556. {
  29557. front: {
  29558. height: math.unit(6, "feet"),
  29559. weight: math.unit(150, "lb"),
  29560. name: "Front",
  29561. image: {
  29562. source: "./media/characters/casselene-yaro/front.svg",
  29563. extra: 4721 / 4541,
  29564. bottom: 82 / 4803
  29565. }
  29566. },
  29567. back: {
  29568. height: math.unit(6, "feet"),
  29569. weight: math.unit(150, "lb"),
  29570. name: "Back",
  29571. image: {
  29572. source: "./media/characters/casselene-yaro/back.svg",
  29573. extra: 4569 / 4377,
  29574. bottom: 69 / 4638
  29575. }
  29576. },
  29577. frontDressed: {
  29578. height: math.unit(6, "feet"),
  29579. weight: math.unit(150, "lb"),
  29580. name: "Front-dressed",
  29581. image: {
  29582. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29583. extra: 4721 / 4541,
  29584. bottom: 82 / 4803
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Macro",
  29591. height: math.unit(190, "feet"),
  29592. default: true
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(6, "feet"),
  29601. weight: math.unit(150, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/myra-rue-delore/front.svg",
  29605. extra: 1340 / 1308,
  29606. bottom: 67 / 1407
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(6, "feet"),
  29611. weight: math.unit(150, "lb"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/myra-rue-delore/back.svg",
  29615. extra: 1341 / 1310,
  29616. bottom: 40 / 1381
  29617. }
  29618. },
  29619. frontDressed: {
  29620. height: math.unit(6, "feet"),
  29621. weight: math.unit(150, "lb"),
  29622. name: "Front (Dressed)",
  29623. image: {
  29624. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29625. extra: 1340 / 1308,
  29626. bottom: 67 / 1407
  29627. }
  29628. },
  29629. },
  29630. [
  29631. {
  29632. name: "Macro",
  29633. height: math.unit(150, "feet"),
  29634. default: true
  29635. },
  29636. ]
  29637. ))
  29638. characterMakers.push(() => makeCharacter(
  29639. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29640. {
  29641. front: {
  29642. height: math.unit(10, "feet"),
  29643. weight: math.unit(15015, "lb"),
  29644. name: "Front",
  29645. image: {
  29646. source: "./media/characters/fem!plat/front.svg",
  29647. extra: 2799 / 2604,
  29648. bottom: 149 / 2948
  29649. }
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Normal",
  29655. height: math.unit(10, "feet"),
  29656. default: true
  29657. },
  29658. {
  29659. name: "Macro",
  29660. height: math.unit(100, "feet")
  29661. },
  29662. {
  29663. name: "Megamacro",
  29664. height: math.unit(1000, "feet")
  29665. },
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29670. {
  29671. front: {
  29672. height: math.unit(15 + 5 / 12, "feet"),
  29673. weight: math.unit(4600, "lb"),
  29674. name: "Front",
  29675. image: {
  29676. source: "./media/characters/neapolitan-ananassa/front.svg",
  29677. extra: 2903 / 2736,
  29678. bottom: 0 / 2903
  29679. }
  29680. },
  29681. side: {
  29682. height: math.unit(15 + 5 / 12, "feet"),
  29683. weight: math.unit(4600, "lb"),
  29684. name: "Side",
  29685. image: {
  29686. source: "./media/characters/neapolitan-ananassa/side.svg",
  29687. extra: 2925 / 2719,
  29688. bottom: 0 / 2925
  29689. }
  29690. },
  29691. back: {
  29692. height: math.unit(15 + 5 / 12, "feet"),
  29693. weight: math.unit(4600, "lb"),
  29694. name: "Back",
  29695. image: {
  29696. source: "./media/characters/neapolitan-ananassa/back.svg",
  29697. extra: 2903 / 2736,
  29698. bottom: 0 / 2903
  29699. }
  29700. },
  29701. },
  29702. [
  29703. {
  29704. name: "Normal",
  29705. height: math.unit(15 + 5 / 12, "feet"),
  29706. default: true
  29707. },
  29708. {
  29709. name: "Post-Millenium",
  29710. height: math.unit(35 + 5 / 12, "feet")
  29711. },
  29712. {
  29713. name: "Post-Era",
  29714. height: math.unit(450 + 5 / 12, "feet")
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29720. {
  29721. front: {
  29722. height: math.unit(300, "meters"),
  29723. weight: math.unit(125000, "tonnes"),
  29724. name: "Front",
  29725. image: {
  29726. source: "./media/characters/pazuzu/front.svg",
  29727. extra: 877 / 794,
  29728. bottom: 47 / 924
  29729. }
  29730. },
  29731. },
  29732. [
  29733. {
  29734. name: "Macro",
  29735. height: math.unit(300, "meters"),
  29736. default: true
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29742. {
  29743. side: {
  29744. height: math.unit(10 + 7 / 12, "feet"),
  29745. weight: math.unit(2.5, "tons"),
  29746. name: "Side",
  29747. image: {
  29748. source: "./media/characters/aasha/side.svg",
  29749. extra: 1345 / 1245,
  29750. bottom: 111 / 1456
  29751. }
  29752. },
  29753. back: {
  29754. height: math.unit(10 + 7 / 12, "feet"),
  29755. weight: math.unit(2.5, "tons"),
  29756. name: "Back",
  29757. image: {
  29758. source: "./media/characters/aasha/back.svg",
  29759. extra: 1133 / 1057,
  29760. bottom: 257 / 1390
  29761. }
  29762. },
  29763. },
  29764. [
  29765. {
  29766. name: "Normal",
  29767. height: math.unit(10 + 7 / 12, "feet"),
  29768. default: true
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29774. {
  29775. front: {
  29776. height: math.unit(6 + 3 / 12, "feet"),
  29777. name: "Front",
  29778. image: {
  29779. source: "./media/characters/nevan/front.svg",
  29780. extra: 704 / 704,
  29781. bottom: 28 / 732
  29782. }
  29783. },
  29784. back: {
  29785. height: math.unit(6 + 3 / 12, "feet"),
  29786. name: "Back",
  29787. image: {
  29788. source: "./media/characters/nevan/back.svg",
  29789. extra: 714 / 714,
  29790. bottom: 21 / 735
  29791. }
  29792. },
  29793. frontFlaccid: {
  29794. height: math.unit(6 + 3 / 12, "feet"),
  29795. name: "Front (Flaccid)",
  29796. image: {
  29797. source: "./media/characters/nevan/front-flaccid.svg",
  29798. extra: 704 / 704,
  29799. bottom: 28 / 732
  29800. }
  29801. },
  29802. frontErect: {
  29803. height: math.unit(6 + 3 / 12, "feet"),
  29804. name: "Front (Erect)",
  29805. image: {
  29806. source: "./media/characters/nevan/front-erect.svg",
  29807. extra: 704 / 704,
  29808. bottom: 28 / 732
  29809. }
  29810. },
  29811. backFlaccid: {
  29812. height: math.unit(6 + 3 / 12, "feet"),
  29813. name: "Back (Flaccid)",
  29814. image: {
  29815. source: "./media/characters/nevan/back-flaccid.svg",
  29816. extra: 714 / 714,
  29817. bottom: 21 / 735
  29818. }
  29819. },
  29820. },
  29821. [
  29822. {
  29823. name: "Normal",
  29824. height: math.unit(6 + 3 / 12, "feet"),
  29825. default: true
  29826. },
  29827. ]
  29828. ))
  29829. characterMakers.push(() => makeCharacter(
  29830. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29831. {
  29832. front: {
  29833. height: math.unit(4, "feet"),
  29834. name: "Front",
  29835. image: {
  29836. source: "./media/characters/arhan/front.svg",
  29837. extra: 3368 / 3133,
  29838. bottom: 0 / 3368
  29839. }
  29840. },
  29841. side: {
  29842. height: math.unit(4, "feet"),
  29843. name: "Side",
  29844. image: {
  29845. source: "./media/characters/arhan/side.svg",
  29846. extra: 3347 / 3105,
  29847. bottom: 0 / 3347
  29848. }
  29849. },
  29850. tongue: {
  29851. height: math.unit(1.42, "feet"),
  29852. name: "Tongue",
  29853. image: {
  29854. source: "./media/characters/arhan/tongue.svg"
  29855. }
  29856. },
  29857. head: {
  29858. height: math.unit(0.85, "feet"),
  29859. name: "Head",
  29860. image: {
  29861. source: "./media/characters/arhan/head.svg"
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(4, "feet"),
  29869. default: true
  29870. },
  29871. ]
  29872. ))
  29873. characterMakers.push(() => makeCharacter(
  29874. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29875. {
  29876. front: {
  29877. height: math.unit(5 + 7.5 / 12, "feet"),
  29878. weight: math.unit(120, "lb"),
  29879. name: "Front",
  29880. image: {
  29881. source: "./media/characters/digi-duncan/front.svg",
  29882. extra: 330 / 326,
  29883. bottom: 16 / 346
  29884. }
  29885. },
  29886. side: {
  29887. height: math.unit(5 + 7.5 / 12, "feet"),
  29888. weight: math.unit(120, "lb"),
  29889. name: "Side",
  29890. image: {
  29891. source: "./media/characters/digi-duncan/side.svg",
  29892. extra: 341 / 337,
  29893. bottom: 1 / 342
  29894. }
  29895. },
  29896. back: {
  29897. height: math.unit(5 + 7.5 / 12, "feet"),
  29898. weight: math.unit(120, "lb"),
  29899. name: "Back",
  29900. image: {
  29901. source: "./media/characters/digi-duncan/back.svg",
  29902. extra: 330 / 326,
  29903. bottom: 12 / 342
  29904. }
  29905. },
  29906. },
  29907. [
  29908. {
  29909. name: "Speck",
  29910. height: math.unit(0.25, "mm")
  29911. },
  29912. {
  29913. name: "Micro",
  29914. height: math.unit(5, "mm")
  29915. },
  29916. {
  29917. name: "Tiny",
  29918. height: math.unit(0.5, "inches"),
  29919. default: true
  29920. },
  29921. {
  29922. name: "Human",
  29923. height: math.unit(5 + 7.5 / 12, "feet")
  29924. },
  29925. {
  29926. name: "Minigiant",
  29927. height: math.unit(8 + 5.25, "feet")
  29928. },
  29929. {
  29930. name: "Giant",
  29931. height: math.unit(2000, "feet")
  29932. },
  29933. {
  29934. name: "Mega",
  29935. height: math.unit(371.1, "miles")
  29936. },
  29937. ]
  29938. ))
  29939. characterMakers.push(() => makeCharacter(
  29940. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29941. {
  29942. front: {
  29943. height: math.unit(2, "meters"),
  29944. weight: math.unit(350, "kg"),
  29945. name: "Front",
  29946. image: {
  29947. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29948. extra: 898 / 838,
  29949. bottom: 9 / 907
  29950. }
  29951. },
  29952. },
  29953. [
  29954. {
  29955. name: "Micro",
  29956. height: math.unit(8, "meters")
  29957. },
  29958. {
  29959. name: "Normal",
  29960. height: math.unit(50, "meters"),
  29961. default: true
  29962. },
  29963. {
  29964. name: "Macro",
  29965. height: math.unit(500, "meters")
  29966. },
  29967. ]
  29968. ))
  29969. characterMakers.push(() => makeCharacter(
  29970. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29971. {
  29972. front: {
  29973. height: math.unit(6 + 6 / 12, "feet"),
  29974. name: "Front",
  29975. image: {
  29976. source: "./media/characters/khardesh/front.svg",
  29977. extra: 888 / 797,
  29978. bottom: 25 / 913
  29979. }
  29980. },
  29981. },
  29982. [
  29983. {
  29984. name: "Normal",
  29985. height: math.unit(6 + 6 / 12, "feet"),
  29986. default: true
  29987. },
  29988. {
  29989. name: "Normal+",
  29990. height: math.unit(4, "meters")
  29991. },
  29992. {
  29993. name: "Macro",
  29994. height: math.unit(50, "meters")
  29995. },
  29996. {
  29997. name: "Macro+",
  29998. height: math.unit(100, "meters")
  29999. },
  30000. {
  30001. name: "Megamacro",
  30002. height: math.unit(20, "km")
  30003. },
  30004. ]
  30005. ))
  30006. characterMakers.push(() => makeCharacter(
  30007. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30008. {
  30009. front: {
  30010. height: math.unit(6, "feet"),
  30011. weight: math.unit(150, "lb"),
  30012. name: "Front",
  30013. image: {
  30014. source: "./media/characters/kosho/front.svg",
  30015. extra: 1847 / 1847,
  30016. bottom: 86 / 1933
  30017. }
  30018. },
  30019. },
  30020. [
  30021. {
  30022. name: "Second-stage micro",
  30023. height: math.unit(0.5, "inches")
  30024. },
  30025. {
  30026. name: "First-stage micro",
  30027. height: math.unit(6, "inches")
  30028. },
  30029. {
  30030. name: "Normal",
  30031. height: math.unit(6, "feet"),
  30032. default: true
  30033. },
  30034. {
  30035. name: "First-stage macro",
  30036. height: math.unit(72, "feet")
  30037. },
  30038. {
  30039. name: "Second-stage macro",
  30040. height: math.unit(864, "feet")
  30041. },
  30042. ]
  30043. ))
  30044. characterMakers.push(() => makeCharacter(
  30045. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30046. {
  30047. normal: {
  30048. height: math.unit(4 + 6 / 12, "feet"),
  30049. name: "Normal",
  30050. image: {
  30051. source: "./media/characters/hydra/normal.svg",
  30052. extra: 2833 / 2634,
  30053. bottom: 68 / 2901
  30054. }
  30055. },
  30056. smol: {
  30057. height: math.unit(0.705, "inches"),
  30058. name: "Smol",
  30059. image: {
  30060. source: "./media/characters/hydra/smol.svg",
  30061. extra: 2715 / 2540,
  30062. bottom: 0 / 2715
  30063. }
  30064. },
  30065. },
  30066. [
  30067. {
  30068. name: "Normal",
  30069. height: math.unit(4 + 6 / 12, "feet"),
  30070. default: true
  30071. }
  30072. ]
  30073. ))
  30074. characterMakers.push(() => makeCharacter(
  30075. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30076. {
  30077. front: {
  30078. height: math.unit(0.6, "cm"),
  30079. name: "Front",
  30080. image: {
  30081. source: "./media/characters/daz/front.svg",
  30082. extra: 1682 / 1164,
  30083. bottom: 42 / 1724
  30084. }
  30085. },
  30086. },
  30087. [
  30088. {
  30089. name: "Normal",
  30090. height: math.unit(0.6, "cm"),
  30091. default: true
  30092. },
  30093. ]
  30094. ))
  30095. characterMakers.push(() => makeCharacter(
  30096. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30097. {
  30098. front: {
  30099. height: math.unit(6, "feet"),
  30100. weight: math.unit(235, "lb"),
  30101. name: "Front",
  30102. image: {
  30103. source: "./media/characters/theo-pangolin/front.svg",
  30104. extra: 1996 / 1969,
  30105. bottom: 115 / 2111
  30106. }
  30107. },
  30108. back: {
  30109. height: math.unit(6, "feet"),
  30110. weight: math.unit(235, "lb"),
  30111. name: "Back",
  30112. image: {
  30113. source: "./media/characters/theo-pangolin/back.svg",
  30114. extra: 1979 / 1979,
  30115. bottom: 40 / 2019
  30116. }
  30117. },
  30118. feral: {
  30119. height: math.unit(2, "feet"),
  30120. weight: math.unit(30, "lb"),
  30121. name: "Feral",
  30122. image: {
  30123. source: "./media/characters/theo-pangolin/feral.svg",
  30124. extra: 803 / 791,
  30125. bottom: 181 / 984
  30126. }
  30127. },
  30128. footFive: {
  30129. height: math.unit(1.43, "feet"),
  30130. name: "Foot (Five Toes)",
  30131. image: {
  30132. source: "./media/characters/theo-pangolin/foot-five.svg"
  30133. }
  30134. },
  30135. footFour: {
  30136. height: math.unit(1.43, "feet"),
  30137. name: "Foot (Four Toes)",
  30138. image: {
  30139. source: "./media/characters/theo-pangolin/foot-four.svg"
  30140. }
  30141. },
  30142. handFour: {
  30143. height: math.unit(0.81, "feet"),
  30144. name: "Hand (Four Fingers)",
  30145. image: {
  30146. source: "./media/characters/theo-pangolin/hand-four.svg"
  30147. }
  30148. },
  30149. handThree: {
  30150. height: math.unit(0.81, "feet"),
  30151. name: "Hand (Three Fingers)",
  30152. image: {
  30153. source: "./media/characters/theo-pangolin/hand-three.svg"
  30154. }
  30155. },
  30156. headFront: {
  30157. height: math.unit(1.37, "feet"),
  30158. name: "Head (Front)",
  30159. image: {
  30160. source: "./media/characters/theo-pangolin/head-front.svg"
  30161. }
  30162. },
  30163. headSide: {
  30164. height: math.unit(1.43, "feet"),
  30165. name: "Head (Side)",
  30166. image: {
  30167. source: "./media/characters/theo-pangolin/head-side.svg"
  30168. }
  30169. },
  30170. tongue: {
  30171. height: math.unit(2.29, "feet"),
  30172. name: "Tongue",
  30173. image: {
  30174. source: "./media/characters/theo-pangolin/tongue.svg"
  30175. }
  30176. },
  30177. },
  30178. [
  30179. {
  30180. name: "Normal",
  30181. height: math.unit(6, "feet")
  30182. },
  30183. {
  30184. name: "Macro",
  30185. height: math.unit(400, "feet"),
  30186. default: true
  30187. },
  30188. ]
  30189. ))
  30190. characterMakers.push(() => makeCharacter(
  30191. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30192. {
  30193. front: {
  30194. height: math.unit(6, "inches"),
  30195. weight: math.unit(0.036, "kg"),
  30196. name: "Front",
  30197. image: {
  30198. source: "./media/characters/renée/front.svg",
  30199. extra: 900 / 886,
  30200. bottom: 8 / 908
  30201. }
  30202. },
  30203. },
  30204. [
  30205. {
  30206. name: "Nano",
  30207. height: math.unit(1, "nm")
  30208. },
  30209. {
  30210. name: "Micro",
  30211. height: math.unit(1, "mm")
  30212. },
  30213. {
  30214. name: "Normal",
  30215. height: math.unit(6, "inches")
  30216. },
  30217. {
  30218. name: "Macro",
  30219. height: math.unit(2000, "feet"),
  30220. default: true
  30221. },
  30222. {
  30223. name: "Megamacro",
  30224. height: math.unit(2, "km")
  30225. },
  30226. {
  30227. name: "Gigamacro",
  30228. height: math.unit(2000, "km")
  30229. },
  30230. {
  30231. name: "Teramacro",
  30232. height: math.unit(250000, "km")
  30233. },
  30234. ]
  30235. ))
  30236. characterMakers.push(() => makeCharacter(
  30237. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30238. {
  30239. front: {
  30240. height: math.unit(4, "meters"),
  30241. weight: math.unit(150, "kg"),
  30242. name: "Front",
  30243. image: {
  30244. source: "./media/characters/caledvwlch/front.svg",
  30245. extra: 1760 / 1551,
  30246. bottom: 28 / 1788
  30247. }
  30248. },
  30249. side: {
  30250. height: math.unit(4, "meters"),
  30251. weight: math.unit(150, "kg"),
  30252. name: "Side",
  30253. image: {
  30254. source: "./media/characters/caledvwlch/side.svg",
  30255. extra: 1605 / 1536,
  30256. bottom: 31 / 1636
  30257. }
  30258. },
  30259. back: {
  30260. height: math.unit(4, "meters"),
  30261. weight: math.unit(150, "kg"),
  30262. name: "Back",
  30263. image: {
  30264. source: "./media/characters/caledvwlch/back.svg",
  30265. extra: 1635 / 1565,
  30266. bottom: 27 / 1662
  30267. }
  30268. },
  30269. },
  30270. [
  30271. {
  30272. name: "\"Incognito\"",
  30273. height: math.unit(4, "meters")
  30274. },
  30275. {
  30276. name: "Small rampage",
  30277. height: math.unit(600, "meters")
  30278. },
  30279. {
  30280. name: "Mega",
  30281. height: math.unit(30, "km")
  30282. },
  30283. {
  30284. name: "Home-size",
  30285. height: math.unit(50, "km"),
  30286. default: true
  30287. },
  30288. {
  30289. name: "Giga",
  30290. height: math.unit(300, "km")
  30291. },
  30292. {
  30293. name: "Lounging",
  30294. height: math.unit(11000, "km")
  30295. },
  30296. {
  30297. name: "Planet snacking",
  30298. height: math.unit(2000000, "km")
  30299. },
  30300. ]
  30301. ))
  30302. characterMakers.push(() => makeCharacter(
  30303. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30304. {
  30305. front: {
  30306. height: math.unit(6, "feet"),
  30307. weight: math.unit(215, "lb"),
  30308. name: "Front",
  30309. image: {
  30310. source: "./media/characters/sapphire-svell/front.svg",
  30311. extra: 495 / 455,
  30312. bottom: 20 / 515
  30313. }
  30314. },
  30315. back: {
  30316. height: math.unit(6, "feet"),
  30317. weight: math.unit(216, "lb"),
  30318. name: "Back",
  30319. image: {
  30320. source: "./media/characters/sapphire-svell/back.svg",
  30321. extra: 497 / 477,
  30322. bottom: 7 / 504
  30323. }
  30324. },
  30325. maw: {
  30326. height: math.unit(1.57, "feet"),
  30327. name: "Maw",
  30328. image: {
  30329. source: "./media/characters/sapphire-svell/maw.svg"
  30330. }
  30331. },
  30332. foot: {
  30333. height: math.unit(1.07, "feet"),
  30334. name: "Foot",
  30335. image: {
  30336. source: "./media/characters/sapphire-svell/foot.svg"
  30337. }
  30338. },
  30339. toering: {
  30340. height: math.unit(1.7, "inch"),
  30341. name: "Toering",
  30342. image: {
  30343. source: "./media/characters/sapphire-svell/toering.svg"
  30344. }
  30345. },
  30346. },
  30347. [
  30348. {
  30349. name: "Normal",
  30350. height: math.unit(300, "feet"),
  30351. default: true
  30352. },
  30353. {
  30354. name: "Augmented",
  30355. height: math.unit(1250, "feet")
  30356. },
  30357. {
  30358. name: "Unleashed",
  30359. height: math.unit(3000, "feet")
  30360. },
  30361. ]
  30362. ))
  30363. characterMakers.push(() => makeCharacter(
  30364. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30365. {
  30366. side: {
  30367. height: math.unit(2 + 3 / 12, "feet"),
  30368. weight: math.unit(110, "lb"),
  30369. name: "Side",
  30370. image: {
  30371. source: "./media/characters/glitch-flux/side.svg",
  30372. extra: 997 / 805,
  30373. bottom: 20 / 1017
  30374. }
  30375. },
  30376. },
  30377. [
  30378. {
  30379. name: "Normal",
  30380. height: math.unit(2 + 3 / 12, "feet"),
  30381. default: true
  30382. },
  30383. ]
  30384. ))
  30385. characterMakers.push(() => makeCharacter(
  30386. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30387. {
  30388. front: {
  30389. height: math.unit(4, "meters"),
  30390. name: "Front",
  30391. image: {
  30392. source: "./media/characters/mid/front.svg",
  30393. extra: 507 / 476,
  30394. bottom: 17 / 524
  30395. }
  30396. },
  30397. back: {
  30398. height: math.unit(4, "meters"),
  30399. name: "Back",
  30400. image: {
  30401. source: "./media/characters/mid/back.svg",
  30402. extra: 519 / 487,
  30403. bottom: 7 / 526
  30404. }
  30405. },
  30406. stuck: {
  30407. height: math.unit(2.2, "meters"),
  30408. name: "Stuck",
  30409. image: {
  30410. source: "./media/characters/mid/stuck.svg",
  30411. extra: 1951 / 1869,
  30412. bottom: 88 / 2039
  30413. }
  30414. }
  30415. },
  30416. [
  30417. {
  30418. name: "Normal",
  30419. height: math.unit(4, "meters"),
  30420. default: true
  30421. },
  30422. {
  30423. name: "Big",
  30424. height: math.unit(10, "meters")
  30425. },
  30426. {
  30427. name: "Macro",
  30428. height: math.unit(800, "meters")
  30429. },
  30430. {
  30431. name: "Megamacro",
  30432. height: math.unit(100, "km")
  30433. },
  30434. {
  30435. name: "Overgrown",
  30436. height: math.unit(1, "parsec")
  30437. },
  30438. ]
  30439. ))
  30440. characterMakers.push(() => makeCharacter(
  30441. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30442. {
  30443. front: {
  30444. height: math.unit(2.5, "meters"),
  30445. weight: math.unit(225, "kg"),
  30446. name: "Front",
  30447. image: {
  30448. source: "./media/characters/iris/front.svg",
  30449. extra: 3348 / 3251,
  30450. bottom: 205 / 3553
  30451. }
  30452. },
  30453. maw: {
  30454. height: math.unit(0.56, "meter"),
  30455. name: "Maw",
  30456. image: {
  30457. source: "./media/characters/iris/maw.svg"
  30458. }
  30459. },
  30460. },
  30461. [
  30462. {
  30463. name: "Mewter cat",
  30464. height: math.unit(1.2, "meters")
  30465. },
  30466. {
  30467. name: "Minimacro",
  30468. height: math.unit(2.5, "meters"),
  30469. default: true
  30470. },
  30471. {
  30472. name: "Macro",
  30473. height: math.unit(180, "meters")
  30474. },
  30475. {
  30476. name: "Megamacro",
  30477. height: math.unit(2746, "meters")
  30478. },
  30479. ]
  30480. ))
  30481. characterMakers.push(() => makeCharacter(
  30482. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30483. {
  30484. front: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(135, "lb"),
  30487. name: "Front",
  30488. image: {
  30489. source: "./media/characters/axel/front.svg",
  30490. extra: 908 / 908,
  30491. bottom: 58 / 966
  30492. }
  30493. },
  30494. side: {
  30495. height: math.unit(6, "feet"),
  30496. weight: math.unit(135, "lb"),
  30497. name: "Side",
  30498. image: {
  30499. source: "./media/characters/axel/side.svg",
  30500. extra: 958 / 958,
  30501. bottom: 11 / 969
  30502. }
  30503. },
  30504. back: {
  30505. height: math.unit(6, "feet"),
  30506. weight: math.unit(135, "lb"),
  30507. name: "Back",
  30508. image: {
  30509. source: "./media/characters/axel/back.svg",
  30510. extra: 887 / 887,
  30511. bottom: 34 / 921
  30512. }
  30513. },
  30514. head: {
  30515. height: math.unit(1.07, "feet"),
  30516. name: "Head",
  30517. image: {
  30518. source: "./media/characters/axel/head.svg"
  30519. }
  30520. },
  30521. beak: {
  30522. height: math.unit(1.4, "feet"),
  30523. name: "Beak",
  30524. image: {
  30525. source: "./media/characters/axel/beak.svg"
  30526. }
  30527. },
  30528. beakSide: {
  30529. height: math.unit(1.4, "feet"),
  30530. name: "Beak Side",
  30531. image: {
  30532. source: "./media/characters/axel/beak-side.svg"
  30533. }
  30534. },
  30535. sheath: {
  30536. height: math.unit(0.5, "feet"),
  30537. name: "Sheath",
  30538. image: {
  30539. source: "./media/characters/axel/sheath.svg"
  30540. }
  30541. },
  30542. dick: {
  30543. height: math.unit(0.98, "feet"),
  30544. name: "Dick",
  30545. image: {
  30546. source: "./media/characters/axel/dick.svg"
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Macro",
  30553. height: math.unit(68, "meters"),
  30554. default: true
  30555. },
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(3.5, "meters"),
  30563. weight: math.unit(1200, "kg"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/joanna/front.svg",
  30567. extra: 1596 / 1488,
  30568. bottom: 29 / 1625
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(3.5, "meters"),
  30573. weight: math.unit(1200, "kg"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/joanna/back.svg",
  30577. extra: 1594 / 1495,
  30578. bottom: 26 / 1620
  30579. }
  30580. },
  30581. frontShorts: {
  30582. height: math.unit(3.5, "meters"),
  30583. weight: math.unit(1200, "kg"),
  30584. name: "Front (Shorts)",
  30585. image: {
  30586. source: "./media/characters/joanna/front-shorts.svg",
  30587. extra: 1596 / 1488,
  30588. bottom: 29 / 1625
  30589. }
  30590. },
  30591. frontBiker: {
  30592. height: math.unit(3.5, "meters"),
  30593. weight: math.unit(1200, "kg"),
  30594. name: "Front (Biker)",
  30595. image: {
  30596. source: "./media/characters/joanna/front-biker.svg",
  30597. extra: 1596 / 1488,
  30598. bottom: 29 / 1625
  30599. }
  30600. },
  30601. backBiker: {
  30602. height: math.unit(3.5, "meters"),
  30603. weight: math.unit(1200, "kg"),
  30604. name: "Back (Biker)",
  30605. image: {
  30606. source: "./media/characters/joanna/back-biker.svg",
  30607. extra: 1594 / 1495,
  30608. bottom: 88 / 1682
  30609. }
  30610. },
  30611. bikeLeft: {
  30612. height: math.unit(2.4, "meters"),
  30613. weight: math.unit(1600, "kg"),
  30614. name: "Bike (Left)",
  30615. image: {
  30616. source: "./media/characters/joanna/bike-left.svg",
  30617. extra: 720 / 720,
  30618. bottom: 8 / 728
  30619. }
  30620. },
  30621. bikeRight: {
  30622. height: math.unit(2.4, "meters"),
  30623. weight: math.unit(1600, "kg"),
  30624. name: "Bike (Right)",
  30625. image: {
  30626. source: "./media/characters/joanna/bike-right.svg",
  30627. extra: 720 / 720,
  30628. bottom: 8 / 728
  30629. }
  30630. },
  30631. },
  30632. [
  30633. {
  30634. name: "Incognito",
  30635. height: math.unit(3.5, "meters")
  30636. },
  30637. {
  30638. name: "Casual Big",
  30639. height: math.unit(200, "meters")
  30640. },
  30641. {
  30642. name: "Macro",
  30643. height: math.unit(600, "meters")
  30644. },
  30645. {
  30646. name: "Original",
  30647. height: math.unit(20, "km"),
  30648. default: true
  30649. },
  30650. {
  30651. name: "Giga",
  30652. height: math.unit(400, "km")
  30653. },
  30654. {
  30655. name: "Lounging",
  30656. height: math.unit(1500, "km")
  30657. },
  30658. {
  30659. name: "Planetary",
  30660. height: math.unit(200000, "km")
  30661. },
  30662. ]
  30663. ))
  30664. characterMakers.push(() => makeCharacter(
  30665. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30666. {
  30667. front: {
  30668. height: math.unit(6, "feet"),
  30669. weight: math.unit(150, "lb"),
  30670. name: "Front",
  30671. image: {
  30672. source: "./media/characters/hugo-sigil/front.svg",
  30673. extra: 522 / 500,
  30674. bottom: 2 / 524
  30675. }
  30676. },
  30677. back: {
  30678. height: math.unit(6, "feet"),
  30679. weight: math.unit(150, "lb"),
  30680. name: "Back",
  30681. image: {
  30682. source: "./media/characters/hugo-sigil/back.svg",
  30683. extra: 519 / 495,
  30684. bottom: 5 / 524
  30685. }
  30686. },
  30687. maw: {
  30688. height: math.unit(1.4, "feet"),
  30689. weight: math.unit(150, "lb"),
  30690. name: "Maw",
  30691. image: {
  30692. source: "./media/characters/hugo-sigil/maw.svg"
  30693. }
  30694. },
  30695. feet: {
  30696. height: math.unit(1.56, "feet"),
  30697. weight: math.unit(150, "lb"),
  30698. name: "Feet",
  30699. image: {
  30700. source: "./media/characters/hugo-sigil/feet.svg",
  30701. extra: 177 / 177,
  30702. bottom: 12 / 189
  30703. }
  30704. },
  30705. },
  30706. [
  30707. {
  30708. name: "Normal",
  30709. height: math.unit(6, "feet")
  30710. },
  30711. {
  30712. name: "Macro",
  30713. height: math.unit(200, "feet"),
  30714. default: true
  30715. },
  30716. ]
  30717. ))
  30718. characterMakers.push(() => makeCharacter(
  30719. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30720. {
  30721. front: {
  30722. height: math.unit(6, "feet"),
  30723. weight: math.unit(150, "lb"),
  30724. name: "Front",
  30725. image: {
  30726. source: "./media/characters/peri/front.svg",
  30727. extra: 2354 / 2233,
  30728. bottom: 49 / 2403
  30729. }
  30730. },
  30731. },
  30732. [
  30733. {
  30734. name: "Really Small",
  30735. height: math.unit(1, "nm")
  30736. },
  30737. {
  30738. name: "Micro",
  30739. height: math.unit(4, "inches")
  30740. },
  30741. {
  30742. name: "Normal",
  30743. height: math.unit(7, "inches"),
  30744. default: true
  30745. },
  30746. {
  30747. name: "Macro",
  30748. height: math.unit(400, "feet")
  30749. },
  30750. {
  30751. name: "Megamacro",
  30752. height: math.unit(100, "miles")
  30753. },
  30754. ]
  30755. ))
  30756. characterMakers.push(() => makeCharacter(
  30757. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30758. {
  30759. frontSlim: {
  30760. height: math.unit(7, "feet"),
  30761. name: "Front (Slim)",
  30762. image: {
  30763. source: "./media/characters/issilora/front-slim.svg",
  30764. extra: 529 / 449,
  30765. bottom: 53 / 582
  30766. }
  30767. },
  30768. sideSlim: {
  30769. height: math.unit(7, "feet"),
  30770. name: "Side (Slim)",
  30771. image: {
  30772. source: "./media/characters/issilora/side-slim.svg",
  30773. extra: 570 / 480,
  30774. bottom: 30 / 600
  30775. }
  30776. },
  30777. backSlim: {
  30778. height: math.unit(7, "feet"),
  30779. name: "Back (Slim)",
  30780. image: {
  30781. source: "./media/characters/issilora/back-slim.svg",
  30782. extra: 537 / 455,
  30783. bottom: 46 / 583
  30784. }
  30785. },
  30786. frontBuff: {
  30787. height: math.unit(7, "feet"),
  30788. name: "Front (Buff)",
  30789. image: {
  30790. source: "./media/characters/issilora/front-buff.svg",
  30791. extra: 2310 / 2035,
  30792. bottom: 335 / 2645
  30793. }
  30794. },
  30795. head: {
  30796. height: math.unit(1.94, "feet"),
  30797. name: "Head",
  30798. image: {
  30799. source: "./media/characters/issilora/head.svg"
  30800. }
  30801. },
  30802. },
  30803. [
  30804. {
  30805. name: "Minimum",
  30806. height: math.unit(7, "feet")
  30807. },
  30808. {
  30809. name: "Comfortable",
  30810. height: math.unit(17, "feet")
  30811. },
  30812. {
  30813. name: "Fun Size",
  30814. height: math.unit(47, "feet")
  30815. },
  30816. {
  30817. name: "Natural Macro",
  30818. height: math.unit(137, "feet"),
  30819. default: true
  30820. },
  30821. {
  30822. name: "Maximum Kaiju",
  30823. height: math.unit(397, "feet")
  30824. },
  30825. ]
  30826. ))
  30827. characterMakers.push(() => makeCharacter(
  30828. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30829. {
  30830. front: {
  30831. height: math.unit(50 + 9/12, "feet"),
  30832. weight: math.unit(32.8, "tons"),
  30833. name: "Front",
  30834. image: {
  30835. source: "./media/characters/irb'iiritaahn/front.svg",
  30836. extra: 1878/1826,
  30837. bottom: 326/2204
  30838. }
  30839. },
  30840. back: {
  30841. height: math.unit(50 + 9/12, "feet"),
  30842. weight: math.unit(32.8, "tons"),
  30843. name: "Back",
  30844. image: {
  30845. source: "./media/characters/irb'iiritaahn/back.svg",
  30846. extra: 2052/2018,
  30847. bottom: 152/2204
  30848. }
  30849. },
  30850. head: {
  30851. height: math.unit(12.86, "feet"),
  30852. name: "Head",
  30853. image: {
  30854. source: "./media/characters/irb'iiritaahn/head.svg"
  30855. }
  30856. },
  30857. maw: {
  30858. height: math.unit(9.66, "feet"),
  30859. name: "Maw",
  30860. image: {
  30861. source: "./media/characters/irb'iiritaahn/maw.svg"
  30862. }
  30863. },
  30864. frontDick: {
  30865. height: math.unit(8.78461, "feet"),
  30866. name: "Front Dick",
  30867. image: {
  30868. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30869. }
  30870. },
  30871. rearDick: {
  30872. height: math.unit(8.78461, "feet"),
  30873. name: "Rear Dick",
  30874. image: {
  30875. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30876. }
  30877. },
  30878. rearDickUnfolded: {
  30879. height: math.unit(8.78, "feet"),
  30880. name: "Rear Dick (Unfolded)",
  30881. image: {
  30882. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30883. }
  30884. },
  30885. wings: {
  30886. height: math.unit(43, "feet"),
  30887. name: "Wings",
  30888. image: {
  30889. source: "./media/characters/irb'iiritaahn/wings.svg"
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Macro",
  30896. height: math.unit(50 + 9/12, "feet"),
  30897. default: true
  30898. },
  30899. ]
  30900. ))
  30901. characterMakers.push(() => makeCharacter(
  30902. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30903. {
  30904. front: {
  30905. height: math.unit(205, "cm"),
  30906. weight: math.unit(102, "kg"),
  30907. name: "Front",
  30908. image: {
  30909. source: "./media/characters/irbisgreif/front.svg",
  30910. extra: 785/706,
  30911. bottom: 13/798
  30912. }
  30913. },
  30914. back: {
  30915. height: math.unit(205, "cm"),
  30916. weight: math.unit(102, "kg"),
  30917. name: "Back",
  30918. image: {
  30919. source: "./media/characters/irbisgreif/back.svg",
  30920. extra: 713/701,
  30921. bottom: 26/739
  30922. }
  30923. },
  30924. frontDressed: {
  30925. height: math.unit(216, "cm"),
  30926. weight: math.unit(102, "kg"),
  30927. name: "Front-dressed",
  30928. image: {
  30929. source: "./media/characters/irbisgreif/front-dressed.svg",
  30930. extra: 902/776,
  30931. bottom: 14/916
  30932. }
  30933. },
  30934. sideDressed: {
  30935. height: math.unit(195, "cm"),
  30936. weight: math.unit(102, "kg"),
  30937. name: "Side-dressed",
  30938. image: {
  30939. source: "./media/characters/irbisgreif/side-dressed.svg",
  30940. extra: 788/688,
  30941. bottom: 21/809
  30942. }
  30943. },
  30944. backDressed: {
  30945. height: math.unit(216, "cm"),
  30946. weight: math.unit(102, "kg"),
  30947. name: "Back-dressed",
  30948. image: {
  30949. source: "./media/characters/irbisgreif/back-dressed.svg",
  30950. extra: 901/783,
  30951. bottom: 10/911
  30952. }
  30953. },
  30954. dick: {
  30955. height: math.unit(0.49, "feet"),
  30956. name: "Dick",
  30957. image: {
  30958. source: "./media/characters/irbisgreif/dick.svg"
  30959. }
  30960. },
  30961. wingTop: {
  30962. height: math.unit(1.93 , "feet"),
  30963. name: "Wing-top",
  30964. image: {
  30965. source: "./media/characters/irbisgreif/wing-top.svg"
  30966. }
  30967. },
  30968. wingBottom: {
  30969. height: math.unit(1.93 , "feet"),
  30970. name: "Wing-bottom",
  30971. image: {
  30972. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30973. }
  30974. },
  30975. },
  30976. [
  30977. {
  30978. name: "Normal",
  30979. height: math.unit(216, "cm"),
  30980. default: true
  30981. },
  30982. ]
  30983. ))
  30984. characterMakers.push(() => makeCharacter(
  30985. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30986. {
  30987. front: {
  30988. height: math.unit(6, "feet"),
  30989. weight: math.unit(150, "lb"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/pride/front.svg",
  30993. extra: 1299/1230,
  30994. bottom: 18/1317
  30995. }
  30996. },
  30997. },
  30998. [
  30999. {
  31000. name: "Normal",
  31001. height: math.unit(7, "feet")
  31002. },
  31003. {
  31004. name: "Mini-macro",
  31005. height: math.unit(11, "feet")
  31006. },
  31007. {
  31008. name: "Macro",
  31009. height: math.unit(15, "meters"),
  31010. default: true
  31011. },
  31012. {
  31013. name: "Macro+",
  31014. height: math.unit(40, "meters")
  31015. },
  31016. ]
  31017. ))
  31018. characterMakers.push(() => makeCharacter(
  31019. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31020. {
  31021. front: {
  31022. height: math.unit(4 + 2 / 12, "feet"),
  31023. weight: math.unit(95, "lb"),
  31024. name: "Front",
  31025. image: {
  31026. source: "./media/characters/vaelophis-nyx/front.svg",
  31027. extra: 2532/2330,
  31028. bottom: 0/2532
  31029. }
  31030. },
  31031. back: {
  31032. height: math.unit(4 + 2 / 12, "feet"),
  31033. weight: math.unit(95, "lb"),
  31034. name: "Back",
  31035. image: {
  31036. source: "./media/characters/vaelophis-nyx/back.svg",
  31037. extra: 2484/2361,
  31038. bottom: 0/2484
  31039. }
  31040. },
  31041. feralSide: {
  31042. height: math.unit(2 + 1/12, "feet"),
  31043. weight: math.unit(20, "lb"),
  31044. name: "Feral (Side)",
  31045. image: {
  31046. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31047. extra: 1721/1581,
  31048. bottom: 70/1791
  31049. }
  31050. },
  31051. feralLazing: {
  31052. height: math.unit(1.08, "feet"),
  31053. weight: math.unit(20, "lb"),
  31054. name: "Feral (Lazing)",
  31055. image: {
  31056. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31057. extra: 822/822,
  31058. bottom: 248/1070
  31059. }
  31060. },
  31061. ear: {
  31062. height: math.unit(0.416, "feet"),
  31063. name: "Ear",
  31064. image: {
  31065. source: "./media/characters/vaelophis-nyx/ear.svg"
  31066. }
  31067. },
  31068. eye: {
  31069. height: math.unit(0.0748, "feet"),
  31070. name: "Eye",
  31071. image: {
  31072. source: "./media/characters/vaelophis-nyx/eye.svg"
  31073. }
  31074. },
  31075. mouth: {
  31076. height: math.unit(0.378, "feet"),
  31077. name: "Mouth",
  31078. image: {
  31079. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31080. }
  31081. },
  31082. spade: {
  31083. height: math.unit(0.55, "feet"),
  31084. name: "Spade",
  31085. image: {
  31086. source: "./media/characters/vaelophis-nyx/spade.svg"
  31087. }
  31088. },
  31089. },
  31090. [
  31091. {
  31092. name: "Normal",
  31093. height: math.unit(4 + 2/12, "feet"),
  31094. default: true
  31095. },
  31096. ]
  31097. ))
  31098. characterMakers.push(() => makeCharacter(
  31099. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31100. {
  31101. front: {
  31102. height: math.unit(7, "feet"),
  31103. weight: math.unit(231, "lb"),
  31104. name: "Front",
  31105. image: {
  31106. source: "./media/characters/flux/front.svg",
  31107. extra: 919/871,
  31108. bottom: 0/919
  31109. }
  31110. },
  31111. back: {
  31112. height: math.unit(7, "feet"),
  31113. weight: math.unit(231, "lb"),
  31114. name: "Back",
  31115. image: {
  31116. source: "./media/characters/flux/back.svg",
  31117. extra: 1040/992,
  31118. bottom: 0/1040
  31119. }
  31120. },
  31121. frontDressed: {
  31122. height: math.unit(7, "feet"),
  31123. weight: math.unit(231, "lb"),
  31124. name: "Front (Dressed)",
  31125. image: {
  31126. source: "./media/characters/flux/front-dressed.svg",
  31127. extra: 919/871,
  31128. bottom: 0/919
  31129. }
  31130. },
  31131. feralSide: {
  31132. height: math.unit(5, "feet"),
  31133. weight: math.unit(150, "lb"),
  31134. name: "Feral (Side)",
  31135. image: {
  31136. source: "./media/characters/flux/feral-side.svg",
  31137. extra: 598/528,
  31138. bottom: 28/626
  31139. }
  31140. },
  31141. head: {
  31142. height: math.unit(1.585, "feet"),
  31143. name: "Head",
  31144. image: {
  31145. source: "./media/characters/flux/head.svg"
  31146. }
  31147. },
  31148. headSide: {
  31149. height: math.unit(1.74, "feet"),
  31150. name: "Head (Side)",
  31151. image: {
  31152. source: "./media/characters/flux/head-side.svg"
  31153. }
  31154. },
  31155. headSideFire: {
  31156. height: math.unit(1.76, "feet"),
  31157. name: "Head (Side, Fire)",
  31158. image: {
  31159. source: "./media/characters/flux/head-side-fire.svg"
  31160. }
  31161. },
  31162. },
  31163. [
  31164. {
  31165. name: "Normal",
  31166. height: math.unit(7, "feet"),
  31167. default: true
  31168. },
  31169. ]
  31170. ))
  31171. characterMakers.push(() => makeCharacter(
  31172. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31173. {
  31174. front: {
  31175. height: math.unit(9, "feet"),
  31176. weight: math.unit(1012, "lb"),
  31177. name: "Front",
  31178. image: {
  31179. source: "./media/characters/ulfra-lupae/front.svg",
  31180. extra: 1083/1011,
  31181. bottom: 67/1150
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Micro",
  31188. height: math.unit(6, "inches")
  31189. },
  31190. {
  31191. name: "Socializing",
  31192. height: math.unit(6 + 5/12, "feet")
  31193. },
  31194. {
  31195. name: "Normal",
  31196. height: math.unit(9, "feet"),
  31197. default: true
  31198. },
  31199. {
  31200. name: "Macro",
  31201. height: math.unit(150, "feet")
  31202. },
  31203. ]
  31204. ))
  31205. characterMakers.push(() => makeCharacter(
  31206. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31207. {
  31208. front: {
  31209. height: math.unit(5 + 2/12, "feet"),
  31210. weight: math.unit(120, "lb"),
  31211. name: "Front",
  31212. image: {
  31213. source: "./media/characters/timber/front.svg",
  31214. extra: 2814/2705,
  31215. bottom: 181/2995
  31216. }
  31217. },
  31218. },
  31219. [
  31220. {
  31221. name: "Normal",
  31222. height: math.unit(5 + 2/12, "feet"),
  31223. default: true
  31224. },
  31225. ]
  31226. ))
  31227. characterMakers.push(() => makeCharacter(
  31228. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31229. {
  31230. front: {
  31231. height: math.unit(5 + 7/12, "feet"),
  31232. weight: math.unit(220, "lb"),
  31233. name: "Front",
  31234. image: {
  31235. source: "./media/characters/nicki/front.svg",
  31236. extra: 453/419,
  31237. bottom: 7/460
  31238. }
  31239. },
  31240. frontAlt: {
  31241. height: math.unit(5 + 7/12, "feet"),
  31242. weight: math.unit(220, "lb"),
  31243. name: "Front-alt",
  31244. image: {
  31245. source: "./media/characters/nicki/front-alt.svg",
  31246. extra: 435/411,
  31247. bottom: 12/447
  31248. }
  31249. },
  31250. back: {
  31251. height: math.unit(5 + 7/12, "feet"),
  31252. weight: math.unit(220, "lb"),
  31253. name: "Back",
  31254. image: {
  31255. source: "./media/characters/nicki/back.svg",
  31256. extra: 440/413,
  31257. bottom: 19/459
  31258. }
  31259. },
  31260. taur: {
  31261. height: math.unit(7 + 6/12, "feet"),
  31262. weight: math.unit(700, "lb"),
  31263. name: "Taur",
  31264. image: {
  31265. source: "./media/characters/nicki/taur.svg",
  31266. extra: 975/773,
  31267. bottom: 0/975
  31268. }
  31269. },
  31270. frontNsfw: {
  31271. height: math.unit(5 + 7/12, "feet"),
  31272. weight: math.unit(220, "lb"),
  31273. name: "Front (NSFW)",
  31274. image: {
  31275. source: "./media/characters/nicki/front-nsfw.svg",
  31276. extra: 453/419,
  31277. bottom: 7/460
  31278. }
  31279. },
  31280. frontNsfwAlt: {
  31281. height: math.unit(5 + 7/12, "feet"),
  31282. weight: math.unit(220, "lb"),
  31283. name: "Front (Alt, NSFW)",
  31284. image: {
  31285. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31286. extra: 435/411,
  31287. bottom: 12/447
  31288. }
  31289. },
  31290. backNsfw: {
  31291. height: math.unit(5 + 7/12, "feet"),
  31292. weight: math.unit(220, "lb"),
  31293. name: "Back (NSFW)",
  31294. image: {
  31295. source: "./media/characters/nicki/back-nsfw.svg",
  31296. extra: 440/413,
  31297. bottom: 19/459
  31298. }
  31299. },
  31300. head: {
  31301. height: math.unit(2.1, "feet"),
  31302. name: "Head",
  31303. image: {
  31304. source: "./media/characters/nicki/head.svg"
  31305. }
  31306. },
  31307. paw: {
  31308. height: math.unit(1.88, "feet"),
  31309. name: "Paw",
  31310. image: {
  31311. source: "./media/characters/nicki/paw.svg"
  31312. }
  31313. },
  31314. },
  31315. [
  31316. {
  31317. name: "Normal",
  31318. height: math.unit(5 + 7/12, "feet"),
  31319. default: true
  31320. },
  31321. ]
  31322. ))
  31323. characterMakers.push(() => makeCharacter(
  31324. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31325. {
  31326. front: {
  31327. height: math.unit(7 + 10/12, "feet"),
  31328. weight: math.unit(3.5, "tons"),
  31329. name: "Front",
  31330. image: {
  31331. source: "./media/characters/lee/front.svg",
  31332. extra: 1773/1615,
  31333. bottom: 86/1859
  31334. }
  31335. },
  31336. hand: {
  31337. height: math.unit(1.78, "feet"),
  31338. name: "Hand",
  31339. image: {
  31340. source: "./media/characters/lee/hand.svg"
  31341. }
  31342. },
  31343. maw: {
  31344. height: math.unit(1.18, "feet"),
  31345. name: "Maw",
  31346. image: {
  31347. source: "./media/characters/lee/maw.svg"
  31348. }
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Normal",
  31354. height: math.unit(7 + 10/12, "feet"),
  31355. default: true
  31356. },
  31357. ]
  31358. ))
  31359. characterMakers.push(() => makeCharacter(
  31360. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31361. {
  31362. front: {
  31363. height: math.unit(9, "feet"),
  31364. name: "Front",
  31365. image: {
  31366. source: "./media/characters/guti/front.svg",
  31367. extra: 4551/4355,
  31368. bottom: 123/4674
  31369. }
  31370. },
  31371. tongue: {
  31372. height: math.unit(1, "feet"),
  31373. name: "Tongue",
  31374. image: {
  31375. source: "./media/characters/guti/tongue.svg"
  31376. }
  31377. },
  31378. paw: {
  31379. height: math.unit(1.18, "feet"),
  31380. name: "Paw",
  31381. image: {
  31382. source: "./media/characters/guti/paw.svg"
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Normal",
  31389. height: math.unit(9, "feet"),
  31390. default: true
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31396. {
  31397. side: {
  31398. height: math.unit(5, "meters"),
  31399. name: "Side",
  31400. image: {
  31401. source: "./media/characters/vesper/side.svg",
  31402. extra: 1605/1518,
  31403. bottom: 0/1605
  31404. }
  31405. },
  31406. },
  31407. [
  31408. {
  31409. name: "Small",
  31410. height: math.unit(5, "meters")
  31411. },
  31412. {
  31413. name: "Sage",
  31414. height: math.unit(100, "meters"),
  31415. default: true
  31416. },
  31417. {
  31418. name: "Fun Size",
  31419. height: math.unit(600, "meters")
  31420. },
  31421. {
  31422. name: "Goddess",
  31423. height: math.unit(20000, "km")
  31424. },
  31425. {
  31426. name: "Maximum",
  31427. height: math.unit(5, "galaxies")
  31428. },
  31429. ]
  31430. ))
  31431. characterMakers.push(() => makeCharacter(
  31432. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31433. {
  31434. front: {
  31435. height: math.unit(6 + 3/12, "feet"),
  31436. weight: math.unit(190, "lb"),
  31437. name: "Front",
  31438. image: {
  31439. source: "./media/characters/gawain/front.svg",
  31440. extra: 2222/2139,
  31441. bottom: 90/2312
  31442. }
  31443. },
  31444. back: {
  31445. height: math.unit(6 + 3/12, "feet"),
  31446. weight: math.unit(190, "lb"),
  31447. name: "Back",
  31448. image: {
  31449. source: "./media/characters/gawain/back.svg",
  31450. extra: 2199/2111,
  31451. bottom: 73/2272
  31452. }
  31453. },
  31454. },
  31455. [
  31456. {
  31457. name: "Normal",
  31458. height: math.unit(6 + 3/12, "feet"),
  31459. default: true
  31460. },
  31461. ]
  31462. ))
  31463. characterMakers.push(() => makeCharacter(
  31464. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31465. {
  31466. side: {
  31467. height: math.unit(3.5, "meters"),
  31468. weight: math.unit(16000, "lb"),
  31469. name: "Side",
  31470. image: {
  31471. source: "./media/characters/dascalti/side.svg",
  31472. extra: 392/273,
  31473. bottom: 47/439
  31474. }
  31475. },
  31476. breath: {
  31477. height: math.unit(7.4, "feet"),
  31478. name: "Breath",
  31479. image: {
  31480. source: "./media/characters/dascalti/breath.svg"
  31481. }
  31482. },
  31483. fed: {
  31484. height: math.unit(3.6, "meters"),
  31485. weight: math.unit(16000, "lb"),
  31486. name: "Fed",
  31487. image: {
  31488. source: "./media/characters/dascalti/fed.svg",
  31489. extra: 1419/820,
  31490. bottom: 95/1514
  31491. }
  31492. },
  31493. },
  31494. [
  31495. {
  31496. name: "Normal",
  31497. height: math.unit(3.5, "meters"),
  31498. default: true
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(3 + 5/12, "feet"),
  31507. name: "Front",
  31508. image: {
  31509. source: "./media/characters/mauve/front.svg",
  31510. extra: 1126/1033,
  31511. bottom: 65/1191
  31512. }
  31513. },
  31514. side: {
  31515. height: math.unit(3 + 5/12, "feet"),
  31516. name: "Side",
  31517. image: {
  31518. source: "./media/characters/mauve/side.svg",
  31519. extra: 1089/1001,
  31520. bottom: 29/1118
  31521. }
  31522. },
  31523. back: {
  31524. height: math.unit(3 + 5/12, "feet"),
  31525. name: "Back",
  31526. image: {
  31527. source: "./media/characters/mauve/back.svg",
  31528. extra: 1173/1053,
  31529. bottom: 109/1282
  31530. }
  31531. },
  31532. },
  31533. [
  31534. {
  31535. name: "Normal",
  31536. height: math.unit(3 + 5/12, "feet"),
  31537. default: true
  31538. },
  31539. ]
  31540. ))
  31541. characterMakers.push(() => makeCharacter(
  31542. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31543. {
  31544. front: {
  31545. height: math.unit(6 + 3/12, "feet"),
  31546. weight: math.unit(430, "lb"),
  31547. name: "Front",
  31548. image: {
  31549. source: "./media/characters/carlos/front.svg",
  31550. extra: 1964/1913,
  31551. bottom: 70/2034
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Normal",
  31558. height: math.unit(6 + 3/12, "feet"),
  31559. default: true
  31560. },
  31561. ]
  31562. ))
  31563. characterMakers.push(() => makeCharacter(
  31564. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31565. {
  31566. back: {
  31567. height: math.unit(5 + 10/12, "feet"),
  31568. weight: math.unit(200, "lb"),
  31569. name: "Back",
  31570. image: {
  31571. source: "./media/characters/jax/back.svg",
  31572. extra: 764/739,
  31573. bottom: 25/789
  31574. }
  31575. },
  31576. },
  31577. [
  31578. {
  31579. name: "Normal",
  31580. height: math.unit(5 + 10/12, "feet"),
  31581. default: true
  31582. },
  31583. ]
  31584. ))
  31585. characterMakers.push(() => makeCharacter(
  31586. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31587. {
  31588. front: {
  31589. height: math.unit(8, "feet"),
  31590. weight: math.unit(250, "lb"),
  31591. name: "Front",
  31592. image: {
  31593. source: "./media/characters/eikthynir/front.svg",
  31594. extra: 1332/1166,
  31595. bottom: 82/1414
  31596. }
  31597. },
  31598. back: {
  31599. height: math.unit(8, "feet"),
  31600. weight: math.unit(250, "lb"),
  31601. name: "Back",
  31602. image: {
  31603. source: "./media/characters/eikthynir/back.svg",
  31604. extra: 1342/1190,
  31605. bottom: 19/1361
  31606. }
  31607. },
  31608. dick: {
  31609. height: math.unit(2.35, "feet"),
  31610. name: "Dick",
  31611. image: {
  31612. source: "./media/characters/eikthynir/dick.svg"
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(8, "feet"),
  31620. default: true
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(99, "meters"),
  31629. weight: math.unit(13000, "tons"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/zlmos/front.svg",
  31633. extra: 2202/1992,
  31634. bottom: 315/2517
  31635. }
  31636. },
  31637. },
  31638. [
  31639. {
  31640. name: "Macro",
  31641. height: math.unit(99, "meters"),
  31642. default: true
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31648. {
  31649. front: {
  31650. height: math.unit(6 + 5/12, "feet"),
  31651. name: "Front",
  31652. image: {
  31653. source: "./media/characters/purri/front.svg",
  31654. extra: 1698/1610,
  31655. bottom: 32/1730
  31656. }
  31657. },
  31658. frontAlt: {
  31659. height: math.unit(6 + 5/12, "feet"),
  31660. name: "Front (Alt)",
  31661. image: {
  31662. source: "./media/characters/purri/front-alt.svg",
  31663. extra: 450/420,
  31664. bottom: 26/476
  31665. }
  31666. },
  31667. boots: {
  31668. height: math.unit(5.5, "feet"),
  31669. name: "Boots",
  31670. image: {
  31671. source: "./media/characters/purri/boots.svg",
  31672. extra: 905/853,
  31673. bottom: 18/923
  31674. }
  31675. },
  31676. lying: {
  31677. height: math.unit(2, "feet"),
  31678. name: "Lying",
  31679. image: {
  31680. source: "./media/characters/purri/lying.svg",
  31681. extra: 940/843,
  31682. bottom: 146/1086
  31683. }
  31684. },
  31685. devious: {
  31686. height: math.unit(1.77, "feet"),
  31687. name: "Devious",
  31688. image: {
  31689. source: "./media/characters/purri/devious.svg",
  31690. extra: 1440/1155,
  31691. bottom: 147/1587
  31692. }
  31693. },
  31694. bean: {
  31695. height: math.unit(1.94, "feet"),
  31696. name: "Bean",
  31697. image: {
  31698. source: "./media/characters/purri/bean.svg"
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Micro",
  31705. height: math.unit(1, "mm")
  31706. },
  31707. {
  31708. name: "Normal",
  31709. height: math.unit(6 + 5/12, "feet"),
  31710. default: true
  31711. },
  31712. {
  31713. name: "Macro :3c",
  31714. height: math.unit(2, "miles")
  31715. },
  31716. ]
  31717. ))
  31718. characterMakers.push(() => makeCharacter(
  31719. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31720. {
  31721. front: {
  31722. height: math.unit(6 + 2/12, "feet"),
  31723. weight: math.unit(250, "lb"),
  31724. name: "Front",
  31725. image: {
  31726. source: "./media/characters/moonlight/front.svg",
  31727. extra: 1044/908,
  31728. bottom: 56/1100
  31729. }
  31730. },
  31731. feral: {
  31732. height: math.unit(3 + 1/12, "feet"),
  31733. weight: math.unit(50, "kg"),
  31734. name: "Feral",
  31735. image: {
  31736. source: "./media/characters/moonlight/feral.svg",
  31737. extra: 3705/2791,
  31738. bottom: 145/3850
  31739. }
  31740. },
  31741. paw: {
  31742. height: math.unit(1, "feet"),
  31743. name: "Paw",
  31744. image: {
  31745. source: "./media/characters/moonlight/paw.svg"
  31746. }
  31747. },
  31748. paws: {
  31749. height: math.unit(0.98, "feet"),
  31750. name: "Paws",
  31751. image: {
  31752. source: "./media/characters/moonlight/paws.svg",
  31753. extra: 939/939,
  31754. bottom: 50/989
  31755. }
  31756. },
  31757. mouth: {
  31758. height: math.unit(0.48, "feet"),
  31759. name: "Mouth",
  31760. image: {
  31761. source: "./media/characters/moonlight/mouth.svg"
  31762. }
  31763. },
  31764. dick: {
  31765. height: math.unit(1.46, "feet"),
  31766. name: "Dick",
  31767. image: {
  31768. source: "./media/characters/moonlight/dick.svg"
  31769. }
  31770. },
  31771. },
  31772. [
  31773. {
  31774. name: "Normal",
  31775. height: math.unit(6 + 2/12, "feet"),
  31776. default: true
  31777. },
  31778. {
  31779. name: "Macro",
  31780. height: math.unit(300, "feet")
  31781. },
  31782. {
  31783. name: "Macro+",
  31784. height: math.unit(1, "mile")
  31785. },
  31786. {
  31787. name: "Mt. Moon",
  31788. height: math.unit(5, "miles")
  31789. },
  31790. {
  31791. name: "Megamacro",
  31792. height: math.unit(15, "miles")
  31793. },
  31794. ]
  31795. ))
  31796. characterMakers.push(() => makeCharacter(
  31797. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31798. {
  31799. back: {
  31800. height: math.unit(6, "feet"),
  31801. weight: math.unit(150, "lb"),
  31802. name: "Back",
  31803. image: {
  31804. source: "./media/characters/sylen/back.svg",
  31805. extra: 1335/1273,
  31806. bottom: 107/1442
  31807. }
  31808. },
  31809. },
  31810. [
  31811. {
  31812. name: "Normal",
  31813. height: math.unit(5 + 5/12, "feet")
  31814. },
  31815. {
  31816. name: "Megamacro",
  31817. height: math.unit(3, "miles"),
  31818. default: true
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31824. {
  31825. front: {
  31826. height: math.unit(6, "feet"),
  31827. weight: math.unit(190, "lb"),
  31828. name: "Front",
  31829. image: {
  31830. source: "./media/characters/huttser/front.svg",
  31831. extra: 1152/1058,
  31832. bottom: 23/1175
  31833. }
  31834. },
  31835. side: {
  31836. height: math.unit(6, "feet"),
  31837. weight: math.unit(190, "lb"),
  31838. name: "Side",
  31839. image: {
  31840. source: "./media/characters/huttser/side.svg",
  31841. extra: 1174/1065,
  31842. bottom: 18/1192
  31843. }
  31844. },
  31845. back: {
  31846. height: math.unit(6, "feet"),
  31847. weight: math.unit(190, "lb"),
  31848. name: "Back",
  31849. image: {
  31850. source: "./media/characters/huttser/back.svg",
  31851. extra: 1158/1056,
  31852. bottom: 12/1170
  31853. }
  31854. },
  31855. },
  31856. [
  31857. ]
  31858. ))
  31859. characterMakers.push(() => makeCharacter(
  31860. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31861. {
  31862. side: {
  31863. height: math.unit(12 + 9/12, "feet"),
  31864. weight: math.unit(15000, "lb"),
  31865. name: "Side",
  31866. image: {
  31867. source: "./media/characters/faan/side.svg",
  31868. extra: 2747/2697,
  31869. bottom: 0/2747
  31870. }
  31871. },
  31872. front: {
  31873. height: math.unit(12 + 9/12, "feet"),
  31874. weight: math.unit(15000, "lb"),
  31875. name: "Front",
  31876. image: {
  31877. source: "./media/characters/faan/front.svg",
  31878. extra: 607/571,
  31879. bottom: 24/631
  31880. }
  31881. },
  31882. head: {
  31883. height: math.unit(2.85, "feet"),
  31884. name: "Head",
  31885. image: {
  31886. source: "./media/characters/faan/head.svg"
  31887. }
  31888. },
  31889. headAlt: {
  31890. height: math.unit(3.13, "feet"),
  31891. name: "Head-alt",
  31892. image: {
  31893. source: "./media/characters/faan/head-alt.svg"
  31894. }
  31895. },
  31896. },
  31897. [
  31898. {
  31899. name: "Normal",
  31900. height: math.unit(12 + 9/12, "feet"),
  31901. default: true
  31902. },
  31903. ]
  31904. ))
  31905. characterMakers.push(() => makeCharacter(
  31906. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31907. {
  31908. front: {
  31909. height: math.unit(6, "feet"),
  31910. weight: math.unit(300, "lb"),
  31911. name: "Front",
  31912. image: {
  31913. source: "./media/characters/tanio/front.svg",
  31914. extra: 711/673,
  31915. bottom: 25/736
  31916. }
  31917. },
  31918. },
  31919. [
  31920. {
  31921. name: "Normal",
  31922. height: math.unit(6, "feet"),
  31923. default: true
  31924. },
  31925. ]
  31926. ))
  31927. characterMakers.push(() => makeCharacter(
  31928. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31929. {
  31930. front: {
  31931. height: math.unit(3, "inches"),
  31932. name: "Front",
  31933. image: {
  31934. source: "./media/characters/noboru/front.svg",
  31935. extra: 1039/932,
  31936. bottom: 18/1057
  31937. }
  31938. },
  31939. },
  31940. [
  31941. {
  31942. name: "Micro",
  31943. height: math.unit(3, "inches"),
  31944. default: true
  31945. },
  31946. ]
  31947. ))
  31948. characterMakers.push(() => makeCharacter(
  31949. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31950. {
  31951. front: {
  31952. height: math.unit(1.85, "meters"),
  31953. weight: math.unit(80, "kg"),
  31954. name: "Front",
  31955. image: {
  31956. source: "./media/characters/daniel-barrett/front.svg",
  31957. extra: 355/337,
  31958. bottom: 9/364
  31959. }
  31960. },
  31961. },
  31962. [
  31963. {
  31964. name: "Pico",
  31965. height: math.unit(0.0433, "mm")
  31966. },
  31967. {
  31968. name: "Nano",
  31969. height: math.unit(1.5, "mm")
  31970. },
  31971. {
  31972. name: "Micro",
  31973. height: math.unit(5.3, "cm"),
  31974. default: true
  31975. },
  31976. {
  31977. name: "Normal",
  31978. height: math.unit(1.85, "meters")
  31979. },
  31980. {
  31981. name: "Macro",
  31982. height: math.unit(64.7, "meters")
  31983. },
  31984. {
  31985. name: "Megamacro",
  31986. height: math.unit(2.26, "km")
  31987. },
  31988. {
  31989. name: "Gigamacro",
  31990. height: math.unit(79, "km")
  31991. },
  31992. {
  31993. name: "Teramacro",
  31994. height: math.unit(2765, "km")
  31995. },
  31996. {
  31997. name: "Petamacro",
  31998. height: math.unit(96678, "km")
  31999. },
  32000. ]
  32001. ))
  32002. characterMakers.push(() => makeCharacter(
  32003. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32004. {
  32005. front: {
  32006. height: math.unit(30, "meters"),
  32007. weight: math.unit(400, "tons"),
  32008. name: "Front",
  32009. image: {
  32010. source: "./media/characters/zeel/front.svg",
  32011. extra: 2599/2599,
  32012. bottom: 226/2825
  32013. }
  32014. },
  32015. },
  32016. [
  32017. {
  32018. name: "Macro",
  32019. height: math.unit(30, "meters"),
  32020. default: true
  32021. },
  32022. ]
  32023. ))
  32024. characterMakers.push(() => makeCharacter(
  32025. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32026. {
  32027. front: {
  32028. height: math.unit(6 + 7/12, "feet"),
  32029. weight: math.unit(210, "lb"),
  32030. name: "Front",
  32031. image: {
  32032. source: "./media/characters/tarn/front.svg",
  32033. extra: 3517/3220,
  32034. bottom: 91/3608
  32035. }
  32036. },
  32037. back: {
  32038. height: math.unit(6 + 7/12, "feet"),
  32039. weight: math.unit(210, "lb"),
  32040. name: "Back",
  32041. image: {
  32042. source: "./media/characters/tarn/back.svg",
  32043. extra: 3566/3241,
  32044. bottom: 34/3600
  32045. }
  32046. },
  32047. dick: {
  32048. height: math.unit(1.65, "feet"),
  32049. name: "Dick",
  32050. image: {
  32051. source: "./media/characters/tarn/dick.svg"
  32052. }
  32053. },
  32054. paw: {
  32055. height: math.unit(1.80, "feet"),
  32056. name: "Paw",
  32057. image: {
  32058. source: "./media/characters/tarn/paw.svg"
  32059. }
  32060. },
  32061. tongue: {
  32062. height: math.unit(0.97, "feet"),
  32063. name: "Tongue",
  32064. image: {
  32065. source: "./media/characters/tarn/tongue.svg"
  32066. }
  32067. },
  32068. },
  32069. [
  32070. {
  32071. name: "Micro",
  32072. height: math.unit(4, "inches")
  32073. },
  32074. {
  32075. name: "Normal",
  32076. height: math.unit(6 + 7/12, "feet"),
  32077. default: true
  32078. },
  32079. {
  32080. name: "Macro",
  32081. height: math.unit(300, "feet")
  32082. },
  32083. ]
  32084. ))
  32085. characterMakers.push(() => makeCharacter(
  32086. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32087. {
  32088. front: {
  32089. height: math.unit(5 + 7/12, "feet"),
  32090. weight: math.unit(80, "kg"),
  32091. name: "Front",
  32092. image: {
  32093. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32094. extra: 3023/2865,
  32095. bottom: 33/3056
  32096. }
  32097. },
  32098. back: {
  32099. height: math.unit(5 + 7/12, "feet"),
  32100. weight: math.unit(80, "kg"),
  32101. name: "Back",
  32102. image: {
  32103. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32104. extra: 3020/2886,
  32105. bottom: 30/3050
  32106. }
  32107. },
  32108. dick: {
  32109. height: math.unit(0.98, "feet"),
  32110. name: "Dick",
  32111. image: {
  32112. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32113. }
  32114. },
  32115. anatomy: {
  32116. height: math.unit(2.86, "feet"),
  32117. name: "Anatomy",
  32118. image: {
  32119. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32120. }
  32121. },
  32122. },
  32123. [
  32124. {
  32125. name: "Really Small",
  32126. height: math.unit(2, "inches")
  32127. },
  32128. {
  32129. name: "Micro",
  32130. height: math.unit(5.583, "inches")
  32131. },
  32132. {
  32133. name: "Normal",
  32134. height: math.unit(5 + 7/12, "feet"),
  32135. default: true
  32136. },
  32137. {
  32138. name: "Macro",
  32139. height: math.unit(67, "feet")
  32140. },
  32141. {
  32142. name: "Megamacro",
  32143. height: math.unit(134, "feet")
  32144. },
  32145. ]
  32146. ))
  32147. characterMakers.push(() => makeCharacter(
  32148. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32149. {
  32150. front: {
  32151. height: math.unit(9, "feet"),
  32152. weight: math.unit(120, "lb"),
  32153. name: "Front",
  32154. image: {
  32155. source: "./media/characters/sally/front.svg",
  32156. extra: 1506/1349,
  32157. bottom: 66/1572
  32158. }
  32159. },
  32160. },
  32161. [
  32162. {
  32163. name: "Normal",
  32164. height: math.unit(9, "feet"),
  32165. default: true
  32166. },
  32167. ]
  32168. ))
  32169. characterMakers.push(() => makeCharacter(
  32170. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32171. {
  32172. front: {
  32173. height: math.unit(8, "feet"),
  32174. weight: math.unit(900, "lb"),
  32175. name: "Front",
  32176. image: {
  32177. source: "./media/characters/owen/front.svg",
  32178. extra: 1761/1657,
  32179. bottom: 74/1835
  32180. }
  32181. },
  32182. side: {
  32183. height: math.unit(8, "feet"),
  32184. weight: math.unit(900, "lb"),
  32185. name: "Side",
  32186. image: {
  32187. source: "./media/characters/owen/side.svg",
  32188. extra: 1797/1734,
  32189. bottom: 30/1827
  32190. }
  32191. },
  32192. back: {
  32193. height: math.unit(8, "feet"),
  32194. weight: math.unit(900, "lb"),
  32195. name: "Back",
  32196. image: {
  32197. source: "./media/characters/owen/back.svg",
  32198. extra: 1796/1706,
  32199. bottom: 59/1855
  32200. }
  32201. },
  32202. maw: {
  32203. height: math.unit(1.76, "feet"),
  32204. name: "Maw",
  32205. image: {
  32206. source: "./media/characters/owen/maw.svg"
  32207. }
  32208. },
  32209. },
  32210. [
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(8, "feet"),
  32214. default: true
  32215. },
  32216. ]
  32217. ))
  32218. characterMakers.push(() => makeCharacter(
  32219. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32220. {
  32221. front: {
  32222. height: math.unit(4, "feet"),
  32223. weight: math.unit(400, "lb"),
  32224. name: "Front",
  32225. image: {
  32226. source: "./media/characters/ryth/front.svg",
  32227. extra: 1920/1748,
  32228. bottom: 42/1962
  32229. }
  32230. },
  32231. back: {
  32232. height: math.unit(4, "feet"),
  32233. weight: math.unit(400, "lb"),
  32234. name: "Back",
  32235. image: {
  32236. source: "./media/characters/ryth/back.svg",
  32237. extra: 1897/1690,
  32238. bottom: 89/1986
  32239. }
  32240. },
  32241. mouth: {
  32242. height: math.unit(1.39, "feet"),
  32243. name: "Mouth",
  32244. image: {
  32245. source: "./media/characters/ryth/mouth.svg"
  32246. }
  32247. },
  32248. tailmaw: {
  32249. height: math.unit(1.23, "feet"),
  32250. name: "Tailmaw",
  32251. image: {
  32252. source: "./media/characters/ryth/tailmaw.svg"
  32253. }
  32254. },
  32255. goia: {
  32256. height: math.unit(4, "meters"),
  32257. weight: math.unit(10800, "lb"),
  32258. name: "Goia",
  32259. image: {
  32260. source: "./media/characters/ryth/goia.svg",
  32261. extra: 745/640,
  32262. bottom: 107/852
  32263. }
  32264. },
  32265. goiaFront: {
  32266. height: math.unit(4, "meters"),
  32267. weight: math.unit(10800, "lb"),
  32268. name: "Goia (Front)",
  32269. image: {
  32270. source: "./media/characters/ryth/goia-front.svg",
  32271. extra: 750/586,
  32272. bottom: 114/864
  32273. }
  32274. },
  32275. goiaMaw: {
  32276. height: math.unit(5.55, "feet"),
  32277. name: "Goia Maw",
  32278. image: {
  32279. source: "./media/characters/ryth/goia-maw.svg"
  32280. }
  32281. },
  32282. goiaForepaw: {
  32283. height: math.unit(3.5, "feet"),
  32284. name: "Goia Forepaw",
  32285. image: {
  32286. source: "./media/characters/ryth/goia-forepaw.svg"
  32287. }
  32288. },
  32289. goiaHindpaw: {
  32290. height: math.unit(5.55, "feet"),
  32291. name: "Goia Hindpaw",
  32292. image: {
  32293. source: "./media/characters/ryth/goia-hindpaw.svg"
  32294. }
  32295. },
  32296. },
  32297. [
  32298. {
  32299. name: "Normal",
  32300. height: math.unit(4, "feet"),
  32301. default: true
  32302. },
  32303. ]
  32304. ))
  32305. characterMakers.push(() => makeCharacter(
  32306. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32307. {
  32308. front: {
  32309. height: math.unit(7, "feet"),
  32310. weight: math.unit(180, "lb"),
  32311. name: "Front",
  32312. image: {
  32313. source: "./media/characters/necrolance/front.svg",
  32314. extra: 1062/947,
  32315. bottom: 41/1103
  32316. }
  32317. },
  32318. back: {
  32319. height: math.unit(7, "feet"),
  32320. weight: math.unit(180, "lb"),
  32321. name: "Back",
  32322. image: {
  32323. source: "./media/characters/necrolance/back.svg",
  32324. extra: 1045/984,
  32325. bottom: 14/1059
  32326. }
  32327. },
  32328. wing: {
  32329. height: math.unit(2.67, "feet"),
  32330. name: "Wing",
  32331. image: {
  32332. source: "./media/characters/necrolance/wing.svg"
  32333. }
  32334. },
  32335. },
  32336. [
  32337. {
  32338. name: "Normal",
  32339. height: math.unit(7, "feet"),
  32340. default: true
  32341. },
  32342. ]
  32343. ))
  32344. characterMakers.push(() => makeCharacter(
  32345. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32346. {
  32347. front: {
  32348. height: math.unit(76, "meters"),
  32349. weight: math.unit(30000, "tons"),
  32350. name: "Front",
  32351. image: {
  32352. source: "./media/characters/tyler/front.svg",
  32353. extra: 1640/1640,
  32354. bottom: 114/1754
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Macro",
  32361. height: math.unit(76, "meters"),
  32362. default: true
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32368. {
  32369. front: {
  32370. height: math.unit(4 + 11/12, "feet"),
  32371. weight: math.unit(132, "lb"),
  32372. name: "Front",
  32373. image: {
  32374. source: "./media/characters/icey/front.svg",
  32375. extra: 2750/2550,
  32376. bottom: 33/2783
  32377. }
  32378. },
  32379. back: {
  32380. height: math.unit(4 + 11/12, "feet"),
  32381. weight: math.unit(132, "lb"),
  32382. name: "Back",
  32383. image: {
  32384. source: "./media/characters/icey/back.svg",
  32385. extra: 2624/2481,
  32386. bottom: 35/2659
  32387. }
  32388. },
  32389. },
  32390. [
  32391. {
  32392. name: "Normal",
  32393. height: math.unit(4 + 11/12, "feet"),
  32394. default: true
  32395. },
  32396. ]
  32397. ))
  32398. characterMakers.push(() => makeCharacter(
  32399. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32400. {
  32401. front: {
  32402. height: math.unit(100, "feet"),
  32403. weight: math.unit(0, "lb"),
  32404. name: "Front",
  32405. image: {
  32406. source: "./media/characters/smile/front.svg",
  32407. extra: 2983/2912,
  32408. bottom: 162/3145
  32409. }
  32410. },
  32411. back: {
  32412. height: math.unit(100, "feet"),
  32413. weight: math.unit(0, "lb"),
  32414. name: "Back",
  32415. image: {
  32416. source: "./media/characters/smile/back.svg",
  32417. extra: 3143/3031,
  32418. bottom: 91/3234
  32419. }
  32420. },
  32421. head: {
  32422. height: math.unit(26.3, "feet"),
  32423. weight: math.unit(0, "lb"),
  32424. name: "Head",
  32425. image: {
  32426. source: "./media/characters/smile/head.svg"
  32427. }
  32428. },
  32429. collar: {
  32430. height: math.unit(5.3, "feet"),
  32431. weight: math.unit(0, "lb"),
  32432. name: "Collar",
  32433. image: {
  32434. source: "./media/characters/smile/collar.svg"
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Macro",
  32441. height: math.unit(100, "feet"),
  32442. default: true
  32443. },
  32444. ]
  32445. ))
  32446. characterMakers.push(() => makeCharacter(
  32447. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32448. {
  32449. dragon: {
  32450. height: math.unit(26, "feet"),
  32451. weight: math.unit(36, "tons"),
  32452. name: "Dragon",
  32453. image: {
  32454. source: "./media/characters/arimphae/dragon.svg",
  32455. extra: 1574/983,
  32456. bottom: 357/1931
  32457. }
  32458. },
  32459. drake: {
  32460. height: math.unit(9, "feet"),
  32461. weight: math.unit(1.5, "tons"),
  32462. name: "Drake",
  32463. image: {
  32464. source: "./media/characters/arimphae/drake.svg",
  32465. extra: 1120/925,
  32466. bottom: 435/1555
  32467. }
  32468. },
  32469. },
  32470. [
  32471. {
  32472. name: "Small",
  32473. height: math.unit(26*5/9, "feet")
  32474. },
  32475. {
  32476. name: "Normal",
  32477. height: math.unit(26, "feet"),
  32478. default: true
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32484. {
  32485. front: {
  32486. height: math.unit(8 + 9/12, "feet"),
  32487. name: "Front",
  32488. image: {
  32489. source: "./media/characters/xander/front.svg",
  32490. extra: 1237/974,
  32491. bottom: 94/1331
  32492. }
  32493. },
  32494. },
  32495. [
  32496. {
  32497. name: "Normal",
  32498. height: math.unit(8 + 9/12, "feet"),
  32499. default: true
  32500. },
  32501. {
  32502. name: "Gaze Grabber",
  32503. height: math.unit(13 + 8/12, "feet")
  32504. },
  32505. {
  32506. name: "Jaw Dropper",
  32507. height: math.unit(27, "feet")
  32508. },
  32509. {
  32510. name: "Show Stopper",
  32511. height: math.unit(136, "feet")
  32512. },
  32513. {
  32514. name: "Superstar",
  32515. height: math.unit(1.9e6, "miles")
  32516. },
  32517. ]
  32518. ))
  32519. characterMakers.push(() => makeCharacter(
  32520. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32521. {
  32522. side: {
  32523. height: math.unit(2100, "feet"),
  32524. name: "Side",
  32525. image: {
  32526. source: "./media/characters/osiris/side.svg",
  32527. extra: 1105/939,
  32528. bottom: 167/1272
  32529. }
  32530. },
  32531. },
  32532. [
  32533. {
  32534. name: "Macro",
  32535. height: math.unit(2100, "feet"),
  32536. default: true
  32537. },
  32538. ]
  32539. ))
  32540. characterMakers.push(() => makeCharacter(
  32541. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32542. {
  32543. front: {
  32544. height: math.unit(6 + 8/12, "feet"),
  32545. weight: math.unit(225, "lb"),
  32546. name: "Front",
  32547. image: {
  32548. source: "./media/characters/rhys-londe/front.svg",
  32549. extra: 2258/2141,
  32550. bottom: 188/2446
  32551. }
  32552. },
  32553. back: {
  32554. height: math.unit(6 + 8/12, "feet"),
  32555. weight: math.unit(225, "lb"),
  32556. name: "Back",
  32557. image: {
  32558. source: "./media/characters/rhys-londe/back.svg",
  32559. extra: 2237/2137,
  32560. bottom: 63/2300
  32561. }
  32562. },
  32563. frontNsfw: {
  32564. height: math.unit(6 + 8/12, "feet"),
  32565. weight: math.unit(225, "lb"),
  32566. name: "Front (NSFW)",
  32567. image: {
  32568. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32569. extra: 2258/2141,
  32570. bottom: 188/2446
  32571. }
  32572. },
  32573. backNsfw: {
  32574. height: math.unit(6 + 8/12, "feet"),
  32575. weight: math.unit(225, "lb"),
  32576. name: "Back (NSFW)",
  32577. image: {
  32578. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32579. extra: 2237/2137,
  32580. bottom: 63/2300
  32581. }
  32582. },
  32583. dick: {
  32584. height: math.unit(30, "inches"),
  32585. name: "Dick",
  32586. image: {
  32587. source: "./media/characters/rhys-londe/dick.svg"
  32588. }
  32589. },
  32590. maw: {
  32591. height: math.unit(1.6, "feet"),
  32592. name: "Maw",
  32593. image: {
  32594. source: "./media/characters/rhys-londe/maw.svg"
  32595. }
  32596. },
  32597. },
  32598. [
  32599. {
  32600. name: "Normal",
  32601. height: math.unit(6 + 8/12, "feet"),
  32602. default: true
  32603. },
  32604. ]
  32605. ))
  32606. characterMakers.push(() => makeCharacter(
  32607. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32608. {
  32609. front: {
  32610. height: math.unit(3 + 10/12, "feet"),
  32611. weight: math.unit(90, "lb"),
  32612. name: "Front",
  32613. image: {
  32614. source: "./media/characters/taivas-ensim/front.svg",
  32615. extra: 1327/1216,
  32616. bottom: 96/1423
  32617. }
  32618. },
  32619. back: {
  32620. height: math.unit(3 + 10/12, "feet"),
  32621. weight: math.unit(90, "lb"),
  32622. name: "Back",
  32623. image: {
  32624. source: "./media/characters/taivas-ensim/back.svg",
  32625. extra: 1355/1247,
  32626. bottom: 11/1366
  32627. }
  32628. },
  32629. frontNsfw: {
  32630. height: math.unit(3 + 10/12, "feet"),
  32631. weight: math.unit(90, "lb"),
  32632. name: "Front (NSFW)",
  32633. image: {
  32634. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32635. extra: 1327/1216,
  32636. bottom: 96/1423
  32637. }
  32638. },
  32639. backNsfw: {
  32640. height: math.unit(3 + 10/12, "feet"),
  32641. weight: math.unit(90, "lb"),
  32642. name: "Back (NSFW)",
  32643. image: {
  32644. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32645. extra: 1355/1247,
  32646. bottom: 11/1366
  32647. }
  32648. },
  32649. },
  32650. [
  32651. {
  32652. name: "Normal",
  32653. height: math.unit(3 + 10/12, "feet"),
  32654. default: true
  32655. },
  32656. ]
  32657. ))
  32658. characterMakers.push(() => makeCharacter(
  32659. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32660. {
  32661. front: {
  32662. height: math.unit(9 + 6/12, "feet"),
  32663. weight: math.unit(940, "lb"),
  32664. name: "Front",
  32665. image: {
  32666. source: "./media/characters/byliss/front.svg",
  32667. extra: 1327/1290,
  32668. bottom: 82/1409
  32669. }
  32670. },
  32671. back: {
  32672. height: math.unit(9 + 6/12, "feet"),
  32673. weight: math.unit(940, "lb"),
  32674. name: "Back",
  32675. image: {
  32676. source: "./media/characters/byliss/back.svg",
  32677. extra: 1376/1349,
  32678. bottom: 9/1385
  32679. }
  32680. },
  32681. frontNsfw: {
  32682. height: math.unit(9 + 6/12, "feet"),
  32683. weight: math.unit(940, "lb"),
  32684. name: "Front (NSFW)",
  32685. image: {
  32686. source: "./media/characters/byliss/front-nsfw.svg",
  32687. extra: 1327/1290,
  32688. bottom: 82/1409
  32689. }
  32690. },
  32691. backNsfw: {
  32692. height: math.unit(9 + 6/12, "feet"),
  32693. weight: math.unit(940, "lb"),
  32694. name: "Back (NSFW)",
  32695. image: {
  32696. source: "./media/characters/byliss/back-nsfw.svg",
  32697. extra: 1376/1349,
  32698. bottom: 9/1385
  32699. }
  32700. },
  32701. },
  32702. [
  32703. {
  32704. name: "Normal",
  32705. height: math.unit(9 + 6/12, "feet"),
  32706. default: true
  32707. },
  32708. ]
  32709. ))
  32710. characterMakers.push(() => makeCharacter(
  32711. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32712. {
  32713. front: {
  32714. height: math.unit(5 + 2/12, "feet"),
  32715. weight: math.unit(200, "lb"),
  32716. name: "Front",
  32717. image: {
  32718. source: "./media/characters/noraly/front.svg",
  32719. extra: 4985/4773,
  32720. bottom: 150/5135
  32721. }
  32722. },
  32723. full: {
  32724. height: math.unit(5 + 2/12, "feet"),
  32725. weight: math.unit(164, "lb"),
  32726. name: "Full",
  32727. image: {
  32728. source: "./media/characters/noraly/full.svg",
  32729. extra: 1114/1059,
  32730. bottom: 35/1149
  32731. }
  32732. },
  32733. fuller: {
  32734. height: math.unit(5 + 2/12, "feet"),
  32735. weight: math.unit(230, "lb"),
  32736. name: "Fuller",
  32737. image: {
  32738. source: "./media/characters/noraly/fuller.svg",
  32739. extra: 1114/1059,
  32740. bottom: 35/1149
  32741. }
  32742. },
  32743. fullest: {
  32744. height: math.unit(5 + 2/12, "feet"),
  32745. weight: math.unit(300, "lb"),
  32746. name: "Fullest",
  32747. image: {
  32748. source: "./media/characters/noraly/fullest.svg",
  32749. extra: 1114/1059,
  32750. bottom: 35/1149
  32751. }
  32752. },
  32753. },
  32754. [
  32755. {
  32756. name: "Normal",
  32757. height: math.unit(5 + 2/12, "feet"),
  32758. default: true
  32759. },
  32760. ]
  32761. ))
  32762. characterMakers.push(() => makeCharacter(
  32763. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32764. {
  32765. front: {
  32766. height: math.unit(5 + 2/12, "feet"),
  32767. weight: math.unit(210, "lb"),
  32768. name: "Front",
  32769. image: {
  32770. source: "./media/characters/pera/front.svg",
  32771. extra: 1560/1531,
  32772. bottom: 165/1725
  32773. }
  32774. },
  32775. back: {
  32776. height: math.unit(5 + 2/12, "feet"),
  32777. weight: math.unit(210, "lb"),
  32778. name: "Back",
  32779. image: {
  32780. source: "./media/characters/pera/back.svg",
  32781. extra: 1523/1493,
  32782. bottom: 152/1675
  32783. }
  32784. },
  32785. dick: {
  32786. height: math.unit(2.4, "feet"),
  32787. name: "Dick",
  32788. image: {
  32789. source: "./media/characters/pera/dick.svg"
  32790. }
  32791. },
  32792. },
  32793. [
  32794. {
  32795. name: "Normal",
  32796. height: math.unit(5 + 2/12, "feet"),
  32797. default: true
  32798. },
  32799. ]
  32800. ))
  32801. characterMakers.push(() => makeCharacter(
  32802. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32803. {
  32804. front: {
  32805. height: math.unit(12, "feet"),
  32806. weight: math.unit(3200, "lb"),
  32807. name: "Front",
  32808. image: {
  32809. source: "./media/characters/julian/front.svg",
  32810. extra: 2962/2701,
  32811. bottom: 184/3146
  32812. }
  32813. },
  32814. maw: {
  32815. height: math.unit(5.35, "feet"),
  32816. name: "Maw",
  32817. image: {
  32818. source: "./media/characters/julian/maw.svg"
  32819. }
  32820. },
  32821. paw: {
  32822. height: math.unit(3.07, "feet"),
  32823. name: "Paw",
  32824. image: {
  32825. source: "./media/characters/julian/paw.svg"
  32826. }
  32827. },
  32828. },
  32829. [
  32830. {
  32831. name: "Default",
  32832. height: math.unit(12, "feet"),
  32833. default: true
  32834. },
  32835. {
  32836. name: "Big",
  32837. height: math.unit(50, "feet")
  32838. },
  32839. {
  32840. name: "Really Big",
  32841. height: math.unit(1, "mile")
  32842. },
  32843. {
  32844. name: "Extremely Big",
  32845. height: math.unit(100, "miles")
  32846. },
  32847. {
  32848. name: "Planet Hugger",
  32849. height: math.unit(200, "megameters")
  32850. },
  32851. {
  32852. name: "Unreasonably Big",
  32853. height: math.unit(1e300, "meters")
  32854. },
  32855. ]
  32856. ))
  32857. characterMakers.push(() => makeCharacter(
  32858. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32859. {
  32860. solgooleo: {
  32861. height: math.unit(4, "meters"),
  32862. weight: math.unit(6000*1.5, "kg"),
  32863. volume: math.unit(6000, "liters"),
  32864. name: "Solgooleo",
  32865. image: {
  32866. source: "./media/characters/pi/solgooleo.svg",
  32867. extra: 388/331,
  32868. bottom: 29/417
  32869. }
  32870. },
  32871. },
  32872. [
  32873. {
  32874. name: "Normal",
  32875. height: math.unit(4, "meters"),
  32876. default: true
  32877. },
  32878. ]
  32879. ))
  32880. characterMakers.push(() => makeCharacter(
  32881. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32882. {
  32883. front: {
  32884. height: math.unit(8, "feet"),
  32885. weight: math.unit(4, "tons"),
  32886. name: "Front",
  32887. image: {
  32888. source: "./media/characters/shaun/front.svg",
  32889. extra: 503/495,
  32890. bottom: 20/523
  32891. }
  32892. },
  32893. back: {
  32894. height: math.unit(8, "feet"),
  32895. weight: math.unit(4, "tons"),
  32896. name: "Back",
  32897. image: {
  32898. source: "./media/characters/shaun/back.svg",
  32899. extra: 487/480,
  32900. bottom: 20/507
  32901. }
  32902. },
  32903. },
  32904. [
  32905. {
  32906. name: "Lorg",
  32907. height: math.unit(8, "feet"),
  32908. default: true
  32909. },
  32910. ]
  32911. ))
  32912. characterMakers.push(() => makeCharacter(
  32913. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32914. {
  32915. front: {
  32916. height: math.unit(7, "feet"),
  32917. name: "Front",
  32918. image: {
  32919. source: "./media/characters/sini/front.svg",
  32920. extra: 726/678,
  32921. bottom: 35/761
  32922. }
  32923. },
  32924. back: {
  32925. height: math.unit(7, "feet"),
  32926. name: "Back",
  32927. image: {
  32928. source: "./media/characters/sini/back.svg",
  32929. extra: 743/701,
  32930. bottom: 12/755
  32931. }
  32932. },
  32933. mawAnthro: {
  32934. height: math.unit(2.14, "feet"),
  32935. name: "Maw (Anthro)",
  32936. image: {
  32937. source: "./media/characters/sini/maw-anthro.svg"
  32938. }
  32939. },
  32940. dick: {
  32941. height: math.unit(1.45, "feet"),
  32942. name: "Dick (Anthro)",
  32943. image: {
  32944. source: "./media/characters/sini/dick-anthro.svg"
  32945. }
  32946. },
  32947. feral: {
  32948. height: math.unit(16, "feet"),
  32949. name: "Feral",
  32950. image: {
  32951. source: "./media/characters/sini/feral.svg",
  32952. extra: 814/605,
  32953. bottom: 11/825
  32954. }
  32955. },
  32956. mawFeral: {
  32957. height: math.unit(5.66, "feet"),
  32958. name: "Maw-feral",
  32959. image: {
  32960. source: "./media/characters/sini/maw-feral.svg"
  32961. }
  32962. },
  32963. footFeral: {
  32964. height: math.unit(5.17, "feet"),
  32965. name: "Foot-feral",
  32966. image: {
  32967. source: "./media/characters/sini/foot-feral.svg"
  32968. }
  32969. },
  32970. },
  32971. [
  32972. {
  32973. name: "Normal",
  32974. height: math.unit(7, "feet"),
  32975. default: true
  32976. },
  32977. ]
  32978. ))
  32979. characterMakers.push(() => makeCharacter(
  32980. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32981. {
  32982. side: {
  32983. height: math.unit(13, "meters"),
  32984. weight: math.unit(9072, "kg"),
  32985. name: "Side",
  32986. image: {
  32987. source: "./media/characters/raylldo/side.svg",
  32988. extra: 403/344,
  32989. bottom: 42/445
  32990. }
  32991. },
  32992. leaping: {
  32993. height: math.unit(12.3, "meters"),
  32994. weight: math.unit(9072, "kg"),
  32995. name: "Leaping",
  32996. image: {
  32997. source: "./media/characters/raylldo/leaping.svg",
  32998. extra: 470/249,
  32999. bottom: 13/483
  33000. }
  33001. },
  33002. flying: {
  33003. height: math.unit(18, "meters"),
  33004. weight: math.unit(9072, "kg"),
  33005. name: "Flying",
  33006. image: {
  33007. source: "./media/characters/raylldo/flying.svg"
  33008. }
  33009. },
  33010. head: {
  33011. height: math.unit(5.85, "meters"),
  33012. name: "Head",
  33013. image: {
  33014. source: "./media/characters/raylldo/head.svg"
  33015. }
  33016. },
  33017. maw: {
  33018. height: math.unit(5.32, "meters"),
  33019. name: "Maw",
  33020. image: {
  33021. source: "./media/characters/raylldo/maw.svg"
  33022. }
  33023. },
  33024. eye: {
  33025. height: math.unit(0.54, "meters"),
  33026. name: "Eye",
  33027. image: {
  33028. source: "./media/characters/raylldo/eye.svg"
  33029. }
  33030. },
  33031. },
  33032. [
  33033. {
  33034. name: "Normal",
  33035. height: math.unit(13, "meters"),
  33036. default: true
  33037. },
  33038. ]
  33039. ))
  33040. characterMakers.push(() => makeCharacter(
  33041. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33042. {
  33043. anthroFront: {
  33044. height: math.unit(9, "feet"),
  33045. weight: math.unit(600, "lb"),
  33046. name: "Anthro (Front)",
  33047. image: {
  33048. source: "./media/characters/glint/anthro-front.svg",
  33049. extra: 1097/1018,
  33050. bottom: 28/1125
  33051. }
  33052. },
  33053. anthroBack: {
  33054. height: math.unit(9, "feet"),
  33055. weight: math.unit(600, "lb"),
  33056. name: "Anthro (Back)",
  33057. image: {
  33058. source: "./media/characters/glint/anthro-back.svg",
  33059. extra: 1154/997,
  33060. bottom: 36/1190
  33061. }
  33062. },
  33063. feral: {
  33064. height: math.unit(11, "feet"),
  33065. weight: math.unit(50000, "lb"),
  33066. name: "Feral",
  33067. image: {
  33068. source: "./media/characters/glint/feral.svg",
  33069. extra: 3035/1585,
  33070. bottom: 1169/4204
  33071. }
  33072. },
  33073. dickAnthro: {
  33074. height: math.unit(0.7, "meters"),
  33075. name: "Dick (Anthro)",
  33076. image: {
  33077. source: "./media/characters/glint/dick-anthro.svg"
  33078. }
  33079. },
  33080. dickFeral: {
  33081. height: math.unit(2.65, "meters"),
  33082. name: "Dick (Feral)",
  33083. image: {
  33084. source: "./media/characters/glint/dick-feral.svg"
  33085. }
  33086. },
  33087. slitHidden: {
  33088. height: math.unit(5.85, "meters"),
  33089. name: "Slit (Hidden)",
  33090. image: {
  33091. source: "./media/characters/glint/slit-hidden.svg"
  33092. }
  33093. },
  33094. slitErect: {
  33095. height: math.unit(5.85, "meters"),
  33096. name: "Slit (Erect)",
  33097. image: {
  33098. source: "./media/characters/glint/slit-erect.svg"
  33099. }
  33100. },
  33101. mawAnthro: {
  33102. height: math.unit(0.63, "meters"),
  33103. name: "Maw (Anthro)",
  33104. image: {
  33105. source: "./media/characters/glint/maw.svg"
  33106. }
  33107. },
  33108. mawFeral: {
  33109. height: math.unit(2.89, "meters"),
  33110. name: "Maw (Feral)",
  33111. image: {
  33112. source: "./media/characters/glint/maw.svg"
  33113. }
  33114. },
  33115. },
  33116. [
  33117. {
  33118. name: "Normal",
  33119. height: math.unit(9, "feet"),
  33120. default: true
  33121. },
  33122. ]
  33123. ))
  33124. characterMakers.push(() => makeCharacter(
  33125. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33126. {
  33127. side: {
  33128. height: math.unit(15, "feet"),
  33129. weight: math.unit(5000, "kg"),
  33130. name: "Side",
  33131. image: {
  33132. source: "./media/characters/kairne/side.svg",
  33133. extra: 979/811,
  33134. bottom: 13/992
  33135. }
  33136. },
  33137. front: {
  33138. height: math.unit(15, "feet"),
  33139. weight: math.unit(5000, "kg"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/kairne/front.svg",
  33143. extra: 908/814,
  33144. bottom: 26/934
  33145. }
  33146. },
  33147. sideNsfw: {
  33148. height: math.unit(15, "feet"),
  33149. weight: math.unit(5000, "kg"),
  33150. name: "Side (NSFW)",
  33151. image: {
  33152. source: "./media/characters/kairne/side-nsfw.svg",
  33153. extra: 979/811,
  33154. bottom: 13/992
  33155. }
  33156. },
  33157. frontNsfw: {
  33158. height: math.unit(15, "feet"),
  33159. weight: math.unit(5000, "kg"),
  33160. name: "Front (NSFW)",
  33161. image: {
  33162. source: "./media/characters/kairne/front-nsfw.svg",
  33163. extra: 908/814,
  33164. bottom: 26/934
  33165. }
  33166. },
  33167. dickCaged: {
  33168. height: math.unit(0.65, "meters"),
  33169. name: "Dick-caged",
  33170. image: {
  33171. source: "./media/characters/kairne/dick-caged.svg"
  33172. }
  33173. },
  33174. dick: {
  33175. height: math.unit(0.79, "meters"),
  33176. name: "Dick",
  33177. image: {
  33178. source: "./media/characters/kairne/dick.svg"
  33179. }
  33180. },
  33181. genitals: {
  33182. height: math.unit(1.29, "meters"),
  33183. name: "Genitals",
  33184. image: {
  33185. source: "./media/characters/kairne/genitals.svg"
  33186. }
  33187. },
  33188. maw: {
  33189. height: math.unit(1.73, "meters"),
  33190. name: "Maw",
  33191. image: {
  33192. source: "./media/characters/kairne/maw.svg"
  33193. }
  33194. },
  33195. },
  33196. [
  33197. {
  33198. name: "Normal",
  33199. height: math.unit(15, "feet"),
  33200. default: true
  33201. },
  33202. ]
  33203. ))
  33204. characterMakers.push(() => makeCharacter(
  33205. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33206. {
  33207. front: {
  33208. height: math.unit(5 + 8/12, "feet"),
  33209. weight: math.unit(139, "lb"),
  33210. name: "Front",
  33211. image: {
  33212. source: "./media/characters/biscuit-jackal/front.svg",
  33213. extra: 2106/1961,
  33214. bottom: 58/2164
  33215. }
  33216. },
  33217. back: {
  33218. height: math.unit(5 + 8/12, "feet"),
  33219. weight: math.unit(139, "lb"),
  33220. name: "Back",
  33221. image: {
  33222. source: "./media/characters/biscuit-jackal/back.svg",
  33223. extra: 2132/1976,
  33224. bottom: 57/2189
  33225. }
  33226. },
  33227. werejackal: {
  33228. height: math.unit(6 + 3/12, "feet"),
  33229. weight: math.unit(188, "lb"),
  33230. name: "Werejackal",
  33231. image: {
  33232. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33233. extra: 2373/2178,
  33234. bottom: 53/2426
  33235. }
  33236. },
  33237. },
  33238. [
  33239. {
  33240. name: "Normal",
  33241. height: math.unit(5 + 8/12, "feet"),
  33242. default: true
  33243. },
  33244. ]
  33245. ))
  33246. characterMakers.push(() => makeCharacter(
  33247. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33248. {
  33249. front: {
  33250. height: math.unit(140, "cm"),
  33251. weight: math.unit(45, "kg"),
  33252. name: "Front",
  33253. image: {
  33254. source: "./media/characters/tayra-white/front.svg",
  33255. extra: 2229/2192,
  33256. bottom: 75/2304
  33257. }
  33258. },
  33259. },
  33260. [
  33261. {
  33262. name: "Normal",
  33263. height: math.unit(140, "cm"),
  33264. default: true
  33265. },
  33266. ]
  33267. ))
  33268. characterMakers.push(() => makeCharacter(
  33269. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33270. {
  33271. front: {
  33272. height: math.unit(4 + 5/12, "feet"),
  33273. name: "Front",
  33274. image: {
  33275. source: "./media/characters/scoop/front.svg",
  33276. extra: 1257/1136,
  33277. bottom: 69/1326
  33278. }
  33279. },
  33280. back: {
  33281. height: math.unit(4 + 5/12, "feet"),
  33282. name: "Back",
  33283. image: {
  33284. source: "./media/characters/scoop/back.svg",
  33285. extra: 1321/1152,
  33286. bottom: 32/1353
  33287. }
  33288. },
  33289. maw: {
  33290. height: math.unit(0.68, "feet"),
  33291. name: "Maw",
  33292. image: {
  33293. source: "./media/characters/scoop/maw.svg"
  33294. }
  33295. },
  33296. },
  33297. [
  33298. {
  33299. name: "Really Small",
  33300. height: math.unit(1, "mm")
  33301. },
  33302. {
  33303. name: "Micro",
  33304. height: math.unit(1, "inch")
  33305. },
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(4 + 5/12, "feet"),
  33309. default: true
  33310. },
  33311. {
  33312. name: "Macro",
  33313. height: math.unit(200, "feet")
  33314. },
  33315. {
  33316. name: "Megamacro",
  33317. height: math.unit(3240, "feet")
  33318. },
  33319. {
  33320. name: "Teramacro",
  33321. height: math.unit(2500, "miles")
  33322. },
  33323. ]
  33324. ))
  33325. characterMakers.push(() => makeCharacter(
  33326. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33327. {
  33328. front: {
  33329. height: math.unit(15 + 7/12, "feet"),
  33330. name: "Front",
  33331. image: {
  33332. source: "./media/characters/saphinara/front.svg",
  33333. extra: 604/546,
  33334. bottom: 19/623
  33335. }
  33336. },
  33337. side: {
  33338. height: math.unit(15 + 7/12, "feet"),
  33339. name: "Side",
  33340. image: {
  33341. source: "./media/characters/saphinara/side.svg",
  33342. extra: 605/547,
  33343. bottom: 6/611
  33344. }
  33345. },
  33346. back: {
  33347. height: math.unit(15 + 7/12, "feet"),
  33348. name: "Back",
  33349. image: {
  33350. source: "./media/characters/saphinara/back.svg",
  33351. extra: 591/531,
  33352. bottom: 13/604
  33353. }
  33354. },
  33355. frontTail: {
  33356. height: math.unit(15 + 7/12, "feet"),
  33357. name: "Front (Full Tail)",
  33358. image: {
  33359. source: "./media/characters/saphinara/front-tail.svg",
  33360. extra: 748/547,
  33361. bottom: 66/814
  33362. }
  33363. },
  33364. },
  33365. [
  33366. {
  33367. name: "Normal",
  33368. height: math.unit(15 + 7/12, "feet"),
  33369. default: true
  33370. },
  33371. {
  33372. name: "Angry",
  33373. height: math.unit(30 + 6/12, "feet")
  33374. },
  33375. {
  33376. name: "Enraged",
  33377. height: math.unit(102 + 1/12, "feet")
  33378. },
  33379. ]
  33380. ))
  33381. characterMakers.push(() => makeCharacter(
  33382. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33383. {
  33384. front: {
  33385. height: math.unit(6 + 8/12, "feet"),
  33386. weight: math.unit(300, "lb"),
  33387. name: "Front",
  33388. image: {
  33389. source: "./media/characters/jrain/front.svg",
  33390. extra: 3039/2865,
  33391. bottom: 399/3438
  33392. }
  33393. },
  33394. back: {
  33395. height: math.unit(6 + 8/12, "feet"),
  33396. weight: math.unit(300, "lb"),
  33397. name: "Back",
  33398. image: {
  33399. source: "./media/characters/jrain/back.svg",
  33400. extra: 3089/2938,
  33401. bottom: 172/3261
  33402. }
  33403. },
  33404. head: {
  33405. height: math.unit(2.14, "feet"),
  33406. name: "Head",
  33407. image: {
  33408. source: "./media/characters/jrain/head.svg"
  33409. }
  33410. },
  33411. maw: {
  33412. height: math.unit(1.77, "feet"),
  33413. name: "Maw",
  33414. image: {
  33415. source: "./media/characters/jrain/maw.svg"
  33416. }
  33417. },
  33418. leftHand: {
  33419. height: math.unit(1.1, "feet"),
  33420. name: "Left Hand",
  33421. image: {
  33422. source: "./media/characters/jrain/left-hand.svg"
  33423. }
  33424. },
  33425. rightHand: {
  33426. height: math.unit(1.1, "feet"),
  33427. name: "Right Hand",
  33428. image: {
  33429. source: "./media/characters/jrain/right-hand.svg"
  33430. }
  33431. },
  33432. eye: {
  33433. height: math.unit(0.35, "feet"),
  33434. name: "Eye",
  33435. image: {
  33436. source: "./media/characters/jrain/eye.svg"
  33437. }
  33438. },
  33439. },
  33440. [
  33441. {
  33442. name: "Normal",
  33443. height: math.unit(6 + 8/12, "feet"),
  33444. default: true
  33445. },
  33446. {
  33447. name: "Casually Large",
  33448. height: math.unit(25, "feet")
  33449. },
  33450. {
  33451. name: "Giant",
  33452. height: math.unit(100, "feet")
  33453. },
  33454. {
  33455. name: "Kaiju",
  33456. height: math.unit(300, "feet")
  33457. },
  33458. ]
  33459. ))
  33460. characterMakers.push(() => makeCharacter(
  33461. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33462. {
  33463. dragon: {
  33464. height: math.unit(5, "meters"),
  33465. name: "Dragon",
  33466. image: {
  33467. source: "./media/characters/sabrina/dragon.svg",
  33468. extra: 3670 / 2365,
  33469. bottom: 333 / 4003
  33470. }
  33471. },
  33472. gryphon: {
  33473. height: math.unit(3, "meters"),
  33474. name: "Gryphon",
  33475. image: {
  33476. source: "./media/characters/sabrina/gryphon.svg",
  33477. extra: 1576 / 945,
  33478. bottom: 71 / 1647
  33479. }
  33480. },
  33481. snake: {
  33482. height: math.unit(12, "meters"),
  33483. name: "Snake",
  33484. image: {
  33485. source: "./media/characters/sabrina/snake.svg",
  33486. extra: 1758 / 1320,
  33487. bottom: 186 / 1944
  33488. }
  33489. },
  33490. collar: {
  33491. height: math.unit(1.86, "meters"),
  33492. name: "Collar",
  33493. image: {
  33494. source: "./media/characters/sabrina/collar.svg"
  33495. }
  33496. },
  33497. eye: {
  33498. height: math.unit(0.53, "meters"),
  33499. name: "Eye",
  33500. image: {
  33501. source: "./media/characters/sabrina/eye.svg"
  33502. }
  33503. },
  33504. foot: {
  33505. height: math.unit(1.86, "meters"),
  33506. name: "Foot",
  33507. image: {
  33508. source: "./media/characters/sabrina/foot.svg"
  33509. }
  33510. },
  33511. hand: {
  33512. height: math.unit(1.32, "meters"),
  33513. name: "Hand",
  33514. image: {
  33515. source: "./media/characters/sabrina/hand.svg"
  33516. }
  33517. },
  33518. head: {
  33519. height: math.unit(2.44, "meters"),
  33520. name: "Head",
  33521. image: {
  33522. source: "./media/characters/sabrina/head.svg"
  33523. }
  33524. },
  33525. headAngry: {
  33526. height: math.unit(2.44, "meters"),
  33527. name: "Head (Angry))",
  33528. image: {
  33529. source: "./media/characters/sabrina/head-angry.svg"
  33530. }
  33531. },
  33532. maw: {
  33533. height: math.unit(1.65, "meters"),
  33534. name: "Maw",
  33535. image: {
  33536. source: "./media/characters/sabrina/maw.svg"
  33537. }
  33538. },
  33539. spikes: {
  33540. height: math.unit(1.69, "meters"),
  33541. name: "Spikes",
  33542. image: {
  33543. source: "./media/characters/sabrina/spikes.svg"
  33544. }
  33545. },
  33546. stomach: {
  33547. height: math.unit(1.15, "meters"),
  33548. name: "Stomach",
  33549. image: {
  33550. source: "./media/characters/sabrina/stomach.svg"
  33551. }
  33552. },
  33553. tongue: {
  33554. height: math.unit(1.27, "meters"),
  33555. name: "Tongue",
  33556. image: {
  33557. source: "./media/characters/sabrina/tongue.svg"
  33558. }
  33559. },
  33560. wingDorsal: {
  33561. height: math.unit(4.85, "meters"),
  33562. name: "Wing (Dorsal)",
  33563. image: {
  33564. source: "./media/characters/sabrina/wing-dorsal.svg"
  33565. }
  33566. },
  33567. wingVentral: {
  33568. height: math.unit(4.85, "meters"),
  33569. name: "Wing (Ventral)",
  33570. image: {
  33571. source: "./media/characters/sabrina/wing-ventral.svg"
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(5, "meters"),
  33579. default: true
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33585. {
  33586. frontMaid: {
  33587. height: math.unit(5 + 5/12, "feet"),
  33588. weight: math.unit(130, "lb"),
  33589. name: "Front (Maid)",
  33590. image: {
  33591. source: "./media/characters/midnight-tales/front-maid.svg",
  33592. extra: 489/454,
  33593. bottom: 61/550
  33594. }
  33595. },
  33596. frontFormal: {
  33597. height: math.unit(5 + 5/12, "feet"),
  33598. weight: math.unit(130, "lb"),
  33599. name: "Front (Formal)",
  33600. image: {
  33601. source: "./media/characters/midnight-tales/front-formal.svg",
  33602. extra: 489/454,
  33603. bottom: 61/550
  33604. }
  33605. },
  33606. back: {
  33607. height: math.unit(5 + 5/12, "feet"),
  33608. weight: math.unit(130, "lb"),
  33609. name: "Back",
  33610. image: {
  33611. source: "./media/characters/midnight-tales/back.svg",
  33612. extra: 498/456,
  33613. bottom: 33/531
  33614. }
  33615. },
  33616. frontBeast: {
  33617. height: math.unit(40, "feet"),
  33618. weight: math.unit(64000, "lb"),
  33619. name: "Front (Beast)",
  33620. image: {
  33621. source: "./media/characters/midnight-tales/front-beast.svg",
  33622. extra: 927/860,
  33623. bottom: 53/980
  33624. }
  33625. },
  33626. backBeast: {
  33627. height: math.unit(40, "feet"),
  33628. weight: math.unit(64000, "lb"),
  33629. name: "Back (Beast)",
  33630. image: {
  33631. source: "./media/characters/midnight-tales/back-beast.svg",
  33632. extra: 929/855,
  33633. bottom: 16/945
  33634. }
  33635. },
  33636. footBeast: {
  33637. height: math.unit(6.7, "feet"),
  33638. name: "Foot (Beast)",
  33639. image: {
  33640. source: "./media/characters/midnight-tales/foot-beast.svg"
  33641. }
  33642. },
  33643. headBeast: {
  33644. height: math.unit(8, "feet"),
  33645. name: "Head (Beast)",
  33646. image: {
  33647. source: "./media/characters/midnight-tales/head-beast.svg"
  33648. }
  33649. },
  33650. },
  33651. [
  33652. {
  33653. name: "Normal",
  33654. height: math.unit(5 + 5 / 12, "feet"),
  33655. default: true
  33656. },
  33657. {
  33658. name: "Macro",
  33659. height: math.unit(25, "feet")
  33660. },
  33661. ]
  33662. ))
  33663. characterMakers.push(() => makeCharacter(
  33664. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33665. {
  33666. front: {
  33667. height: math.unit(5 + 10/12, "feet"),
  33668. name: "Front",
  33669. image: {
  33670. source: "./media/characters/argon/front.svg",
  33671. extra: 2009/1935,
  33672. bottom: 118/2127
  33673. }
  33674. },
  33675. back: {
  33676. height: math.unit(5 + 10/12, "feet"),
  33677. name: "Back",
  33678. image: {
  33679. source: "./media/characters/argon/back.svg",
  33680. extra: 2047/1992,
  33681. bottom: 20/2067
  33682. }
  33683. },
  33684. frontDressed: {
  33685. height: math.unit(5 + 10/12, "feet"),
  33686. name: "Front (Dressed)",
  33687. image: {
  33688. source: "./media/characters/argon/front-dressed.svg",
  33689. extra: 2009/1935,
  33690. bottom: 118/2127
  33691. }
  33692. },
  33693. },
  33694. [
  33695. {
  33696. name: "Normal",
  33697. height: math.unit(5 + 10/12, "feet"),
  33698. default: true
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33704. {
  33705. front: {
  33706. height: math.unit(8 + 6/12, "feet"),
  33707. weight: math.unit(1150, "lb"),
  33708. name: "Front",
  33709. image: {
  33710. source: "./media/characters/kichi/front.svg",
  33711. extra: 1267/1164,
  33712. bottom: 61/1328
  33713. }
  33714. },
  33715. back: {
  33716. height: math.unit(8 + 6/12, "feet"),
  33717. weight: math.unit(1150, "lb"),
  33718. name: "Back",
  33719. image: {
  33720. source: "./media/characters/kichi/back.svg",
  33721. extra: 1273/1166,
  33722. bottom: 33/1306
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(8 + 6/12, "feet"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(6, "feet"),
  33739. weight: math.unit(210, "lb"),
  33740. name: "Front",
  33741. image: {
  33742. source: "./media/characters/manetel-greyscale/front.svg",
  33743. extra: 350/312,
  33744. bottom: 8/358
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Micro",
  33751. height: math.unit(2, "inches")
  33752. },
  33753. {
  33754. name: "Normal",
  33755. height: math.unit(6, "feet"),
  33756. default: true
  33757. },
  33758. {
  33759. name: "Minimacro",
  33760. height: math.unit(17, "feet")
  33761. },
  33762. {
  33763. name: "Macro",
  33764. height: math.unit(117, "feet")
  33765. },
  33766. ]
  33767. ))
  33768. characterMakers.push(() => makeCharacter(
  33769. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33770. {
  33771. side: {
  33772. height: math.unit(5 + 1/12, "feet"),
  33773. weight: math.unit(418, "lb"),
  33774. name: "Side",
  33775. image: {
  33776. source: "./media/characters/softpurr/side.svg",
  33777. extra: 1993/1945,
  33778. bottom: 134/2127
  33779. }
  33780. },
  33781. front: {
  33782. height: math.unit(5 + 1/12, "feet"),
  33783. weight: math.unit(418, "lb"),
  33784. name: "Front",
  33785. image: {
  33786. source: "./media/characters/softpurr/front.svg",
  33787. extra: 1950/1856,
  33788. bottom: 174/2124
  33789. }
  33790. },
  33791. paw: {
  33792. height: math.unit(1, "feet"),
  33793. name: "Paw",
  33794. image: {
  33795. source: "./media/characters/softpurr/paw.svg"
  33796. }
  33797. },
  33798. },
  33799. [
  33800. {
  33801. name: "Normal",
  33802. height: math.unit(5 + 1/12, "feet"),
  33803. default: true
  33804. },
  33805. ]
  33806. ))
  33807. characterMakers.push(() => makeCharacter(
  33808. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33809. {
  33810. front: {
  33811. height: math.unit(260, "meters"),
  33812. name: "Front",
  33813. image: {
  33814. source: "./media/characters/anahita/front.svg",
  33815. extra: 665/635,
  33816. bottom: 89/754
  33817. }
  33818. },
  33819. },
  33820. [
  33821. {
  33822. name: "Macro",
  33823. height: math.unit(260, "meters"),
  33824. default: true
  33825. },
  33826. ]
  33827. ))
  33828. characterMakers.push(() => makeCharacter(
  33829. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33830. {
  33831. front: {
  33832. height: math.unit(4 + 10/12, "feet"),
  33833. weight: math.unit(160, "lb"),
  33834. name: "Front",
  33835. image: {
  33836. source: "./media/characters/chip-mouse/front.svg",
  33837. extra: 3528/3408,
  33838. bottom: 0/3528
  33839. }
  33840. },
  33841. frontNsfw: {
  33842. height: math.unit(4 + 10/12, "feet"),
  33843. weight: math.unit(160, "lb"),
  33844. name: "Front (NSFW)",
  33845. image: {
  33846. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33847. extra: 3528/3408,
  33848. bottom: 0/3528
  33849. }
  33850. },
  33851. },
  33852. [
  33853. {
  33854. name: "Normal",
  33855. height: math.unit(4 + 10/12, "feet"),
  33856. default: true
  33857. },
  33858. ]
  33859. ))
  33860. characterMakers.push(() => makeCharacter(
  33861. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33862. {
  33863. side: {
  33864. height: math.unit(10, "feet"),
  33865. weight: math.unit(14000, "lb"),
  33866. name: "Side",
  33867. image: {
  33868. source: "./media/characters/kremm/side.svg",
  33869. extra: 1390/1053,
  33870. bottom: 90/1480
  33871. }
  33872. },
  33873. gut: {
  33874. height: math.unit(5.8, "feet"),
  33875. name: "Gut",
  33876. image: {
  33877. source: "./media/characters/kremm/gut.svg"
  33878. }
  33879. },
  33880. ass: {
  33881. height: math.unit(6.1, "feet"),
  33882. name: "Ass",
  33883. image: {
  33884. source: "./media/characters/kremm/ass.svg"
  33885. }
  33886. },
  33887. jaws: {
  33888. height: math.unit(2.2, "feet"),
  33889. name: "Jaws",
  33890. image: {
  33891. source: "./media/characters/kremm/jaws.svg"
  33892. }
  33893. },
  33894. dick: {
  33895. height: math.unit(4.26, "feet"),
  33896. name: "Dick",
  33897. image: {
  33898. source: "./media/characters/kremm/dick.svg"
  33899. }
  33900. },
  33901. },
  33902. [
  33903. {
  33904. name: "Normal",
  33905. height: math.unit(10, "feet"),
  33906. default: true
  33907. },
  33908. ]
  33909. ))
  33910. characterMakers.push(() => makeCharacter(
  33911. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33912. {
  33913. front: {
  33914. height: math.unit(30, "stories"),
  33915. name: "Front",
  33916. image: {
  33917. source: "./media/characters/kai/front.svg",
  33918. extra: 1892/1718,
  33919. bottom: 162/2054
  33920. }
  33921. },
  33922. },
  33923. [
  33924. {
  33925. name: "Macro",
  33926. height: math.unit(30, "stories"),
  33927. default: true
  33928. },
  33929. ]
  33930. ))
  33931. characterMakers.push(() => makeCharacter(
  33932. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33933. {
  33934. front: {
  33935. height: math.unit(6 + 4/12, "feet"),
  33936. weight: math.unit(145, "lb"),
  33937. name: "Front",
  33938. image: {
  33939. source: "./media/characters/sykes/front.svg",
  33940. extra: 1321 / 1187,
  33941. bottom: 66 / 1387
  33942. }
  33943. },
  33944. back: {
  33945. height: math.unit(6 + 4/12, "feet"),
  33946. weight: math.unit(145, "lb"),
  33947. name: "Back",
  33948. image: {
  33949. source: "./media/characters/sykes/back.svg",
  33950. extra: 1326/1181,
  33951. bottom: 31/1357
  33952. }
  33953. },
  33954. handBack: {
  33955. height: math.unit(0.9, "feet"),
  33956. name: "Hand (Back)",
  33957. image: {
  33958. source: "./media/characters/sykes/hand-back.svg"
  33959. }
  33960. },
  33961. handFront: {
  33962. height: math.unit(0.839, "feet"),
  33963. name: "Hand (Front)",
  33964. image: {
  33965. source: "./media/characters/sykes/hand-front.svg"
  33966. }
  33967. },
  33968. leftFoot: {
  33969. height: math.unit(1.2, "feet"),
  33970. name: "Foot (Left)",
  33971. image: {
  33972. source: "./media/characters/sykes/foot-left.svg"
  33973. }
  33974. },
  33975. rightFoot: {
  33976. height: math.unit(1.2, "feet"),
  33977. name: "Foot (Right)",
  33978. image: {
  33979. source: "./media/characters/sykes/foot-right.svg"
  33980. }
  33981. },
  33982. maw: {
  33983. height: math.unit(1.93, "feet"),
  33984. name: "Maw",
  33985. image: {
  33986. source: "./media/characters/sykes/maw.svg"
  33987. }
  33988. },
  33989. teeth: {
  33990. height: math.unit(0.51, "feet"),
  33991. name: "Teeth",
  33992. image: {
  33993. source: "./media/characters/sykes/teeth.svg"
  33994. }
  33995. },
  33996. tongue: {
  33997. height: math.unit(2.13, "feet"),
  33998. name: "Tongue",
  33999. image: {
  34000. source: "./media/characters/sykes/tongue.svg"
  34001. }
  34002. },
  34003. uvula: {
  34004. height: math.unit(0.16, "feet"),
  34005. name: "Uvula",
  34006. image: {
  34007. source: "./media/characters/sykes/uvula.svg"
  34008. }
  34009. },
  34010. collar: {
  34011. height: math.unit(0.287, "feet"),
  34012. name: "Collar",
  34013. image: {
  34014. source: "./media/characters/sykes/collar.svg"
  34015. }
  34016. },
  34017. },
  34018. [
  34019. {
  34020. name: "Shrunken",
  34021. height: math.unit(5, "inches")
  34022. },
  34023. {
  34024. name: "Normal",
  34025. height: math.unit(6 + 4 / 12, "feet"),
  34026. default: true
  34027. },
  34028. {
  34029. name: "Big",
  34030. height: math.unit(15, "feet")
  34031. },
  34032. ]
  34033. ))
  34034. characterMakers.push(() => makeCharacter(
  34035. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34036. {
  34037. front: {
  34038. height: math.unit(5 + 8/12, "feet"),
  34039. weight: math.unit(190, "lb"),
  34040. name: "Front",
  34041. image: {
  34042. source: "./media/characters/oven-otter/front.svg",
  34043. extra: 1809/1740,
  34044. bottom: 181/1990
  34045. }
  34046. },
  34047. back: {
  34048. height: math.unit(5 + 8/12, "feet"),
  34049. weight: math.unit(190, "lb"),
  34050. name: "Back",
  34051. image: {
  34052. source: "./media/characters/oven-otter/back.svg",
  34053. extra: 1709/1635,
  34054. bottom: 118/1827
  34055. }
  34056. },
  34057. hand: {
  34058. height: math.unit(1.07, "feet"),
  34059. name: "Hand",
  34060. image: {
  34061. source: "./media/characters/oven-otter/hand.svg"
  34062. }
  34063. },
  34064. beans: {
  34065. height: math.unit(1.74, "feet"),
  34066. name: "Beans",
  34067. image: {
  34068. source: "./media/characters/oven-otter/beans.svg"
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Micro",
  34075. height: math.unit(0.5, "inches")
  34076. },
  34077. {
  34078. name: "Normal",
  34079. height: math.unit(5 + 8/12, "feet"),
  34080. default: true
  34081. },
  34082. {
  34083. name: "Macro",
  34084. height: math.unit(250, "feet")
  34085. },
  34086. {
  34087. name: "Really High",
  34088. height: math.unit(420, "feet")
  34089. },
  34090. ]
  34091. ))
  34092. characterMakers.push(() => makeCharacter(
  34093. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34094. {
  34095. front: {
  34096. height: math.unit(5, "meters"),
  34097. weight: math.unit(292000000000000, "kg"),
  34098. name: "Front",
  34099. image: {
  34100. source: "./media/characters/devourer/front.svg",
  34101. extra: 1800/1733,
  34102. bottom: 211/2011
  34103. }
  34104. },
  34105. maw: {
  34106. height: math.unit(1.1, "meter"),
  34107. name: "Maw",
  34108. image: {
  34109. source: "./media/characters/devourer/maw.svg"
  34110. }
  34111. },
  34112. },
  34113. [
  34114. {
  34115. name: "Small",
  34116. height: math.unit(3, "meters")
  34117. },
  34118. {
  34119. name: "Large",
  34120. height: math.unit(5, "meters"),
  34121. default: true
  34122. },
  34123. ]
  34124. ))
  34125. characterMakers.push(() => makeCharacter(
  34126. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34127. {
  34128. front: {
  34129. height: math.unit(6, "feet"),
  34130. weight: math.unit(400, "lb"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/ellarby/front.svg",
  34134. extra: 1909/1763,
  34135. bottom: 80/1989
  34136. }
  34137. },
  34138. back: {
  34139. height: math.unit(6, "feet"),
  34140. weight: math.unit(400, "lb"),
  34141. name: "Back",
  34142. image: {
  34143. source: "./media/characters/ellarby/back.svg",
  34144. extra: 1914/1784,
  34145. bottom: 172/2086
  34146. }
  34147. },
  34148. },
  34149. [
  34150. {
  34151. name: "Mischief",
  34152. height: math.unit(18, "inches")
  34153. },
  34154. {
  34155. name: "Trouble",
  34156. height: math.unit(12, "feet")
  34157. },
  34158. {
  34159. name: "Havoc",
  34160. height: math.unit(200, "feet"),
  34161. default: true
  34162. },
  34163. {
  34164. name: "Pandemonium",
  34165. height: math.unit(1, "mile")
  34166. },
  34167. {
  34168. name: "Catastrophe",
  34169. height: math.unit(100, "miles")
  34170. },
  34171. ]
  34172. ))
  34173. characterMakers.push(() => makeCharacter(
  34174. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34175. {
  34176. front: {
  34177. height: math.unit(4.7, "meters"),
  34178. weight: math.unit(6500, "kg"),
  34179. name: "Front",
  34180. image: {
  34181. source: "./media/characters/vex/front.svg",
  34182. extra: 1288/1140,
  34183. bottom: 100/1388
  34184. }
  34185. },
  34186. },
  34187. [
  34188. {
  34189. name: "Normal",
  34190. height: math.unit(4.7, "meters"),
  34191. default: true
  34192. },
  34193. ]
  34194. ))
  34195. characterMakers.push(() => makeCharacter(
  34196. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34197. {
  34198. normal: {
  34199. height: math.unit(6, "feet"),
  34200. weight: math.unit(350, "lb"),
  34201. name: "Normal",
  34202. image: {
  34203. source: "./media/characters/teshy/normal.svg",
  34204. extra: 1795/1735,
  34205. bottom: 16/1811
  34206. }
  34207. },
  34208. monsterFront: {
  34209. height: math.unit(12, "feet"),
  34210. weight: math.unit(4700, "lb"),
  34211. name: "Monster (Front)",
  34212. image: {
  34213. source: "./media/characters/teshy/monster-front.svg",
  34214. extra: 2042/2034,
  34215. bottom: 128/2170
  34216. }
  34217. },
  34218. monsterSide: {
  34219. height: math.unit(12, "feet"),
  34220. weight: math.unit(4700, "lb"),
  34221. name: "Monster (Side)",
  34222. image: {
  34223. source: "./media/characters/teshy/monster-side.svg",
  34224. extra: 2067/2056,
  34225. bottom: 70/2137
  34226. }
  34227. },
  34228. monsterBack: {
  34229. height: math.unit(12, "feet"),
  34230. weight: math.unit(4700, "lb"),
  34231. name: "Monster (Back)",
  34232. image: {
  34233. source: "./media/characters/teshy/monster-back.svg",
  34234. extra: 1921/1914,
  34235. bottom: 171/2092
  34236. }
  34237. },
  34238. },
  34239. [
  34240. {
  34241. name: "Normal",
  34242. height: math.unit(6, "feet"),
  34243. default: true
  34244. },
  34245. ]
  34246. ))
  34247. characterMakers.push(() => makeCharacter(
  34248. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34249. {
  34250. front: {
  34251. height: math.unit(6, "feet"),
  34252. name: "Front",
  34253. image: {
  34254. source: "./media/characters/ramey/front.svg",
  34255. extra: 790/787,
  34256. bottom: 27/817
  34257. }
  34258. },
  34259. },
  34260. [
  34261. {
  34262. name: "Normal",
  34263. height: math.unit(6, "feet"),
  34264. default: true
  34265. },
  34266. ]
  34267. ))
  34268. characterMakers.push(() => makeCharacter(
  34269. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34270. {
  34271. front: {
  34272. height: math.unit(5 + 5/12, "feet"),
  34273. weight: math.unit(120, "lb"),
  34274. name: "Front",
  34275. image: {
  34276. source: "./media/characters/phirae/front.svg",
  34277. extra: 2491/2436,
  34278. bottom: 38/2529
  34279. }
  34280. },
  34281. },
  34282. [
  34283. {
  34284. name: "Normal",
  34285. height: math.unit(5 + 5/12, "feet"),
  34286. default: true
  34287. },
  34288. ]
  34289. ))
  34290. characterMakers.push(() => makeCharacter(
  34291. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34292. {
  34293. front: {
  34294. height: math.unit(5 + 3/12, "feet"),
  34295. name: "Front",
  34296. image: {
  34297. source: "./media/characters/stagglas/front.svg",
  34298. extra: 962/882,
  34299. bottom: 53/1015
  34300. }
  34301. },
  34302. feral: {
  34303. height: math.unit(335, "cm"),
  34304. name: "Feral",
  34305. image: {
  34306. source: "./media/characters/stagglas/feral.svg",
  34307. extra: 1732/1090,
  34308. bottom: 48/1780
  34309. }
  34310. },
  34311. },
  34312. [
  34313. {
  34314. name: "Normal",
  34315. height: math.unit(5 + 3/12, "feet"),
  34316. default: true
  34317. },
  34318. ]
  34319. ))
  34320. characterMakers.push(() => makeCharacter(
  34321. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34322. {
  34323. front: {
  34324. height: math.unit(5 + 4/12, "feet"),
  34325. weight: math.unit(145, "lb"),
  34326. name: "Front",
  34327. image: {
  34328. source: "./media/characters/starra/front.svg",
  34329. extra: 1790/1691,
  34330. bottom: 91/1881
  34331. }
  34332. },
  34333. },
  34334. [
  34335. {
  34336. name: "Normal",
  34337. height: math.unit(5 + 4/12, "feet"),
  34338. default: true
  34339. },
  34340. ]
  34341. ))
  34342. characterMakers.push(() => makeCharacter(
  34343. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34344. {
  34345. front: {
  34346. height: math.unit(2.2, "meters"),
  34347. name: "Front",
  34348. image: {
  34349. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34350. extra: 1194/1005,
  34351. bottom: 25/1219
  34352. }
  34353. },
  34354. },
  34355. [
  34356. {
  34357. name: "Normal",
  34358. height: math.unit(2.2, "meters"),
  34359. default: true
  34360. },
  34361. ]
  34362. ))
  34363. characterMakers.push(() => makeCharacter(
  34364. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34365. {
  34366. side: {
  34367. height: math.unit(8 + 2/12, "feet"),
  34368. weight: math.unit(1240, "lb"),
  34369. name: "Side",
  34370. image: {
  34371. source: "./media/characters/mika-valentine/side.svg",
  34372. extra: 2670/2501,
  34373. bottom: 250/2920
  34374. }
  34375. },
  34376. },
  34377. [
  34378. {
  34379. name: "Normal",
  34380. height: math.unit(8 + 2/12, "feet"),
  34381. default: true
  34382. },
  34383. ]
  34384. ))
  34385. characterMakers.push(() => makeCharacter(
  34386. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34387. {
  34388. front: {
  34389. height: math.unit(7 + 2/12, "feet"),
  34390. name: "Front",
  34391. image: {
  34392. source: "./media/characters/xoltol/front.svg",
  34393. extra: 2212/2124,
  34394. bottom: 84/2296
  34395. }
  34396. },
  34397. side: {
  34398. height: math.unit(7 + 2/12, "feet"),
  34399. name: "Side",
  34400. image: {
  34401. source: "./media/characters/xoltol/side.svg",
  34402. extra: 2273/2197,
  34403. bottom: 26/2299
  34404. }
  34405. },
  34406. hand: {
  34407. height: math.unit(2.5, "feet"),
  34408. name: "Hand",
  34409. image: {
  34410. source: "./media/characters/xoltol/hand.svg"
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Small-ish",
  34417. height: math.unit(5 + 11/12, "feet")
  34418. },
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(7 + 2/12, "feet")
  34422. },
  34423. {
  34424. name: "\"Macro\"",
  34425. height: math.unit(14 + 9/12, "feet"),
  34426. default: true
  34427. },
  34428. {
  34429. name: "Alternate Height",
  34430. height: math.unit(20, "feet")
  34431. },
  34432. {
  34433. name: "Actually Macro",
  34434. height: math.unit(100, "feet")
  34435. },
  34436. ]
  34437. ))
  34438. characterMakers.push(() => makeCharacter(
  34439. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34440. {
  34441. front: {
  34442. height: math.unit(5 + 2/12, "feet"),
  34443. name: "Front",
  34444. image: {
  34445. source: "./media/characters/kotetsu-redwood/front.svg",
  34446. extra: 1053/942,
  34447. bottom: 60/1113
  34448. }
  34449. },
  34450. },
  34451. [
  34452. {
  34453. name: "Normal",
  34454. height: math.unit(5 + 2/12, "feet"),
  34455. default: true
  34456. },
  34457. ]
  34458. ))
  34459. characterMakers.push(() => makeCharacter(
  34460. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34461. {
  34462. front: {
  34463. height: math.unit(2.4, "meters"),
  34464. weight: math.unit(125, "kg"),
  34465. name: "Front",
  34466. image: {
  34467. source: "./media/characters/lilith/front.svg",
  34468. extra: 1590/1513,
  34469. bottom: 203/1793
  34470. }
  34471. },
  34472. },
  34473. [
  34474. {
  34475. name: "Humanoid",
  34476. height: math.unit(2.4, "meters")
  34477. },
  34478. {
  34479. name: "Normal",
  34480. height: math.unit(6, "meters"),
  34481. default: true
  34482. },
  34483. {
  34484. name: "Largest",
  34485. height: math.unit(55, "meters")
  34486. },
  34487. ]
  34488. ))
  34489. characterMakers.push(() => makeCharacter(
  34490. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34491. {
  34492. front: {
  34493. height: math.unit(8 + 4/12, "feet"),
  34494. weight: math.unit(535, "lb"),
  34495. name: "Front",
  34496. image: {
  34497. source: "./media/characters/beh'kah-bolger/front.svg",
  34498. extra: 1660/1603,
  34499. bottom: 37/1697
  34500. }
  34501. },
  34502. },
  34503. [
  34504. {
  34505. name: "Normal",
  34506. height: math.unit(8 + 4/12, "feet"),
  34507. default: true
  34508. },
  34509. {
  34510. name: "Kaiju",
  34511. height: math.unit(250, "feet")
  34512. },
  34513. {
  34514. name: "Still Growing",
  34515. height: math.unit(10, "miles")
  34516. },
  34517. {
  34518. name: "Continental",
  34519. height: math.unit(5000, "miles")
  34520. },
  34521. {
  34522. name: "Final Form",
  34523. height: math.unit(2500000, "miles")
  34524. },
  34525. ]
  34526. ))
  34527. characterMakers.push(() => makeCharacter(
  34528. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34529. {
  34530. front: {
  34531. height: math.unit(7 + 2/12, "feet"),
  34532. weight: math.unit(230, "kg"),
  34533. name: "Front",
  34534. image: {
  34535. source: "./media/characters/tatyana-milewska/front.svg",
  34536. extra: 1199/1150,
  34537. bottom: 86/1285
  34538. }
  34539. },
  34540. },
  34541. [
  34542. {
  34543. name: "Normal",
  34544. height: math.unit(7 + 2/12, "feet"),
  34545. default: true
  34546. },
  34547. {
  34548. name: "Big",
  34549. height: math.unit(12, "feet")
  34550. },
  34551. {
  34552. name: "Minimacro",
  34553. height: math.unit(20, "feet")
  34554. },
  34555. {
  34556. name: "Macro",
  34557. height: math.unit(120, "feet")
  34558. },
  34559. ]
  34560. ))
  34561. characterMakers.push(() => makeCharacter(
  34562. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34563. {
  34564. front: {
  34565. height: math.unit(7 + 8/12, "feet"),
  34566. weight: math.unit(152, "kg"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/helen-arri/front.svg",
  34570. extra: 440/423,
  34571. bottom: 14/454
  34572. }
  34573. },
  34574. back: {
  34575. height: math.unit(7 + 8/12, "feet"),
  34576. weight: math.unit(152, "kg"),
  34577. name: "Back",
  34578. image: {
  34579. source: "./media/characters/helen-arri/back.svg",
  34580. extra: 443/426,
  34581. bottom: 8/451
  34582. }
  34583. },
  34584. },
  34585. [
  34586. {
  34587. name: "Normal",
  34588. height: math.unit(7 + 8/12, "feet"),
  34589. default: true
  34590. },
  34591. {
  34592. name: "Big",
  34593. height: math.unit(14, "feet")
  34594. },
  34595. {
  34596. name: "Minimacro",
  34597. height: math.unit(24, "feet")
  34598. },
  34599. {
  34600. name: "Macro",
  34601. height: math.unit(140, "feet")
  34602. },
  34603. ]
  34604. ))
  34605. characterMakers.push(() => makeCharacter(
  34606. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34607. {
  34608. front: {
  34609. height: math.unit(6, "meters"),
  34610. name: "Front",
  34611. image: {
  34612. source: "./media/characters/ehanu-rehu/front.svg",
  34613. extra: 1800/1800,
  34614. bottom: 59/1859
  34615. }
  34616. },
  34617. },
  34618. [
  34619. {
  34620. name: "Normal",
  34621. height: math.unit(6, "meters"),
  34622. default: true
  34623. },
  34624. ]
  34625. ))
  34626. characterMakers.push(() => makeCharacter(
  34627. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34628. {
  34629. front: {
  34630. height: math.unit(7 + 3/12, "feet"),
  34631. name: "Front",
  34632. image: {
  34633. source: "./media/characters/renholder/front.svg",
  34634. extra: 3096/2960,
  34635. bottom: 250/3346
  34636. }
  34637. },
  34638. },
  34639. [
  34640. {
  34641. name: "Normal Bat",
  34642. height: math.unit(7 + 3/12, "feet"),
  34643. default: true
  34644. },
  34645. {
  34646. name: "Slightly Tall Bat",
  34647. height: math.unit(100, "feet")
  34648. },
  34649. {
  34650. name: "Big Bat",
  34651. height: math.unit(1000, "feet")
  34652. },
  34653. {
  34654. name: "City-Sized Bat",
  34655. height: math.unit(200000, "feet")
  34656. },
  34657. {
  34658. name: "Bigger Bat",
  34659. height: math.unit(10000, "miles")
  34660. },
  34661. {
  34662. name: "Solar Sized Bat",
  34663. height: math.unit(100, "AU")
  34664. },
  34665. {
  34666. name: "Galactic Bat",
  34667. height: math.unit(200000, "lightyears")
  34668. },
  34669. {
  34670. name: "Universally Known Bat",
  34671. height: math.unit(1, "universe")
  34672. },
  34673. ]
  34674. ))
  34675. characterMakers.push(() => makeCharacter(
  34676. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34677. {
  34678. front: {
  34679. height: math.unit(6 + 11/12, "feet"),
  34680. weight: math.unit(250, "lb"),
  34681. name: "Front",
  34682. image: {
  34683. source: "./media/characters/cookiecat/front.svg",
  34684. extra: 893/827,
  34685. bottom: 14/907
  34686. }
  34687. },
  34688. },
  34689. [
  34690. {
  34691. name: "Micro",
  34692. height: math.unit(3, "inches")
  34693. },
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(6 + 11/12, "feet"),
  34697. default: true
  34698. },
  34699. {
  34700. name: "Macro",
  34701. height: math.unit(100, "feet")
  34702. },
  34703. {
  34704. name: "Macro+",
  34705. height: math.unit(404, "feet")
  34706. },
  34707. {
  34708. name: "Megamacro",
  34709. height: math.unit(165, "miles")
  34710. },
  34711. {
  34712. name: "Planetary",
  34713. height: math.unit(4600, "miles")
  34714. },
  34715. ]
  34716. ))
  34717. characterMakers.push(() => makeCharacter(
  34718. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34719. {
  34720. front: {
  34721. height: math.unit(10 + 3/12, "feet"),
  34722. weight: math.unit(1500, "lb"),
  34723. name: "Front",
  34724. image: {
  34725. source: "./media/characters/tux-kusanagi/front.svg",
  34726. extra: 944/840,
  34727. bottom: 39/983
  34728. }
  34729. },
  34730. back: {
  34731. height: math.unit(10 + 3/12, "feet"),
  34732. weight: math.unit(1500, "lb"),
  34733. name: "Back",
  34734. image: {
  34735. source: "./media/characters/tux-kusanagi/back.svg",
  34736. extra: 941/842,
  34737. bottom: 28/969
  34738. }
  34739. },
  34740. rump: {
  34741. height: math.unit(5.25, "feet"),
  34742. name: "Rump",
  34743. image: {
  34744. source: "./media/characters/tux-kusanagi/rump.svg"
  34745. }
  34746. },
  34747. beak: {
  34748. height: math.unit(1.54, "feet"),
  34749. name: "Beak",
  34750. image: {
  34751. source: "./media/characters/tux-kusanagi/beak.svg"
  34752. }
  34753. },
  34754. },
  34755. [
  34756. {
  34757. name: "Normal",
  34758. height: math.unit(10 + 3/12, "feet"),
  34759. default: true
  34760. },
  34761. ]
  34762. ))
  34763. characterMakers.push(() => makeCharacter(
  34764. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34765. {
  34766. front: {
  34767. height: math.unit(58, "feet"),
  34768. weight: math.unit(200, "tons"),
  34769. name: "Front",
  34770. image: {
  34771. source: "./media/characters/uzarmazari/front.svg",
  34772. extra: 1575/1455,
  34773. bottom: 152/1727
  34774. }
  34775. },
  34776. back: {
  34777. height: math.unit(58, "feet"),
  34778. weight: math.unit(200, "tons"),
  34779. name: "Back",
  34780. image: {
  34781. source: "./media/characters/uzarmazari/back.svg",
  34782. extra: 1585/1510,
  34783. bottom: 157/1742
  34784. }
  34785. },
  34786. head: {
  34787. height: math.unit(26, "feet"),
  34788. name: "Head",
  34789. image: {
  34790. source: "./media/characters/uzarmazari/head.svg"
  34791. }
  34792. },
  34793. },
  34794. [
  34795. {
  34796. name: "Normal",
  34797. height: math.unit(58, "feet"),
  34798. default: true
  34799. },
  34800. ]
  34801. ))
  34802. characterMakers.push(() => makeCharacter(
  34803. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34804. {
  34805. side: {
  34806. height: math.unit(15, "feet"),
  34807. name: "Side",
  34808. image: {
  34809. source: "./media/characters/akitu/side.svg",
  34810. extra: 1421/1321,
  34811. bottom: 157/1578
  34812. }
  34813. },
  34814. front: {
  34815. height: math.unit(15, "feet"),
  34816. name: "Front",
  34817. image: {
  34818. source: "./media/characters/akitu/front.svg",
  34819. extra: 1435/1326,
  34820. bottom: 232/1667
  34821. }
  34822. },
  34823. },
  34824. [
  34825. {
  34826. name: "Normal",
  34827. height: math.unit(15, "feet"),
  34828. default: true
  34829. },
  34830. ]
  34831. ))
  34832. characterMakers.push(() => makeCharacter(
  34833. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34834. {
  34835. front: {
  34836. height: math.unit(10 + 8/12, "feet"),
  34837. name: "Front",
  34838. image: {
  34839. source: "./media/characters/azalie-croixland/front.svg",
  34840. extra: 1972/1856,
  34841. bottom: 31/2003
  34842. }
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Original Height",
  34848. height: math.unit(5 + 4/12, "feet")
  34849. },
  34850. {
  34851. name: "Normal Height",
  34852. height: math.unit(10 + 8/12, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34859. {
  34860. side: {
  34861. height: math.unit(7 + 1/12, "feet"),
  34862. weight: math.unit(245, "lb"),
  34863. name: "Side",
  34864. image: {
  34865. source: "./media/characters/kavus-kazian/side.svg",
  34866. extra: 349/342,
  34867. bottom: 15/364
  34868. }
  34869. },
  34870. },
  34871. [
  34872. {
  34873. name: "Normal",
  34874. height: math.unit(7 + 1/12, "feet"),
  34875. default: true
  34876. },
  34877. ]
  34878. ))
  34879. characterMakers.push(() => makeCharacter(
  34880. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34881. {
  34882. normal: {
  34883. height: math.unit(5 + 11/12, "feet"),
  34884. name: "Normal",
  34885. image: {
  34886. source: "./media/characters/moonlight-rose/normal.svg",
  34887. extra: 1979/1835,
  34888. bottom: 14/1993
  34889. }
  34890. },
  34891. demon: {
  34892. height: math.unit(5, "km"),
  34893. name: "Demon",
  34894. image: {
  34895. source: "./media/characters/moonlight-rose/demon.svg",
  34896. extra: 986/916,
  34897. bottom: 28/1014
  34898. }
  34899. },
  34900. },
  34901. [
  34902. {
  34903. name: "\"Natural\" height",
  34904. height: math.unit(5 + 11/12, "feet")
  34905. },
  34906. {
  34907. name: "Comfortable Size",
  34908. height: math.unit(40, "meters")
  34909. },
  34910. {
  34911. name: "Common Size",
  34912. height: math.unit(50, "km"),
  34913. default: true
  34914. },
  34915. {
  34916. name: "Demonic",
  34917. height: math.unit(1.24415e+21, "meters")
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(16, "feet"),
  34926. weight: math.unit(610, "kg"),
  34927. name: "Front",
  34928. image: {
  34929. source: "./media/characters/huckle/front.svg",
  34930. extra: 1731/1625,
  34931. bottom: 33/1764
  34932. }
  34933. },
  34934. back: {
  34935. height: math.unit(16, "feet"),
  34936. weight: math.unit(610, "kg"),
  34937. name: "Back",
  34938. image: {
  34939. source: "./media/characters/huckle/back.svg",
  34940. extra: 1738/1651,
  34941. bottom: 37/1775
  34942. }
  34943. },
  34944. laughing: {
  34945. height: math.unit(3.75, "feet"),
  34946. name: "Laughing",
  34947. image: {
  34948. source: "./media/characters/huckle/laughing.svg"
  34949. }
  34950. },
  34951. angry: {
  34952. height: math.unit(4.15, "feet"),
  34953. name: "Angry",
  34954. image: {
  34955. source: "./media/characters/huckle/angry.svg"
  34956. }
  34957. },
  34958. },
  34959. [
  34960. {
  34961. name: "Normal",
  34962. height: math.unit(16, "feet"),
  34963. default: true
  34964. },
  34965. {
  34966. name: "Mini Macro",
  34967. height: math.unit(463, "feet")
  34968. },
  34969. {
  34970. name: "Macro",
  34971. height: math.unit(1680, "meters")
  34972. },
  34973. {
  34974. name: "Mega Macro",
  34975. height: math.unit(175, "km")
  34976. },
  34977. {
  34978. name: "Terra Macro",
  34979. height: math.unit(32, "gigameters")
  34980. },
  34981. {
  34982. name: "Multiverse+",
  34983. height: math.unit(2.56e23, "yottameters")
  34984. },
  34985. ]
  34986. ))
  34987. characterMakers.push(() => makeCharacter(
  34988. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34989. {
  34990. front: {
  34991. height: math.unit(6 + 9/12, "feet"),
  34992. weight: math.unit(280, "lb"),
  34993. name: "Front",
  34994. image: {
  34995. source: "./media/characters/candy/front.svg",
  34996. extra: 234/217,
  34997. bottom: 11/245
  34998. }
  34999. },
  35000. },
  35001. [
  35002. {
  35003. name: "Really Small",
  35004. height: math.unit(0.1, "nm")
  35005. },
  35006. {
  35007. name: "Micro",
  35008. height: math.unit(2, "inches")
  35009. },
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(6 + 9/12, "feet"),
  35013. default: true
  35014. },
  35015. {
  35016. name: "Small Macro",
  35017. height: math.unit(69, "feet")
  35018. },
  35019. {
  35020. name: "Macro",
  35021. height: math.unit(160, "feet")
  35022. },
  35023. {
  35024. name: "Megamacro",
  35025. height: math.unit(22000, "miles")
  35026. },
  35027. {
  35028. name: "Gigamacro",
  35029. height: math.unit(50000, "miles")
  35030. },
  35031. ]
  35032. ))
  35033. characterMakers.push(() => makeCharacter(
  35034. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35035. {
  35036. front: {
  35037. height: math.unit(4, "feet"),
  35038. weight: math.unit(90, "lb"),
  35039. name: "Front",
  35040. image: {
  35041. source: "./media/characters/joey-mcdonald/front.svg",
  35042. extra: 1059/852,
  35043. bottom: 33/1092
  35044. }
  35045. },
  35046. back: {
  35047. height: math.unit(4, "feet"),
  35048. weight: math.unit(90, "lb"),
  35049. name: "Back",
  35050. image: {
  35051. source: "./media/characters/joey-mcdonald/back.svg",
  35052. extra: 1077/879,
  35053. bottom: 5/1082
  35054. }
  35055. },
  35056. frontKobold: {
  35057. height: math.unit(4, "feet"),
  35058. weight: math.unit(100, "lb"),
  35059. name: "Front-kobold",
  35060. image: {
  35061. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35062. extra: 1480/1367,
  35063. bottom: 0/1480
  35064. }
  35065. },
  35066. backKobold: {
  35067. height: math.unit(4, "feet"),
  35068. weight: math.unit(100, "lb"),
  35069. name: "Back-kobold",
  35070. image: {
  35071. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35072. extra: 1449/1361,
  35073. bottom: 0/1449
  35074. }
  35075. },
  35076. },
  35077. [
  35078. {
  35079. name: "Normal",
  35080. height: math.unit(4, "feet"),
  35081. default: true
  35082. },
  35083. ]
  35084. ))
  35085. characterMakers.push(() => makeCharacter(
  35086. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35087. {
  35088. front: {
  35089. height: math.unit(12 + 6/12, "feet"),
  35090. name: "Front",
  35091. image: {
  35092. source: "./media/characters/kass-lockheed/front.svg",
  35093. extra: 354/343,
  35094. bottom: 9/363
  35095. }
  35096. },
  35097. back: {
  35098. height: math.unit(12 + 6/12, "feet"),
  35099. name: "Back",
  35100. image: {
  35101. source: "./media/characters/kass-lockheed/back.svg",
  35102. extra: 364/352,
  35103. bottom: 3/367
  35104. }
  35105. },
  35106. dick: {
  35107. height: math.unit(3.12, "feet"),
  35108. name: "Dick",
  35109. image: {
  35110. source: "./media/characters/kass-lockheed/dick.svg"
  35111. }
  35112. },
  35113. head: {
  35114. height: math.unit(2.6, "feet"),
  35115. name: "Head",
  35116. image: {
  35117. source: "./media/characters/kass-lockheed/head.svg"
  35118. }
  35119. },
  35120. bleh: {
  35121. height: math.unit(2.85, "feet"),
  35122. name: "Bleh",
  35123. image: {
  35124. source: "./media/characters/kass-lockheed/bleh.svg"
  35125. }
  35126. },
  35127. smug: {
  35128. height: math.unit(2.85, "feet"),
  35129. name: "Smug",
  35130. image: {
  35131. source: "./media/characters/kass-lockheed/smug.svg"
  35132. }
  35133. },
  35134. },
  35135. [
  35136. {
  35137. name: "Normal",
  35138. height: math.unit(12 + 6/12, "feet"),
  35139. default: true
  35140. },
  35141. ]
  35142. ))
  35143. characterMakers.push(() => makeCharacter(
  35144. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35145. {
  35146. front: {
  35147. height: math.unit(6 + 2/12, "feet"),
  35148. name: "Front",
  35149. image: {
  35150. source: "./media/characters/taylor/front.svg",
  35151. extra: 639/495,
  35152. bottom: 12/651
  35153. }
  35154. },
  35155. },
  35156. [
  35157. {
  35158. name: "Normal",
  35159. height: math.unit(6 + 2/12, "feet"),
  35160. default: true
  35161. },
  35162. {
  35163. name: "Big",
  35164. height: math.unit(15, "feet")
  35165. },
  35166. {
  35167. name: "Lorg",
  35168. height: math.unit(80, "feet")
  35169. },
  35170. {
  35171. name: "Too Lorg",
  35172. height: math.unit(120, "feet")
  35173. },
  35174. ]
  35175. ))
  35176. characterMakers.push(() => makeCharacter(
  35177. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35178. {
  35179. front: {
  35180. height: math.unit(15, "feet"),
  35181. name: "Front",
  35182. image: {
  35183. source: "./media/characters/kaizer/front.svg",
  35184. extra: 1612/1436,
  35185. bottom: 43/1655
  35186. }
  35187. },
  35188. },
  35189. [
  35190. {
  35191. name: "Normal",
  35192. height: math.unit(15, "feet"),
  35193. default: true
  35194. },
  35195. ]
  35196. ))
  35197. characterMakers.push(() => makeCharacter(
  35198. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35199. {
  35200. front: {
  35201. height: math.unit(2, "feet"),
  35202. weight: math.unit(30, "lb"),
  35203. name: "Front",
  35204. image: {
  35205. source: "./media/characters/sandy/front.svg",
  35206. extra: 1439/1307,
  35207. bottom: 194/1633
  35208. }
  35209. },
  35210. },
  35211. [
  35212. {
  35213. name: "Normal",
  35214. height: math.unit(2, "feet"),
  35215. default: true
  35216. },
  35217. ]
  35218. ))
  35219. characterMakers.push(() => makeCharacter(
  35220. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35221. {
  35222. front: {
  35223. height: math.unit(3, "feet"),
  35224. name: "Front",
  35225. image: {
  35226. source: "./media/characters/mellvi/front.svg",
  35227. extra: 1831/1630,
  35228. bottom: 58/1889
  35229. }
  35230. },
  35231. },
  35232. [
  35233. {
  35234. name: "Normal",
  35235. height: math.unit(3, "feet"),
  35236. default: true
  35237. },
  35238. ]
  35239. ))
  35240. characterMakers.push(() => makeCharacter(
  35241. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35242. {
  35243. front: {
  35244. height: math.unit(5 + 11/12, "feet"),
  35245. weight: math.unit(200, "lb"),
  35246. name: "Front",
  35247. image: {
  35248. source: "./media/characters/shirou/front.svg",
  35249. extra: 2491/2383,
  35250. bottom: 189/2680
  35251. }
  35252. },
  35253. back: {
  35254. height: math.unit(5 + 11/12, "feet"),
  35255. weight: math.unit(200, "lb"),
  35256. name: "Back",
  35257. image: {
  35258. source: "./media/characters/shirou/back.svg",
  35259. extra: 2554/2450,
  35260. bottom: 76/2630
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(5 + 11/12, "feet"),
  35268. default: true
  35269. },
  35270. ]
  35271. ))
  35272. characterMakers.push(() => makeCharacter(
  35273. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35274. {
  35275. front: {
  35276. height: math.unit(6 + 3/12, "feet"),
  35277. weight: math.unit(177, "lb"),
  35278. name: "Front",
  35279. image: {
  35280. source: "./media/characters/noryu/front.svg",
  35281. extra: 973/885,
  35282. bottom: 10/983
  35283. }
  35284. },
  35285. },
  35286. [
  35287. {
  35288. name: "Normal",
  35289. height: math.unit(6 + 3/12, "feet"),
  35290. default: true
  35291. },
  35292. ]
  35293. ))
  35294. characterMakers.push(() => makeCharacter(
  35295. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35296. {
  35297. front: {
  35298. height: math.unit(5 + 6/12, "feet"),
  35299. weight: math.unit(170, "lb"),
  35300. name: "Front",
  35301. image: {
  35302. source: "./media/characters/mevolas-rubenido/front.svg",
  35303. extra: 2109/1901,
  35304. bottom: 96/2205
  35305. }
  35306. },
  35307. },
  35308. [
  35309. {
  35310. name: "Normal",
  35311. height: math.unit(5 + 6/12, "feet"),
  35312. default: true
  35313. },
  35314. ]
  35315. ))
  35316. characterMakers.push(() => makeCharacter(
  35317. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35318. {
  35319. front: {
  35320. height: math.unit(100, "feet"),
  35321. name: "Front",
  35322. image: {
  35323. source: "./media/characters/dee/front.svg",
  35324. extra: 2153/2036,
  35325. bottom: 59/2212
  35326. }
  35327. },
  35328. back: {
  35329. height: math.unit(100, "feet"),
  35330. name: "Back",
  35331. image: {
  35332. source: "./media/characters/dee/back.svg",
  35333. extra: 2183/2058,
  35334. bottom: 75/2258
  35335. }
  35336. },
  35337. foot: {
  35338. height: math.unit(19.43, "feet"),
  35339. name: "Foot",
  35340. image: {
  35341. source: "./media/characters/dee/foot.svg"
  35342. }
  35343. },
  35344. hoof: {
  35345. height: math.unit(20.6, "feet"),
  35346. name: "Hoof",
  35347. image: {
  35348. source: "./media/characters/dee/hoof.svg"
  35349. }
  35350. },
  35351. },
  35352. [
  35353. {
  35354. name: "Macro",
  35355. height: math.unit(100, "feet"),
  35356. default: true
  35357. },
  35358. ]
  35359. ))
  35360. characterMakers.push(() => makeCharacter(
  35361. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35362. {
  35363. front: {
  35364. height: math.unit(5 + 6/12, "feet"),
  35365. name: "Front",
  35366. image: {
  35367. source: "./media/characters/teh/front.svg",
  35368. extra: 1002/847,
  35369. bottom: 62/1064
  35370. }
  35371. },
  35372. },
  35373. [
  35374. {
  35375. name: "Normal",
  35376. height: math.unit(5 + 6/12, "feet"),
  35377. default: true
  35378. },
  35379. ]
  35380. ))
  35381. characterMakers.push(() => makeCharacter(
  35382. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35383. {
  35384. side: {
  35385. height: math.unit(6 + 1/12, "feet"),
  35386. weight: math.unit(204, "lb"),
  35387. name: "Side",
  35388. image: {
  35389. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35390. extra: 974/775,
  35391. bottom: 169/1143
  35392. }
  35393. },
  35394. sitting: {
  35395. height: math.unit(6 + 2/12, "feet"),
  35396. weight: math.unit(204, "lb"),
  35397. name: "Sitting",
  35398. image: {
  35399. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35400. extra: 1175/964,
  35401. bottom: 378/1553
  35402. }
  35403. },
  35404. },
  35405. [
  35406. {
  35407. name: "Normal",
  35408. height: math.unit(6 + 1/12, "feet"),
  35409. default: true
  35410. },
  35411. ]
  35412. ))
  35413. characterMakers.push(() => makeCharacter(
  35414. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35415. {
  35416. front: {
  35417. height: math.unit(6, "inches"),
  35418. name: "Front",
  35419. image: {
  35420. source: "./media/characters/tululi/front.svg",
  35421. extra: 1997/1876,
  35422. bottom: 20/2017
  35423. }
  35424. },
  35425. },
  35426. [
  35427. {
  35428. name: "Normal",
  35429. height: math.unit(6, "inches"),
  35430. default: true
  35431. },
  35432. ]
  35433. ))
  35434. characterMakers.push(() => makeCharacter(
  35435. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35436. {
  35437. front: {
  35438. height: math.unit(4 + 1/12, "feet"),
  35439. name: "Front",
  35440. image: {
  35441. source: "./media/characters/star/front.svg",
  35442. extra: 1493/1189,
  35443. bottom: 48/1541
  35444. }
  35445. },
  35446. },
  35447. [
  35448. {
  35449. name: "Normal",
  35450. height: math.unit(4 + 1/12, "feet"),
  35451. default: true
  35452. },
  35453. ]
  35454. ))
  35455. characterMakers.push(() => makeCharacter(
  35456. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35457. {
  35458. front: {
  35459. height: math.unit(6 + 3/12, "feet"),
  35460. name: "Front",
  35461. image: {
  35462. source: "./media/characters/comet/front.svg",
  35463. extra: 1681/1462,
  35464. bottom: 26/1707
  35465. }
  35466. },
  35467. },
  35468. [
  35469. {
  35470. name: "Normal",
  35471. height: math.unit(6 + 3/12, "feet"),
  35472. default: true
  35473. },
  35474. ]
  35475. ))
  35476. characterMakers.push(() => makeCharacter(
  35477. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35478. {
  35479. front: {
  35480. height: math.unit(950, "feet"),
  35481. name: "Front",
  35482. image: {
  35483. source: "./media/characters/vortex/front.svg",
  35484. extra: 1497/1434,
  35485. bottom: 56/1553
  35486. }
  35487. },
  35488. maw: {
  35489. height: math.unit(285, "feet"),
  35490. name: "Maw",
  35491. image: {
  35492. source: "./media/characters/vortex/maw.svg"
  35493. }
  35494. },
  35495. },
  35496. [
  35497. {
  35498. name: "Macro",
  35499. height: math.unit(950, "feet"),
  35500. default: true
  35501. },
  35502. ]
  35503. ))
  35504. characterMakers.push(() => makeCharacter(
  35505. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35506. {
  35507. front: {
  35508. height: math.unit(600, "feet"),
  35509. weight: math.unit(0.02, "grams"),
  35510. name: "Front",
  35511. image: {
  35512. source: "./media/characters/doodle/front.svg",
  35513. extra: 1578/1413,
  35514. bottom: 37/1615
  35515. }
  35516. },
  35517. },
  35518. [
  35519. {
  35520. name: "Macro",
  35521. height: math.unit(600, "feet"),
  35522. default: true
  35523. },
  35524. ]
  35525. ))
  35526. characterMakers.push(() => makeCharacter(
  35527. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35528. {
  35529. front: {
  35530. height: math.unit(6 + 6/12, "feet"),
  35531. name: "Front",
  35532. image: {
  35533. source: "./media/characters/jai/front.svg",
  35534. extra: 1645/1534,
  35535. bottom: 115/1760
  35536. }
  35537. },
  35538. },
  35539. [
  35540. {
  35541. name: "Normal",
  35542. height: math.unit(6 + 6/12, "feet"),
  35543. default: true
  35544. },
  35545. ]
  35546. ))
  35547. characterMakers.push(() => makeCharacter(
  35548. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35549. {
  35550. front: {
  35551. height: math.unit(6 + 8/12, "feet"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/pixel/front.svg",
  35555. extra: 1900/1735,
  35556. bottom: 63/1963
  35557. }
  35558. },
  35559. },
  35560. [
  35561. {
  35562. name: "Normal",
  35563. height: math.unit(6 + 8/12, "feet"),
  35564. default: true
  35565. },
  35566. ]
  35567. ))
  35568. characterMakers.push(() => makeCharacter(
  35569. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35570. {
  35571. back: {
  35572. height: math.unit(4 + 1/12, "feet"),
  35573. weight: math.unit(75, "lb"),
  35574. name: "Back",
  35575. image: {
  35576. source: "./media/characters/rhett/back.svg",
  35577. extra: 930/878,
  35578. bottom: 25/955
  35579. }
  35580. },
  35581. front: {
  35582. height: math.unit(4 + 1/12, "feet"),
  35583. weight: math.unit(75, "lb"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/rhett/front.svg",
  35587. extra: 1682/1586,
  35588. bottom: 92/1774
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Micro",
  35595. height: math.unit(8, "inches")
  35596. },
  35597. {
  35598. name: "Tiny",
  35599. height: math.unit(2, "feet")
  35600. },
  35601. {
  35602. name: "Normal",
  35603. height: math.unit(4 + 1/12, "feet"),
  35604. default: true
  35605. },
  35606. ]
  35607. ))
  35608. characterMakers.push(() => makeCharacter(
  35609. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35610. {
  35611. front: {
  35612. height: math.unit(3 + 3/12, "feet"),
  35613. name: "Front",
  35614. image: {
  35615. source: "./media/characters/penny/front.svg",
  35616. extra: 1406/1311,
  35617. bottom: 26/1432
  35618. }
  35619. },
  35620. },
  35621. [
  35622. {
  35623. name: "Normal",
  35624. height: math.unit(3 + 3/12, "feet"),
  35625. default: true
  35626. },
  35627. ]
  35628. ))
  35629. characterMakers.push(() => makeCharacter(
  35630. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35631. {
  35632. front: {
  35633. height: math.unit(4 + 11/12, "feet"),
  35634. name: "Front",
  35635. image: {
  35636. source: "./media/characters/monty/front.svg",
  35637. extra: 1479/1209,
  35638. bottom: 0/1479
  35639. }
  35640. },
  35641. },
  35642. [
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(4 + 11/12, "feet"),
  35646. default: true
  35647. },
  35648. ]
  35649. ))
  35650. characterMakers.push(() => makeCharacter(
  35651. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35652. {
  35653. front: {
  35654. height: math.unit(8 + 4/12, "feet"),
  35655. name: "Front",
  35656. image: {
  35657. source: "./media/characters/sterling/front.svg",
  35658. extra: 1420/1236,
  35659. bottom: 27/1447
  35660. }
  35661. },
  35662. },
  35663. [
  35664. {
  35665. name: "Normal",
  35666. height: math.unit(8 + 4/12, "feet"),
  35667. default: true
  35668. },
  35669. ]
  35670. ))
  35671. characterMakers.push(() => makeCharacter(
  35672. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35673. {
  35674. front: {
  35675. height: math.unit(15, "feet"),
  35676. name: "Front",
  35677. image: {
  35678. source: "./media/characters/marble/front.svg",
  35679. extra: 973/937,
  35680. bottom: 32/1005
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(15, "feet"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35694. {
  35695. front: {
  35696. height: math.unit(3, "inches"),
  35697. name: "Front",
  35698. image: {
  35699. source: "./media/characters/powder/front.svg",
  35700. extra: 1504/1334,
  35701. bottom: 518/2022
  35702. }
  35703. },
  35704. },
  35705. [
  35706. {
  35707. name: "Normal",
  35708. height: math.unit(3, "inches"),
  35709. default: true
  35710. },
  35711. ]
  35712. ))
  35713. characterMakers.push(() => makeCharacter(
  35714. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35715. {
  35716. front: {
  35717. height: math.unit(4 + 5/12, "feet"),
  35718. name: "Front",
  35719. image: {
  35720. source: "./media/characters/joey-raccoon/front.svg",
  35721. extra: 1273/1197,
  35722. bottom: 0/1273
  35723. }
  35724. },
  35725. },
  35726. [
  35727. {
  35728. name: "Normal",
  35729. height: math.unit(4 + 5/12, "feet"),
  35730. default: true
  35731. },
  35732. ]
  35733. ))
  35734. characterMakers.push(() => makeCharacter(
  35735. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35736. {
  35737. front: {
  35738. height: math.unit(8 + 4/12, "feet"),
  35739. name: "Front",
  35740. image: {
  35741. source: "./media/characters/vick/front.svg",
  35742. extra: 2187/2118,
  35743. bottom: 47/2234
  35744. }
  35745. },
  35746. },
  35747. [
  35748. {
  35749. name: "Normal",
  35750. height: math.unit(8 + 4/12, "feet"),
  35751. default: true
  35752. },
  35753. ]
  35754. ))
  35755. characterMakers.push(() => makeCharacter(
  35756. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35757. {
  35758. front: {
  35759. height: math.unit(5 + 5/12, "feet"),
  35760. name: "Front",
  35761. image: {
  35762. source: "./media/characters/mitsy/front.svg",
  35763. extra: 1842/1695,
  35764. bottom: 0/1842
  35765. }
  35766. },
  35767. },
  35768. [
  35769. {
  35770. name: "Normal",
  35771. height: math.unit(5 + 5/12, "feet"),
  35772. default: true
  35773. },
  35774. ]
  35775. ))
  35776. characterMakers.push(() => makeCharacter(
  35777. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35778. {
  35779. front: {
  35780. height: math.unit(6 + 3/12, "feet"),
  35781. name: "Front",
  35782. image: {
  35783. source: "./media/characters/silvy/front.svg",
  35784. extra: 1995/1836,
  35785. bottom: 225/2220
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(6 + 3/12, "feet"),
  35793. default: true
  35794. },
  35795. ]
  35796. ))
  35797. characterMakers.push(() => makeCharacter(
  35798. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35799. {
  35800. front: {
  35801. height: math.unit(3 + 8/12, "feet"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/rodney/front.svg",
  35805. extra: 1956/1747,
  35806. bottom: 31/1987
  35807. }
  35808. },
  35809. frontDressed: {
  35810. height: math.unit(2.9, "feet"),
  35811. name: "Front (Dressed)",
  35812. image: {
  35813. source: "./media/characters/rodney/front-dressed.svg",
  35814. extra: 1382/1241,
  35815. bottom: 385/1767
  35816. }
  35817. },
  35818. },
  35819. [
  35820. {
  35821. name: "Normal",
  35822. height: math.unit(3 + 8/12, "feet"),
  35823. default: true
  35824. },
  35825. ]
  35826. ))
  35827. characterMakers.push(() => makeCharacter(
  35828. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35829. {
  35830. front: {
  35831. height: math.unit(5 + 9/12, "feet"),
  35832. weight: math.unit(194, "lbs"),
  35833. name: "Front",
  35834. image: {
  35835. source: "./media/characters/zakail-sudekai/front.svg",
  35836. extra: 2696/2533,
  35837. bottom: 248/2944
  35838. }
  35839. },
  35840. maw: {
  35841. height: math.unit(1.35, "feet"),
  35842. name: "Maw",
  35843. image: {
  35844. source: "./media/characters/zakail-sudekai/maw.svg"
  35845. }
  35846. },
  35847. },
  35848. [
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(5 + 9/12, "feet"),
  35852. default: true
  35853. },
  35854. ]
  35855. ))
  35856. characterMakers.push(() => makeCharacter(
  35857. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35858. {
  35859. front: {
  35860. height: math.unit(8 + 4/12, "feet"),
  35861. weight: math.unit(1200, "lb"),
  35862. name: "Front",
  35863. image: {
  35864. source: "./media/characters/eleanor/front.svg",
  35865. extra: 1226/1192,
  35866. bottom: 52/1278
  35867. }
  35868. },
  35869. back: {
  35870. height: math.unit(8 + 4/12, "feet"),
  35871. weight: math.unit(1200, "lb"),
  35872. name: "Back",
  35873. image: {
  35874. source: "./media/characters/eleanor/back.svg",
  35875. extra: 1242/1184,
  35876. bottom: 60/1302
  35877. }
  35878. },
  35879. head: {
  35880. height: math.unit(2.62, "feet"),
  35881. name: "Head",
  35882. image: {
  35883. source: "./media/characters/eleanor/head.svg"
  35884. }
  35885. },
  35886. },
  35887. [
  35888. {
  35889. name: "Normal",
  35890. height: math.unit(8 + 4/12, "feet"),
  35891. default: true
  35892. },
  35893. ]
  35894. ))
  35895. characterMakers.push(() => makeCharacter(
  35896. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35897. {
  35898. front: {
  35899. height: math.unit(8 + 4/12, "feet"),
  35900. weight: math.unit(750, "lb"),
  35901. name: "Front",
  35902. image: {
  35903. source: "./media/characters/tanya/front.svg",
  35904. extra: 1749/1615,
  35905. bottom: 33/1782
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Normal",
  35912. height: math.unit(8 + 4/12, "feet"),
  35913. default: true
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35919. {
  35920. front: {
  35921. height: math.unit(5, "feet"),
  35922. weight: math.unit(225, "lb"),
  35923. name: "Front",
  35924. image: {
  35925. source: "./media/characters/cindy/front.svg",
  35926. extra: 1320/1250,
  35927. bottom: 42/1362
  35928. }
  35929. },
  35930. frontDressed: {
  35931. height: math.unit(5, "feet"),
  35932. weight: math.unit(225, "lb"),
  35933. name: "Front (Dressed)",
  35934. image: {
  35935. source: "./media/characters/cindy/front-dressed.svg",
  35936. extra: 1320/1250,
  35937. bottom: 42/1362
  35938. }
  35939. },
  35940. back: {
  35941. height: math.unit(5, "feet"),
  35942. weight: math.unit(225, "lb"),
  35943. name: "Back",
  35944. image: {
  35945. source: "./media/characters/cindy/back.svg",
  35946. extra: 1384/1346,
  35947. bottom: 14/1398
  35948. }
  35949. },
  35950. },
  35951. [
  35952. {
  35953. name: "Normal",
  35954. height: math.unit(5, "feet"),
  35955. default: true
  35956. },
  35957. ]
  35958. ))
  35959. characterMakers.push(() => makeCharacter(
  35960. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35961. {
  35962. front: {
  35963. height: math.unit(6 + 9/12, "feet"),
  35964. weight: math.unit(440, "lb"),
  35965. name: "Front",
  35966. image: {
  35967. source: "./media/characters/wilbur-owen/front.svg",
  35968. extra: 1575/1448,
  35969. bottom: 72/1647
  35970. }
  35971. },
  35972. back: {
  35973. height: math.unit(6 + 9/12, "feet"),
  35974. weight: math.unit(440, "lb"),
  35975. name: "Back",
  35976. image: {
  35977. source: "./media/characters/wilbur-owen/back.svg",
  35978. extra: 1578/1445,
  35979. bottom: 36/1614
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(6 + 9/12, "feet"),
  35987. default: true
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35993. {
  35994. front: {
  35995. height: math.unit(6 + 5/12, "feet"),
  35996. weight: math.unit(650, "lb"),
  35997. name: "Front",
  35998. image: {
  35999. source: "./media/characters/keegan/front.svg",
  36000. extra: 2387/2198,
  36001. bottom: 33/2420
  36002. }
  36003. },
  36004. side: {
  36005. height: math.unit(6 + 5/12, "feet"),
  36006. weight: math.unit(650, "lb"),
  36007. name: "Side",
  36008. image: {
  36009. source: "./media/characters/keegan/side.svg",
  36010. extra: 2390/2202,
  36011. bottom: 47/2437
  36012. }
  36013. },
  36014. back: {
  36015. height: math.unit(6 + 5/12, "feet"),
  36016. weight: math.unit(650, "lb"),
  36017. name: "Back",
  36018. image: {
  36019. source: "./media/characters/keegan/back.svg",
  36020. extra: 2418/2268,
  36021. bottom: 15/2433
  36022. }
  36023. },
  36024. frontSfw: {
  36025. height: math.unit(6 + 5/12, "feet"),
  36026. weight: math.unit(650, "lb"),
  36027. name: "Front (SFW)",
  36028. image: {
  36029. source: "./media/characters/keegan/front-sfw.svg",
  36030. extra: 2387/2198,
  36031. bottom: 33/2420
  36032. }
  36033. },
  36034. beans: {
  36035. height: math.unit(1.85, "feet"),
  36036. name: "Beans",
  36037. image: {
  36038. source: "./media/characters/keegan/beans.svg"
  36039. }
  36040. },
  36041. },
  36042. [
  36043. {
  36044. name: "Normal",
  36045. height: math.unit(6 + 5/12, "feet"),
  36046. default: true
  36047. },
  36048. ]
  36049. ))
  36050. characterMakers.push(() => makeCharacter(
  36051. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36052. {
  36053. front: {
  36054. height: math.unit(9, "feet"),
  36055. name: "Front",
  36056. image: {
  36057. source: "./media/characters/colton/front.svg",
  36058. extra: 1589/1326,
  36059. bottom: 139/1728
  36060. }
  36061. },
  36062. },
  36063. [
  36064. {
  36065. name: "Normal",
  36066. height: math.unit(9, "feet"),
  36067. default: true
  36068. },
  36069. ]
  36070. ))
  36071. characterMakers.push(() => makeCharacter(
  36072. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36073. {
  36074. front: {
  36075. height: math.unit(2 + 9/12, "feet"),
  36076. name: "Front",
  36077. image: {
  36078. source: "./media/characters/bora/front.svg",
  36079. extra: 1265/1250,
  36080. bottom: 24/1289
  36081. }
  36082. },
  36083. },
  36084. [
  36085. {
  36086. name: "Normal",
  36087. height: math.unit(2 + 9/12, "feet"),
  36088. default: true
  36089. },
  36090. ]
  36091. ))
  36092. characterMakers.push(() => makeCharacter(
  36093. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36094. {
  36095. front: {
  36096. height: math.unit(8, "feet"),
  36097. name: "Front",
  36098. image: {
  36099. source: "./media/characters/myu-myu/front.svg",
  36100. extra: 1949/1857,
  36101. bottom: 90/2039
  36102. }
  36103. },
  36104. },
  36105. [
  36106. {
  36107. name: "Normal",
  36108. height: math.unit(8, "feet"),
  36109. default: true
  36110. },
  36111. {
  36112. name: "Big",
  36113. height: math.unit(15, "feet")
  36114. },
  36115. {
  36116. name: "BIG",
  36117. height: math.unit(25, "feet")
  36118. },
  36119. ]
  36120. ))
  36121. characterMakers.push(() => makeCharacter(
  36122. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36123. {
  36124. side: {
  36125. height: math.unit(7 + 5/12, "feet"),
  36126. weight: math.unit(2800, "lb"),
  36127. name: "Side",
  36128. image: {
  36129. source: "./media/characters/haloren/side.svg",
  36130. extra: 1793/409,
  36131. bottom: 59/1852
  36132. }
  36133. },
  36134. frontPaw: {
  36135. height: math.unit(2.36, "feet"),
  36136. name: "Front paw",
  36137. image: {
  36138. source: "./media/characters/haloren/front-paw.svg"
  36139. }
  36140. },
  36141. hindPaw: {
  36142. height: math.unit(3.18, "feet"),
  36143. name: "Hind paw",
  36144. image: {
  36145. source: "./media/characters/haloren/hind-paw.svg"
  36146. }
  36147. },
  36148. maw: {
  36149. height: math.unit(5.05, "feet"),
  36150. name: "Maw",
  36151. image: {
  36152. source: "./media/characters/haloren/maw.svg"
  36153. }
  36154. },
  36155. dick: {
  36156. height: math.unit(2.90, "feet"),
  36157. name: "Dick",
  36158. image: {
  36159. source: "./media/characters/haloren/dick.svg"
  36160. }
  36161. },
  36162. },
  36163. [
  36164. {
  36165. name: "Normal",
  36166. height: math.unit(7 + 5/12, "feet"),
  36167. default: true
  36168. },
  36169. {
  36170. name: "Enhanced",
  36171. height: math.unit(14 + 3/12, "feet")
  36172. },
  36173. ]
  36174. ))
  36175. characterMakers.push(() => makeCharacter(
  36176. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36177. {
  36178. front: {
  36179. height: math.unit(171, "cm"),
  36180. name: "Front",
  36181. image: {
  36182. source: "./media/characters/kimmy/front.svg",
  36183. extra: 1491/1435,
  36184. bottom: 53/1544
  36185. }
  36186. },
  36187. },
  36188. [
  36189. {
  36190. name: "Small",
  36191. height: math.unit(9, "cm")
  36192. },
  36193. {
  36194. name: "Normal",
  36195. height: math.unit(171, "cm"),
  36196. default: true
  36197. },
  36198. ]
  36199. ))
  36200. characterMakers.push(() => makeCharacter(
  36201. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36202. {
  36203. front: {
  36204. height: math.unit(8, "feet"),
  36205. weight: math.unit(300, "lb"),
  36206. name: "Front",
  36207. image: {
  36208. source: "./media/characters/galeboomer/front.svg",
  36209. extra: 4651/4415,
  36210. bottom: 162/4813
  36211. }
  36212. },
  36213. back: {
  36214. height: math.unit(8, "feet"),
  36215. weight: math.unit(300, "lb"),
  36216. name: "Back",
  36217. image: {
  36218. source: "./media/characters/galeboomer/back.svg",
  36219. extra: 4544/4314,
  36220. bottom: 16/4560
  36221. }
  36222. },
  36223. frontAlt: {
  36224. height: math.unit(8, "feet"),
  36225. weight: math.unit(300, "lb"),
  36226. name: "Front (Alt)",
  36227. image: {
  36228. source: "./media/characters/galeboomer/front-alt.svg",
  36229. extra: 4458/4228,
  36230. bottom: 68/4526
  36231. }
  36232. },
  36233. maw: {
  36234. height: math.unit(1.2, "feet"),
  36235. name: "Maw",
  36236. image: {
  36237. source: "./media/characters/galeboomer/maw.svg"
  36238. }
  36239. },
  36240. },
  36241. [
  36242. {
  36243. name: "Normal",
  36244. height: math.unit(8, "feet"),
  36245. default: true
  36246. },
  36247. ]
  36248. ))
  36249. characterMakers.push(() => makeCharacter(
  36250. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36251. {
  36252. front: {
  36253. height: math.unit(5 + 9/12, "feet"),
  36254. weight: math.unit(120, "lb"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/chyr/front.svg",
  36258. extra: 1323/1254,
  36259. bottom: 63/1386
  36260. }
  36261. },
  36262. back: {
  36263. height: math.unit(5 + 9/12, "feet"),
  36264. weight: math.unit(120, "lb"),
  36265. name: "Back",
  36266. image: {
  36267. source: "./media/characters/chyr/back.svg",
  36268. extra: 1323/1252,
  36269. bottom: 48/1371
  36270. }
  36271. },
  36272. },
  36273. [
  36274. {
  36275. name: "Normal",
  36276. height: math.unit(5 + 9/12, "feet"),
  36277. default: true
  36278. },
  36279. ]
  36280. ))
  36281. characterMakers.push(() => makeCharacter(
  36282. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36283. {
  36284. front: {
  36285. height: math.unit(7, "feet"),
  36286. weight: math.unit(310, "lb"),
  36287. name: "Front",
  36288. image: {
  36289. source: "./media/characters/solarus/front.svg",
  36290. extra: 2415/2021,
  36291. bottom: 103/2518
  36292. }
  36293. },
  36294. back: {
  36295. height: math.unit(7, "feet"),
  36296. weight: math.unit(310, "lb"),
  36297. name: "Back",
  36298. image: {
  36299. source: "./media/characters/solarus/back.svg",
  36300. extra: 2463/2089,
  36301. bottom: 79/2542
  36302. }
  36303. },
  36304. },
  36305. [
  36306. {
  36307. name: "Normal",
  36308. height: math.unit(7, "feet"),
  36309. default: true
  36310. },
  36311. ]
  36312. ))
  36313. characterMakers.push(() => makeCharacter(
  36314. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36315. {
  36316. front: {
  36317. height: math.unit(16, "feet"),
  36318. name: "Front",
  36319. image: {
  36320. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36321. extra: 1844/1780,
  36322. bottom: 58/1902
  36323. }
  36324. },
  36325. winterCoat: {
  36326. height: math.unit(16, "feet"),
  36327. name: "Winter Coat",
  36328. image: {
  36329. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36330. extra: 1807/1775,
  36331. bottom: 69/1876
  36332. }
  36333. },
  36334. },
  36335. [
  36336. {
  36337. name: "Normal",
  36338. height: math.unit(16, "feet"),
  36339. default: true
  36340. },
  36341. {
  36342. name: "Chicago Size",
  36343. height: math.unit(560, "feet")
  36344. },
  36345. ]
  36346. ))
  36347. characterMakers.push(() => makeCharacter(
  36348. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36349. {
  36350. front: {
  36351. height: math.unit(11 + 6/12, "feet"),
  36352. weight: math.unit(1366, "lb"),
  36353. name: "Front",
  36354. image: {
  36355. source: "./media/characters/lexor/front.svg",
  36356. extra: 1560/1481,
  36357. bottom: 211/1771
  36358. }
  36359. },
  36360. back: {
  36361. height: math.unit(11 + 6/12, "feet"),
  36362. weight: math.unit(1366, "lb"),
  36363. name: "Back",
  36364. image: {
  36365. source: "./media/characters/lexor/back.svg",
  36366. extra: 1614/1533,
  36367. bottom: 76/1690
  36368. }
  36369. },
  36370. maw: {
  36371. height: math.unit(3, "feet"),
  36372. name: "Maw",
  36373. image: {
  36374. source: "./media/characters/lexor/maw.svg"
  36375. }
  36376. },
  36377. dick: {
  36378. height: math.unit(2.59, "feet"),
  36379. name: "Dick",
  36380. image: {
  36381. source: "./media/characters/lexor/dick.svg"
  36382. }
  36383. },
  36384. },
  36385. [
  36386. {
  36387. name: "Normal",
  36388. height: math.unit(11 + 6/12, "feet"),
  36389. default: true
  36390. },
  36391. ]
  36392. ))
  36393. characterMakers.push(() => makeCharacter(
  36394. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36395. {
  36396. front: {
  36397. height: math.unit(5 + 8/12, "feet"),
  36398. name: "Front",
  36399. image: {
  36400. source: "./media/characters/magnum/front.svg",
  36401. extra: 942/855,
  36402. bottom: 26/968
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Normal",
  36409. height: math.unit(5 + 8/12, "feet"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(18 + 4/12, "feet"),
  36419. weight: math.unit(1500, "kg"),
  36420. name: "Front",
  36421. image: {
  36422. source: "./media/characters/solas-sharpsman/front.svg",
  36423. extra: 1698/1589,
  36424. bottom: 0/1698
  36425. }
  36426. },
  36427. },
  36428. [
  36429. {
  36430. name: "Normal",
  36431. height: math.unit(18 + 4/12, "feet"),
  36432. default: true
  36433. },
  36434. ]
  36435. ))
  36436. characterMakers.push(() => makeCharacter(
  36437. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36438. {
  36439. front: {
  36440. height: math.unit(5 + 5/12, "feet"),
  36441. weight: math.unit(180, "lb"),
  36442. name: "Front",
  36443. image: {
  36444. source: "./media/characters/october/front.svg",
  36445. extra: 1800/1650,
  36446. bottom: 0/1800
  36447. }
  36448. },
  36449. frontNsfw: {
  36450. height: math.unit(5 + 5/12, "feet"),
  36451. weight: math.unit(180, "lb"),
  36452. name: "Front (NSFW)",
  36453. image: {
  36454. source: "./media/characters/october/front-nsfw.svg",
  36455. extra: 1392/1307,
  36456. bottom: 42/1434
  36457. }
  36458. },
  36459. },
  36460. [
  36461. {
  36462. name: "Normal",
  36463. height: math.unit(5 + 5/12, "feet"),
  36464. default: true
  36465. },
  36466. ]
  36467. ))
  36468. characterMakers.push(() => makeCharacter(
  36469. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36470. {
  36471. front: {
  36472. height: math.unit(8 + 6/12, "feet"),
  36473. name: "Front",
  36474. image: {
  36475. source: "./media/characters/essynkardi/front.svg",
  36476. extra: 1914/1846,
  36477. bottom: 22/1936
  36478. }
  36479. },
  36480. },
  36481. [
  36482. {
  36483. name: "Normal",
  36484. height: math.unit(8 + 6/12, "feet"),
  36485. default: true
  36486. },
  36487. ]
  36488. ))
  36489. characterMakers.push(() => makeCharacter(
  36490. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36491. {
  36492. front: {
  36493. height: math.unit(6 + 6/12, "feet"),
  36494. weight: math.unit(7, "lb"),
  36495. name: "Front",
  36496. image: {
  36497. source: "./media/characters/icky/front.svg",
  36498. extra: 813/782,
  36499. bottom: 66/879
  36500. }
  36501. },
  36502. back: {
  36503. height: math.unit(6 + 6/12, "feet"),
  36504. weight: math.unit(7, "lb"),
  36505. name: "Back",
  36506. image: {
  36507. source: "./media/characters/icky/back.svg",
  36508. extra: 754/735,
  36509. bottom: 56/810
  36510. }
  36511. },
  36512. },
  36513. [
  36514. {
  36515. name: "Normal",
  36516. height: math.unit(6 + 6/12, "feet"),
  36517. default: true
  36518. },
  36519. ]
  36520. ))
  36521. characterMakers.push(() => makeCharacter(
  36522. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36523. {
  36524. front: {
  36525. height: math.unit(15, "feet"),
  36526. name: "Front",
  36527. image: {
  36528. source: "./media/characters/rojas/front.svg",
  36529. extra: 1462/1408,
  36530. bottom: 95/1557
  36531. }
  36532. },
  36533. back: {
  36534. height: math.unit(15, "feet"),
  36535. name: "Back",
  36536. image: {
  36537. source: "./media/characters/rojas/back.svg",
  36538. extra: 1023/954,
  36539. bottom: 28/1051
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(15, "feet"),
  36547. default: true
  36548. },
  36549. ]
  36550. ))
  36551. characterMakers.push(() => makeCharacter(
  36552. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36553. {
  36554. frontHuman: {
  36555. height: math.unit(5 + 7/12, "feet"),
  36556. name: "Front (Human)",
  36557. image: {
  36558. source: "./media/characters/alek-dryagan/front-human.svg",
  36559. extra: 1687/1667,
  36560. bottom: 69/1756
  36561. }
  36562. },
  36563. backHuman: {
  36564. height: math.unit(5 + 7/12, "feet"),
  36565. name: "Back (Human)",
  36566. image: {
  36567. source: "./media/characters/alek-dryagan/back-human.svg",
  36568. extra: 1670/1649,
  36569. bottom: 65/1735
  36570. }
  36571. },
  36572. frontDemi: {
  36573. height: math.unit(65, "feet"),
  36574. name: "Front (Demi)",
  36575. image: {
  36576. source: "./media/characters/alek-dryagan/front-demi.svg",
  36577. extra: 1669/1642,
  36578. bottom: 49/1718
  36579. }
  36580. },
  36581. backDemi: {
  36582. height: math.unit(65, "feet"),
  36583. name: "Back (Demi)",
  36584. image: {
  36585. source: "./media/characters/alek-dryagan/back-demi.svg",
  36586. extra: 1658/1637,
  36587. bottom: 40/1698
  36588. }
  36589. },
  36590. mawHuman: {
  36591. height: math.unit(0.3, "feet"),
  36592. name: "Maw (Human)",
  36593. image: {
  36594. source: "./media/characters/alek-dryagan/maw-human.svg"
  36595. }
  36596. },
  36597. mawDemi: {
  36598. height: math.unit(3.8, "feet"),
  36599. name: "Maw (Demi)",
  36600. image: {
  36601. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36602. }
  36603. },
  36604. },
  36605. [
  36606. {
  36607. name: "Normal",
  36608. height: math.unit(5 + 7/12, "feet"),
  36609. default: true
  36610. },
  36611. ]
  36612. ))
  36613. characterMakers.push(() => makeCharacter(
  36614. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36615. {
  36616. frontHuman: {
  36617. height: math.unit(5 + 2/12, "feet"),
  36618. name: "Front (Human)",
  36619. image: {
  36620. source: "./media/characters/gen/front-human.svg",
  36621. extra: 1627/1538,
  36622. bottom: 71/1698
  36623. }
  36624. },
  36625. backHuman: {
  36626. height: math.unit(5 + 2/12, "feet"),
  36627. name: "Back (Human)",
  36628. image: {
  36629. source: "./media/characters/gen/back-human.svg",
  36630. extra: 1638/1548,
  36631. bottom: 69/1707
  36632. }
  36633. },
  36634. frontDemi: {
  36635. height: math.unit(5 + 2/12, "feet"),
  36636. name: "Front (Demi)",
  36637. image: {
  36638. source: "./media/characters/gen/front-demi.svg",
  36639. extra: 1627/1538,
  36640. bottom: 71/1698
  36641. }
  36642. },
  36643. backDemi: {
  36644. height: math.unit(5 + 2/12, "feet"),
  36645. name: "Back (Demi)",
  36646. image: {
  36647. source: "./media/characters/gen/back-demi.svg",
  36648. extra: 1638/1548,
  36649. bottom: 69/1707
  36650. }
  36651. },
  36652. },
  36653. [
  36654. {
  36655. name: "Normal",
  36656. height: math.unit(5 + 2/12, "feet"),
  36657. default: true
  36658. },
  36659. ]
  36660. ))
  36661. characterMakers.push(() => makeCharacter(
  36662. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36663. {
  36664. frontImp: {
  36665. height: math.unit(1 + 11/12, "feet"),
  36666. name: "Front (Imp)",
  36667. image: {
  36668. source: "./media/characters/max-kobold/front-imp.svg",
  36669. extra: 1238/1134,
  36670. bottom: 81/1319
  36671. }
  36672. },
  36673. backImp: {
  36674. height: math.unit(1 + 11/12, "feet"),
  36675. name: "Back (Imp)",
  36676. image: {
  36677. source: "./media/characters/max-kobold/back-imp.svg",
  36678. extra: 1334/1175,
  36679. bottom: 34/1368
  36680. }
  36681. },
  36682. frontDemi: {
  36683. height: math.unit(5 + 9/12, "feet"),
  36684. name: "Front (Demi)",
  36685. image: {
  36686. source: "./media/characters/max-kobold/front-demi.svg",
  36687. extra: 1715/1685,
  36688. bottom: 54/1769
  36689. }
  36690. },
  36691. backDemi: {
  36692. height: math.unit(5 + 9/12, "feet"),
  36693. name: "Back (Demi)",
  36694. image: {
  36695. source: "./media/characters/max-kobold/back-demi.svg",
  36696. extra: 1752/1729,
  36697. bottom: 41/1793
  36698. }
  36699. },
  36700. handImp: {
  36701. height: math.unit(0.45, "feet"),
  36702. name: "Hand (Imp)",
  36703. image: {
  36704. source: "./media/characters/max-kobold/hand.svg"
  36705. }
  36706. },
  36707. pawImp: {
  36708. height: math.unit(0.46, "feet"),
  36709. name: "Paw (Imp)",
  36710. image: {
  36711. source: "./media/characters/max-kobold/paw.svg"
  36712. }
  36713. },
  36714. handDemi: {
  36715. height: math.unit(0.80, "feet"),
  36716. name: "Hand (Demi)",
  36717. image: {
  36718. source: "./media/characters/max-kobold/hand.svg"
  36719. }
  36720. },
  36721. pawDemi: {
  36722. height: math.unit(1.1, "feet"),
  36723. name: "Paw (Demi)",
  36724. image: {
  36725. source: "./media/characters/max-kobold/paw.svg"
  36726. }
  36727. },
  36728. headImp: {
  36729. height: math.unit(1.33, "feet"),
  36730. name: "Head (Imp)",
  36731. image: {
  36732. source: "./media/characters/max-kobold/head-imp.svg"
  36733. }
  36734. },
  36735. mawImp: {
  36736. height: math.unit(0.75, "feet"),
  36737. name: "Maw (Imp)",
  36738. image: {
  36739. source: "./media/characters/max-kobold/maw-imp.svg"
  36740. }
  36741. },
  36742. mawDemi: {
  36743. height: math.unit(0.42, "feet"),
  36744. name: "Maw (Demi)",
  36745. image: {
  36746. source: "./media/characters/max-kobold/maw-demi.svg"
  36747. }
  36748. },
  36749. },
  36750. [
  36751. {
  36752. name: "Normal",
  36753. height: math.unit(1 + 11/12, "feet"),
  36754. default: true
  36755. },
  36756. ]
  36757. ))
  36758. characterMakers.push(() => makeCharacter(
  36759. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36760. {
  36761. front: {
  36762. height: math.unit(7 + 5/12, "feet"),
  36763. name: "Front",
  36764. image: {
  36765. source: "./media/characters/carbon/front.svg",
  36766. extra: 1754/1689,
  36767. bottom: 65/1819
  36768. }
  36769. },
  36770. back: {
  36771. height: math.unit(7 + 5/12, "feet"),
  36772. name: "Back",
  36773. image: {
  36774. source: "./media/characters/carbon/back.svg",
  36775. extra: 1762/1695,
  36776. bottom: 24/1786
  36777. }
  36778. },
  36779. frontGigantamax: {
  36780. height: math.unit(150, "feet"),
  36781. name: "Front (Gigantamax)",
  36782. image: {
  36783. source: "./media/characters/carbon/front-gigantamax.svg",
  36784. extra: 1826/1669,
  36785. bottom: 59/1885
  36786. }
  36787. },
  36788. backGigantamax: {
  36789. height: math.unit(150, "feet"),
  36790. name: "Back (Gigantamax)",
  36791. image: {
  36792. source: "./media/characters/carbon/back-gigantamax.svg",
  36793. extra: 1796/1653,
  36794. bottom: 53/1849
  36795. }
  36796. },
  36797. maw: {
  36798. height: math.unit(0.48, "feet"),
  36799. name: "Maw",
  36800. image: {
  36801. source: "./media/characters/carbon/maw.svg"
  36802. }
  36803. },
  36804. mawGigantamax: {
  36805. height: math.unit(7.5, "feet"),
  36806. name: "Maw (Gigantamax)",
  36807. image: {
  36808. source: "./media/characters/carbon/maw-gigantamax.svg"
  36809. }
  36810. },
  36811. },
  36812. [
  36813. {
  36814. name: "Normal",
  36815. height: math.unit(7 + 5/12, "feet"),
  36816. default: true
  36817. },
  36818. ]
  36819. ))
  36820. characterMakers.push(() => makeCharacter(
  36821. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36822. {
  36823. front: {
  36824. height: math.unit(6, "feet"),
  36825. name: "Front",
  36826. image: {
  36827. source: "./media/characters/maverick/front.svg",
  36828. extra: 1672/1661,
  36829. bottom: 85/1757
  36830. }
  36831. },
  36832. back: {
  36833. height: math.unit(6, "feet"),
  36834. name: "Back",
  36835. image: {
  36836. source: "./media/characters/maverick/back.svg",
  36837. extra: 1642/1631,
  36838. bottom: 38/1680
  36839. }
  36840. },
  36841. },
  36842. [
  36843. {
  36844. name: "Normal",
  36845. height: math.unit(6, "feet"),
  36846. default: true
  36847. },
  36848. ]
  36849. ))
  36850. characterMakers.push(() => makeCharacter(
  36851. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36852. {
  36853. front: {
  36854. height: math.unit(15, "feet"),
  36855. weight: math.unit(615, "lb"),
  36856. name: "Front",
  36857. image: {
  36858. source: "./media/characters/grockle/front.svg",
  36859. extra: 1535/1427,
  36860. bottom: 56/1591
  36861. }
  36862. },
  36863. },
  36864. [
  36865. {
  36866. name: "Normal",
  36867. height: math.unit(15, "feet"),
  36868. default: true
  36869. },
  36870. {
  36871. name: "Large",
  36872. height: math.unit(150, "feet")
  36873. },
  36874. {
  36875. name: "Macro",
  36876. height: math.unit(1876, "feet")
  36877. },
  36878. {
  36879. name: "Mega Macro",
  36880. height: math.unit(121940, "feet")
  36881. },
  36882. {
  36883. name: "Giga Macro",
  36884. height: math.unit(750, "km")
  36885. },
  36886. {
  36887. name: "Tera Macro",
  36888. height: math.unit(750000, "km")
  36889. },
  36890. {
  36891. name: "Galactic",
  36892. height: math.unit(1.4e5, "km")
  36893. },
  36894. {
  36895. name: "Godlike",
  36896. height: math.unit(9.8e280, "galaxies")
  36897. },
  36898. ]
  36899. ))
  36900. characterMakers.push(() => makeCharacter(
  36901. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36902. {
  36903. front: {
  36904. height: math.unit(11, "meters"),
  36905. weight: math.unit(20, "tonnes"),
  36906. name: "Front",
  36907. image: {
  36908. source: "./media/characters/alistair/front.svg",
  36909. extra: 1265/1009,
  36910. bottom: 93/1358
  36911. }
  36912. },
  36913. },
  36914. [
  36915. {
  36916. name: "Normal",
  36917. height: math.unit(11, "meters"),
  36918. default: true
  36919. },
  36920. ]
  36921. ))
  36922. characterMakers.push(() => makeCharacter(
  36923. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36924. {
  36925. front: {
  36926. height: math.unit(5 + 8/12, "feet"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/haruka/front.svg",
  36930. extra: 2012/1952,
  36931. bottom: 0/2012
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(5 + 8/12, "feet"),
  36939. default: true
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36945. {
  36946. back: {
  36947. height: math.unit(9, "feet"),
  36948. name: "Back",
  36949. image: {
  36950. source: "./media/characters/vivian-sylveon/back.svg",
  36951. extra: 1853/1714,
  36952. bottom: 0/1853
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Normal",
  36959. height: math.unit(9, "feet"),
  36960. default: true
  36961. },
  36962. {
  36963. name: "Macro",
  36964. height: math.unit(500, "feet")
  36965. },
  36966. {
  36967. name: "Megamacro",
  36968. height: math.unit(600, "miles")
  36969. },
  36970. {
  36971. name: "Gigamacro",
  36972. height: math.unit(30000, "miles")
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36978. {
  36979. anthro: {
  36980. height: math.unit(5 + 10/12, "feet"),
  36981. weight: math.unit(100, "lb"),
  36982. name: "Anthro",
  36983. image: {
  36984. source: "./media/characters/daiki/anthro.svg",
  36985. extra: 1115/1027,
  36986. bottom: 69/1184
  36987. }
  36988. },
  36989. feral: {
  36990. height: math.unit(200, "feet"),
  36991. name: "Feral",
  36992. image: {
  36993. source: "./media/characters/daiki/feral.svg",
  36994. extra: 1256/313,
  36995. bottom: 39/1295
  36996. }
  36997. },
  36998. feralHead: {
  36999. height: math.unit(171, "feet"),
  37000. name: "Feral Head",
  37001. image: {
  37002. source: "./media/characters/daiki/feral-head.svg"
  37003. }
  37004. },
  37005. manaDragon: {
  37006. height: math.unit(170, "meters"),
  37007. name: "Mana-dragon",
  37008. image: {
  37009. source: "./media/characters/daiki/mana-dragon.svg",
  37010. extra: 763/420,
  37011. bottom: 97/860
  37012. }
  37013. },
  37014. },
  37015. [
  37016. {
  37017. name: "Normal",
  37018. height: math.unit(5 + 10/12, "feet"),
  37019. default: true
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37025. {
  37026. fullyEquippedFront: {
  37027. height: math.unit(3 + 1/12, "feet"),
  37028. weight: math.unit(24, "lb"),
  37029. name: "Fully Equipped (Front)",
  37030. image: {
  37031. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37032. extra: 687/605,
  37033. bottom: 18/705
  37034. }
  37035. },
  37036. fullyEquippedBack: {
  37037. height: math.unit(3 + 1/12, "feet"),
  37038. weight: math.unit(24, "lb"),
  37039. name: "Fully Equipped (Back)",
  37040. image: {
  37041. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37042. extra: 689/590,
  37043. bottom: 18/707
  37044. }
  37045. },
  37046. dailyWear: {
  37047. height: math.unit(3 + 1/12, "feet"),
  37048. weight: math.unit(24, "lb"),
  37049. name: "Daily Wear",
  37050. image: {
  37051. source: "./media/characters/tea-spot/daily-wear.svg",
  37052. extra: 701/620,
  37053. bottom: 21/722
  37054. }
  37055. },
  37056. maidWork: {
  37057. height: math.unit(3 + 1/12, "feet"),
  37058. weight: math.unit(24, "lb"),
  37059. name: "Maid Work",
  37060. image: {
  37061. source: "./media/characters/tea-spot/maid-work.svg",
  37062. extra: 693/609,
  37063. bottom: 15/708
  37064. }
  37065. },
  37066. },
  37067. [
  37068. {
  37069. name: "Normal",
  37070. height: math.unit(3 + 1/12, "feet"),
  37071. default: true
  37072. },
  37073. ]
  37074. ))
  37075. characterMakers.push(() => makeCharacter(
  37076. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37077. {
  37078. front: {
  37079. height: math.unit(175, "cm"),
  37080. weight: math.unit(75, "kg"),
  37081. name: "Front",
  37082. image: {
  37083. source: "./media/characters/chee/front.svg",
  37084. extra: 1796/1740,
  37085. bottom: 40/1836
  37086. }
  37087. },
  37088. },
  37089. [
  37090. {
  37091. name: "Micro-Micro",
  37092. height: math.unit(1, "nm")
  37093. },
  37094. {
  37095. name: "Micro-erst",
  37096. height: math.unit(1, "micrometer")
  37097. },
  37098. {
  37099. name: "Micro-er",
  37100. height: math.unit(1, "cm")
  37101. },
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(175, "cm"),
  37105. default: true
  37106. },
  37107. {
  37108. name: "Macro",
  37109. height: math.unit(100, "m")
  37110. },
  37111. {
  37112. name: "Macro-er",
  37113. height: math.unit(1, "km")
  37114. },
  37115. {
  37116. name: "Macro-erst",
  37117. height: math.unit(10, "km")
  37118. },
  37119. {
  37120. name: "Macro-Macro",
  37121. height: math.unit(100, "km")
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37127. {
  37128. front: {
  37129. height: math.unit(11 + 9/12, "feet"),
  37130. weight: math.unit(935, "lb"),
  37131. name: "Front",
  37132. image: {
  37133. source: "./media/characters/kingsley/front.svg",
  37134. extra: 1803/1674,
  37135. bottom: 127/1930
  37136. }
  37137. },
  37138. frontNude: {
  37139. height: math.unit(11 + 9/12, "feet"),
  37140. weight: math.unit(935, "lb"),
  37141. name: "Front (Nude)",
  37142. image: {
  37143. source: "./media/characters/kingsley/front-nude.svg",
  37144. extra: 1803/1674,
  37145. bottom: 127/1930
  37146. }
  37147. },
  37148. },
  37149. [
  37150. {
  37151. name: "Normal",
  37152. height: math.unit(11 + 9/12, "feet"),
  37153. default: true
  37154. },
  37155. ]
  37156. ))
  37157. characterMakers.push(() => makeCharacter(
  37158. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37159. {
  37160. side: {
  37161. height: math.unit(9, "feet"),
  37162. name: "Side",
  37163. image: {
  37164. source: "./media/characters/rymel/side.svg",
  37165. extra: 792/469,
  37166. bottom: 121/913
  37167. }
  37168. },
  37169. maw: {
  37170. height: math.unit(2.4, "meters"),
  37171. name: "Maw",
  37172. image: {
  37173. source: "./media/characters/rymel/maw.svg"
  37174. }
  37175. },
  37176. },
  37177. [
  37178. {
  37179. name: "House Drake",
  37180. height: math.unit(2, "feet")
  37181. },
  37182. {
  37183. name: "Reduced",
  37184. height: math.unit(4.5, "feet")
  37185. },
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(9, "feet"),
  37189. default: true
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37195. {
  37196. front: {
  37197. height: math.unit(1.74, "meters"),
  37198. weight: math.unit(55, "kg"),
  37199. name: "Front",
  37200. image: {
  37201. source: "./media/characters/rubus/front.svg",
  37202. extra: 1894/1742,
  37203. bottom: 44/1938
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(1.74, "meters"),
  37211. default: true
  37212. },
  37213. ]
  37214. ))
  37215. characterMakers.push(() => makeCharacter(
  37216. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37217. {
  37218. front: {
  37219. height: math.unit(5 + 2/12, "feet"),
  37220. weight: math.unit(112, "lb"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/cassie-kingston/front.svg",
  37224. extra: 1438/1390,
  37225. bottom: 47/1485
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(5 + 2/12, "feet"),
  37233. default: true
  37234. },
  37235. {
  37236. name: "Macro",
  37237. height: math.unit(128, "feet")
  37238. },
  37239. {
  37240. name: "Megamacro",
  37241. height: math.unit(2.56, "miles")
  37242. },
  37243. ]
  37244. ))
  37245. characterMakers.push(() => makeCharacter(
  37246. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37247. {
  37248. front: {
  37249. height: math.unit(7, "feet"),
  37250. name: "Front",
  37251. image: {
  37252. source: "./media/characters/fox/front.svg",
  37253. extra: 1798/1703,
  37254. bottom: 55/1853
  37255. }
  37256. },
  37257. back: {
  37258. height: math.unit(7, "feet"),
  37259. name: "Back",
  37260. image: {
  37261. source: "./media/characters/fox/back.svg",
  37262. extra: 1748/1649,
  37263. bottom: 32/1780
  37264. }
  37265. },
  37266. head: {
  37267. height: math.unit(1.95, "feet"),
  37268. name: "Head",
  37269. image: {
  37270. source: "./media/characters/fox/head.svg"
  37271. }
  37272. },
  37273. dick: {
  37274. height: math.unit(1.33, "feet"),
  37275. name: "Dick",
  37276. image: {
  37277. source: "./media/characters/fox/dick.svg"
  37278. }
  37279. },
  37280. foot: {
  37281. height: math.unit(1, "feet"),
  37282. name: "Foot",
  37283. image: {
  37284. source: "./media/characters/fox/foot.svg"
  37285. }
  37286. },
  37287. paw: {
  37288. height: math.unit(0.92, "feet"),
  37289. name: "Paw",
  37290. image: {
  37291. source: "./media/characters/fox/paw.svg"
  37292. }
  37293. },
  37294. },
  37295. [
  37296. {
  37297. name: "Small",
  37298. height: math.unit(3, "inches")
  37299. },
  37300. {
  37301. name: "\"Realistic\"",
  37302. height: math.unit(7, "feet")
  37303. },
  37304. {
  37305. name: "Normal",
  37306. height: math.unit(150, "feet"),
  37307. default: true
  37308. },
  37309. {
  37310. name: "BIG",
  37311. height: math.unit(1200, "feet")
  37312. },
  37313. {
  37314. name: "👀",
  37315. height: math.unit(5, "miles")
  37316. },
  37317. {
  37318. name: "👀👀👀",
  37319. height: math.unit(64, "miles")
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(625, "feet"),
  37328. name: "Front",
  37329. image: {
  37330. source: "./media/characters/asonja-rossa/front.svg",
  37331. extra: 1833/1686,
  37332. bottom: 24/1857
  37333. }
  37334. },
  37335. back: {
  37336. height: math.unit(625, "feet"),
  37337. name: "Back",
  37338. image: {
  37339. source: "./media/characters/asonja-rossa/back.svg",
  37340. extra: 1852/1753,
  37341. bottom: 26/1878
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Macro",
  37348. height: math.unit(625, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37355. {
  37356. side: {
  37357. height: math.unit(8, "feet"),
  37358. name: "Side",
  37359. image: {
  37360. source: "./media/characters/rezukii/side.svg",
  37361. extra: 979/542,
  37362. bottom: 87/1066
  37363. }
  37364. },
  37365. sitting: {
  37366. height: math.unit(14.6, "feet"),
  37367. name: "Sitting",
  37368. image: {
  37369. source: "./media/characters/rezukii/sitting.svg",
  37370. extra: 1023/813,
  37371. bottom: 45/1068
  37372. }
  37373. },
  37374. },
  37375. [
  37376. {
  37377. name: "Tiny",
  37378. height: math.unit(2, "feet")
  37379. },
  37380. {
  37381. name: "Smol",
  37382. height: math.unit(4, "feet")
  37383. },
  37384. {
  37385. name: "Normal",
  37386. height: math.unit(8, "feet"),
  37387. default: true
  37388. },
  37389. {
  37390. name: "Big",
  37391. height: math.unit(12, "feet")
  37392. },
  37393. {
  37394. name: "Macro",
  37395. height: math.unit(30, "feet")
  37396. },
  37397. ]
  37398. ))
  37399. characterMakers.push(() => makeCharacter(
  37400. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37401. {
  37402. front: {
  37403. height: math.unit(14, "feet"),
  37404. weight: math.unit(9.5, "tonnes"),
  37405. name: "Front",
  37406. image: {
  37407. source: "./media/characters/dawnheart/front.svg",
  37408. extra: 2792/2675,
  37409. bottom: 64/2856
  37410. }
  37411. },
  37412. },
  37413. [
  37414. {
  37415. name: "Normal",
  37416. height: math.unit(14, "feet"),
  37417. default: true
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37423. {
  37424. front: {
  37425. height: math.unit(1.7, "m"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/gladi/front.svg",
  37429. extra: 1460/1362,
  37430. bottom: 19/1479
  37431. }
  37432. },
  37433. back: {
  37434. height: math.unit(1.7, "m"),
  37435. name: "Back",
  37436. image: {
  37437. source: "./media/characters/gladi/back.svg",
  37438. extra: 1459/1357,
  37439. bottom: 12/1471
  37440. }
  37441. },
  37442. feral: {
  37443. height: math.unit(2.05, "m"),
  37444. name: "Feral",
  37445. image: {
  37446. source: "./media/characters/gladi/feral.svg",
  37447. extra: 821/557,
  37448. bottom: 91/912
  37449. }
  37450. },
  37451. },
  37452. [
  37453. {
  37454. name: "Shortest",
  37455. height: math.unit(70, "cm")
  37456. },
  37457. {
  37458. name: "Normal",
  37459. height: math.unit(1.7, "m")
  37460. },
  37461. {
  37462. name: "Macro",
  37463. height: math.unit(10, "m"),
  37464. default: true
  37465. },
  37466. {
  37467. name: "Tallest",
  37468. height: math.unit(200, "m")
  37469. },
  37470. ]
  37471. ))
  37472. characterMakers.push(() => makeCharacter(
  37473. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37474. {
  37475. front: {
  37476. height: math.unit(5 + 7/12, "feet"),
  37477. weight: math.unit(2, "tons"),
  37478. name: "Front",
  37479. image: {
  37480. source: "./media/characters/erdno/front.svg",
  37481. extra: 1234/1129,
  37482. bottom: 35/1269
  37483. }
  37484. },
  37485. angled: {
  37486. height: math.unit(5 + 7/12, "feet"),
  37487. weight: math.unit(2, "tons"),
  37488. name: "Angled",
  37489. image: {
  37490. source: "./media/characters/erdno/angled.svg",
  37491. extra: 1185/1139,
  37492. bottom: 36/1221
  37493. }
  37494. },
  37495. side: {
  37496. height: math.unit(5 + 7/12, "feet"),
  37497. weight: math.unit(2, "tons"),
  37498. name: "Side",
  37499. image: {
  37500. source: "./media/characters/erdno/side.svg",
  37501. extra: 1191/1144,
  37502. bottom: 40/1231
  37503. }
  37504. },
  37505. back: {
  37506. height: math.unit(5 + 7/12, "feet"),
  37507. weight: math.unit(2, "tons"),
  37508. name: "Back",
  37509. image: {
  37510. source: "./media/characters/erdno/back.svg",
  37511. extra: 1202/1146,
  37512. bottom: 17/1219
  37513. }
  37514. },
  37515. frontNsfw: {
  37516. height: math.unit(5 + 7/12, "feet"),
  37517. weight: math.unit(2, "tons"),
  37518. name: "Front (NSFW)",
  37519. image: {
  37520. source: "./media/characters/erdno/front-nsfw.svg",
  37521. extra: 1234/1129,
  37522. bottom: 35/1269
  37523. }
  37524. },
  37525. angledNsfw: {
  37526. height: math.unit(5 + 7/12, "feet"),
  37527. weight: math.unit(2, "tons"),
  37528. name: "Angled (NSFW)",
  37529. image: {
  37530. source: "./media/characters/erdno/angled-nsfw.svg",
  37531. extra: 1185/1139,
  37532. bottom: 36/1221
  37533. }
  37534. },
  37535. sideNsfw: {
  37536. height: math.unit(5 + 7/12, "feet"),
  37537. weight: math.unit(2, "tons"),
  37538. name: "Side (NSFW)",
  37539. image: {
  37540. source: "./media/characters/erdno/side-nsfw.svg",
  37541. extra: 1191/1144,
  37542. bottom: 40/1231
  37543. }
  37544. },
  37545. backNsfw: {
  37546. height: math.unit(5 + 7/12, "feet"),
  37547. weight: math.unit(2, "tons"),
  37548. name: "Back (NSFW)",
  37549. image: {
  37550. source: "./media/characters/erdno/back-nsfw.svg",
  37551. extra: 1202/1146,
  37552. bottom: 17/1219
  37553. }
  37554. },
  37555. frontHyper: {
  37556. height: math.unit(5 + 7/12, "feet"),
  37557. weight: math.unit(2, "tons"),
  37558. name: "Front (Hyper)",
  37559. image: {
  37560. source: "./media/characters/erdno/front-hyper.svg",
  37561. extra: 1298/1136,
  37562. bottom: 35/1333
  37563. }
  37564. },
  37565. },
  37566. [
  37567. {
  37568. name: "Normal",
  37569. height: math.unit(5 + 7/12, "feet"),
  37570. default: true
  37571. },
  37572. {
  37573. name: "Big",
  37574. height: math.unit(5.7, "meters")
  37575. },
  37576. {
  37577. name: "Macro",
  37578. height: math.unit(5.7, "kilometers")
  37579. },
  37580. {
  37581. name: "Megamacro",
  37582. height: math.unit(5.7, "earths")
  37583. },
  37584. ]
  37585. ))
  37586. characterMakers.push(() => makeCharacter(
  37587. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37588. {
  37589. front: {
  37590. height: math.unit(5 + 10/12, "feet"),
  37591. weight: math.unit(150, "lb"),
  37592. name: "Front",
  37593. image: {
  37594. source: "./media/characters/jamie/front.svg",
  37595. extra: 1908/1768,
  37596. bottom: 19/1927
  37597. }
  37598. },
  37599. },
  37600. [
  37601. {
  37602. name: "Minimum",
  37603. height: math.unit(2, "cm")
  37604. },
  37605. {
  37606. name: "Micro",
  37607. height: math.unit(3, "inches")
  37608. },
  37609. {
  37610. name: "Normal",
  37611. height: math.unit(5 + 10/12, "feet"),
  37612. default: true
  37613. },
  37614. {
  37615. name: "Macro",
  37616. height: math.unit(150, "feet")
  37617. },
  37618. {
  37619. name: "Megamacro",
  37620. height: math.unit(10000, "m")
  37621. },
  37622. ]
  37623. ))
  37624. characterMakers.push(() => makeCharacter(
  37625. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37626. {
  37627. front: {
  37628. height: math.unit(2, "meters"),
  37629. weight: math.unit(100, "kg"),
  37630. name: "Front",
  37631. image: {
  37632. source: "./media/characters/shiron/front.svg",
  37633. extra: 2103/1985,
  37634. bottom: 98/2201
  37635. }
  37636. },
  37637. back: {
  37638. height: math.unit(2, "meters"),
  37639. weight: math.unit(100, "kg"),
  37640. name: "Back",
  37641. image: {
  37642. source: "./media/characters/shiron/back.svg",
  37643. extra: 2110/2015,
  37644. bottom: 89/2199
  37645. }
  37646. },
  37647. hand: {
  37648. height: math.unit(0.96, "feet"),
  37649. name: "Hand",
  37650. image: {
  37651. source: "./media/characters/shiron/hand.svg"
  37652. }
  37653. },
  37654. foot: {
  37655. height: math.unit(1.464, "feet"),
  37656. name: "Foot",
  37657. image: {
  37658. source: "./media/characters/shiron/foot.svg"
  37659. }
  37660. },
  37661. },
  37662. [
  37663. {
  37664. name: "Normal",
  37665. height: math.unit(2, "meters")
  37666. },
  37667. {
  37668. name: "Macro",
  37669. height: math.unit(500, "meters"),
  37670. default: true
  37671. },
  37672. {
  37673. name: "Megamacro",
  37674. height: math.unit(20, "km")
  37675. },
  37676. ]
  37677. ))
  37678. characterMakers.push(() => makeCharacter(
  37679. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37680. {
  37681. front: {
  37682. height: math.unit(6, "feet"),
  37683. name: "Front",
  37684. image: {
  37685. source: "./media/characters/sam/front.svg",
  37686. extra: 849/826,
  37687. bottom: 19/868
  37688. }
  37689. },
  37690. },
  37691. [
  37692. {
  37693. name: "Normal",
  37694. height: math.unit(6, "feet"),
  37695. default: true
  37696. },
  37697. ]
  37698. ))
  37699. characterMakers.push(() => makeCharacter(
  37700. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37701. {
  37702. front: {
  37703. height: math.unit(8 + 4/12, "feet"),
  37704. weight: math.unit(122, "kg"),
  37705. name: "Front",
  37706. image: {
  37707. source: "./media/characters/namori-kurogawa/front.svg",
  37708. extra: 1894/1576,
  37709. bottom: 34/1928
  37710. }
  37711. },
  37712. },
  37713. [
  37714. {
  37715. name: "Normal",
  37716. height: math.unit(8 + 4/12, "feet"),
  37717. default: true
  37718. },
  37719. ]
  37720. ))
  37721. characterMakers.push(() => makeCharacter(
  37722. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37723. {
  37724. front: {
  37725. height: math.unit(9, "feet"),
  37726. weight: math.unit(621, "lb"),
  37727. name: "Front",
  37728. image: {
  37729. source: "./media/characters/unmru/front.svg",
  37730. extra: 1853/1747,
  37731. bottom: 73/1926
  37732. }
  37733. },
  37734. side: {
  37735. height: math.unit(9, "feet"),
  37736. weight: math.unit(621, "lb"),
  37737. name: "Side",
  37738. image: {
  37739. source: "./media/characters/unmru/side.svg",
  37740. extra: 1781/1671,
  37741. bottom: 127/1908
  37742. }
  37743. },
  37744. back: {
  37745. height: math.unit(9, "feet"),
  37746. weight: math.unit(621, "lb"),
  37747. name: "Back",
  37748. image: {
  37749. source: "./media/characters/unmru/back.svg",
  37750. extra: 1894/1765,
  37751. bottom: 75/1969
  37752. }
  37753. },
  37754. dick: {
  37755. height: math.unit(3, "feet"),
  37756. weight: math.unit(35, "lb"),
  37757. name: "Dick",
  37758. image: {
  37759. source: "./media/characters/unmru/dick.svg"
  37760. }
  37761. },
  37762. },
  37763. [
  37764. {
  37765. name: "Normal",
  37766. height: math.unit(9, "feet")
  37767. },
  37768. {
  37769. name: "Natural",
  37770. height: math.unit(27, "feet"),
  37771. default: true
  37772. },
  37773. {
  37774. name: "Giant",
  37775. height: math.unit(90, "feet")
  37776. },
  37777. {
  37778. name: "Kaiju",
  37779. height: math.unit(270, "feet")
  37780. },
  37781. {
  37782. name: "Macro",
  37783. height: math.unit(900, "feet")
  37784. },
  37785. {
  37786. name: "Macro+",
  37787. height: math.unit(2700, "feet")
  37788. },
  37789. {
  37790. name: "Megamacro",
  37791. height: math.unit(9000, "feet")
  37792. },
  37793. {
  37794. name: "City-Crushing",
  37795. height: math.unit(27000, "feet")
  37796. },
  37797. {
  37798. name: "Mountain-Mashing",
  37799. height: math.unit(90000, "feet")
  37800. },
  37801. {
  37802. name: "Earth-Eclipsing",
  37803. height: math.unit(2.7e8, "feet")
  37804. },
  37805. {
  37806. name: "Sol-Swallowing",
  37807. height: math.unit(9e10, "feet")
  37808. },
  37809. {
  37810. name: "Majoris-Munching",
  37811. height: math.unit(2.7e13, "feet")
  37812. },
  37813. ]
  37814. ))
  37815. characterMakers.push(() => makeCharacter(
  37816. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37817. {
  37818. front: {
  37819. height: math.unit(1, "inch"),
  37820. name: "Front",
  37821. image: {
  37822. source: "./media/characters/squeaks-mouse/front.svg",
  37823. extra: 352/308,
  37824. bottom: 25/377
  37825. }
  37826. },
  37827. },
  37828. [
  37829. {
  37830. name: "Micro",
  37831. height: math.unit(1, "inch"),
  37832. default: true
  37833. },
  37834. ]
  37835. ))
  37836. characterMakers.push(() => makeCharacter(
  37837. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37838. {
  37839. side: {
  37840. height: math.unit(35, "feet"),
  37841. name: "Side",
  37842. image: {
  37843. source: "./media/characters/sayko/side.svg",
  37844. extra: 1697/1021,
  37845. bottom: 82/1779
  37846. }
  37847. },
  37848. head: {
  37849. height: math.unit(16, "feet"),
  37850. name: "Head",
  37851. image: {
  37852. source: "./media/characters/sayko/head.svg"
  37853. }
  37854. },
  37855. forepaw: {
  37856. height: math.unit(7.85, "feet"),
  37857. name: "Forepaw",
  37858. image: {
  37859. source: "./media/characters/sayko/forepaw.svg"
  37860. }
  37861. },
  37862. hindpaw: {
  37863. height: math.unit(8.8, "feet"),
  37864. name: "Hindpaw",
  37865. image: {
  37866. source: "./media/characters/sayko/hindpaw.svg"
  37867. }
  37868. },
  37869. },
  37870. [
  37871. {
  37872. name: "Normal",
  37873. height: math.unit(35, "feet"),
  37874. default: true
  37875. },
  37876. {
  37877. name: "Colossus",
  37878. height: math.unit(100, "meters")
  37879. },
  37880. {
  37881. name: "\"Small\" Deity",
  37882. height: math.unit(1, "km")
  37883. },
  37884. {
  37885. name: "\"Large\" Deity",
  37886. height: math.unit(15, "km")
  37887. },
  37888. ]
  37889. ))
  37890. characterMakers.push(() => makeCharacter(
  37891. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37892. {
  37893. front: {
  37894. height: math.unit(6, "feet"),
  37895. weight: math.unit(250, "lb"),
  37896. name: "Front",
  37897. image: {
  37898. source: "./media/characters/mukiro/front.svg",
  37899. extra: 1368/1310,
  37900. bottom: 34/1402
  37901. }
  37902. },
  37903. },
  37904. [
  37905. {
  37906. name: "Normal",
  37907. height: math.unit(6, "feet"),
  37908. default: true
  37909. },
  37910. ]
  37911. ))
  37912. characterMakers.push(() => makeCharacter(
  37913. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37914. {
  37915. front: {
  37916. height: math.unit(12 + 4/12, "feet"),
  37917. name: "Front",
  37918. image: {
  37919. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37920. extra: 1346/1311,
  37921. bottom: 65/1411
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Base",
  37928. height: math.unit(12 + 4/12, "feet"),
  37929. default: true
  37930. },
  37931. {
  37932. name: "Macro",
  37933. height: math.unit(150, "feet")
  37934. },
  37935. {
  37936. name: "Mega",
  37937. height: math.unit(2, "miles")
  37938. },
  37939. {
  37940. name: "Demi God",
  37941. height: math.unit(4, "AU")
  37942. },
  37943. {
  37944. name: "God Size",
  37945. height: math.unit(1, "universe")
  37946. },
  37947. ]
  37948. ))
  37949. characterMakers.push(() => makeCharacter(
  37950. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37951. {
  37952. front: {
  37953. height: math.unit(3 + 3/12, "feet"),
  37954. weight: math.unit(88, "lb"),
  37955. name: "Front",
  37956. image: {
  37957. source: "./media/characters/trey/front.svg",
  37958. extra: 1815/1509,
  37959. bottom: 60/1875
  37960. }
  37961. },
  37962. },
  37963. [
  37964. {
  37965. name: "Normal",
  37966. height: math.unit(3 + 3/12, "feet"),
  37967. default: true
  37968. },
  37969. ]
  37970. ))
  37971. characterMakers.push(() => makeCharacter(
  37972. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37973. {
  37974. front: {
  37975. height: math.unit(4, "meters"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/adelonda/front.svg",
  37979. extra: 1077/982,
  37980. bottom: 39/1116
  37981. }
  37982. },
  37983. back: {
  37984. height: math.unit(4, "meters"),
  37985. name: "Back",
  37986. image: {
  37987. source: "./media/characters/adelonda/back.svg",
  37988. extra: 1105/1003,
  37989. bottom: 25/1130
  37990. }
  37991. },
  37992. feral: {
  37993. height: math.unit(40/1.5, "meters"),
  37994. name: "Feral",
  37995. image: {
  37996. source: "./media/characters/adelonda/feral.svg",
  37997. extra: 597/271,
  37998. bottom: 387/984
  37999. }
  38000. },
  38001. },
  38002. [
  38003. {
  38004. name: "Normal",
  38005. height: math.unit(4, "meters"),
  38006. default: true
  38007. },
  38008. ]
  38009. ))
  38010. characterMakers.push(() => makeCharacter(
  38011. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38012. {
  38013. front: {
  38014. height: math.unit(8 + 4/12, "feet"),
  38015. weight: math.unit(670, "lb"),
  38016. name: "Front",
  38017. image: {
  38018. source: "./media/characters/acadiel/front.svg",
  38019. extra: 1901/1595,
  38020. bottom: 142/2043
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(8 + 4/12, "feet"),
  38028. default: true
  38029. },
  38030. {
  38031. name: "Macro",
  38032. height: math.unit(200, "feet")
  38033. },
  38034. ]
  38035. ))
  38036. characterMakers.push(() => makeCharacter(
  38037. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38038. {
  38039. front: {
  38040. height: math.unit(6 + 2/12, "feet"),
  38041. weight: math.unit(185, "lb"),
  38042. name: "Front",
  38043. image: {
  38044. source: "./media/characters/kayne-ein/front.svg",
  38045. extra: 1780/1560,
  38046. bottom: 81/1861
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(6 + 2/12, "feet"),
  38054. default: true
  38055. },
  38056. {
  38057. name: "Transformation Stage",
  38058. height: math.unit(15, "feet")
  38059. },
  38060. {
  38061. name: "Macro",
  38062. height: math.unit(150, "feet")
  38063. },
  38064. {
  38065. name: "Earth's Shadow",
  38066. height: math.unit(6200, "miles")
  38067. },
  38068. {
  38069. name: "Universal Demon",
  38070. height: math.unit(28e9, "parsecs")
  38071. },
  38072. {
  38073. name: "Multiverse God",
  38074. height: math.unit(3, "multiverses")
  38075. },
  38076. ]
  38077. ))
  38078. characterMakers.push(() => makeCharacter(
  38079. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38080. {
  38081. front: {
  38082. height: math.unit(5 + 5/12, "feet"),
  38083. name: "Front",
  38084. image: {
  38085. source: "./media/characters/fawn/front.svg",
  38086. extra: 1873/1731,
  38087. bottom: 95/1968
  38088. }
  38089. },
  38090. back: {
  38091. height: math.unit(5 + 5/12, "feet"),
  38092. name: "Back",
  38093. image: {
  38094. source: "./media/characters/fawn/back.svg",
  38095. extra: 1813/1700,
  38096. bottom: 14/1827
  38097. }
  38098. },
  38099. hoof: {
  38100. height: math.unit(1.45, "feet"),
  38101. name: "Hoof",
  38102. image: {
  38103. source: "./media/characters/fawn/hoof.svg"
  38104. }
  38105. },
  38106. },
  38107. [
  38108. {
  38109. name: "Normal",
  38110. height: math.unit(5 + 5/12, "feet"),
  38111. default: true
  38112. },
  38113. ]
  38114. ))
  38115. characterMakers.push(() => makeCharacter(
  38116. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38117. {
  38118. front: {
  38119. height: math.unit(2 + 5/12, "feet"),
  38120. name: "Front",
  38121. image: {
  38122. source: "./media/characters/orion/front.svg",
  38123. extra: 1366/1304,
  38124. bottom: 43/1409
  38125. }
  38126. },
  38127. paw: {
  38128. height: math.unit(0.52, "feet"),
  38129. name: "Paw",
  38130. image: {
  38131. source: "./media/characters/orion/paw.svg"
  38132. }
  38133. },
  38134. },
  38135. [
  38136. {
  38137. name: "Normal",
  38138. height: math.unit(2 + 5/12, "feet"),
  38139. default: true
  38140. },
  38141. ]
  38142. ))
  38143. characterMakers.push(() => makeCharacter(
  38144. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38145. {
  38146. front: {
  38147. height: math.unit(5 + 10/12, "feet"),
  38148. name: "Front",
  38149. image: {
  38150. source: "./media/characters/vera/front.svg",
  38151. extra: 1680/1575,
  38152. bottom: 49/1729
  38153. }
  38154. },
  38155. back: {
  38156. height: math.unit(5 + 10/12, "feet"),
  38157. name: "Back",
  38158. image: {
  38159. source: "./media/characters/vera/back.svg",
  38160. extra: 1700/1588,
  38161. bottom: 18/1718
  38162. }
  38163. },
  38164. arcanine: {
  38165. height: math.unit(6 + 8/12, "feet"),
  38166. name: "Arcanine",
  38167. image: {
  38168. source: "./media/characters/vera/arcanine.svg",
  38169. extra: 1590/1511,
  38170. bottom: 71/1661
  38171. }
  38172. },
  38173. maw: {
  38174. height: math.unit(0.82, "feet"),
  38175. name: "Maw",
  38176. image: {
  38177. source: "./media/characters/vera/maw.svg"
  38178. }
  38179. },
  38180. mawArcanine: {
  38181. height: math.unit(0.97, "feet"),
  38182. name: "Maw (Arcanine)",
  38183. image: {
  38184. source: "./media/characters/vera/maw-arcanine.svg"
  38185. }
  38186. },
  38187. paw: {
  38188. height: math.unit(0.75, "feet"),
  38189. name: "Paw",
  38190. image: {
  38191. source: "./media/characters/vera/paw.svg"
  38192. }
  38193. },
  38194. pawprint: {
  38195. height: math.unit(0.52, "feet"),
  38196. name: "Pawprint",
  38197. image: {
  38198. source: "./media/characters/vera/pawprint.svg"
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(5 + 10/12, "feet"),
  38206. default: true
  38207. },
  38208. {
  38209. name: "Macro",
  38210. height: math.unit(75, "feet")
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38216. {
  38217. front: {
  38218. height: math.unit(4, "feet"),
  38219. weight: math.unit(40, "lb"),
  38220. name: "Front",
  38221. image: {
  38222. source: "./media/characters/orvan-rabbit/front.svg",
  38223. extra: 1896/1642,
  38224. bottom: 29/1925
  38225. }
  38226. },
  38227. },
  38228. [
  38229. {
  38230. name: "Normal",
  38231. height: math.unit(4, "feet"),
  38232. default: true
  38233. },
  38234. ]
  38235. ))
  38236. characterMakers.push(() => makeCharacter(
  38237. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38238. {
  38239. front: {
  38240. height: math.unit(6, "feet"),
  38241. weight: math.unit(168, "lb"),
  38242. name: "Front",
  38243. image: {
  38244. source: "./media/characters/lisa/front.svg",
  38245. extra: 2065/1867,
  38246. bottom: 46/2111
  38247. }
  38248. },
  38249. back: {
  38250. height: math.unit(6, "feet"),
  38251. weight: math.unit(168, "lb"),
  38252. name: "Back",
  38253. image: {
  38254. source: "./media/characters/lisa/back.svg",
  38255. extra: 1982/1838,
  38256. bottom: 29/2011
  38257. }
  38258. },
  38259. maw: {
  38260. height: math.unit(0.81, "feet"),
  38261. name: "Maw",
  38262. image: {
  38263. source: "./media/characters/lisa/maw.svg"
  38264. }
  38265. },
  38266. paw: {
  38267. height: math.unit(0.9, "feet"),
  38268. name: "Paw",
  38269. image: {
  38270. source: "./media/characters/lisa/paw.svg"
  38271. }
  38272. },
  38273. caribousune: {
  38274. height: math.unit(7 + 2/12, "feet"),
  38275. weight: math.unit(268, "lb"),
  38276. name: "Caribousune",
  38277. image: {
  38278. source: "./media/characters/lisa/caribousune.svg",
  38279. extra: 1843/1633,
  38280. bottom: 29/1872
  38281. }
  38282. },
  38283. frontCaribousune: {
  38284. height: math.unit(7 + 2/12, "feet"),
  38285. weight: math.unit(268, "lb"),
  38286. name: "Front (Caribousune)",
  38287. image: {
  38288. source: "./media/characters/lisa/front-caribousune.svg",
  38289. extra: 1818/1638,
  38290. bottom: 52/1870
  38291. }
  38292. },
  38293. sideCaribousune: {
  38294. height: math.unit(7 + 2/12, "feet"),
  38295. weight: math.unit(268, "lb"),
  38296. name: "Side (Caribousune)",
  38297. image: {
  38298. source: "./media/characters/lisa/side-caribousune.svg",
  38299. extra: 1851/1635,
  38300. bottom: 16/1867
  38301. }
  38302. },
  38303. backCaribousune: {
  38304. height: math.unit(7 + 2/12, "feet"),
  38305. weight: math.unit(268, "lb"),
  38306. name: "Back (Caribousune)",
  38307. image: {
  38308. source: "./media/characters/lisa/back-caribousune.svg",
  38309. extra: 1801/1604,
  38310. bottom: 44/1845
  38311. }
  38312. },
  38313. caribou: {
  38314. height: math.unit(7 + 2/12, "feet"),
  38315. weight: math.unit(268, "lb"),
  38316. name: "Caribou",
  38317. image: {
  38318. source: "./media/characters/lisa/caribou.svg",
  38319. extra: 1843/1633,
  38320. bottom: 29/1872
  38321. }
  38322. },
  38323. frontCaribou: {
  38324. height: math.unit(7 + 2/12, "feet"),
  38325. weight: math.unit(268, "lb"),
  38326. name: "Front (Caribou)",
  38327. image: {
  38328. source: "./media/characters/lisa/front-caribou.svg",
  38329. extra: 1818/1638,
  38330. bottom: 52/1870
  38331. }
  38332. },
  38333. sideCaribou: {
  38334. height: math.unit(7 + 2/12, "feet"),
  38335. weight: math.unit(268, "lb"),
  38336. name: "Side (Caribou)",
  38337. image: {
  38338. source: "./media/characters/lisa/side-caribou.svg",
  38339. extra: 1851/1635,
  38340. bottom: 16/1867
  38341. }
  38342. },
  38343. backCaribou: {
  38344. height: math.unit(7 + 2/12, "feet"),
  38345. weight: math.unit(268, "lb"),
  38346. name: "Back (Caribou)",
  38347. image: {
  38348. source: "./media/characters/lisa/back-caribou.svg",
  38349. extra: 1801/1604,
  38350. bottom: 44/1845
  38351. }
  38352. },
  38353. mawCaribou: {
  38354. height: math.unit(1.45, "feet"),
  38355. name: "Maw (Caribou)",
  38356. image: {
  38357. source: "./media/characters/lisa/maw-caribou.svg"
  38358. }
  38359. },
  38360. mawCaribousune: {
  38361. height: math.unit(1.45, "feet"),
  38362. name: "Maw (Caribousune)",
  38363. image: {
  38364. source: "./media/characters/lisa/maw-caribousune.svg"
  38365. }
  38366. },
  38367. pawCaribousune: {
  38368. height: math.unit(1.61, "feet"),
  38369. name: "Paw (Caribou)",
  38370. image: {
  38371. source: "./media/characters/lisa/paw-caribousune.svg"
  38372. }
  38373. },
  38374. },
  38375. [
  38376. {
  38377. name: "Normal",
  38378. height: math.unit(6, "feet")
  38379. },
  38380. {
  38381. name: "God Size",
  38382. height: math.unit(72, "feet"),
  38383. default: true
  38384. },
  38385. {
  38386. name: "Towering",
  38387. height: math.unit(288, "feet")
  38388. },
  38389. {
  38390. name: "City Size",
  38391. height: math.unit(48384, "feet")
  38392. },
  38393. {
  38394. name: "Continental",
  38395. height: math.unit(4200, "miles")
  38396. },
  38397. {
  38398. name: "Planet Eater",
  38399. height: math.unit(42, "earths")
  38400. },
  38401. {
  38402. name: "Star Swallower",
  38403. height: math.unit(42, "solarradii")
  38404. },
  38405. {
  38406. name: "System Swallower",
  38407. height: math.unit(84000, "AU")
  38408. },
  38409. {
  38410. name: "Galaxy Gobbler",
  38411. height: math.unit(42, "galaxies")
  38412. },
  38413. {
  38414. name: "Universe Devourer",
  38415. height: math.unit(42, "universes")
  38416. },
  38417. {
  38418. name: "Multiverse Muncher",
  38419. height: math.unit(42, "multiverses")
  38420. },
  38421. ]
  38422. ))
  38423. characterMakers.push(() => makeCharacter(
  38424. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38425. {
  38426. front: {
  38427. height: math.unit(36, "feet"),
  38428. name: "Front",
  38429. image: {
  38430. source: "./media/characters/shadow-rat/front.svg",
  38431. extra: 1845/1758,
  38432. bottom: 83/1928
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Macro",
  38439. height: math.unit(36, "feet"),
  38440. default: true
  38441. },
  38442. ]
  38443. ))
  38444. characterMakers.push(() => makeCharacter(
  38445. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38446. {
  38447. side: {
  38448. height: math.unit(8, "feet"),
  38449. weight: math.unit(2630, "lb"),
  38450. name: "Side",
  38451. image: {
  38452. source: "./media/characters/torallia/side.svg",
  38453. extra: 2164/2021,
  38454. bottom: 371/2535
  38455. }
  38456. },
  38457. },
  38458. [
  38459. {
  38460. name: "Mortal Interaction",
  38461. height: math.unit(8, "feet")
  38462. },
  38463. {
  38464. name: "Natural",
  38465. height: math.unit(24, "feet"),
  38466. default: true
  38467. },
  38468. {
  38469. name: "Giant",
  38470. height: math.unit(80, "feet")
  38471. },
  38472. {
  38473. name: "Kaiju",
  38474. height: math.unit(240, "feet")
  38475. },
  38476. {
  38477. name: "Macro",
  38478. height: math.unit(800, "feet")
  38479. },
  38480. {
  38481. name: "Macro+",
  38482. height: math.unit(2400, "feet")
  38483. },
  38484. {
  38485. name: "Macro++",
  38486. height: math.unit(8000, "feet")
  38487. },
  38488. {
  38489. name: "City-Crushing",
  38490. height: math.unit(24000, "feet")
  38491. },
  38492. {
  38493. name: "Mountain-Mashing",
  38494. height: math.unit(80000, "feet")
  38495. },
  38496. {
  38497. name: "District Demolisher",
  38498. height: math.unit(240000, "feet")
  38499. },
  38500. {
  38501. name: "Tri-County Terror",
  38502. height: math.unit(800000, "feet")
  38503. },
  38504. {
  38505. name: "State Smasher",
  38506. height: math.unit(2.4e6, "feet")
  38507. },
  38508. {
  38509. name: "Nation Nemesis",
  38510. height: math.unit(8e6, "feet")
  38511. },
  38512. {
  38513. name: "Continent Cracker",
  38514. height: math.unit(2.4e7, "feet")
  38515. },
  38516. {
  38517. name: "Planet-Pillaging",
  38518. height: math.unit(8e7, "feet")
  38519. },
  38520. {
  38521. name: "Earth-Eclipsing",
  38522. height: math.unit(2.4e8, "feet")
  38523. },
  38524. {
  38525. name: "Jovian-Jostling",
  38526. height: math.unit(8e8, "feet")
  38527. },
  38528. {
  38529. name: "Gas Giant Gulper",
  38530. height: math.unit(2.4e9, "feet")
  38531. },
  38532. {
  38533. name: "Astral Annihilator",
  38534. height: math.unit(8e9, "feet")
  38535. },
  38536. {
  38537. name: "Celestial Conqueror",
  38538. height: math.unit(2.4e10, "feet")
  38539. },
  38540. {
  38541. name: "Sol-Swallowing",
  38542. height: math.unit(8e10, "feet")
  38543. },
  38544. {
  38545. name: "Hunter of the Heavens",
  38546. height: math.unit(2.4e13, "feet")
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(6 + 8/12, "feet"),
  38555. name: "Front",
  38556. image: {
  38557. source: "./media/characters/rebecca-pawlson/front.svg",
  38558. extra: 1737/1596,
  38559. bottom: 107/1844
  38560. }
  38561. },
  38562. back: {
  38563. height: math.unit(6 + 8/12, "feet"),
  38564. name: "Back",
  38565. image: {
  38566. source: "./media/characters/rebecca-pawlson/back.svg",
  38567. extra: 1702/1523,
  38568. bottom: 86/1788
  38569. }
  38570. },
  38571. },
  38572. [
  38573. {
  38574. name: "Normal",
  38575. height: math.unit(6 + 8/12, "feet")
  38576. },
  38577. {
  38578. name: "Mini Macro",
  38579. height: math.unit(10, "feet"),
  38580. default: true
  38581. },
  38582. {
  38583. name: "Macro",
  38584. height: math.unit(100, "feet")
  38585. },
  38586. {
  38587. name: "Mega Macro",
  38588. height: math.unit(2500, "feet")
  38589. },
  38590. {
  38591. name: "Giga Macro",
  38592. height: math.unit(50, "miles")
  38593. },
  38594. ]
  38595. ))
  38596. characterMakers.push(() => makeCharacter(
  38597. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38598. {
  38599. front: {
  38600. height: math.unit(7 + 6/12, "feet"),
  38601. weight: math.unit(600, "lb"),
  38602. name: "Front",
  38603. image: {
  38604. source: "./media/characters/moxie-nova/front.svg",
  38605. extra: 1734/1652,
  38606. bottom: 41/1775
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Normal",
  38613. height: math.unit(7 + 6/12, "feet"),
  38614. default: true
  38615. },
  38616. ]
  38617. ))
  38618. characterMakers.push(() => makeCharacter(
  38619. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38620. {
  38621. goat: {
  38622. height: math.unit(4, "feet"),
  38623. weight: math.unit(180, "lb"),
  38624. name: "Goat",
  38625. image: {
  38626. source: "./media/characters/tiffany/goat.svg",
  38627. extra: 1845/1595,
  38628. bottom: 106/1951
  38629. }
  38630. },
  38631. front: {
  38632. height: math.unit(5, "feet"),
  38633. weight: math.unit(150, "lb"),
  38634. name: "Foxcoon",
  38635. image: {
  38636. source: "./media/characters/tiffany/foxcoon.svg",
  38637. extra: 1941/1845,
  38638. bottom: 58/1999
  38639. }
  38640. },
  38641. },
  38642. [
  38643. {
  38644. name: "Normal",
  38645. height: math.unit(5, "feet"),
  38646. default: true
  38647. },
  38648. ]
  38649. ))
  38650. characterMakers.push(() => makeCharacter(
  38651. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38652. {
  38653. front: {
  38654. height: math.unit(8, "feet"),
  38655. weight: math.unit(300, "lb"),
  38656. name: "Front",
  38657. image: {
  38658. source: "./media/characters/raxinath/front.svg",
  38659. extra: 1407/1309,
  38660. bottom: 39/1446
  38661. }
  38662. },
  38663. back: {
  38664. height: math.unit(8, "feet"),
  38665. weight: math.unit(300, "lb"),
  38666. name: "Back",
  38667. image: {
  38668. source: "./media/characters/raxinath/back.svg",
  38669. extra: 1405/1315,
  38670. bottom: 9/1414
  38671. }
  38672. },
  38673. },
  38674. [
  38675. {
  38676. name: "Speck",
  38677. height: math.unit(0.5, "nm")
  38678. },
  38679. {
  38680. name: "Micro",
  38681. height: math.unit(3, "inches")
  38682. },
  38683. {
  38684. name: "Kobold",
  38685. height: math.unit(3, "feet")
  38686. },
  38687. {
  38688. name: "Normal",
  38689. height: math.unit(8, "feet"),
  38690. default: true
  38691. },
  38692. {
  38693. name: "Giant",
  38694. height: math.unit(50, "feet")
  38695. },
  38696. {
  38697. name: "Macro",
  38698. height: math.unit(1000, "feet")
  38699. },
  38700. {
  38701. name: "Megamacro",
  38702. height: math.unit(1, "mile")
  38703. },
  38704. ]
  38705. ))
  38706. characterMakers.push(() => makeCharacter(
  38707. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38708. {
  38709. front: {
  38710. height: math.unit(10, "feet"),
  38711. weight: math.unit(1442, "lb"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/mal-dragon/front.svg",
  38715. extra: 1515/1444,
  38716. bottom: 113/1628
  38717. }
  38718. },
  38719. back: {
  38720. height: math.unit(10, "feet"),
  38721. weight: math.unit(1442, "lb"),
  38722. name: "Back",
  38723. image: {
  38724. source: "./media/characters/mal-dragon/back.svg",
  38725. extra: 1527/1434,
  38726. bottom: 25/1552
  38727. }
  38728. },
  38729. },
  38730. [
  38731. {
  38732. name: "Mortal Interaction",
  38733. height: math.unit(10, "feet"),
  38734. default: true
  38735. },
  38736. {
  38737. name: "Large",
  38738. height: math.unit(30, "feet")
  38739. },
  38740. {
  38741. name: "Kaiju",
  38742. height: math.unit(300, "feet")
  38743. },
  38744. {
  38745. name: "Megamacro",
  38746. height: math.unit(10000, "feet")
  38747. },
  38748. {
  38749. name: "Continent Cracker",
  38750. height: math.unit(30000000, "feet")
  38751. },
  38752. {
  38753. name: "Sol-Swallowing",
  38754. height: math.unit(1e11, "feet")
  38755. },
  38756. {
  38757. name: "Light Universal",
  38758. height: math.unit(5, "universes")
  38759. },
  38760. {
  38761. name: "Universe Atoms",
  38762. height: math.unit(1.829e9, "universes")
  38763. },
  38764. {
  38765. name: "Light Multiversal",
  38766. height: math.unit(5, "multiverses")
  38767. },
  38768. {
  38769. name: "Multiverse Atoms",
  38770. height: math.unit(1.829e9, "multiverses")
  38771. },
  38772. {
  38773. name: "Fabric of Time",
  38774. height: math.unit(1e262, "multiverses")
  38775. },
  38776. ]
  38777. ))
  38778. characterMakers.push(() => makeCharacter(
  38779. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38780. {
  38781. front: {
  38782. height: math.unit(9, "feet"),
  38783. weight: math.unit(1050, "lb"),
  38784. name: "Front",
  38785. image: {
  38786. source: "./media/characters/tabitha/front.svg",
  38787. extra: 2083/1994,
  38788. bottom: 68/2151
  38789. }
  38790. },
  38791. },
  38792. [
  38793. {
  38794. name: "Baseline",
  38795. height: math.unit(9, "feet"),
  38796. default: true
  38797. },
  38798. {
  38799. name: "Giant",
  38800. height: math.unit(90, "feet")
  38801. },
  38802. {
  38803. name: "Macro",
  38804. height: math.unit(900, "feet")
  38805. },
  38806. {
  38807. name: "Megamacro",
  38808. height: math.unit(9000, "feet")
  38809. },
  38810. {
  38811. name: "City-Crushing",
  38812. height: math.unit(27000, "feet")
  38813. },
  38814. {
  38815. name: "Mountain-Mashing",
  38816. height: math.unit(90000, "feet")
  38817. },
  38818. {
  38819. name: "Nation Nemesis",
  38820. height: math.unit(9e6, "feet")
  38821. },
  38822. {
  38823. name: "Continent Cracker",
  38824. height: math.unit(27e6, "feet")
  38825. },
  38826. {
  38827. name: "Earth-Eclipsing",
  38828. height: math.unit(2.7e8, "feet")
  38829. },
  38830. {
  38831. name: "Gas Giant Gulper",
  38832. height: math.unit(2.7e9, "feet")
  38833. },
  38834. {
  38835. name: "Sol-Swallowing",
  38836. height: math.unit(9e10, "feet")
  38837. },
  38838. {
  38839. name: "Galaxy Gulper",
  38840. height: math.unit(9, "galaxies")
  38841. },
  38842. {
  38843. name: "Cosmos Churner",
  38844. height: math.unit(9, "universes")
  38845. },
  38846. ]
  38847. ))
  38848. characterMakers.push(() => makeCharacter(
  38849. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38850. {
  38851. front: {
  38852. height: math.unit(160, "cm"),
  38853. weight: math.unit(55, "kg"),
  38854. name: "Front",
  38855. image: {
  38856. source: "./media/characters/tow/front.svg",
  38857. extra: 1751/1722,
  38858. bottom: 74/1825
  38859. }
  38860. },
  38861. },
  38862. [
  38863. {
  38864. name: "Norm",
  38865. height: math.unit(160, "cm")
  38866. },
  38867. {
  38868. name: "Casual",
  38869. height: math.unit(3200, "m"),
  38870. default: true
  38871. },
  38872. {
  38873. name: "Show-Off",
  38874. height: math.unit(160, "km")
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38880. {
  38881. front: {
  38882. height: math.unit(7 + 11/12, "feet"),
  38883. weight: math.unit(342.8, "lb"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/vivian-orca-dragon/front.svg",
  38887. extra: 1890/1865,
  38888. bottom: 28/1918
  38889. }
  38890. },
  38891. },
  38892. [
  38893. {
  38894. name: "Micro",
  38895. height: math.unit(5, "inches")
  38896. },
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(7 + 11/12, "feet"),
  38900. default: true
  38901. },
  38902. {
  38903. name: "Macro",
  38904. height: math.unit(395 + 7/12, "feet")
  38905. },
  38906. ]
  38907. ))
  38908. characterMakers.push(() => makeCharacter(
  38909. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38910. {
  38911. side: {
  38912. height: math.unit(10, "feet"),
  38913. weight: math.unit(1442, "lb"),
  38914. name: "Side",
  38915. image: {
  38916. source: "./media/characters/lotherakon/side.svg",
  38917. extra: 1604/1497,
  38918. bottom: 89/1693
  38919. }
  38920. },
  38921. },
  38922. [
  38923. {
  38924. name: "Mortal Interaction",
  38925. height: math.unit(10, "feet")
  38926. },
  38927. {
  38928. name: "Large",
  38929. height: math.unit(30, "feet"),
  38930. default: true
  38931. },
  38932. {
  38933. name: "Giant",
  38934. height: math.unit(100, "feet")
  38935. },
  38936. {
  38937. name: "Kaiju",
  38938. height: math.unit(300, "feet")
  38939. },
  38940. {
  38941. name: "Macro",
  38942. height: math.unit(1000, "feet")
  38943. },
  38944. {
  38945. name: "Macro+",
  38946. height: math.unit(3000, "feet")
  38947. },
  38948. {
  38949. name: "Megamacro",
  38950. height: math.unit(10000, "feet")
  38951. },
  38952. {
  38953. name: "City-Crushing",
  38954. height: math.unit(30000, "feet")
  38955. },
  38956. {
  38957. name: "Continent Cracker",
  38958. height: math.unit(30e6, "feet")
  38959. },
  38960. {
  38961. name: "Earth Eclipsing",
  38962. height: math.unit(3e8, "feet")
  38963. },
  38964. {
  38965. name: "Gas Giant Gulper",
  38966. height: math.unit(3e9, "feet")
  38967. },
  38968. {
  38969. name: "Sol-Swallowing",
  38970. height: math.unit(1e11, "feet")
  38971. },
  38972. {
  38973. name: "System Swallower",
  38974. height: math.unit(3e14, "feet")
  38975. },
  38976. {
  38977. name: "Galaxy Gulper",
  38978. height: math.unit(10, "galaxies")
  38979. },
  38980. {
  38981. name: "Light Universal",
  38982. height: math.unit(5, "universes")
  38983. },
  38984. {
  38985. name: "Universe Palm",
  38986. height: math.unit(20, "universes")
  38987. },
  38988. {
  38989. name: "Light Multiversal",
  38990. height: math.unit(5, "multiverses")
  38991. },
  38992. {
  38993. name: "Multiverse Palm",
  38994. height: math.unit(20, "multiverses")
  38995. },
  38996. {
  38997. name: "Inferno Incarnate",
  38998. height: math.unit(1e7, "multiverses")
  38999. },
  39000. ]
  39001. ))
  39002. characterMakers.push(() => makeCharacter(
  39003. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39004. {
  39005. front: {
  39006. height: math.unit(8, "feet"),
  39007. weight: math.unit(1200, "lb"),
  39008. name: "Front",
  39009. image: {
  39010. source: "./media/characters/malithee/front.svg",
  39011. extra: 1675/1640,
  39012. bottom: 162/1837
  39013. }
  39014. },
  39015. },
  39016. [
  39017. {
  39018. name: "Mortal Interaction",
  39019. height: math.unit(8, "feet"),
  39020. default: true
  39021. },
  39022. {
  39023. name: "Large",
  39024. height: math.unit(24, "feet")
  39025. },
  39026. {
  39027. name: "Kaiju",
  39028. height: math.unit(240, "feet")
  39029. },
  39030. {
  39031. name: "Megamacro",
  39032. height: math.unit(8000, "feet")
  39033. },
  39034. {
  39035. name: "Continent Cracker",
  39036. height: math.unit(24e6, "feet")
  39037. },
  39038. {
  39039. name: "Earth-Eclipsing",
  39040. height: math.unit(2.4e8, "feet")
  39041. },
  39042. {
  39043. name: "Sol-Swallowing",
  39044. height: math.unit(8e10, "feet")
  39045. },
  39046. {
  39047. name: "Galaxy Gulper",
  39048. height: math.unit(8, "galaxies")
  39049. },
  39050. {
  39051. name: "Light Universal",
  39052. height: math.unit(4, "universes")
  39053. },
  39054. {
  39055. name: "Universe Atoms",
  39056. height: math.unit(1.829e9, "universes")
  39057. },
  39058. {
  39059. name: "Light Multiversal",
  39060. height: math.unit(4, "multiverses")
  39061. },
  39062. {
  39063. name: "Multiverse Atoms",
  39064. height: math.unit(1.829e9, "multiverses")
  39065. },
  39066. {
  39067. name: "Nigh-Omnipresence",
  39068. height: math.unit(8e261, "multiverses")
  39069. },
  39070. ]
  39071. ))
  39072. characterMakers.push(() => makeCharacter(
  39073. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39074. {
  39075. front: {
  39076. height: math.unit(10, "feet"),
  39077. weight: math.unit(1500, "lb"),
  39078. name: "Front",
  39079. image: {
  39080. source: "./media/characters/miles-thestia/front.svg",
  39081. extra: 1812/1727,
  39082. bottom: 86/1898
  39083. }
  39084. },
  39085. back: {
  39086. height: math.unit(10, "feet"),
  39087. weight: math.unit(1500, "lb"),
  39088. name: "Back",
  39089. image: {
  39090. source: "./media/characters/miles-thestia/back.svg",
  39091. extra: 1799/1690,
  39092. bottom: 47/1846
  39093. }
  39094. },
  39095. frontNsfw: {
  39096. height: math.unit(10, "feet"),
  39097. weight: math.unit(1500, "lb"),
  39098. name: "Front (NSFW)",
  39099. image: {
  39100. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39101. extra: 1812/1727,
  39102. bottom: 86/1898
  39103. }
  39104. },
  39105. },
  39106. [
  39107. {
  39108. name: "Mini-Macro",
  39109. height: math.unit(10, "feet"),
  39110. default: true
  39111. },
  39112. ]
  39113. ))
  39114. characterMakers.push(() => makeCharacter(
  39115. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39116. {
  39117. front: {
  39118. height: math.unit(25, "feet"),
  39119. name: "Front",
  39120. image: {
  39121. source: "./media/characters/titan-s-wulf/front.svg",
  39122. extra: 1560/1484,
  39123. bottom: 76/1636
  39124. }
  39125. },
  39126. },
  39127. [
  39128. {
  39129. name: "Smallest",
  39130. height: math.unit(25, "feet"),
  39131. default: true
  39132. },
  39133. {
  39134. name: "Normal",
  39135. height: math.unit(200, "feet")
  39136. },
  39137. {
  39138. name: "Macro",
  39139. height: math.unit(200000, "feet")
  39140. },
  39141. {
  39142. name: "Multiversal Original",
  39143. height: math.unit(10000, "multiverses")
  39144. },
  39145. ]
  39146. ))
  39147. characterMakers.push(() => makeCharacter(
  39148. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39149. {
  39150. front: {
  39151. height: math.unit(8, "feet"),
  39152. weight: math.unit(553, "lb"),
  39153. name: "Front",
  39154. image: {
  39155. source: "./media/characters/tawendeh/front.svg",
  39156. extra: 2365/2268,
  39157. bottom: 83/2448
  39158. }
  39159. },
  39160. frontClothed: {
  39161. height: math.unit(8, "feet"),
  39162. weight: math.unit(553, "lb"),
  39163. name: "Front (Clothed)",
  39164. image: {
  39165. source: "./media/characters/tawendeh/front-clothed.svg",
  39166. extra: 2365/2268,
  39167. bottom: 83/2448
  39168. }
  39169. },
  39170. back: {
  39171. height: math.unit(8, "feet"),
  39172. weight: math.unit(553, "lb"),
  39173. name: "Back",
  39174. image: {
  39175. source: "./media/characters/tawendeh/back.svg",
  39176. extra: 2397/2294,
  39177. bottom: 42/2439
  39178. }
  39179. },
  39180. },
  39181. [
  39182. {
  39183. name: "Mortal Interaction",
  39184. height: math.unit(8, "feet"),
  39185. default: true
  39186. },
  39187. {
  39188. name: "Giant",
  39189. height: math.unit(80, "feet")
  39190. },
  39191. {
  39192. name: "Macro",
  39193. height: math.unit(800, "feet")
  39194. },
  39195. {
  39196. name: "Megamacro",
  39197. height: math.unit(8000, "feet")
  39198. },
  39199. {
  39200. name: "City-Crushing",
  39201. height: math.unit(24000, "feet")
  39202. },
  39203. {
  39204. name: "Mountain-Mashing",
  39205. height: math.unit(80000, "feet")
  39206. },
  39207. {
  39208. name: "Nation Nemesis",
  39209. height: math.unit(8e6, "feet")
  39210. },
  39211. {
  39212. name: "Continent Cracker",
  39213. height: math.unit(24e6, "feet")
  39214. },
  39215. {
  39216. name: "Earth-Eclipsing",
  39217. height: math.unit(2.4e8, "feet")
  39218. },
  39219. {
  39220. name: "Gas Giant Gulper",
  39221. height: math.unit(2.4e9, "feet")
  39222. },
  39223. {
  39224. name: "Sol-Swallowing",
  39225. height: math.unit(8e10, "feet")
  39226. },
  39227. {
  39228. name: "Galaxy Gulper",
  39229. height: math.unit(8, "galaxies")
  39230. },
  39231. {
  39232. name: "Cosmos Churner",
  39233. height: math.unit(8, "universes")
  39234. },
  39235. {
  39236. name: "Omnipotent Otter",
  39237. height: math.unit(80, "universes")
  39238. },
  39239. ]
  39240. ))
  39241. characterMakers.push(() => makeCharacter(
  39242. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39243. {
  39244. front: {
  39245. height: math.unit(2.6, "meters"),
  39246. weight: math.unit(900, "kg"),
  39247. name: "Front",
  39248. image: {
  39249. source: "./media/characters/neesha/front.svg",
  39250. extra: 1803/1653,
  39251. bottom: 128/1931
  39252. }
  39253. },
  39254. },
  39255. [
  39256. {
  39257. name: "Normal",
  39258. height: math.unit(2.6, "meters"),
  39259. default: true
  39260. },
  39261. {
  39262. name: "Macro",
  39263. height: math.unit(50, "meters")
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39269. {
  39270. front: {
  39271. height: math.unit(5, "feet"),
  39272. weight: math.unit(185, "lb"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/kyera/front.svg",
  39276. extra: 1875/1790,
  39277. bottom: 96/1971
  39278. }
  39279. },
  39280. },
  39281. [
  39282. {
  39283. name: "Normal",
  39284. height: math.unit(5, "feet"),
  39285. default: true
  39286. },
  39287. ]
  39288. ))
  39289. characterMakers.push(() => makeCharacter(
  39290. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39291. {
  39292. front: {
  39293. height: math.unit(7 + 6/12, "feet"),
  39294. weight: math.unit(540, "lb"),
  39295. name: "Front",
  39296. image: {
  39297. source: "./media/characters/yuko/front.svg",
  39298. extra: 1282/1222,
  39299. bottom: 101/1383
  39300. }
  39301. },
  39302. frontClothed: {
  39303. height: math.unit(7 + 6/12, "feet"),
  39304. weight: math.unit(540, "lb"),
  39305. name: "Front (Clothed)",
  39306. image: {
  39307. source: "./media/characters/yuko/front-clothed.svg",
  39308. extra: 1282/1222,
  39309. bottom: 101/1383
  39310. }
  39311. },
  39312. },
  39313. [
  39314. {
  39315. name: "Normal",
  39316. height: math.unit(7 + 6/12, "feet"),
  39317. default: true
  39318. },
  39319. {
  39320. name: "Macro",
  39321. height: math.unit(26 + 9/12, "feet")
  39322. },
  39323. {
  39324. name: "Megamacro",
  39325. height: math.unit(300, "feet")
  39326. },
  39327. {
  39328. name: "Gigamacro",
  39329. height: math.unit(5000, "feet")
  39330. },
  39331. {
  39332. name: "Planetary",
  39333. height: math.unit(10000, "miles")
  39334. },
  39335. ]
  39336. ))
  39337. characterMakers.push(() => makeCharacter(
  39338. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39339. {
  39340. front: {
  39341. height: math.unit(8 + 2/12, "feet"),
  39342. weight: math.unit(600, "lb"),
  39343. name: "Front",
  39344. image: {
  39345. source: "./media/characters/deam-nitrel/front.svg",
  39346. extra: 1308/1234,
  39347. bottom: 125/1433
  39348. }
  39349. },
  39350. },
  39351. [
  39352. {
  39353. name: "Normal",
  39354. height: math.unit(8 + 2/12, "feet"),
  39355. default: true
  39356. },
  39357. ]
  39358. ))
  39359. characterMakers.push(() => makeCharacter(
  39360. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39361. {
  39362. front: {
  39363. height: math.unit(6.1, "feet"),
  39364. weight: math.unit(180, "lb"),
  39365. name: "Front",
  39366. image: {
  39367. source: "./media/characters/skyress/front.svg",
  39368. extra: 1045/915,
  39369. bottom: 28/1073
  39370. }
  39371. },
  39372. maw: {
  39373. height: math.unit(1, "feet"),
  39374. name: "Maw",
  39375. image: {
  39376. source: "./media/characters/skyress/maw.svg"
  39377. }
  39378. },
  39379. },
  39380. [
  39381. {
  39382. name: "Normal",
  39383. height: math.unit(6.1, "feet"),
  39384. default: true
  39385. },
  39386. {
  39387. name: "Macro",
  39388. height: math.unit(200, "feet")
  39389. },
  39390. ]
  39391. ))
  39392. characterMakers.push(() => makeCharacter(
  39393. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39394. {
  39395. front: {
  39396. height: math.unit(4 + 2/12, "feet"),
  39397. weight: math.unit(40, "kg"),
  39398. name: "Front",
  39399. image: {
  39400. source: "./media/characters/amethyst-jones/front.svg",
  39401. extra: 1220/1150,
  39402. bottom: 101/1321
  39403. }
  39404. },
  39405. },
  39406. [
  39407. {
  39408. name: "Normal",
  39409. height: math.unit(4 + 2/12, "feet"),
  39410. default: true
  39411. },
  39412. ]
  39413. ))
  39414. characterMakers.push(() => makeCharacter(
  39415. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39416. {
  39417. front: {
  39418. height: math.unit(1.7, "m"),
  39419. weight: math.unit(135, "lb"),
  39420. name: "Front",
  39421. image: {
  39422. source: "./media/characters/jade/front.svg",
  39423. extra: 1818/1767,
  39424. bottom: 32/1850
  39425. }
  39426. },
  39427. back: {
  39428. height: math.unit(1.7, "m"),
  39429. weight: math.unit(135, "lb"),
  39430. name: "Back",
  39431. image: {
  39432. source: "./media/characters/jade/back.svg",
  39433. extra: 1869/1809,
  39434. bottom: 35/1904
  39435. }
  39436. },
  39437. hand: {
  39438. height: math.unit(0.24, "m"),
  39439. name: "Hand",
  39440. image: {
  39441. source: "./media/characters/jade/hand.svg"
  39442. }
  39443. },
  39444. foot: {
  39445. height: math.unit(0.263, "m"),
  39446. name: "Foot",
  39447. image: {
  39448. source: "./media/characters/jade/foot.svg"
  39449. }
  39450. },
  39451. dick: {
  39452. height: math.unit(0.47, "m"),
  39453. name: "Dick",
  39454. image: {
  39455. source: "./media/characters/jade/dick.svg"
  39456. }
  39457. },
  39458. },
  39459. [
  39460. {
  39461. name: "Micro",
  39462. height: math.unit(22, "cm")
  39463. },
  39464. {
  39465. name: "Normal",
  39466. height: math.unit(1.7, "m"),
  39467. default: true
  39468. },
  39469. {
  39470. name: "Macro",
  39471. height: math.unit(152, "m")
  39472. },
  39473. ]
  39474. ))
  39475. characterMakers.push(() => makeCharacter(
  39476. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39477. {
  39478. front: {
  39479. height: math.unit(100, "miles"),
  39480. weight: math.unit(20000, "tons"),
  39481. name: "Front",
  39482. image: {
  39483. source: "./media/characters/cookie/front.svg",
  39484. extra: 1125/1070,
  39485. bottom: 30/1155
  39486. }
  39487. },
  39488. },
  39489. [
  39490. {
  39491. name: "Big",
  39492. height: math.unit(50, "feet")
  39493. },
  39494. {
  39495. name: "Macro",
  39496. height: math.unit(100, "miles"),
  39497. default: true
  39498. },
  39499. {
  39500. name: "Megamacro",
  39501. height: math.unit(90000, "miles")
  39502. },
  39503. ]
  39504. ))
  39505. characterMakers.push(() => makeCharacter(
  39506. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39507. {
  39508. front: {
  39509. height: math.unit(6, "feet"),
  39510. weight: math.unit(145, "lb"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/farzian/front.svg",
  39514. extra: 1902/1693,
  39515. bottom: 108/2010
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Macro",
  39522. height: math.unit(500, "feet"),
  39523. default: true
  39524. },
  39525. ]
  39526. ))
  39527. characterMakers.push(() => makeCharacter(
  39528. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39529. {
  39530. front: {
  39531. height: math.unit(3 + 6/12, "feet"),
  39532. weight: math.unit(50, "lb"),
  39533. name: "Front",
  39534. image: {
  39535. source: "./media/characters/kimberly-tilson/front.svg",
  39536. extra: 1400/1322,
  39537. bottom: 36/1436
  39538. }
  39539. },
  39540. back: {
  39541. height: math.unit(3 + 6/12, "feet"),
  39542. weight: math.unit(50, "lb"),
  39543. name: "Back",
  39544. image: {
  39545. source: "./media/characters/kimberly-tilson/back.svg",
  39546. extra: 1370/1307,
  39547. bottom: 20/1390
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Normal",
  39554. height: math.unit(3 + 6/12, "feet"),
  39555. default: true
  39556. },
  39557. ]
  39558. ))
  39559. characterMakers.push(() => makeCharacter(
  39560. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39561. {
  39562. front: {
  39563. height: math.unit(1148, "feet"),
  39564. weight: math.unit(34057, "lb"),
  39565. name: "Front",
  39566. image: {
  39567. source: "./media/characters/harthos/front.svg",
  39568. extra: 1391/1339,
  39569. bottom: 13/1404
  39570. }
  39571. },
  39572. },
  39573. [
  39574. {
  39575. name: "Macro",
  39576. height: math.unit(1148, "feet"),
  39577. default: true
  39578. },
  39579. ]
  39580. ))
  39581. characterMakers.push(() => makeCharacter(
  39582. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39583. {
  39584. front: {
  39585. height: math.unit(15, "feet"),
  39586. name: "Front",
  39587. image: {
  39588. source: "./media/characters/hypatia/front.svg",
  39589. extra: 1653/1591,
  39590. bottom: 79/1732
  39591. }
  39592. },
  39593. },
  39594. [
  39595. {
  39596. name: "Normal",
  39597. height: math.unit(15, "feet")
  39598. },
  39599. {
  39600. name: "Small",
  39601. height: math.unit(300, "feet")
  39602. },
  39603. {
  39604. name: "Macro",
  39605. height: math.unit(2500, "feet"),
  39606. default: true
  39607. },
  39608. {
  39609. name: "Mega Macro",
  39610. height: math.unit(1500, "miles")
  39611. },
  39612. {
  39613. name: "Giga Macro",
  39614. height: math.unit(1.5e6, "miles")
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(6, "feet"),
  39623. weight: math.unit(200, "lb"),
  39624. name: "Front",
  39625. image: {
  39626. source: "./media/characters/wulver/front.svg",
  39627. extra: 1724/1632,
  39628. bottom: 130/1854
  39629. }
  39630. },
  39631. frontNsfw: {
  39632. height: math.unit(6, "feet"),
  39633. weight: math.unit(200, "lb"),
  39634. name: "Front (NSFW)",
  39635. image: {
  39636. source: "./media/characters/wulver/front-nsfw.svg",
  39637. extra: 1724/1632,
  39638. bottom: 130/1854
  39639. }
  39640. },
  39641. },
  39642. [
  39643. {
  39644. name: "Human-Sized",
  39645. height: math.unit(6, "feet")
  39646. },
  39647. {
  39648. name: "Normal",
  39649. height: math.unit(4, "meters"),
  39650. default: true
  39651. },
  39652. {
  39653. name: "Large",
  39654. height: math.unit(6, "m")
  39655. },
  39656. ]
  39657. ))
  39658. characterMakers.push(() => makeCharacter(
  39659. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39660. {
  39661. front: {
  39662. height: math.unit(7, "feet"),
  39663. name: "Front",
  39664. image: {
  39665. source: "./media/characters/maru/front.svg",
  39666. extra: 1595/1570,
  39667. bottom: 0/1595
  39668. }
  39669. },
  39670. },
  39671. [
  39672. {
  39673. name: "Normal",
  39674. height: math.unit(7, "feet"),
  39675. default: true
  39676. },
  39677. {
  39678. name: "Macro",
  39679. height: math.unit(700, "feet")
  39680. },
  39681. {
  39682. name: "Mega Macro",
  39683. height: math.unit(25, "miles")
  39684. },
  39685. ]
  39686. ))
  39687. characterMakers.push(() => makeCharacter(
  39688. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39689. {
  39690. front: {
  39691. height: math.unit(6, "feet"),
  39692. weight: math.unit(170, "lb"),
  39693. name: "Front",
  39694. image: {
  39695. source: "./media/characters/xenon/front.svg",
  39696. extra: 1376/1305,
  39697. bottom: 56/1432
  39698. }
  39699. },
  39700. back: {
  39701. height: math.unit(6, "feet"),
  39702. weight: math.unit(170, "lb"),
  39703. name: "Back",
  39704. image: {
  39705. source: "./media/characters/xenon/back.svg",
  39706. extra: 1328/1259,
  39707. bottom: 95/1423
  39708. }
  39709. },
  39710. maw: {
  39711. height: math.unit(0.52, "feet"),
  39712. name: "Maw",
  39713. image: {
  39714. source: "./media/characters/xenon/maw.svg"
  39715. }
  39716. },
  39717. hand: {
  39718. height: math.unit(0.82, "feet"),
  39719. name: "Hand",
  39720. image: {
  39721. source: "./media/characters/xenon/hand.svg"
  39722. }
  39723. },
  39724. foot: {
  39725. height: math.unit(1.13, "feet"),
  39726. name: "Foot",
  39727. image: {
  39728. source: "./media/characters/xenon/foot.svg"
  39729. }
  39730. },
  39731. },
  39732. [
  39733. {
  39734. name: "Micro",
  39735. height: math.unit(0.8, "inches")
  39736. },
  39737. {
  39738. name: "Normal",
  39739. height: math.unit(6, "feet")
  39740. },
  39741. {
  39742. name: "Macro",
  39743. height: math.unit(50, "feet"),
  39744. default: true
  39745. },
  39746. {
  39747. name: "Macro+",
  39748. height: math.unit(250, "feet")
  39749. },
  39750. {
  39751. name: "Megamacro",
  39752. height: math.unit(1500, "feet")
  39753. },
  39754. ]
  39755. ))
  39756. characterMakers.push(() => makeCharacter(
  39757. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39758. {
  39759. front: {
  39760. height: math.unit(7 + 5/12, "feet"),
  39761. name: "Front",
  39762. image: {
  39763. source: "./media/characters/zane/front.svg",
  39764. extra: 1260/1203,
  39765. bottom: 94/1354
  39766. }
  39767. },
  39768. back: {
  39769. height: math.unit(5.05, "feet"),
  39770. name: "Back",
  39771. image: {
  39772. source: "./media/characters/zane/back.svg",
  39773. extra: 893/829,
  39774. bottom: 30/923
  39775. }
  39776. },
  39777. werewolf: {
  39778. height: math.unit(11, "feet"),
  39779. name: "Werewolf",
  39780. image: {
  39781. source: "./media/characters/zane/werewolf.svg",
  39782. extra: 1383/1323,
  39783. bottom: 89/1472
  39784. }
  39785. },
  39786. foot: {
  39787. height: math.unit(1.46, "feet"),
  39788. name: "Foot",
  39789. image: {
  39790. source: "./media/characters/zane/foot.svg"
  39791. }
  39792. },
  39793. footFront: {
  39794. height: math.unit(0.784, "feet"),
  39795. name: "Foot (Front)",
  39796. image: {
  39797. source: "./media/characters/zane/foot-front.svg"
  39798. }
  39799. },
  39800. dick: {
  39801. height: math.unit(1.95, "feet"),
  39802. name: "Dick",
  39803. image: {
  39804. source: "./media/characters/zane/dick.svg"
  39805. }
  39806. },
  39807. dickWerewolf: {
  39808. height: math.unit(3.77, "feet"),
  39809. name: "Dick (Werewolf)",
  39810. image: {
  39811. source: "./media/characters/zane/dick.svg"
  39812. }
  39813. },
  39814. },
  39815. [
  39816. {
  39817. name: "Normal",
  39818. height: math.unit(7 + 5/12, "feet"),
  39819. default: true
  39820. },
  39821. ]
  39822. ))
  39823. characterMakers.push(() => makeCharacter(
  39824. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39825. {
  39826. front: {
  39827. height: math.unit(6 + 2/12, "feet"),
  39828. weight: math.unit(284, "lb"),
  39829. name: "Front",
  39830. image: {
  39831. source: "./media/characters/benni-desparque/front.svg",
  39832. extra: 1353/1126,
  39833. bottom: 69/1422
  39834. }
  39835. },
  39836. },
  39837. [
  39838. {
  39839. name: "Civilian",
  39840. height: math.unit(6 + 2/12, "feet")
  39841. },
  39842. {
  39843. name: "Normal",
  39844. height: math.unit(98, "feet"),
  39845. default: true
  39846. },
  39847. {
  39848. name: "Kaiju Fighter",
  39849. height: math.unit(268, "feet")
  39850. },
  39851. ]
  39852. ))
  39853. characterMakers.push(() => makeCharacter(
  39854. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39855. {
  39856. front: {
  39857. height: math.unit(5, "feet"),
  39858. weight: math.unit(105, "lb"),
  39859. name: "Front",
  39860. image: {
  39861. source: "./media/characters/maxine/front.svg",
  39862. extra: 1386/1250,
  39863. bottom: 71/1457
  39864. }
  39865. },
  39866. },
  39867. [
  39868. {
  39869. name: "Normal",
  39870. height: math.unit(5, "feet"),
  39871. default: true
  39872. },
  39873. ]
  39874. ))
  39875. characterMakers.push(() => makeCharacter(
  39876. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39877. {
  39878. front: {
  39879. height: math.unit(11 + 7/12, "feet"),
  39880. weight: math.unit(9576, "lb"),
  39881. name: "Front",
  39882. image: {
  39883. source: "./media/characters/scaly/front.svg",
  39884. extra: 888/867,
  39885. bottom: 36/924
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Normal",
  39892. height: math.unit(11 + 7/12, "feet"),
  39893. default: true
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39899. {
  39900. front: {
  39901. height: math.unit(9, "inches"),
  39902. name: "Front",
  39903. image: {
  39904. source: "./media/characters/saelria/front.svg",
  39905. extra: 662/621,
  39906. bottom: 12/674
  39907. }
  39908. },
  39909. },
  39910. [
  39911. {
  39912. name: "Tiny",
  39913. height: math.unit(9, "inches"),
  39914. default: true
  39915. },
  39916. ]
  39917. ))
  39918. characterMakers.push(() => makeCharacter(
  39919. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39920. {
  39921. front: {
  39922. height: math.unit(80, "meters"),
  39923. weight: math.unit(7000, "tonnes"),
  39924. name: "Front",
  39925. image: {
  39926. source: "./media/characters/tef/front.svg",
  39927. extra: 2036/1991,
  39928. bottom: 54/2090
  39929. }
  39930. },
  39931. back: {
  39932. height: math.unit(80, "meters"),
  39933. weight: math.unit(7000, "tonnes"),
  39934. name: "Back",
  39935. image: {
  39936. source: "./media/characters/tef/back.svg",
  39937. extra: 2036/1991,
  39938. bottom: 54/2090
  39939. }
  39940. },
  39941. },
  39942. [
  39943. {
  39944. name: "Macro",
  39945. height: math.unit(80, "meters"),
  39946. default: true
  39947. },
  39948. ]
  39949. ))
  39950. characterMakers.push(() => makeCharacter(
  39951. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39952. {
  39953. front: {
  39954. height: math.unit(13, "feet"),
  39955. weight: math.unit(6, "tons"),
  39956. name: "Front",
  39957. image: {
  39958. source: "./media/characters/rover/front.svg",
  39959. extra: 1233/1156,
  39960. bottom: 50/1283
  39961. }
  39962. },
  39963. back: {
  39964. height: math.unit(13, "feet"),
  39965. weight: math.unit(6, "tons"),
  39966. name: "Back",
  39967. image: {
  39968. source: "./media/characters/rover/back.svg",
  39969. extra: 1327/1258,
  39970. bottom: 39/1366
  39971. }
  39972. },
  39973. },
  39974. [
  39975. {
  39976. name: "Normal",
  39977. height: math.unit(13, "feet"),
  39978. default: true
  39979. },
  39980. {
  39981. name: "Macro",
  39982. height: math.unit(1300, "feet")
  39983. },
  39984. {
  39985. name: "Megamacro",
  39986. height: math.unit(1300, "miles")
  39987. },
  39988. {
  39989. name: "Gigamacro",
  39990. height: math.unit(1300000, "miles")
  39991. },
  39992. ]
  39993. ))
  39994. characterMakers.push(() => makeCharacter(
  39995. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39996. {
  39997. front: {
  39998. height: math.unit(6, "feet"),
  39999. weight: math.unit(150, "lb"),
  40000. name: "Front",
  40001. image: {
  40002. source: "./media/characters/ariz/front.svg",
  40003. extra: 1401/1346,
  40004. bottom: 5/1406
  40005. }
  40006. },
  40007. },
  40008. [
  40009. {
  40010. name: "Normal",
  40011. height: math.unit(10, "feet"),
  40012. default: true
  40013. },
  40014. ]
  40015. ))
  40016. characterMakers.push(() => makeCharacter(
  40017. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40018. {
  40019. front: {
  40020. height: math.unit(6, "feet"),
  40021. weight: math.unit(140, "lb"),
  40022. name: "Front",
  40023. image: {
  40024. source: "./media/characters/sigrun/front.svg",
  40025. extra: 1418/1359,
  40026. bottom: 27/1445
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Macro",
  40033. height: math.unit(35, "feet"),
  40034. default: true
  40035. },
  40036. ]
  40037. ))
  40038. characterMakers.push(() => makeCharacter(
  40039. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40040. {
  40041. front: {
  40042. height: math.unit(6, "feet"),
  40043. weight: math.unit(150, "lb"),
  40044. name: "Front",
  40045. image: {
  40046. source: "./media/characters/numin/front.svg",
  40047. extra: 1433/1388,
  40048. bottom: 12/1445
  40049. }
  40050. },
  40051. },
  40052. [
  40053. {
  40054. name: "Macro",
  40055. height: math.unit(21.5, "km"),
  40056. default: true
  40057. },
  40058. ]
  40059. ))
  40060. characterMakers.push(() => makeCharacter(
  40061. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40062. {
  40063. front: {
  40064. height: math.unit(6, "feet"),
  40065. weight: math.unit(463, "lb"),
  40066. name: "Front",
  40067. image: {
  40068. source: "./media/characters/melwa/front.svg",
  40069. extra: 1307/1248,
  40070. bottom: 93/1400
  40071. }
  40072. },
  40073. },
  40074. [
  40075. {
  40076. name: "Macro",
  40077. height: math.unit(50, "meters"),
  40078. default: true
  40079. },
  40080. ]
  40081. ))
  40082. characterMakers.push(() => makeCharacter(
  40083. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40084. {
  40085. front: {
  40086. height: math.unit(325, "feet"),
  40087. name: "Front",
  40088. image: {
  40089. source: "./media/characters/zorkaiju/front.svg",
  40090. extra: 1955/1814,
  40091. bottom: 40/1995
  40092. }
  40093. },
  40094. frontExtended: {
  40095. height: math.unit(325, "feet"),
  40096. name: "Front (Extended)",
  40097. image: {
  40098. source: "./media/characters/zorkaiju/front-extended.svg",
  40099. extra: 1955/1814,
  40100. bottom: 40/1995
  40101. }
  40102. },
  40103. side: {
  40104. height: math.unit(325, "feet"),
  40105. name: "Side",
  40106. image: {
  40107. source: "./media/characters/zorkaiju/side.svg",
  40108. extra: 1495/1396,
  40109. bottom: 17/1512
  40110. }
  40111. },
  40112. sideExtended: {
  40113. height: math.unit(325, "feet"),
  40114. name: "Side (Extended)",
  40115. image: {
  40116. source: "./media/characters/zorkaiju/side-extended.svg",
  40117. extra: 1495/1396,
  40118. bottom: 17/1512
  40119. }
  40120. },
  40121. back: {
  40122. height: math.unit(325, "feet"),
  40123. name: "Back",
  40124. image: {
  40125. source: "./media/characters/zorkaiju/back.svg",
  40126. extra: 1959/1821,
  40127. bottom: 31/1990
  40128. }
  40129. },
  40130. backExtended: {
  40131. height: math.unit(325, "feet"),
  40132. name: "Back (Extended)",
  40133. image: {
  40134. source: "./media/characters/zorkaiju/back-extended.svg",
  40135. extra: 1959/1821,
  40136. bottom: 31/1990
  40137. }
  40138. },
  40139. hand: {
  40140. height: math.unit(58.4, "feet"),
  40141. name: "Hand",
  40142. image: {
  40143. source: "./media/characters/zorkaiju/hand.svg"
  40144. }
  40145. },
  40146. handExtended: {
  40147. height: math.unit(61.4, "feet"),
  40148. name: "Hand (Extended)",
  40149. image: {
  40150. source: "./media/characters/zorkaiju/hand-extended.svg"
  40151. }
  40152. },
  40153. foot: {
  40154. height: math.unit(95, "feet"),
  40155. name: "Foot",
  40156. image: {
  40157. source: "./media/characters/zorkaiju/foot.svg"
  40158. }
  40159. },
  40160. leftArm: {
  40161. height: math.unit(59, "feet"),
  40162. name: "Left Arm",
  40163. image: {
  40164. source: "./media/characters/zorkaiju/left-arm.svg"
  40165. }
  40166. },
  40167. rightArm: {
  40168. height: math.unit(59, "feet"),
  40169. name: "Right Arm",
  40170. image: {
  40171. source: "./media/characters/zorkaiju/right-arm.svg"
  40172. }
  40173. },
  40174. tail: {
  40175. height: math.unit(104, "feet"),
  40176. name: "Tail",
  40177. image: {
  40178. source: "./media/characters/zorkaiju/tail.svg"
  40179. }
  40180. },
  40181. tailExtended: {
  40182. height: math.unit(104, "feet"),
  40183. name: "Tail (Extended)",
  40184. image: {
  40185. source: "./media/characters/zorkaiju/tail-extended.svg"
  40186. }
  40187. },
  40188. tailBottom: {
  40189. height: math.unit(104, "feet"),
  40190. name: "Tail Bottom",
  40191. image: {
  40192. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40193. }
  40194. },
  40195. crystal: {
  40196. height: math.unit(27.54, "feet"),
  40197. name: "Crystal",
  40198. image: {
  40199. source: "./media/characters/zorkaiju/crystal.svg"
  40200. }
  40201. },
  40202. },
  40203. [
  40204. {
  40205. name: "Kaiju",
  40206. height: math.unit(325, "feet"),
  40207. default: true
  40208. },
  40209. ]
  40210. ))
  40211. characterMakers.push(() => makeCharacter(
  40212. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40213. {
  40214. front: {
  40215. height: math.unit(6 + 1/12, "feet"),
  40216. weight: math.unit(115, "lb"),
  40217. name: "Front",
  40218. image: {
  40219. source: "./media/characters/bailey-belfry/front.svg",
  40220. extra: 1240/1121,
  40221. bottom: 101/1341
  40222. }
  40223. },
  40224. },
  40225. [
  40226. {
  40227. name: "Normal",
  40228. height: math.unit(6 + 1/12, "feet"),
  40229. default: true
  40230. },
  40231. ]
  40232. ))
  40233. characterMakers.push(() => makeCharacter(
  40234. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40235. {
  40236. side: {
  40237. height: math.unit(4, "meters"),
  40238. weight: math.unit(250, "kg"),
  40239. name: "Side",
  40240. image: {
  40241. source: "./media/characters/blacky/side.svg",
  40242. extra: 1027/919,
  40243. bottom: 43/1070
  40244. }
  40245. },
  40246. maw: {
  40247. height: math.unit(1, "meters"),
  40248. name: "Maw",
  40249. image: {
  40250. source: "./media/characters/blacky/maw.svg"
  40251. }
  40252. },
  40253. paw: {
  40254. height: math.unit(1, "meters"),
  40255. name: "Paw",
  40256. image: {
  40257. source: "./media/characters/blacky/paw.svg"
  40258. }
  40259. },
  40260. },
  40261. [
  40262. {
  40263. name: "Normal",
  40264. height: math.unit(4, "meters"),
  40265. default: true
  40266. },
  40267. ]
  40268. ))
  40269. characterMakers.push(() => makeCharacter(
  40270. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40271. {
  40272. front: {
  40273. height: math.unit(170, "cm"),
  40274. weight: math.unit(66, "kg"),
  40275. name: "Front",
  40276. image: {
  40277. source: "./media/characters/thux-ei/front.svg",
  40278. extra: 1109/1011,
  40279. bottom: 8/1117
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Normal",
  40286. height: math.unit(170, "cm"),
  40287. default: true
  40288. },
  40289. ]
  40290. ))
  40291. characterMakers.push(() => makeCharacter(
  40292. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40293. {
  40294. front: {
  40295. height: math.unit(5, "feet"),
  40296. weight: math.unit(120, "lb"),
  40297. name: "Front",
  40298. image: {
  40299. source: "./media/characters/roxanne-voltaire/front.svg",
  40300. extra: 1901/1779,
  40301. bottom: 53/1954
  40302. }
  40303. },
  40304. },
  40305. [
  40306. {
  40307. name: "Normal",
  40308. height: math.unit(5, "feet"),
  40309. default: true
  40310. },
  40311. {
  40312. name: "Giant",
  40313. height: math.unit(50, "feet")
  40314. },
  40315. {
  40316. name: "Titan",
  40317. height: math.unit(500, "feet")
  40318. },
  40319. {
  40320. name: "Macro",
  40321. height: math.unit(5000, "feet")
  40322. },
  40323. {
  40324. name: "Megamacro",
  40325. height: math.unit(50000, "feet")
  40326. },
  40327. {
  40328. name: "Gigamacro",
  40329. height: math.unit(500000, "feet")
  40330. },
  40331. {
  40332. name: "Teramacro",
  40333. height: math.unit(5e6, "feet")
  40334. },
  40335. ]
  40336. ))
  40337. characterMakers.push(() => makeCharacter(
  40338. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40339. {
  40340. front: {
  40341. height: math.unit(6 + 2/12, "feet"),
  40342. name: "Front",
  40343. image: {
  40344. source: "./media/characters/squeaks/front.svg",
  40345. extra: 1823/1768,
  40346. bottom: 138/1961
  40347. }
  40348. },
  40349. },
  40350. [
  40351. {
  40352. name: "Micro",
  40353. height: math.unit(0.5, "inches")
  40354. },
  40355. {
  40356. name: "Normal",
  40357. height: math.unit(6 + 2/12, "feet"),
  40358. default: true
  40359. },
  40360. {
  40361. name: "Macro",
  40362. height: math.unit(600, "feet")
  40363. },
  40364. ]
  40365. ))
  40366. characterMakers.push(() => makeCharacter(
  40367. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40368. {
  40369. front: {
  40370. height: math.unit(1.72, "meters"),
  40371. name: "Front",
  40372. image: {
  40373. source: "./media/characters/archinger/front.svg",
  40374. extra: 1861/1675,
  40375. bottom: 125/1986
  40376. }
  40377. },
  40378. back: {
  40379. height: math.unit(1.72, "meters"),
  40380. name: "Back",
  40381. image: {
  40382. source: "./media/characters/archinger/back.svg",
  40383. extra: 1844/1701,
  40384. bottom: 104/1948
  40385. }
  40386. },
  40387. cock: {
  40388. height: math.unit(0.59, "feet"),
  40389. name: "Cock",
  40390. image: {
  40391. source: "./media/characters/archinger/cock.svg"
  40392. }
  40393. },
  40394. },
  40395. [
  40396. {
  40397. name: "Normal",
  40398. height: math.unit(1.72, "meters"),
  40399. default: true
  40400. },
  40401. {
  40402. name: "Macro",
  40403. height: math.unit(84, "meters")
  40404. },
  40405. {
  40406. name: "Macro+",
  40407. height: math.unit(112, "meters")
  40408. },
  40409. {
  40410. name: "Macro++",
  40411. height: math.unit(960, "meters")
  40412. },
  40413. {
  40414. name: "Macro+++",
  40415. height: math.unit(4, "km")
  40416. },
  40417. {
  40418. name: "Macro++++",
  40419. height: math.unit(48, "km")
  40420. },
  40421. {
  40422. name: "Macro+++++",
  40423. height: math.unit(4500, "km")
  40424. },
  40425. ]
  40426. ))
  40427. characterMakers.push(() => makeCharacter(
  40428. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40429. {
  40430. front: {
  40431. height: math.unit(5 + 5/12, "feet"),
  40432. name: "Front",
  40433. image: {
  40434. source: "./media/characters/alsnapz/front.svg",
  40435. extra: 1157/1065,
  40436. bottom: 42/1199
  40437. }
  40438. },
  40439. },
  40440. [
  40441. {
  40442. name: "Normal",
  40443. height: math.unit(5 + 5/12, "feet"),
  40444. default: true
  40445. },
  40446. ]
  40447. ))
  40448. characterMakers.push(() => makeCharacter(
  40449. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40450. {
  40451. side: {
  40452. height: math.unit(3.2, "earths"),
  40453. name: "Side",
  40454. image: {
  40455. source: "./media/characters/mag/side.svg",
  40456. extra: 1331/1008,
  40457. bottom: 52/1383
  40458. }
  40459. },
  40460. wing: {
  40461. height: math.unit(1.94, "earths"),
  40462. name: "Wing",
  40463. image: {
  40464. source: "./media/characters/mag/wing.svg"
  40465. }
  40466. },
  40467. dick: {
  40468. height: math.unit(1.8, "earths"),
  40469. name: "Dick",
  40470. image: {
  40471. source: "./media/characters/mag/dick.svg"
  40472. }
  40473. },
  40474. ass: {
  40475. height: math.unit(1.33, "earths"),
  40476. name: "Ass",
  40477. image: {
  40478. source: "./media/characters/mag/ass.svg"
  40479. }
  40480. },
  40481. head: {
  40482. height: math.unit(1.1, "earths"),
  40483. name: "Head",
  40484. image: {
  40485. source: "./media/characters/mag/head.svg"
  40486. }
  40487. },
  40488. maw: {
  40489. height: math.unit(1.62, "earths"),
  40490. name: "Maw",
  40491. image: {
  40492. source: "./media/characters/mag/maw.svg"
  40493. }
  40494. },
  40495. },
  40496. [
  40497. {
  40498. name: "Small",
  40499. height: math.unit(162, "feet")
  40500. },
  40501. {
  40502. name: "Normal",
  40503. height: math.unit(3.2, "earths"),
  40504. default: true
  40505. },
  40506. ]
  40507. ))
  40508. characterMakers.push(() => makeCharacter(
  40509. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40510. {
  40511. front: {
  40512. height: math.unit(512, "feet"),
  40513. weight: math.unit(63509, "tonnes"),
  40514. name: "Front",
  40515. image: {
  40516. source: "./media/characters/vorrel-harroc/front.svg",
  40517. extra: 1075/1063,
  40518. bottom: 62/1137
  40519. }
  40520. },
  40521. },
  40522. [
  40523. {
  40524. name: "Normal",
  40525. height: math.unit(10, "feet")
  40526. },
  40527. {
  40528. name: "Macro",
  40529. height: math.unit(512, "feet"),
  40530. default: true
  40531. },
  40532. {
  40533. name: "Megamacro",
  40534. height: math.unit(256, "miles")
  40535. },
  40536. {
  40537. name: "Gigamacro",
  40538. height: math.unit(4096, "miles")
  40539. },
  40540. ]
  40541. ))
  40542. characterMakers.push(() => makeCharacter(
  40543. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40544. {
  40545. side: {
  40546. height: math.unit(50, "feet"),
  40547. name: "Side",
  40548. image: {
  40549. source: "./media/characters/froimar/side.svg",
  40550. extra: 855/638,
  40551. bottom: 99/954
  40552. }
  40553. },
  40554. },
  40555. [
  40556. {
  40557. name: "Macro",
  40558. height: math.unit(50, "feet"),
  40559. default: true
  40560. },
  40561. ]
  40562. ))
  40563. characterMakers.push(() => makeCharacter(
  40564. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40565. {
  40566. front: {
  40567. height: math.unit(210, "miles"),
  40568. name: "Front",
  40569. image: {
  40570. source: "./media/characters/timothy/front.svg",
  40571. extra: 1007/943,
  40572. bottom: 62/1069
  40573. }
  40574. },
  40575. frontSkirt: {
  40576. height: math.unit(210, "miles"),
  40577. name: "Front (Skirt)",
  40578. image: {
  40579. source: "./media/characters/timothy/front-skirt.svg",
  40580. extra: 1007/943,
  40581. bottom: 62/1069
  40582. }
  40583. },
  40584. frontCoat: {
  40585. height: math.unit(210, "miles"),
  40586. name: "Front (Coat)",
  40587. image: {
  40588. source: "./media/characters/timothy/front-coat.svg",
  40589. extra: 1007/943,
  40590. bottom: 62/1069
  40591. }
  40592. },
  40593. },
  40594. [
  40595. {
  40596. name: "Macro",
  40597. height: math.unit(210, "miles"),
  40598. default: true
  40599. },
  40600. {
  40601. name: "Megamacro",
  40602. height: math.unit(210000, "miles")
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40608. {
  40609. front: {
  40610. height: math.unit(188, "feet"),
  40611. name: "Front",
  40612. image: {
  40613. source: "./media/characters/pyotr/front.svg",
  40614. extra: 1912/1826,
  40615. bottom: 18/1930
  40616. }
  40617. },
  40618. },
  40619. [
  40620. {
  40621. name: "Macro",
  40622. height: math.unit(188, "feet"),
  40623. default: true
  40624. },
  40625. {
  40626. name: "Megamacro",
  40627. height: math.unit(8, "miles")
  40628. },
  40629. ]
  40630. ))
  40631. characterMakers.push(() => makeCharacter(
  40632. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40633. {
  40634. side: {
  40635. height: math.unit(10, "feet"),
  40636. weight: math.unit(4500, "lb"),
  40637. name: "Side",
  40638. image: {
  40639. source: "./media/characters/ackart/side.svg",
  40640. extra: 1776/1668,
  40641. bottom: 116/1892
  40642. }
  40643. },
  40644. },
  40645. [
  40646. {
  40647. name: "Normal",
  40648. height: math.unit(10, "feet"),
  40649. default: true
  40650. },
  40651. ]
  40652. ))
  40653. characterMakers.push(() => makeCharacter(
  40654. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40655. {
  40656. side: {
  40657. height: math.unit(21, "feet"),
  40658. name: "Side",
  40659. image: {
  40660. source: "./media/characters/nolow/side.svg",
  40661. extra: 1484/1434,
  40662. bottom: 85/1569
  40663. }
  40664. },
  40665. sideErect: {
  40666. height: math.unit(21, "feet"),
  40667. name: "Side-erect",
  40668. image: {
  40669. source: "./media/characters/nolow/side-erect.svg",
  40670. extra: 1484/1434,
  40671. bottom: 85/1569
  40672. }
  40673. },
  40674. },
  40675. [
  40676. {
  40677. name: "Regular",
  40678. height: math.unit(12, "feet")
  40679. },
  40680. {
  40681. name: "Big Chee",
  40682. height: math.unit(21, "feet"),
  40683. default: true
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40689. {
  40690. front: {
  40691. height: math.unit(7, "feet"),
  40692. weight: math.unit(250, "lb"),
  40693. name: "Front",
  40694. image: {
  40695. source: "./media/characters/nines/front.svg",
  40696. extra: 1741/1607,
  40697. bottom: 41/1782
  40698. }
  40699. },
  40700. side: {
  40701. height: math.unit(7, "feet"),
  40702. weight: math.unit(250, "lb"),
  40703. name: "Side",
  40704. image: {
  40705. source: "./media/characters/nines/side.svg",
  40706. extra: 1854/1735,
  40707. bottom: 93/1947
  40708. }
  40709. },
  40710. back: {
  40711. height: math.unit(7, "feet"),
  40712. weight: math.unit(250, "lb"),
  40713. name: "Back",
  40714. image: {
  40715. source: "./media/characters/nines/back.svg",
  40716. extra: 1748/1615,
  40717. bottom: 20/1768
  40718. }
  40719. },
  40720. },
  40721. [
  40722. {
  40723. name: "Megamacro",
  40724. height: math.unit(99, "km"),
  40725. default: true
  40726. },
  40727. ]
  40728. ))
  40729. characterMakers.push(() => makeCharacter(
  40730. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40731. {
  40732. front: {
  40733. height: math.unit(5 + 10/12, "feet"),
  40734. weight: math.unit(210, "lb"),
  40735. name: "Front",
  40736. image: {
  40737. source: "./media/characters/zenith/front.svg",
  40738. extra: 1531/1452,
  40739. bottom: 198/1729
  40740. }
  40741. },
  40742. back: {
  40743. height: math.unit(5 + 10/12, "feet"),
  40744. weight: math.unit(210, "lb"),
  40745. name: "Back",
  40746. image: {
  40747. source: "./media/characters/zenith/back.svg",
  40748. extra: 1571/1487,
  40749. bottom: 75/1646
  40750. }
  40751. },
  40752. },
  40753. [
  40754. {
  40755. name: "Normal",
  40756. height: math.unit(5 + 10/12, "feet"),
  40757. default: true
  40758. }
  40759. ]
  40760. ))
  40761. characterMakers.push(() => makeCharacter(
  40762. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40763. {
  40764. front: {
  40765. height: math.unit(4, "feet"),
  40766. weight: math.unit(60, "lb"),
  40767. name: "Front",
  40768. image: {
  40769. source: "./media/characters/jasper/front.svg",
  40770. extra: 1450/1379,
  40771. bottom: 19/1469
  40772. }
  40773. },
  40774. },
  40775. [
  40776. {
  40777. name: "Normal",
  40778. height: math.unit(4, "feet"),
  40779. default: true
  40780. },
  40781. ]
  40782. ))
  40783. characterMakers.push(() => makeCharacter(
  40784. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40785. {
  40786. front: {
  40787. height: math.unit(6 + 5/12, "feet"),
  40788. weight: math.unit(290, "lb"),
  40789. name: "Front",
  40790. image: {
  40791. source: "./media/characters/tiberius-thyben/front.svg",
  40792. extra: 757/739,
  40793. bottom: 39/796
  40794. }
  40795. },
  40796. },
  40797. [
  40798. {
  40799. name: "Micro",
  40800. height: math.unit(1.5, "inches")
  40801. },
  40802. {
  40803. name: "Normal",
  40804. height: math.unit(6 + 5/12, "feet"),
  40805. default: true
  40806. },
  40807. {
  40808. name: "Macro",
  40809. height: math.unit(300, "feet")
  40810. },
  40811. ]
  40812. ))
  40813. characterMakers.push(() => makeCharacter(
  40814. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40815. {
  40816. front: {
  40817. height: math.unit(5 + 6/12, "feet"),
  40818. weight: math.unit(60, "kg"),
  40819. name: "Front",
  40820. image: {
  40821. source: "./media/characters/sabre/front.svg",
  40822. extra: 738/671,
  40823. bottom: 27/765
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Teeny",
  40830. height: math.unit(2, "inches")
  40831. },
  40832. {
  40833. name: "Smol",
  40834. height: math.unit(8, "inches")
  40835. },
  40836. {
  40837. name: "Normal",
  40838. height: math.unit(5 + 6/12, "feet"),
  40839. default: true
  40840. },
  40841. {
  40842. name: "Mini-Macro",
  40843. height: math.unit(15, "feet")
  40844. },
  40845. {
  40846. name: "Macro",
  40847. height: math.unit(50, "feet")
  40848. },
  40849. ]
  40850. ))
  40851. characterMakers.push(() => makeCharacter(
  40852. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40853. {
  40854. front: {
  40855. height: math.unit(6 + 4/12, "feet"),
  40856. weight: math.unit(170, "lb"),
  40857. name: "Front",
  40858. image: {
  40859. source: "./media/characters/charlie/front.svg",
  40860. extra: 1348/1228,
  40861. bottom: 15/1363
  40862. }
  40863. },
  40864. },
  40865. [
  40866. {
  40867. name: "Macro",
  40868. height: math.unit(1700, "meters"),
  40869. default: true
  40870. },
  40871. {
  40872. name: "MegaMacro",
  40873. height: math.unit(20400, "meters")
  40874. },
  40875. ]
  40876. ))
  40877. characterMakers.push(() => makeCharacter(
  40878. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40879. {
  40880. front: {
  40881. height: math.unit(6 + 3/12, "feet"),
  40882. weight: math.unit(185, "lb"),
  40883. name: "Front",
  40884. image: {
  40885. source: "./media/characters/susan-grant/front.svg",
  40886. extra: 1351/1327,
  40887. bottom: 26/1377
  40888. }
  40889. },
  40890. },
  40891. [
  40892. {
  40893. name: "Normal",
  40894. height: math.unit(6 + 3/12, "feet"),
  40895. default: true
  40896. },
  40897. {
  40898. name: "Macro",
  40899. height: math.unit(225, "feet")
  40900. },
  40901. {
  40902. name: "Macro+",
  40903. height: math.unit(900, "feet")
  40904. },
  40905. {
  40906. name: "MegaMacro",
  40907. height: math.unit(14400, "feet")
  40908. },
  40909. ]
  40910. ))
  40911. characterMakers.push(() => makeCharacter(
  40912. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40913. {
  40914. front: {
  40915. height: math.unit(5 + 4/12, "feet"),
  40916. weight: math.unit(110, "lb"),
  40917. name: "Front",
  40918. image: {
  40919. source: "./media/characters/axel-isanov/front.svg",
  40920. extra: 1096/1065,
  40921. bottom: 13/1109
  40922. }
  40923. },
  40924. },
  40925. [
  40926. {
  40927. name: "Normal",
  40928. height: math.unit(5 + 4/12, "feet"),
  40929. default: true
  40930. },
  40931. ]
  40932. ))
  40933. characterMakers.push(() => makeCharacter(
  40934. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40935. {
  40936. front: {
  40937. height: math.unit(9, "feet"),
  40938. weight: math.unit(467, "lb"),
  40939. name: "Front",
  40940. image: {
  40941. source: "./media/characters/necahual/front.svg",
  40942. extra: 920/873,
  40943. bottom: 26/946
  40944. }
  40945. },
  40946. back: {
  40947. height: math.unit(9, "feet"),
  40948. weight: math.unit(467, "lb"),
  40949. name: "Back",
  40950. image: {
  40951. source: "./media/characters/necahual/back.svg",
  40952. extra: 930/884,
  40953. bottom: 16/946
  40954. }
  40955. },
  40956. frontUnderwear: {
  40957. height: math.unit(9, "feet"),
  40958. weight: math.unit(467, "lb"),
  40959. name: "Front (Underwear)",
  40960. image: {
  40961. source: "./media/characters/necahual/front-underwear.svg",
  40962. extra: 920/873,
  40963. bottom: 26/946
  40964. }
  40965. },
  40966. frontDressed: {
  40967. height: math.unit(9, "feet"),
  40968. weight: math.unit(467, "lb"),
  40969. name: "Front (Dressed)",
  40970. image: {
  40971. source: "./media/characters/necahual/front-dressed.svg",
  40972. extra: 920/873,
  40973. bottom: 26/946
  40974. }
  40975. },
  40976. },
  40977. [
  40978. {
  40979. name: "Comprsesed",
  40980. height: math.unit(9, "feet")
  40981. },
  40982. {
  40983. name: "Natural",
  40984. height: math.unit(15, "feet"),
  40985. default: true
  40986. },
  40987. {
  40988. name: "Boosted",
  40989. height: math.unit(50, "feet")
  40990. },
  40991. {
  40992. name: "Boosted+",
  40993. height: math.unit(150, "feet")
  40994. },
  40995. {
  40996. name: "Max",
  40997. height: math.unit(500, "feet")
  40998. },
  40999. ]
  41000. ))
  41001. characterMakers.push(() => makeCharacter(
  41002. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41003. {
  41004. front: {
  41005. height: math.unit(22 + 1/12, "feet"),
  41006. weight: math.unit(3200, "lb"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/theo-acacia/front.svg",
  41010. extra: 1796/1741,
  41011. bottom: 83/1879
  41012. }
  41013. },
  41014. frontUnderwear: {
  41015. height: math.unit(22 + 1/12, "feet"),
  41016. weight: math.unit(3200, "lb"),
  41017. name: "Front (Underwear)",
  41018. image: {
  41019. source: "./media/characters/theo-acacia/front-underwear.svg",
  41020. extra: 1796/1741,
  41021. bottom: 83/1879
  41022. }
  41023. },
  41024. frontNude: {
  41025. height: math.unit(22 + 1/12, "feet"),
  41026. weight: math.unit(3200, "lb"),
  41027. name: "Front (Nude)",
  41028. image: {
  41029. source: "./media/characters/theo-acacia/front-nude.svg",
  41030. extra: 1796/1741,
  41031. bottom: 83/1879
  41032. }
  41033. },
  41034. },
  41035. [
  41036. {
  41037. name: "Normal",
  41038. height: math.unit(22 + 1/12, "feet"),
  41039. default: true
  41040. },
  41041. ]
  41042. ))
  41043. characterMakers.push(() => makeCharacter(
  41044. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41045. {
  41046. front: {
  41047. height: math.unit(20, "feet"),
  41048. name: "Front",
  41049. image: {
  41050. source: "./media/characters/astra/front.svg",
  41051. extra: 1850/1714,
  41052. bottom: 106/1956
  41053. }
  41054. },
  41055. frontUndressed: {
  41056. height: math.unit(20, "feet"),
  41057. name: "Front (Undressed)",
  41058. image: {
  41059. source: "./media/characters/astra/front-undressed.svg",
  41060. extra: 1926/1749,
  41061. bottom: 0/1926
  41062. }
  41063. },
  41064. hand: {
  41065. height: math.unit(1.53, "feet"),
  41066. name: "Hand",
  41067. image: {
  41068. source: "./media/characters/astra/hand.svg"
  41069. }
  41070. },
  41071. paw: {
  41072. height: math.unit(1.53, "feet"),
  41073. name: "Paw",
  41074. image: {
  41075. source: "./media/characters/astra/paw.svg"
  41076. }
  41077. },
  41078. },
  41079. [
  41080. {
  41081. name: "Smallest",
  41082. height: math.unit(20, "feet")
  41083. },
  41084. {
  41085. name: "Normal",
  41086. height: math.unit(1e9, "miles"),
  41087. default: true
  41088. },
  41089. {
  41090. name: "Larger",
  41091. height: math.unit(5, "multiverses")
  41092. },
  41093. {
  41094. name: "Largest",
  41095. height: math.unit(1e9, "multiverses")
  41096. },
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41101. {
  41102. front: {
  41103. height: math.unit(8, "feet"),
  41104. name: "Front",
  41105. image: {
  41106. source: "./media/characters/breanna/front.svg",
  41107. extra: 1912/1632,
  41108. bottom: 33/1945
  41109. }
  41110. },
  41111. },
  41112. [
  41113. {
  41114. name: "Smallest",
  41115. height: math.unit(8, "feet")
  41116. },
  41117. {
  41118. name: "Normal",
  41119. height: math.unit(1, "mile"),
  41120. default: true
  41121. },
  41122. {
  41123. name: "Maximum",
  41124. height: math.unit(1500000000000, "lightyears")
  41125. },
  41126. ]
  41127. ))
  41128. characterMakers.push(() => makeCharacter(
  41129. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41130. {
  41131. front: {
  41132. height: math.unit(5 + 11/12, "feet"),
  41133. weight: math.unit(155, "lb"),
  41134. name: "Front",
  41135. image: {
  41136. source: "./media/characters/cai/front.svg",
  41137. extra: 1823/1702,
  41138. bottom: 32/1855
  41139. }
  41140. },
  41141. back: {
  41142. height: math.unit(5 + 11/12, "feet"),
  41143. weight: math.unit(155, "lb"),
  41144. name: "Back",
  41145. image: {
  41146. source: "./media/characters/cai/back.svg",
  41147. extra: 1809/1708,
  41148. bottom: 31/1840
  41149. }
  41150. },
  41151. },
  41152. [
  41153. {
  41154. name: "Normal",
  41155. height: math.unit(5 + 11/12, "feet"),
  41156. default: true
  41157. },
  41158. {
  41159. name: "Big",
  41160. height: math.unit(15, "feet")
  41161. },
  41162. {
  41163. name: "Macro",
  41164. height: math.unit(200, "feet")
  41165. },
  41166. ]
  41167. ))
  41168. characterMakers.push(() => makeCharacter(
  41169. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41170. {
  41171. front: {
  41172. height: math.unit(5 + 6/12, "feet"),
  41173. weight: math.unit(160, "lb"),
  41174. name: "Front",
  41175. image: {
  41176. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41177. extra: 1227/1174,
  41178. bottom: 37/1264
  41179. }
  41180. },
  41181. },
  41182. [
  41183. {
  41184. name: "Macro",
  41185. height: math.unit(444, "meters"),
  41186. default: true
  41187. },
  41188. ]
  41189. ))
  41190. characterMakers.push(() => makeCharacter(
  41191. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41192. {
  41193. front: {
  41194. height: math.unit(18 + 7/12, "feet"),
  41195. name: "Front",
  41196. image: {
  41197. source: "./media/characters/rex/front.svg",
  41198. extra: 1941/1807,
  41199. bottom: 66/2007
  41200. }
  41201. },
  41202. back: {
  41203. height: math.unit(18 + 7/12, "feet"),
  41204. name: "Back",
  41205. image: {
  41206. source: "./media/characters/rex/back.svg",
  41207. extra: 1937/1822,
  41208. bottom: 42/1979
  41209. }
  41210. },
  41211. boot: {
  41212. height: math.unit(3.45, "feet"),
  41213. name: "Boot",
  41214. image: {
  41215. source: "./media/characters/rex/boot.svg"
  41216. }
  41217. },
  41218. paw: {
  41219. height: math.unit(4.17, "feet"),
  41220. name: "Paw",
  41221. image: {
  41222. source: "./media/characters/rex/paw.svg"
  41223. }
  41224. },
  41225. head: {
  41226. height: math.unit(6.728, "feet"),
  41227. name: "Head",
  41228. image: {
  41229. source: "./media/characters/rex/head.svg"
  41230. }
  41231. },
  41232. },
  41233. [
  41234. {
  41235. name: "Nano",
  41236. height: math.unit(18 + 7/12, "feet")
  41237. },
  41238. {
  41239. name: "Micro",
  41240. height: math.unit(1.5, "megameters")
  41241. },
  41242. {
  41243. name: "Normal",
  41244. height: math.unit(440, "megameters"),
  41245. default: true
  41246. },
  41247. {
  41248. name: "Macro",
  41249. height: math.unit(2.5, "gigameters")
  41250. },
  41251. {
  41252. name: "Gigamacro",
  41253. height: math.unit(2, "galaxies")
  41254. },
  41255. ]
  41256. ))
  41257. characterMakers.push(() => makeCharacter(
  41258. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41259. {
  41260. side: {
  41261. height: math.unit(32, "feet"),
  41262. weight: math.unit(250000, "lb"),
  41263. name: "Side",
  41264. image: {
  41265. source: "./media/characters/silverwing/side.svg",
  41266. extra: 1100/1019,
  41267. bottom: 204/1304
  41268. }
  41269. },
  41270. },
  41271. [
  41272. {
  41273. name: "Normal",
  41274. height: math.unit(32, "feet"),
  41275. default: true
  41276. },
  41277. ]
  41278. ))
  41279. characterMakers.push(() => makeCharacter(
  41280. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41281. {
  41282. front: {
  41283. height: math.unit(6 + 6/12, "feet"),
  41284. weight: math.unit(350, "lb"),
  41285. name: "Front",
  41286. image: {
  41287. source: "./media/characters/tristan-hawthorne/front.svg",
  41288. extra: 1159/1124,
  41289. bottom: 37/1196
  41290. }
  41291. },
  41292. },
  41293. [
  41294. {
  41295. name: "Normal",
  41296. height: math.unit(6 + 6/12, "feet"),
  41297. default: true
  41298. },
  41299. ]
  41300. ))
  41301. characterMakers.push(() => makeCharacter(
  41302. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41303. {
  41304. front: {
  41305. height: math.unit(5 + 11/12, "feet"),
  41306. weight: math.unit(190, "lb"),
  41307. name: "Front",
  41308. image: {
  41309. source: "./media/characters/mizu/front.svg",
  41310. extra: 1988/1788,
  41311. bottom: 14/2002
  41312. }
  41313. },
  41314. },
  41315. [
  41316. {
  41317. name: "Normal",
  41318. height: math.unit(5 + 11/12, "feet"),
  41319. default: true
  41320. },
  41321. ]
  41322. ))
  41323. characterMakers.push(() => makeCharacter(
  41324. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41325. {
  41326. front: {
  41327. height: math.unit(6, "feet"),
  41328. name: "Front",
  41329. image: {
  41330. source: "./media/characters/moonlight-rose-terra/front.svg",
  41331. extra: 1434/1252,
  41332. bottom: 48/1482
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "TRAPPIST-1D",
  41339. height: math.unit(4992*2, "km")
  41340. },
  41341. {
  41342. name: "Earth",
  41343. height: math.unit(6367*2, "km"),
  41344. default: true
  41345. },
  41346. {
  41347. name: "Kepler-22b",
  41348. height: math.unit(15282*2, "km")
  41349. },
  41350. ]
  41351. ))
  41352. characterMakers.push(() => makeCharacter(
  41353. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41354. {
  41355. front: {
  41356. height: math.unit(6, "feet"),
  41357. name: "Front",
  41358. image: {
  41359. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41360. extra: 1851/1712,
  41361. bottom: 0/1851
  41362. }
  41363. },
  41364. },
  41365. [
  41366. {
  41367. name: "Enceladus",
  41368. height: math.unit(513*2, "km")
  41369. },
  41370. {
  41371. name: "Europe",
  41372. height: math.unit(1560*2, "km")
  41373. },
  41374. {
  41375. name: "Neptune",
  41376. height: math.unit(24622*2, "km"),
  41377. default: true
  41378. },
  41379. {
  41380. name: "CoRoT-9b",
  41381. height: math.unit(75067*2, "km")
  41382. },
  41383. ]
  41384. ))
  41385. characterMakers.push(() => makeCharacter(
  41386. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41387. {
  41388. front: {
  41389. height: math.unit(6, "feet"),
  41390. name: "Front",
  41391. image: {
  41392. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41393. extra: 1367/1286,
  41394. bottom: 55/1422
  41395. }
  41396. },
  41397. },
  41398. [
  41399. {
  41400. name: "Saturn",
  41401. height: math.unit(58232*2, "km")
  41402. },
  41403. {
  41404. name: "Jupiter",
  41405. height: math.unit(69911*2, "km"),
  41406. default: true
  41407. },
  41408. {
  41409. name: "HD 100546 b",
  41410. height: math.unit(482938, "km")
  41411. },
  41412. ]
  41413. ))
  41414. characterMakers.push(() => makeCharacter(
  41415. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41416. {
  41417. front: {
  41418. height: math.unit(1.7, "feet"),
  41419. weight: math.unit(50, "lb"),
  41420. name: "Front",
  41421. image: {
  41422. source: "./media/characters/dechroma/front.svg",
  41423. extra: 1095/859,
  41424. bottom: 64/1159
  41425. }
  41426. },
  41427. },
  41428. [
  41429. {
  41430. name: "Normal",
  41431. height: math.unit(1.7, "feet"),
  41432. default: true
  41433. },
  41434. ]
  41435. ))
  41436. characterMakers.push(() => makeCharacter(
  41437. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41438. {
  41439. side: {
  41440. height: math.unit(30, "feet"),
  41441. name: "Side",
  41442. image: {
  41443. source: "./media/characters/veluren-thanazel/side.svg",
  41444. extra: 1611/633,
  41445. bottom: 118/1729
  41446. }
  41447. },
  41448. front: {
  41449. height: math.unit(30, "feet"),
  41450. name: "Front",
  41451. image: {
  41452. source: "./media/characters/veluren-thanazel/front.svg",
  41453. extra: 1486/636,
  41454. bottom: 238/1724
  41455. }
  41456. },
  41457. head: {
  41458. height: math.unit(21.4, "feet"),
  41459. name: "Head",
  41460. image: {
  41461. source: "./media/characters/veluren-thanazel/head.svg"
  41462. }
  41463. },
  41464. genitals: {
  41465. height: math.unit(19.4, "feet"),
  41466. name: "Genitals",
  41467. image: {
  41468. source: "./media/characters/veluren-thanazel/genitals.svg"
  41469. }
  41470. },
  41471. },
  41472. [
  41473. {
  41474. name: "Social",
  41475. height: math.unit(6, "feet")
  41476. },
  41477. {
  41478. name: "Play",
  41479. height: math.unit(12, "feet")
  41480. },
  41481. {
  41482. name: "True",
  41483. height: math.unit(30, "feet"),
  41484. default: true
  41485. },
  41486. ]
  41487. ))
  41488. characterMakers.push(() => makeCharacter(
  41489. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41490. {
  41491. front: {
  41492. height: math.unit(7 + 6/12, "feet"),
  41493. weight: math.unit(500, "kg"),
  41494. name: "Front",
  41495. image: {
  41496. source: "./media/characters/arcturas/front.svg",
  41497. extra: 1700/1500,
  41498. bottom: 145/1845
  41499. }
  41500. },
  41501. },
  41502. [
  41503. {
  41504. name: "Normal",
  41505. height: math.unit(7 + 6/12, "feet"),
  41506. default: true
  41507. },
  41508. ]
  41509. ))
  41510. characterMakers.push(() => makeCharacter(
  41511. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41512. {
  41513. side: {
  41514. height: math.unit(6, "feet"),
  41515. weight: math.unit(2, "tons"),
  41516. name: "Side",
  41517. image: {
  41518. source: "./media/characters/vitaen/side.svg",
  41519. extra: 1157/617,
  41520. bottom: 122/1279
  41521. }
  41522. },
  41523. },
  41524. [
  41525. {
  41526. name: "Normal",
  41527. height: math.unit(6, "feet"),
  41528. default: true
  41529. },
  41530. ]
  41531. ))
  41532. characterMakers.push(() => makeCharacter(
  41533. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41534. {
  41535. front: {
  41536. height: math.unit(19, "feet"),
  41537. name: "Front",
  41538. image: {
  41539. source: "./media/characters/fia-dreamweaver/front.svg",
  41540. extra: 1630/1504,
  41541. bottom: 25/1655
  41542. }
  41543. },
  41544. },
  41545. [
  41546. {
  41547. name: "Normal",
  41548. height: math.unit(19, "feet"),
  41549. default: true
  41550. },
  41551. ]
  41552. ))
  41553. characterMakers.push(() => makeCharacter(
  41554. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41555. {
  41556. front: {
  41557. height: math.unit(5 + 4/12, "feet"),
  41558. name: "Front",
  41559. image: {
  41560. source: "./media/characters/artan/front.svg",
  41561. extra: 1618/1535,
  41562. bottom: 46/1664
  41563. }
  41564. },
  41565. back: {
  41566. height: math.unit(5 + 4/12, "feet"),
  41567. name: "Back",
  41568. image: {
  41569. source: "./media/characters/artan/back.svg",
  41570. extra: 1618/1543,
  41571. bottom: 31/1649
  41572. }
  41573. },
  41574. },
  41575. [
  41576. {
  41577. name: "Normal",
  41578. height: math.unit(5 + 4/12, "feet"),
  41579. default: true
  41580. },
  41581. ]
  41582. ))
  41583. characterMakers.push(() => makeCharacter(
  41584. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41585. {
  41586. side: {
  41587. height: math.unit(182, "cm"),
  41588. weight: math.unit(1000, "lb"),
  41589. name: "Side",
  41590. image: {
  41591. source: "./media/characters/silver-dragon/side.svg",
  41592. extra: 710/287,
  41593. bottom: 88/798
  41594. }
  41595. },
  41596. },
  41597. [
  41598. {
  41599. name: "Normal",
  41600. height: math.unit(182, "cm"),
  41601. default: true
  41602. },
  41603. ]
  41604. ))
  41605. characterMakers.push(() => makeCharacter(
  41606. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41607. {
  41608. side: {
  41609. height: math.unit(6 + 6/12, "feet"),
  41610. weight: math.unit(1.5, "tons"),
  41611. name: "Side",
  41612. image: {
  41613. source: "./media/characters/zephyr/side.svg",
  41614. extra: 1433/586,
  41615. bottom: 109/1542
  41616. }
  41617. },
  41618. },
  41619. [
  41620. {
  41621. name: "Normal",
  41622. height: math.unit(6 + 6/12, "feet"),
  41623. default: true
  41624. },
  41625. ]
  41626. ))
  41627. characterMakers.push(() => makeCharacter(
  41628. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41629. {
  41630. side: {
  41631. height: math.unit(1, "feet"),
  41632. name: "Side",
  41633. image: {
  41634. source: "./media/characters/vixye/side.svg",
  41635. extra: 632/541,
  41636. bottom: 0/632
  41637. }
  41638. },
  41639. },
  41640. [
  41641. {
  41642. name: "Normal",
  41643. height: math.unit(1, "feet"),
  41644. default: true
  41645. },
  41646. {
  41647. name: "True",
  41648. height: math.unit(1e15, "multiverses")
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(8 + 2/12, "feet"),
  41657. weight: math.unit(650, "lb"),
  41658. name: "Front",
  41659. image: {
  41660. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41661. extra: 1174/1137,
  41662. bottom: 82/1256
  41663. }
  41664. },
  41665. back: {
  41666. height: math.unit(8 + 2/12, "feet"),
  41667. weight: math.unit(650, "lb"),
  41668. name: "Back",
  41669. image: {
  41670. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41671. extra: 1204/1157,
  41672. bottom: 46/1250
  41673. }
  41674. },
  41675. },
  41676. [
  41677. {
  41678. name: "Wildform",
  41679. height: math.unit(8 + 2/12, "feet"),
  41680. default: true
  41681. },
  41682. ]
  41683. ))
  41684. characterMakers.push(() => makeCharacter(
  41685. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41686. {
  41687. front: {
  41688. height: math.unit(18, "feet"),
  41689. name: "Front",
  41690. image: {
  41691. source: "./media/characters/cyphin/front.svg",
  41692. extra: 970/886,
  41693. bottom: 42/1012
  41694. }
  41695. },
  41696. back: {
  41697. height: math.unit(18, "feet"),
  41698. name: "Back",
  41699. image: {
  41700. source: "./media/characters/cyphin/back.svg",
  41701. extra: 1009/894,
  41702. bottom: 24/1033
  41703. }
  41704. },
  41705. head: {
  41706. height: math.unit(5.05, "feet"),
  41707. name: "Head",
  41708. image: {
  41709. source: "./media/characters/cyphin/head.svg"
  41710. }
  41711. },
  41712. tailbud: {
  41713. height: math.unit(5, "feet"),
  41714. name: "Tailbud",
  41715. image: {
  41716. source: "./media/characters/cyphin/tailbud.svg"
  41717. }
  41718. },
  41719. },
  41720. [
  41721. ]
  41722. ))
  41723. characterMakers.push(() => makeCharacter(
  41724. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41725. {
  41726. side: {
  41727. height: math.unit(10, "feet"),
  41728. weight: math.unit(6, "tons"),
  41729. name: "Side",
  41730. image: {
  41731. source: "./media/characters/raijin/side.svg",
  41732. extra: 1529/613,
  41733. bottom: 337/1866
  41734. }
  41735. },
  41736. },
  41737. [
  41738. {
  41739. name: "Normal",
  41740. height: math.unit(10, "feet"),
  41741. default: true
  41742. },
  41743. ]
  41744. ))
  41745. characterMakers.push(() => makeCharacter(
  41746. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41747. {
  41748. side: {
  41749. height: math.unit(9, "feet"),
  41750. name: "Side",
  41751. image: {
  41752. source: "./media/characters/nilghais/side.svg",
  41753. extra: 1047/744,
  41754. bottom: 91/1138
  41755. }
  41756. },
  41757. head: {
  41758. height: math.unit(3.14, "feet"),
  41759. name: "Head",
  41760. image: {
  41761. source: "./media/characters/nilghais/head.svg"
  41762. }
  41763. },
  41764. mouth: {
  41765. height: math.unit(4.6, "feet"),
  41766. name: "Mouth",
  41767. image: {
  41768. source: "./media/characters/nilghais/mouth.svg"
  41769. }
  41770. },
  41771. wings: {
  41772. height: math.unit(24, "feet"),
  41773. name: "Wings",
  41774. image: {
  41775. source: "./media/characters/nilghais/wings.svg"
  41776. }
  41777. },
  41778. ass: {
  41779. height: math.unit(6.12, "feet"),
  41780. name: "Ass",
  41781. image: {
  41782. source: "./media/characters/nilghais/ass.svg"
  41783. }
  41784. },
  41785. },
  41786. [
  41787. {
  41788. name: "Normal",
  41789. height: math.unit(9, "feet"),
  41790. default: true
  41791. },
  41792. ]
  41793. ))
  41794. characterMakers.push(() => makeCharacter(
  41795. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41796. {
  41797. regular: {
  41798. height: math.unit(16 + 2/12, "feet"),
  41799. weight: math.unit(2300, "lb"),
  41800. name: "Regular",
  41801. image: {
  41802. source: "./media/characters/zolgar/regular.svg",
  41803. extra: 1246/1004,
  41804. bottom: 124/1370
  41805. }
  41806. },
  41807. boxers: {
  41808. height: math.unit(16 + 2/12, "feet"),
  41809. weight: math.unit(2300, "lb"),
  41810. name: "Boxers",
  41811. image: {
  41812. source: "./media/characters/zolgar/boxers.svg",
  41813. extra: 1246/1004,
  41814. bottom: 124/1370
  41815. }
  41816. },
  41817. armored: {
  41818. height: math.unit(16 + 2/12, "feet"),
  41819. weight: math.unit(2300, "lb"),
  41820. name: "Armored",
  41821. image: {
  41822. source: "./media/characters/zolgar/armored.svg",
  41823. extra: 1246/1004,
  41824. bottom: 124/1370
  41825. }
  41826. },
  41827. goth: {
  41828. height: math.unit(16 + 2/12, "feet"),
  41829. weight: math.unit(2300, "lb"),
  41830. name: "Goth",
  41831. image: {
  41832. source: "./media/characters/zolgar/goth.svg",
  41833. extra: 1246/1004,
  41834. bottom: 124/1370
  41835. }
  41836. },
  41837. },
  41838. [
  41839. {
  41840. name: "Shrunken Down",
  41841. height: math.unit(9 + 2/12, "feet")
  41842. },
  41843. {
  41844. name: "Normal",
  41845. height: math.unit(16 + 2/12, "feet"),
  41846. default: true
  41847. },
  41848. ]
  41849. ))
  41850. characterMakers.push(() => makeCharacter(
  41851. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41852. {
  41853. front: {
  41854. height: math.unit(6, "feet"),
  41855. weight: math.unit(168, "lb"),
  41856. name: "Front",
  41857. image: {
  41858. source: "./media/characters/luca/front.svg",
  41859. extra: 841/667,
  41860. bottom: 102/943
  41861. }
  41862. },
  41863. },
  41864. [
  41865. {
  41866. name: "Normal",
  41867. height: math.unit(6, "feet"),
  41868. default: true
  41869. },
  41870. ]
  41871. ))
  41872. characterMakers.push(() => makeCharacter(
  41873. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41874. {
  41875. side: {
  41876. height: math.unit(7 + 3/12, "feet"),
  41877. weight: math.unit(312, "lb"),
  41878. name: "Side",
  41879. image: {
  41880. source: "./media/characters/zezo/side.svg",
  41881. extra: 1192/1067,
  41882. bottom: 63/1255
  41883. }
  41884. },
  41885. },
  41886. [
  41887. {
  41888. name: "Normal",
  41889. height: math.unit(7 + 3/12, "feet"),
  41890. default: true
  41891. },
  41892. ]
  41893. ))
  41894. characterMakers.push(() => makeCharacter(
  41895. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41896. {
  41897. front: {
  41898. height: math.unit(5 + 5/12, "feet"),
  41899. weight: math.unit(170, "lb"),
  41900. name: "Front",
  41901. image: {
  41902. source: "./media/characters/mayso/front.svg",
  41903. extra: 1215/1108,
  41904. bottom: 16/1231
  41905. }
  41906. },
  41907. },
  41908. [
  41909. {
  41910. name: "Normal",
  41911. height: math.unit(5 + 5/12, "feet"),
  41912. default: true
  41913. },
  41914. ]
  41915. ))
  41916. characterMakers.push(() => makeCharacter(
  41917. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41918. {
  41919. front: {
  41920. height: math.unit(4 + 3/12, "feet"),
  41921. weight: math.unit(80, "lb"),
  41922. name: "Front",
  41923. image: {
  41924. source: "./media/characters/hess/front.svg",
  41925. extra: 1200/1123,
  41926. bottom: 16/1216
  41927. }
  41928. },
  41929. },
  41930. [
  41931. {
  41932. name: "Normal",
  41933. height: math.unit(4 + 3/12, "feet"),
  41934. default: true
  41935. },
  41936. ]
  41937. ))
  41938. characterMakers.push(() => makeCharacter(
  41939. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41940. {
  41941. front: {
  41942. height: math.unit(1.9, "meters"),
  41943. name: "Front",
  41944. image: {
  41945. source: "./media/characters/ashgar/front.svg",
  41946. extra: 1177/1146,
  41947. bottom: 99/1276
  41948. }
  41949. },
  41950. back: {
  41951. height: math.unit(1.9, "meters"),
  41952. name: "Back",
  41953. image: {
  41954. source: "./media/characters/ashgar/back.svg",
  41955. extra: 1201/1183,
  41956. bottom: 53/1254
  41957. }
  41958. },
  41959. feral: {
  41960. height: math.unit(1.4, "meters"),
  41961. name: "Feral",
  41962. image: {
  41963. source: "./media/characters/ashgar/feral.svg",
  41964. extra: 370/345,
  41965. bottom: 45/415
  41966. }
  41967. },
  41968. },
  41969. [
  41970. {
  41971. name: "Normal",
  41972. height: math.unit(1.9, "meters"),
  41973. default: true
  41974. },
  41975. ]
  41976. ))
  41977. characterMakers.push(() => makeCharacter(
  41978. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41979. {
  41980. regular: {
  41981. height: math.unit(6, "feet"),
  41982. weight: math.unit(220, "lb"),
  41983. name: "Regular",
  41984. image: {
  41985. source: "./media/characters/phillip/regular.svg",
  41986. extra: 1373/1277,
  41987. bottom: 75/1448
  41988. }
  41989. },
  41990. dressed: {
  41991. height: math.unit(6, "feet"),
  41992. weight: math.unit(220, "lb"),
  41993. name: "Dressed",
  41994. image: {
  41995. source: "./media/characters/phillip/dressed.svg",
  41996. extra: 1373/1277,
  41997. bottom: 75/1448
  41998. }
  41999. },
  42000. paw: {
  42001. height: math.unit(1.44, "feet"),
  42002. name: "Paw",
  42003. image: {
  42004. source: "./media/characters/phillip/paw.svg"
  42005. }
  42006. },
  42007. },
  42008. [
  42009. {
  42010. name: "Normal",
  42011. height: math.unit(6, "feet"),
  42012. default: true
  42013. },
  42014. ]
  42015. ))
  42016. characterMakers.push(() => makeCharacter(
  42017. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42018. {
  42019. side: {
  42020. height: math.unit(42, "feet"),
  42021. name: "Side",
  42022. image: {
  42023. source: "./media/characters/uvula/side.svg",
  42024. extra: 683/586,
  42025. bottom: 60/743
  42026. }
  42027. },
  42028. front: {
  42029. height: math.unit(42, "feet"),
  42030. name: "Front",
  42031. image: {
  42032. source: "./media/characters/uvula/front.svg",
  42033. extra: 705/613,
  42034. bottom: 54/759
  42035. }
  42036. },
  42037. maw: {
  42038. height: math.unit(23.5, "feet"),
  42039. name: "Maw",
  42040. image: {
  42041. source: "./media/characters/uvula/maw.svg"
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Original Size",
  42048. height: math.unit(14, "inches")
  42049. },
  42050. {
  42051. name: "Human Size",
  42052. height: math.unit(6, "feet")
  42053. },
  42054. {
  42055. name: "Big",
  42056. height: math.unit(42, "feet"),
  42057. default: true
  42058. },
  42059. {
  42060. name: "Bigger",
  42061. height: math.unit(100, "feet")
  42062. },
  42063. ]
  42064. ))
  42065. characterMakers.push(() => makeCharacter(
  42066. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42067. {
  42068. front: {
  42069. height: math.unit(5 + 11/12, "feet"),
  42070. name: "Front",
  42071. image: {
  42072. source: "./media/characters/lannah/front.svg",
  42073. extra: 1208/1113,
  42074. bottom: 97/1305
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Normal",
  42081. height: math.unit(5 + 11/12, "feet"),
  42082. default: true
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42088. {
  42089. front: {
  42090. height: math.unit(6 + 3/12, "feet"),
  42091. weight: math.unit(3.5, "tons"),
  42092. name: "Front",
  42093. image: {
  42094. source: "./media/characters/emberflame/front.svg",
  42095. extra: 1198/672,
  42096. bottom: 82/1280
  42097. }
  42098. },
  42099. side: {
  42100. height: math.unit(6 + 3/12, "feet"),
  42101. weight: math.unit(3.5, "tons"),
  42102. name: "Side",
  42103. image: {
  42104. source: "./media/characters/emberflame/side.svg",
  42105. extra: 938/527,
  42106. bottom: 56/994
  42107. }
  42108. },
  42109. },
  42110. [
  42111. {
  42112. name: "Normal",
  42113. height: math.unit(6 + 3/12, "feet"),
  42114. default: true
  42115. },
  42116. ]
  42117. ))
  42118. characterMakers.push(() => makeCharacter(
  42119. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42120. {
  42121. side: {
  42122. height: math.unit(17.5, "feet"),
  42123. weight: math.unit(35, "tons"),
  42124. name: "Side",
  42125. image: {
  42126. source: "./media/characters/sophie-ambrose/side.svg",
  42127. extra: 1573/1242,
  42128. bottom: 71/1644
  42129. }
  42130. },
  42131. maw: {
  42132. height: math.unit(7.4, "feet"),
  42133. name: "Maw",
  42134. image: {
  42135. source: "./media/characters/sophie-ambrose/maw.svg"
  42136. }
  42137. },
  42138. },
  42139. [
  42140. {
  42141. name: "Normal",
  42142. height: math.unit(17.5, "feet"),
  42143. default: true
  42144. },
  42145. ]
  42146. ))
  42147. characterMakers.push(() => makeCharacter(
  42148. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42149. {
  42150. front: {
  42151. height: math.unit(280, "feet"),
  42152. weight: math.unit(550, "tons"),
  42153. name: "Front",
  42154. image: {
  42155. source: "./media/characters/king-mugi/front.svg",
  42156. extra: 1102/947,
  42157. bottom: 104/1206
  42158. }
  42159. },
  42160. },
  42161. [
  42162. {
  42163. name: "King Mugi",
  42164. height: math.unit(280, "feet"),
  42165. default: true
  42166. },
  42167. ]
  42168. ))
  42169. characterMakers.push(() => makeCharacter(
  42170. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42171. {
  42172. front: {
  42173. height: math.unit(64, "meters"),
  42174. name: "Front",
  42175. image: {
  42176. source: "./media/characters/nova-fox/front.svg",
  42177. extra: 1310/1246,
  42178. bottom: 65/1375
  42179. }
  42180. },
  42181. },
  42182. [
  42183. {
  42184. name: "Macro",
  42185. height: math.unit(64, "meters"),
  42186. default: true
  42187. },
  42188. ]
  42189. ))
  42190. characterMakers.push(() => makeCharacter(
  42191. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42192. {
  42193. front: {
  42194. height: math.unit(6 + 3/12, "feet"),
  42195. weight: math.unit(170, "lb"),
  42196. name: "Front",
  42197. image: {
  42198. source: "./media/characters/sam-bat/front.svg",
  42199. extra: 1601/1411,
  42200. bottom: 125/1726
  42201. }
  42202. },
  42203. back: {
  42204. height: math.unit(6 + 3/12, "feet"),
  42205. weight: math.unit(170, "lb"),
  42206. name: "Back",
  42207. image: {
  42208. source: "./media/characters/sam-bat/back.svg",
  42209. extra: 1577/1405,
  42210. bottom: 58/1635
  42211. }
  42212. },
  42213. },
  42214. [
  42215. {
  42216. name: "Normal",
  42217. height: math.unit(6 + 3/12, "feet"),
  42218. default: true
  42219. },
  42220. ]
  42221. ))
  42222. characterMakers.push(() => makeCharacter(
  42223. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42224. {
  42225. front: {
  42226. height: math.unit(59, "feet"),
  42227. weight: math.unit(40000, "lb"),
  42228. name: "Front",
  42229. image: {
  42230. source: "./media/characters/inari/front.svg",
  42231. extra: 1884/1350,
  42232. bottom: 95/1979
  42233. }
  42234. },
  42235. },
  42236. [
  42237. {
  42238. name: "Gigantamax",
  42239. height: math.unit(59, "feet"),
  42240. default: true
  42241. },
  42242. ]
  42243. ))
  42244. characterMakers.push(() => makeCharacter(
  42245. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42246. {
  42247. front: {
  42248. height: math.unit(5 + 8/12, "feet"),
  42249. name: "Front",
  42250. image: {
  42251. source: "./media/characters/elizabeth/front.svg",
  42252. extra: 1395/1298,
  42253. bottom: 54/1449
  42254. }
  42255. },
  42256. mouth: {
  42257. height: math.unit(1.97, "feet"),
  42258. name: "Mouth",
  42259. image: {
  42260. source: "./media/characters/elizabeth/mouth.svg"
  42261. }
  42262. },
  42263. foot: {
  42264. height: math.unit(1.17, "feet"),
  42265. name: "Foot",
  42266. image: {
  42267. source: "./media/characters/elizabeth/foot.svg"
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Normal",
  42274. height: math.unit(5 + 8/12, "feet"),
  42275. default: true
  42276. },
  42277. {
  42278. name: "Minimacro",
  42279. height: math.unit(18, "feet")
  42280. },
  42281. {
  42282. name: "Macro",
  42283. height: math.unit(180, "feet")
  42284. },
  42285. ]
  42286. ))
  42287. characterMakers.push(() => makeCharacter(
  42288. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42289. {
  42290. front: {
  42291. height: math.unit(5 + 2/12, "feet"),
  42292. name: "Front",
  42293. image: {
  42294. source: "./media/characters/october-gossamer/front.svg",
  42295. extra: 505/454,
  42296. bottom: 7/512
  42297. }
  42298. },
  42299. back: {
  42300. height: math.unit(5 + 2/12, "feet"),
  42301. name: "Back",
  42302. image: {
  42303. source: "./media/characters/october-gossamer/back.svg",
  42304. extra: 501/454,
  42305. bottom: 11/512
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Normal",
  42312. height: math.unit(5 + 2/12, "feet"),
  42313. default: true
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(5, "feet"),
  42322. name: "Front",
  42323. image: {
  42324. source: "./media/characters/epiglottis/front.svg",
  42325. extra: 923/849,
  42326. bottom: 17/940
  42327. }
  42328. },
  42329. },
  42330. [
  42331. {
  42332. name: "Original Size",
  42333. height: math.unit(10, "inches")
  42334. },
  42335. {
  42336. name: "Human Size",
  42337. height: math.unit(5, "feet"),
  42338. default: true
  42339. },
  42340. {
  42341. name: "Big",
  42342. height: math.unit(25, "feet")
  42343. },
  42344. {
  42345. name: "Bigger",
  42346. height: math.unit(50, "feet")
  42347. },
  42348. {
  42349. name: "oh lawd",
  42350. height: math.unit(75, "feet")
  42351. },
  42352. ]
  42353. ))
  42354. characterMakers.push(() => makeCharacter(
  42355. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42356. {
  42357. front: {
  42358. height: math.unit(2 + 4/12, "feet"),
  42359. weight: math.unit(60, "lb"),
  42360. name: "Front",
  42361. image: {
  42362. source: "./media/characters/lerm/front.svg",
  42363. extra: 796/790,
  42364. bottom: 79/875
  42365. }
  42366. },
  42367. },
  42368. [
  42369. {
  42370. name: "Normal",
  42371. height: math.unit(2 + 4/12, "feet"),
  42372. default: true
  42373. },
  42374. ]
  42375. ))
  42376. characterMakers.push(() => makeCharacter(
  42377. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42378. {
  42379. front: {
  42380. height: math.unit(5.5, "feet"),
  42381. weight: math.unit(130, "lb"),
  42382. name: "Front",
  42383. image: {
  42384. source: "./media/characters/xena-nebadon/front.svg",
  42385. extra: 1828/1730,
  42386. bottom: 79/1907
  42387. }
  42388. },
  42389. },
  42390. [
  42391. {
  42392. name: "Tiny Puppy",
  42393. height: math.unit(3, "inches")
  42394. },
  42395. {
  42396. name: "Normal",
  42397. height: math.unit(5.5, "feet"),
  42398. default: true
  42399. },
  42400. {
  42401. name: "Lotta Lady",
  42402. height: math.unit(12, "feet")
  42403. },
  42404. {
  42405. name: "Pretty Big",
  42406. height: math.unit(100, "feet")
  42407. },
  42408. {
  42409. name: "Big",
  42410. height: math.unit(500, "feet")
  42411. },
  42412. {
  42413. name: "Skyscraper Toys",
  42414. height: math.unit(2500, "feet")
  42415. },
  42416. {
  42417. name: "Plane Catcher",
  42418. height: math.unit(8, "miles")
  42419. },
  42420. {
  42421. name: "Planet Toys",
  42422. height: math.unit(15, "earths")
  42423. },
  42424. {
  42425. name: "Stardust",
  42426. height: math.unit(0.25, "galaxies")
  42427. },
  42428. {
  42429. name: "Snacks",
  42430. height: math.unit(70, "universes")
  42431. },
  42432. ]
  42433. ))
  42434. characterMakers.push(() => makeCharacter(
  42435. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42436. {
  42437. front: {
  42438. height: math.unit(1.6, "meters"),
  42439. weight: math.unit(60, "kg"),
  42440. name: "Front",
  42441. image: {
  42442. source: "./media/characters/bounty/front.svg",
  42443. extra: 1426/1308,
  42444. bottom: 15/1441
  42445. }
  42446. },
  42447. back: {
  42448. height: math.unit(1.6, "meters"),
  42449. weight: math.unit(60, "kg"),
  42450. name: "Back",
  42451. image: {
  42452. source: "./media/characters/bounty/back.svg",
  42453. extra: 1417/1307,
  42454. bottom: 8/1425
  42455. }
  42456. },
  42457. },
  42458. [
  42459. {
  42460. name: "Normal",
  42461. height: math.unit(1.6, "meters"),
  42462. default: true
  42463. },
  42464. {
  42465. name: "Macro",
  42466. height: math.unit(300, "meters")
  42467. },
  42468. ]
  42469. ))
  42470. characterMakers.push(() => makeCharacter(
  42471. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42472. {
  42473. front: {
  42474. height: math.unit(2 + 8/12, "feet"),
  42475. weight: math.unit(15, "lb"),
  42476. name: "Front",
  42477. image: {
  42478. source: "./media/characters/mochi/front.svg",
  42479. extra: 1022/852,
  42480. bottom: 435/1457
  42481. }
  42482. },
  42483. back: {
  42484. height: math.unit(2 + 8/12, "feet"),
  42485. weight: math.unit(15, "lb"),
  42486. name: "Back",
  42487. image: {
  42488. source: "./media/characters/mochi/back.svg",
  42489. extra: 1335/1119,
  42490. bottom: 39/1374
  42491. }
  42492. },
  42493. bird: {
  42494. height: math.unit(2 + 8/12, "feet"),
  42495. weight: math.unit(15, "lb"),
  42496. name: "Bird",
  42497. image: {
  42498. source: "./media/characters/mochi/bird.svg",
  42499. extra: 1251/1113,
  42500. bottom: 178/1429
  42501. }
  42502. },
  42503. kaiju: {
  42504. height: math.unit(154, "feet"),
  42505. weight: math.unit(1e7, "lb"),
  42506. name: "Kaiju",
  42507. image: {
  42508. source: "./media/characters/mochi/kaiju.svg",
  42509. extra: 460/324,
  42510. bottom: 40/500
  42511. }
  42512. },
  42513. head: {
  42514. height: math.unit(1.21, "feet"),
  42515. name: "Head",
  42516. image: {
  42517. source: "./media/characters/mochi/head.svg"
  42518. }
  42519. },
  42520. alternateTail: {
  42521. height: math.unit(2 + 8/12, "feet"),
  42522. weight: math.unit(45, "lb"),
  42523. name: "Alternate Tail",
  42524. image: {
  42525. source: "./media/characters/mochi/alternate-tail.svg",
  42526. extra: 139/76,
  42527. bottom: 45/184
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Micro",
  42534. height: math.unit(2, "inches")
  42535. },
  42536. {
  42537. name: "Normal",
  42538. height: math.unit(2 + 8/12, "feet"),
  42539. default: true
  42540. },
  42541. {
  42542. name: "Macro",
  42543. height: math.unit(106, "feet")
  42544. },
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42549. {
  42550. front: {
  42551. height: math.unit(5.67, "feet"),
  42552. weight: math.unit(135, "lb"),
  42553. name: "Front",
  42554. image: {
  42555. source: "./media/characters/sarel/front.svg",
  42556. extra: 865/788,
  42557. bottom: 97/962
  42558. }
  42559. },
  42560. back: {
  42561. height: math.unit(5.67, "feet"),
  42562. weight: math.unit(135, "lb"),
  42563. name: "Back",
  42564. image: {
  42565. source: "./media/characters/sarel/back.svg",
  42566. extra: 857/777,
  42567. bottom: 32/889
  42568. }
  42569. },
  42570. chozoan: {
  42571. height: math.unit(5.67, "feet"),
  42572. weight: math.unit(135, "lb"),
  42573. name: "Chozoan",
  42574. image: {
  42575. source: "./media/characters/sarel/chozoan.svg",
  42576. extra: 865/788,
  42577. bottom: 97/962
  42578. }
  42579. },
  42580. current: {
  42581. height: math.unit(5.67, "feet"),
  42582. weight: math.unit(135, "lb"),
  42583. name: "Current",
  42584. image: {
  42585. source: "./media/characters/sarel/current.svg",
  42586. extra: 865/788,
  42587. bottom: 97/962
  42588. }
  42589. },
  42590. head: {
  42591. height: math.unit(1.77, "feet"),
  42592. name: "Head",
  42593. image: {
  42594. source: "./media/characters/sarel/head.svg"
  42595. }
  42596. },
  42597. claws: {
  42598. height: math.unit(1.8, "feet"),
  42599. name: "Claws",
  42600. image: {
  42601. source: "./media/characters/sarel/claws.svg"
  42602. }
  42603. },
  42604. clawsAlt: {
  42605. height: math.unit(1.8, "feet"),
  42606. name: "Claws-alt",
  42607. image: {
  42608. source: "./media/characters/sarel/claws-alt.svg"
  42609. }
  42610. },
  42611. },
  42612. [
  42613. {
  42614. name: "Normal",
  42615. height: math.unit(5.67, "feet"),
  42616. default: true
  42617. },
  42618. ]
  42619. ))
  42620. characterMakers.push(() => makeCharacter(
  42621. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42622. {
  42623. front: {
  42624. height: math.unit(5500, "feet"),
  42625. name: "Front",
  42626. image: {
  42627. source: "./media/characters/alyonia/front.svg",
  42628. extra: 1200/1135,
  42629. bottom: 29/1229
  42630. }
  42631. },
  42632. back: {
  42633. height: math.unit(5500, "feet"),
  42634. name: "Back",
  42635. image: {
  42636. source: "./media/characters/alyonia/back.svg",
  42637. extra: 1205/1138,
  42638. bottom: 10/1215
  42639. }
  42640. },
  42641. },
  42642. [
  42643. {
  42644. name: "Small",
  42645. height: math.unit(10, "feet")
  42646. },
  42647. {
  42648. name: "Macro",
  42649. height: math.unit(500, "feet")
  42650. },
  42651. {
  42652. name: "Mega Macro",
  42653. height: math.unit(5500, "feet"),
  42654. default: true
  42655. },
  42656. {
  42657. name: "Mega Macro+",
  42658. height: math.unit(500000, "feet")
  42659. },
  42660. {
  42661. name: "Giga Macro",
  42662. height: math.unit(3000, "miles")
  42663. },
  42664. {
  42665. name: "Tera Macro",
  42666. height: math.unit(2.8e6, "miles")
  42667. },
  42668. {
  42669. name: "Galactic",
  42670. height: math.unit(120000, "lightyears")
  42671. },
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42676. {
  42677. werewolf: {
  42678. height: math.unit(8, "feet"),
  42679. weight: math.unit(425, "lb"),
  42680. name: "Werewolf",
  42681. image: {
  42682. source: "./media/characters/autumn/werewolf.svg",
  42683. extra: 2154/2031,
  42684. bottom: 160/2314
  42685. }
  42686. },
  42687. human: {
  42688. height: math.unit(5 + 8/12, "feet"),
  42689. weight: math.unit(150, "lb"),
  42690. name: "Human",
  42691. image: {
  42692. source: "./media/characters/autumn/human.svg",
  42693. extra: 1200/1149,
  42694. bottom: 30/1230
  42695. }
  42696. },
  42697. },
  42698. [
  42699. {
  42700. name: "Normal",
  42701. height: math.unit(8, "feet"),
  42702. default: true
  42703. },
  42704. ]
  42705. ))
  42706. characterMakers.push(() => makeCharacter(
  42707. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42708. {
  42709. front: {
  42710. height: math.unit(8 + 5/12, "feet"),
  42711. weight: math.unit(825, "lb"),
  42712. name: "Front",
  42713. image: {
  42714. source: "./media/characters/cobalt-charizard/front.svg",
  42715. extra: 1268/1155,
  42716. bottom: 122/1390
  42717. }
  42718. },
  42719. side: {
  42720. height: math.unit(8 + 5/12, "feet"),
  42721. weight: math.unit(825, "lb"),
  42722. name: "Side",
  42723. image: {
  42724. source: "./media/characters/cobalt-charizard/side.svg",
  42725. extra: 1348/1257,
  42726. bottom: 58/1406
  42727. }
  42728. },
  42729. gMax: {
  42730. height: math.unit(134 + 11/12, "feet"),
  42731. name: "G-Max",
  42732. image: {
  42733. source: "./media/characters/cobalt-charizard/g-max.svg",
  42734. extra: 1835/1541,
  42735. bottom: 151/1986
  42736. }
  42737. },
  42738. },
  42739. [
  42740. {
  42741. name: "Normal",
  42742. height: math.unit(8 + 5/12, "feet"),
  42743. default: true
  42744. },
  42745. ]
  42746. ))
  42747. characterMakers.push(() => makeCharacter(
  42748. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42749. {
  42750. front: {
  42751. height: math.unit(6 + 3/12, "feet"),
  42752. weight: math.unit(210, "lb"),
  42753. name: "Front",
  42754. image: {
  42755. source: "./media/characters/stella/front.svg",
  42756. extra: 3549/3335,
  42757. bottom: 51/3600
  42758. }
  42759. },
  42760. },
  42761. [
  42762. {
  42763. name: "Normal",
  42764. height: math.unit(6 + 3/12, "feet"),
  42765. default: true
  42766. },
  42767. ]
  42768. ))
  42769. characterMakers.push(() => makeCharacter(
  42770. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42771. {
  42772. front: {
  42773. height: math.unit(5, "feet"),
  42774. weight: math.unit(90, "lb"),
  42775. name: "Front",
  42776. image: {
  42777. source: "./media/characters/riley-bishop/front.svg",
  42778. extra: 1450/1428,
  42779. bottom: 152/1602
  42780. }
  42781. },
  42782. },
  42783. [
  42784. {
  42785. name: "Normal",
  42786. height: math.unit(5, "feet"),
  42787. default: true
  42788. },
  42789. ]
  42790. ))
  42791. characterMakers.push(() => makeCharacter(
  42792. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42793. {
  42794. side: {
  42795. height: math.unit(8 + 2/12, "feet"),
  42796. weight: math.unit(500, "kg"),
  42797. name: "Side",
  42798. image: {
  42799. source: "./media/characters/theo-arcanine/side.svg",
  42800. extra: 1342/1074,
  42801. bottom: 111/1453
  42802. }
  42803. },
  42804. },
  42805. [
  42806. {
  42807. name: "Normal",
  42808. height: math.unit(8 + 2/12, "feet"),
  42809. default: true
  42810. },
  42811. ]
  42812. ))
  42813. characterMakers.push(() => makeCharacter(
  42814. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42815. {
  42816. front: {
  42817. height: math.unit(4, "feet"),
  42818. name: "Front",
  42819. image: {
  42820. source: "./media/characters/kali/front.svg",
  42821. extra: 1921/1357,
  42822. bottom: 70/1991
  42823. }
  42824. },
  42825. },
  42826. [
  42827. {
  42828. name: "Normal",
  42829. height: math.unit(4, "feet"),
  42830. default: true
  42831. },
  42832. {
  42833. name: "Macro",
  42834. height: math.unit(32, "meters")
  42835. },
  42836. {
  42837. name: "Macro+",
  42838. height: math.unit(150, "meters")
  42839. },
  42840. {
  42841. name: "Megamacro",
  42842. height: math.unit(7500, "meters")
  42843. },
  42844. {
  42845. name: "Megamacro+",
  42846. height: math.unit(80, "kilometers")
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42852. {
  42853. side: {
  42854. height: math.unit(5 + 11/12, "feet"),
  42855. weight: math.unit(236, "lb"),
  42856. name: "Side",
  42857. image: {
  42858. source: "./media/characters/gapp/side.svg",
  42859. extra: 775/340,
  42860. bottom: 58/833
  42861. }
  42862. },
  42863. mouth: {
  42864. height: math.unit(2.98, "feet"),
  42865. name: "Mouth",
  42866. image: {
  42867. source: "./media/characters/gapp/mouth.svg"
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(5 + 1/12, "feet"),
  42875. default: true
  42876. },
  42877. ]
  42878. ))
  42879. characterMakers.push(() => makeCharacter(
  42880. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42881. {
  42882. front: {
  42883. height: math.unit(6, "feet"),
  42884. name: "Front",
  42885. image: {
  42886. source: "./media/characters/persephone/front.svg",
  42887. extra: 1895/1717,
  42888. bottom: 96/1991
  42889. }
  42890. },
  42891. back: {
  42892. height: math.unit(6, "feet"),
  42893. name: "Back",
  42894. image: {
  42895. source: "./media/characters/persephone/back.svg",
  42896. extra: 1868/1679,
  42897. bottom: 26/1894
  42898. }
  42899. },
  42900. casual: {
  42901. height: math.unit(6, "feet"),
  42902. name: "Casual",
  42903. image: {
  42904. source: "./media/characters/persephone/casual.svg",
  42905. extra: 1713/1541,
  42906. bottom: 76/1789
  42907. }
  42908. },
  42909. },
  42910. [
  42911. {
  42912. name: "Human Size",
  42913. height: math.unit(6, "feet")
  42914. },
  42915. {
  42916. name: "Big Steppy",
  42917. height: math.unit(600, "meters"),
  42918. default: true
  42919. },
  42920. {
  42921. name: "Galaxy Brain",
  42922. height: math.unit(1, "zettameter")
  42923. },
  42924. ]
  42925. ))
  42926. characterMakers.push(() => makeCharacter(
  42927. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42928. {
  42929. front: {
  42930. height: math.unit(1.85, "meters"),
  42931. name: "Front",
  42932. image: {
  42933. source: "./media/characters/riley-foxthing/front.svg",
  42934. extra: 1495/1354,
  42935. bottom: 122/1617
  42936. }
  42937. },
  42938. frontAlt: {
  42939. height: math.unit(1.85, "meters"),
  42940. name: "Front (Alt)",
  42941. image: {
  42942. source: "./media/characters/riley-foxthing/front-alt.svg",
  42943. extra: 1572/1389,
  42944. bottom: 116/1688
  42945. }
  42946. },
  42947. },
  42948. [
  42949. {
  42950. name: "Normal Sized",
  42951. height: math.unit(1.85, "meters"),
  42952. default: true
  42953. },
  42954. {
  42955. name: "Quite Sizable",
  42956. height: math.unit(5, "meters")
  42957. },
  42958. {
  42959. name: "Rather Large",
  42960. height: math.unit(20, "meters")
  42961. },
  42962. {
  42963. name: "Macro",
  42964. height: math.unit(450, "meters")
  42965. },
  42966. {
  42967. name: "Giga",
  42968. height: math.unit(5, "km")
  42969. },
  42970. ]
  42971. ))
  42972. characterMakers.push(() => makeCharacter(
  42973. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42974. {
  42975. front: {
  42976. height: math.unit(6, "feet"),
  42977. weight: math.unit(200, "lb"),
  42978. name: "Front",
  42979. image: {
  42980. source: "./media/characters/blizzard/front.svg",
  42981. extra: 1136/990,
  42982. bottom: 136/1272
  42983. }
  42984. },
  42985. back: {
  42986. height: math.unit(6, "feet"),
  42987. weight: math.unit(200, "lb"),
  42988. name: "Back",
  42989. image: {
  42990. source: "./media/characters/blizzard/back.svg",
  42991. extra: 1175/1034,
  42992. bottom: 97/1272
  42993. }
  42994. },
  42995. sitting: {
  42996. height: math.unit(3.725, "feet"),
  42997. weight: math.unit(200, "lb"),
  42998. name: "Sitting",
  42999. image: {
  43000. source: "./media/characters/blizzard/sitting.svg",
  43001. extra: 581/485,
  43002. bottom: 90/671
  43003. }
  43004. },
  43005. frontWizard: {
  43006. height: math.unit(7.9, "feet"),
  43007. weight: math.unit(200, "lb"),
  43008. name: "Front (Wizard)",
  43009. image: {
  43010. source: "./media/characters/blizzard/front-wizard.svg"
  43011. }
  43012. },
  43013. backWizard: {
  43014. height: math.unit(7.9, "feet"),
  43015. weight: math.unit(200, "lb"),
  43016. name: "Back (Wizard)",
  43017. image: {
  43018. source: "./media/characters/blizzard/back-wizard.svg"
  43019. }
  43020. },
  43021. frontNsfw: {
  43022. height: math.unit(6, "feet"),
  43023. weight: math.unit(200, "lb"),
  43024. name: "Front (NSFW)",
  43025. image: {
  43026. source: "./media/characters/blizzard/front-nsfw.svg",
  43027. extra: 1136/990,
  43028. bottom: 136/1272
  43029. }
  43030. },
  43031. backNsfw: {
  43032. height: math.unit(6, "feet"),
  43033. weight: math.unit(200, "lb"),
  43034. name: "Back (NSFW)",
  43035. image: {
  43036. source: "./media/characters/blizzard/back-nsfw.svg",
  43037. extra: 1175/1034,
  43038. bottom: 97/1272
  43039. }
  43040. },
  43041. sittingNsfw: {
  43042. height: math.unit(3.725, "feet"),
  43043. weight: math.unit(200, "lb"),
  43044. name: "Sitting (NSFW)",
  43045. image: {
  43046. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43047. extra: 581/485,
  43048. bottom: 90/671
  43049. }
  43050. },
  43051. wizardFrontNsfw: {
  43052. height: math.unit(7.9, "feet"),
  43053. weight: math.unit(200, "lb"),
  43054. name: "Wizard (Front, NSFW)",
  43055. image: {
  43056. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Normal",
  43063. height: math.unit(6, "feet"),
  43064. default: true
  43065. },
  43066. ]
  43067. ))
  43068. characterMakers.push(() => makeCharacter(
  43069. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43070. {
  43071. front: {
  43072. height: math.unit(5 + 2/12, "feet"),
  43073. name: "Front",
  43074. image: {
  43075. source: "./media/characters/lumi/front.svg",
  43076. extra: 1328/1268,
  43077. bottom: 103/1431
  43078. }
  43079. },
  43080. back: {
  43081. height: math.unit(5 + 2/12, "feet"),
  43082. name: "Back",
  43083. image: {
  43084. source: "./media/characters/lumi/back.svg",
  43085. extra: 1381/1327,
  43086. bottom: 43/1424
  43087. }
  43088. },
  43089. },
  43090. [
  43091. {
  43092. name: "Normal",
  43093. height: math.unit(5 + 2/12, "feet"),
  43094. default: true
  43095. },
  43096. ]
  43097. ))
  43098. characterMakers.push(() => makeCharacter(
  43099. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43100. {
  43101. front: {
  43102. height: math.unit(5 + 9/12, "feet"),
  43103. name: "Front",
  43104. image: {
  43105. source: "./media/characters/aliya-cotton/front.svg",
  43106. extra: 577/564,
  43107. bottom: 29/606
  43108. }
  43109. },
  43110. },
  43111. [
  43112. {
  43113. name: "Normal",
  43114. height: math.unit(5 + 9/12, "feet"),
  43115. default: true
  43116. },
  43117. ]
  43118. ))
  43119. characterMakers.push(() => makeCharacter(
  43120. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43121. {
  43122. front: {
  43123. height: math.unit(2.7, "meters"),
  43124. weight: math.unit(25000, "lb"),
  43125. name: "Front",
  43126. image: {
  43127. source: "./media/characters/noah-luxray/front.svg",
  43128. extra: 1644/825,
  43129. bottom: 339/1983
  43130. }
  43131. },
  43132. side: {
  43133. height: math.unit(2.97, "meters"),
  43134. weight: math.unit(25000, "lb"),
  43135. name: "Side",
  43136. image: {
  43137. source: "./media/characters/noah-luxray/side.svg",
  43138. extra: 1319/650,
  43139. bottom: 163/1482
  43140. }
  43141. },
  43142. dick: {
  43143. height: math.unit(7.4, "feet"),
  43144. weight: math.unit(2500, "lb"),
  43145. name: "Dick",
  43146. image: {
  43147. source: "./media/characters/noah-luxray/dick.svg"
  43148. }
  43149. },
  43150. dickAlt: {
  43151. height: math.unit(10.83, "feet"),
  43152. weight: math.unit(2500, "lb"),
  43153. name: "Dick-alt",
  43154. image: {
  43155. source: "./media/characters/noah-luxray/dick-alt.svg"
  43156. }
  43157. },
  43158. },
  43159. [
  43160. {
  43161. name: "BIG",
  43162. height: math.unit(2.7, "meters"),
  43163. default: true
  43164. },
  43165. ]
  43166. ))
  43167. characterMakers.push(() => makeCharacter(
  43168. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43169. {
  43170. standing: {
  43171. height: math.unit(183, "cm"),
  43172. weight: math.unit(68, "kg"),
  43173. name: "Standing",
  43174. image: {
  43175. source: "./media/characters/arion/standing.svg",
  43176. extra: 1869/1807,
  43177. bottom: 93/1962
  43178. }
  43179. },
  43180. reclining: {
  43181. height: math.unit(70.5, "cm"),
  43182. weight: math.unit(68, "lb"),
  43183. name: "Reclining",
  43184. image: {
  43185. source: "./media/characters/arion/reclining.svg",
  43186. extra: 937/870,
  43187. bottom: 63/1000
  43188. }
  43189. },
  43190. },
  43191. [
  43192. {
  43193. name: "Colossus Size, Low",
  43194. height: math.unit(33, "meters"),
  43195. default: true
  43196. },
  43197. {
  43198. name: "Colossus Size, Mid",
  43199. height: math.unit(52, "meters")
  43200. },
  43201. {
  43202. name: "Colossus Size, High",
  43203. height: math.unit(60, "meters")
  43204. },
  43205. {
  43206. name: "Titan Size, Low",
  43207. height: math.unit(91, "meters"),
  43208. },
  43209. {
  43210. name: "Titan Size, Mid",
  43211. height: math.unit(122, "meters")
  43212. },
  43213. {
  43214. name: "Titan Size, High",
  43215. height: math.unit(162, "meters")
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43221. {
  43222. front: {
  43223. height: math.unit(53, "meters"),
  43224. name: "Front",
  43225. image: {
  43226. source: "./media/characters/stellar-marbey/front.svg",
  43227. extra: 1913/1805,
  43228. bottom: 92/2005
  43229. }
  43230. },
  43231. back: {
  43232. height: math.unit(53, "meters"),
  43233. name: "Back",
  43234. image: {
  43235. source: "./media/characters/stellar-marbey/back.svg",
  43236. extra: 1960/1851,
  43237. bottom: 28/1988
  43238. }
  43239. },
  43240. mouth: {
  43241. height: math.unit(3.5, "meters"),
  43242. name: "Mouth",
  43243. image: {
  43244. source: "./media/characters/stellar-marbey/mouth.svg"
  43245. }
  43246. },
  43247. },
  43248. [
  43249. {
  43250. name: "Macro",
  43251. height: math.unit(53, "meters"),
  43252. default: true
  43253. },
  43254. ]
  43255. ))
  43256. characterMakers.push(() => makeCharacter(
  43257. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43258. {
  43259. front: {
  43260. height: math.unit(8 + 1/12, "feet"),
  43261. weight: math.unit(233, "lb"),
  43262. name: "Front",
  43263. image: {
  43264. source: "./media/characters/matsu/front.svg",
  43265. extra: 832/772,
  43266. bottom: 40/872
  43267. }
  43268. },
  43269. back: {
  43270. height: math.unit(8 + 1/12, "feet"),
  43271. weight: math.unit(233, "lb"),
  43272. name: "Back",
  43273. image: {
  43274. source: "./media/characters/matsu/back.svg",
  43275. extra: 839/780,
  43276. bottom: 47/886
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Normal",
  43283. height: math.unit(8 + 1/12, "feet"),
  43284. default: true
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43290. {
  43291. front: {
  43292. height: math.unit(4, "feet"),
  43293. weight: math.unit(148, "lb"),
  43294. name: "Front",
  43295. image: {
  43296. source: "./media/characters/thiz/front.svg",
  43297. extra: 1913/1748,
  43298. bottom: 62/1975
  43299. }
  43300. },
  43301. },
  43302. [
  43303. {
  43304. name: "Normal",
  43305. height: math.unit(4, "feet"),
  43306. default: true
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43312. {
  43313. front: {
  43314. height: math.unit(7 + 6/12, "feet"),
  43315. weight: math.unit(267, "lb"),
  43316. name: "Front",
  43317. image: {
  43318. source: "./media/characters/marcel/front.svg",
  43319. extra: 1221/1096,
  43320. bottom: 76/1297
  43321. }
  43322. },
  43323. },
  43324. [
  43325. {
  43326. name: "Normal",
  43327. height: math.unit(7 + 6/12, "feet"),
  43328. default: true
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43334. {
  43335. side: {
  43336. height: math.unit(42, "meters"),
  43337. name: "Side",
  43338. image: {
  43339. source: "./media/characters/flake/side.svg",
  43340. extra: 1525/1306,
  43341. bottom: 209/1734
  43342. }
  43343. },
  43344. },
  43345. [
  43346. {
  43347. name: "Normal",
  43348. height: math.unit(42, "meters"),
  43349. default: true
  43350. },
  43351. ]
  43352. ))
  43353. characterMakers.push(() => makeCharacter(
  43354. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43355. {
  43356. dressed: {
  43357. height: math.unit(6 + 4/12, "feet"),
  43358. weight: math.unit(520, "lb"),
  43359. name: "Dressed",
  43360. image: {
  43361. source: "./media/characters/someonne/dressed.svg",
  43362. extra: 1020/1010,
  43363. bottom: 178/1198
  43364. }
  43365. },
  43366. undressed: {
  43367. height: math.unit(6 + 4/12, "feet"),
  43368. weight: math.unit(520, "lb"),
  43369. name: "Undressed",
  43370. image: {
  43371. source: "./media/characters/someonne/undressed.svg",
  43372. extra: 1019/1014,
  43373. bottom: 169/1188
  43374. }
  43375. },
  43376. },
  43377. [
  43378. {
  43379. name: "Normal",
  43380. height: math.unit(6 + 4/12, "feet"),
  43381. default: true
  43382. },
  43383. ]
  43384. ))
  43385. characterMakers.push(() => makeCharacter(
  43386. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43387. {
  43388. front: {
  43389. height: math.unit(3, "feet"),
  43390. weight: math.unit(30, "lb"),
  43391. name: "Front",
  43392. image: {
  43393. source: "./media/characters/till/front.svg",
  43394. extra: 892/823,
  43395. bottom: 55/947
  43396. }
  43397. },
  43398. },
  43399. [
  43400. {
  43401. name: "Normal",
  43402. height: math.unit(3, "feet"),
  43403. default: true
  43404. },
  43405. ]
  43406. ))
  43407. characterMakers.push(() => makeCharacter(
  43408. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43409. {
  43410. front: {
  43411. height: math.unit(9 + 8/12, "feet"),
  43412. weight: math.unit(800, "lb"),
  43413. name: "Front",
  43414. image: {
  43415. source: "./media/characters/sydney-heki/front.svg",
  43416. extra: 1360/1300,
  43417. bottom: 22/1382
  43418. }
  43419. },
  43420. back: {
  43421. height: math.unit(9 + 8/12, "feet"),
  43422. weight: math.unit(800, "lb"),
  43423. name: "Back",
  43424. image: {
  43425. source: "./media/characters/sydney-heki/back.svg",
  43426. extra: 1356/1293,
  43427. bottom: 12/1368
  43428. }
  43429. },
  43430. frontDressed: {
  43431. height: math.unit(9 + 8/12, "feet"),
  43432. weight: math.unit(800, "lb"),
  43433. name: "Front-dressed",
  43434. image: {
  43435. source: "./media/characters/sydney-heki/front-dressed.svg",
  43436. extra: 1360/1300,
  43437. bottom: 22/1382
  43438. }
  43439. },
  43440. },
  43441. [
  43442. {
  43443. name: "Normal",
  43444. height: math.unit(9 + 8/12, "feet"),
  43445. default: true
  43446. },
  43447. {
  43448. name: "Macro",
  43449. height: math.unit(500, "feet")
  43450. },
  43451. {
  43452. name: "Megamacro",
  43453. height: math.unit(3.6, "miles")
  43454. },
  43455. ]
  43456. ))
  43457. characterMakers.push(() => makeCharacter(
  43458. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43459. {
  43460. front: {
  43461. height: math.unit(200, "cm"),
  43462. weight: math.unit(250, "lb"),
  43463. name: "Front",
  43464. image: {
  43465. source: "./media/characters/fowler-karlsson/front.svg",
  43466. extra: 897/845,
  43467. bottom: 123/1020
  43468. }
  43469. },
  43470. back: {
  43471. height: math.unit(200, "cm"),
  43472. weight: math.unit(250, "lb"),
  43473. name: "Back",
  43474. image: {
  43475. source: "./media/characters/fowler-karlsson/back.svg",
  43476. extra: 999/944,
  43477. bottom: 26/1025
  43478. }
  43479. },
  43480. dick: {
  43481. height: math.unit(1.92, "feet"),
  43482. weight: math.unit(150, "lb"),
  43483. name: "Dick",
  43484. image: {
  43485. source: "./media/characters/fowler-karlsson/dick.svg"
  43486. }
  43487. },
  43488. },
  43489. [
  43490. {
  43491. name: "Normal",
  43492. height: math.unit(200, "cm"),
  43493. default: true
  43494. },
  43495. {
  43496. name: "Smaller Macro",
  43497. height: math.unit(90, "m")
  43498. },
  43499. {
  43500. name: "Macro",
  43501. height: math.unit(150, "m")
  43502. },
  43503. {
  43504. name: "Bigger Macro",
  43505. height: math.unit(300, "m")
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43511. {
  43512. side: {
  43513. height: math.unit(8 + 2/12, "feet"),
  43514. weight: math.unit(1, "tonne"),
  43515. name: "Side",
  43516. image: {
  43517. source: "./media/characters/rylide/side.svg",
  43518. extra: 1318/1034,
  43519. bottom: 106/1424
  43520. }
  43521. },
  43522. sitting: {
  43523. height: math.unit(303, "cm"),
  43524. weight: math.unit(1, "tonne"),
  43525. name: "Sitting",
  43526. image: {
  43527. source: "./media/characters/rylide/sitting.svg",
  43528. extra: 1303/1103,
  43529. bottom: 36/1339
  43530. }
  43531. },
  43532. },
  43533. [
  43534. {
  43535. name: "Normal",
  43536. height: math.unit(8 + 2/12, "feet"),
  43537. default: true
  43538. },
  43539. ]
  43540. ))
  43541. characterMakers.push(() => makeCharacter(
  43542. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43543. {
  43544. front: {
  43545. height: math.unit(5 + 10/12, "feet"),
  43546. weight: math.unit(160, "lb"),
  43547. name: "Front",
  43548. image: {
  43549. source: "./media/characters/pudask/front.svg",
  43550. extra: 1616/1590,
  43551. bottom: 161/1777
  43552. }
  43553. },
  43554. },
  43555. [
  43556. {
  43557. name: "Ferret Height",
  43558. height: math.unit(2 + 5/12, "feet")
  43559. },
  43560. {
  43561. name: "Canon Height",
  43562. height: math.unit(5 + 10/12, "feet"),
  43563. default: true
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43569. {
  43570. front: {
  43571. height: math.unit(3 + 6/12, "feet"),
  43572. weight: math.unit(60, "lb"),
  43573. name: "Front",
  43574. image: {
  43575. source: "./media/characters/ramita/front.svg",
  43576. extra: 1402/1232,
  43577. bottom: 62/1464
  43578. }
  43579. },
  43580. dressed: {
  43581. height: math.unit(3 + 6/12, "feet"),
  43582. weight: math.unit(60, "lb"),
  43583. name: "Dressed",
  43584. image: {
  43585. source: "./media/characters/ramita/dressed.svg",
  43586. extra: 1534/1249,
  43587. bottom: 50/1584
  43588. }
  43589. },
  43590. },
  43591. [
  43592. {
  43593. name: "Normal",
  43594. height: math.unit(3 + 6/12, "feet"),
  43595. default: true
  43596. },
  43597. ]
  43598. ))
  43599. characterMakers.push(() => makeCharacter(
  43600. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43601. {
  43602. front: {
  43603. height: math.unit(8, "feet"),
  43604. name: "Front",
  43605. image: {
  43606. source: "./media/characters/ark/front.svg",
  43607. extra: 772/693,
  43608. bottom: 45/817
  43609. }
  43610. },
  43611. },
  43612. [
  43613. {
  43614. name: "Normal",
  43615. height: math.unit(8, "feet"),
  43616. default: true
  43617. },
  43618. ]
  43619. ))
  43620. characterMakers.push(() => makeCharacter(
  43621. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43622. {
  43623. front: {
  43624. height: math.unit(6, "feet"),
  43625. weight: math.unit(250, "lb"),
  43626. volume: math.unit(5/8, "gallons"),
  43627. name: "Front",
  43628. image: {
  43629. source: "./media/characters/ludwig-horn/front.svg",
  43630. extra: 1782/1635,
  43631. bottom: 96/1878
  43632. }
  43633. },
  43634. back: {
  43635. height: math.unit(6, "feet"),
  43636. weight: math.unit(250, "lb"),
  43637. volume: math.unit(5/8, "gallons"),
  43638. name: "Back",
  43639. image: {
  43640. source: "./media/characters/ludwig-horn/back.svg",
  43641. extra: 1874/1729,
  43642. bottom: 27/1901
  43643. }
  43644. },
  43645. dick: {
  43646. height: math.unit(1.05, "feet"),
  43647. weight: math.unit(15, "lb"),
  43648. volume: math.unit(5/8, "gallons"),
  43649. name: "Dick",
  43650. image: {
  43651. source: "./media/characters/ludwig-horn/dick.svg"
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Small",
  43658. height: math.unit(6, "feet")
  43659. },
  43660. {
  43661. name: "Typical",
  43662. height: math.unit(12, "feet"),
  43663. default: true
  43664. },
  43665. {
  43666. name: "Building",
  43667. height: math.unit(80, "feet")
  43668. },
  43669. {
  43670. name: "Town",
  43671. height: math.unit(800, "feet")
  43672. },
  43673. {
  43674. name: "Kingdom",
  43675. height: math.unit(80000, "feet")
  43676. },
  43677. {
  43678. name: "Planet",
  43679. height: math.unit(8000000, "feet")
  43680. },
  43681. {
  43682. name: "Universe",
  43683. height: math.unit(8000000000, "feet")
  43684. },
  43685. {
  43686. name: "Transcended",
  43687. height: math.unit(8e27, "feet")
  43688. },
  43689. ]
  43690. ))
  43691. characterMakers.push(() => makeCharacter(
  43692. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43693. {
  43694. front: {
  43695. height: math.unit(5, "feet"),
  43696. weight: math.unit(50, "kg"),
  43697. name: "Front",
  43698. image: {
  43699. source: "./media/characters/biot-avery/front.svg",
  43700. extra: 1295/1232,
  43701. bottom: 86/1381
  43702. }
  43703. },
  43704. },
  43705. [
  43706. {
  43707. name: "Normal",
  43708. height: math.unit(5, "feet"),
  43709. default: true
  43710. },
  43711. ]
  43712. ))
  43713. characterMakers.push(() => makeCharacter(
  43714. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43715. {
  43716. front: {
  43717. height: math.unit(6, "feet"),
  43718. name: "Front",
  43719. image: {
  43720. source: "./media/characters/kitsune-kiro/front.svg",
  43721. extra: 1270/1158,
  43722. bottom: 42/1312
  43723. }
  43724. },
  43725. frontAlt: {
  43726. height: math.unit(6, "feet"),
  43727. name: "Front-alt",
  43728. image: {
  43729. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43730. extra: 1130/1081,
  43731. bottom: 36/1166
  43732. }
  43733. },
  43734. },
  43735. [
  43736. {
  43737. name: "Smol",
  43738. height: math.unit(3, "feet")
  43739. },
  43740. {
  43741. name: "Normal",
  43742. height: math.unit(6, "feet"),
  43743. default: true
  43744. },
  43745. ]
  43746. ))
  43747. characterMakers.push(() => makeCharacter(
  43748. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43749. {
  43750. front: {
  43751. height: math.unit(6, "feet"),
  43752. weight: math.unit(125, "lb"),
  43753. name: "Front",
  43754. image: {
  43755. source: "./media/characters/jack-thatcher/front.svg",
  43756. extra: 1474/1370,
  43757. bottom: 26/1500
  43758. }
  43759. },
  43760. back: {
  43761. height: math.unit(6, "feet"),
  43762. weight: math.unit(125, "lb"),
  43763. name: "Back",
  43764. image: {
  43765. source: "./media/characters/jack-thatcher/back.svg",
  43766. extra: 1489/1384,
  43767. bottom: 18/1507
  43768. }
  43769. },
  43770. },
  43771. [
  43772. {
  43773. name: "Normal",
  43774. height: math.unit(6, "feet"),
  43775. default: true
  43776. },
  43777. {
  43778. name: "Macro",
  43779. height: math.unit(75, "feet")
  43780. },
  43781. {
  43782. name: "Macro-er",
  43783. height: math.unit(250, "feet")
  43784. },
  43785. ]
  43786. ))
  43787. characterMakers.push(() => makeCharacter(
  43788. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43789. {
  43790. front: {
  43791. height: math.unit(7, "feet"),
  43792. weight: math.unit(110, "kg"),
  43793. name: "Front",
  43794. image: {
  43795. source: "./media/characters/max-hyper/front.svg",
  43796. extra: 1969/1881,
  43797. bottom: 49/2018
  43798. }
  43799. },
  43800. },
  43801. [
  43802. {
  43803. name: "Normal",
  43804. height: math.unit(7, "feet"),
  43805. default: true
  43806. },
  43807. ]
  43808. ))
  43809. characterMakers.push(() => makeCharacter(
  43810. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43811. {
  43812. front: {
  43813. height: math.unit(5 + 5/12, "feet"),
  43814. weight: math.unit(160, "lb"),
  43815. name: "Front",
  43816. image: {
  43817. source: "./media/characters/spook/front.svg",
  43818. extra: 794/791,
  43819. bottom: 54/848
  43820. }
  43821. },
  43822. back: {
  43823. height: math.unit(5 + 5/12, "feet"),
  43824. weight: math.unit(160, "lb"),
  43825. name: "Back",
  43826. image: {
  43827. source: "./media/characters/spook/back.svg",
  43828. extra: 812/798,
  43829. bottom: 32/844
  43830. }
  43831. },
  43832. },
  43833. [
  43834. {
  43835. name: "Normal",
  43836. height: math.unit(5 + 5/12, "feet"),
  43837. default: true
  43838. },
  43839. ]
  43840. ))
  43841. characterMakers.push(() => makeCharacter(
  43842. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43843. {
  43844. front: {
  43845. height: math.unit(18, "feet"),
  43846. name: "Front",
  43847. image: {
  43848. source: "./media/characters/xeaduulix/front.svg",
  43849. extra: 1380/1166,
  43850. bottom: 110/1490
  43851. }
  43852. },
  43853. back: {
  43854. height: math.unit(18, "feet"),
  43855. name: "Back",
  43856. image: {
  43857. source: "./media/characters/xeaduulix/back.svg",
  43858. extra: 1592/1170,
  43859. bottom: 128/1720
  43860. }
  43861. },
  43862. frontNsfw: {
  43863. height: math.unit(18, "feet"),
  43864. name: "Front (NSFW)",
  43865. image: {
  43866. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43867. extra: 1380/1166,
  43868. bottom: 110/1490
  43869. }
  43870. },
  43871. backNsfw: {
  43872. height: math.unit(18, "feet"),
  43873. name: "Back (NSFW)",
  43874. image: {
  43875. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43876. extra: 1592/1170,
  43877. bottom: 128/1720
  43878. }
  43879. },
  43880. },
  43881. [
  43882. {
  43883. name: "Normal",
  43884. height: math.unit(18, "feet"),
  43885. default: true
  43886. },
  43887. ]
  43888. ))
  43889. characterMakers.push(() => makeCharacter(
  43890. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43891. {
  43892. spreadWings: {
  43893. height: math.unit(20, "feet"),
  43894. name: "Spread Wings",
  43895. image: {
  43896. source: "./media/characters/fledge/spread-wings.svg",
  43897. extra: 693/635,
  43898. bottom: 26/719
  43899. }
  43900. },
  43901. front: {
  43902. height: math.unit(20, "feet"),
  43903. name: "Front",
  43904. image: {
  43905. source: "./media/characters/fledge/front.svg",
  43906. extra: 684/637,
  43907. bottom: 18/702
  43908. }
  43909. },
  43910. frontAlt: {
  43911. height: math.unit(20, "feet"),
  43912. name: "Front (Alt)",
  43913. image: {
  43914. source: "./media/characters/fledge/front-alt.svg",
  43915. extra: 708/664,
  43916. bottom: 13/721
  43917. }
  43918. },
  43919. back: {
  43920. height: math.unit(20, "feet"),
  43921. name: "Back",
  43922. image: {
  43923. source: "./media/characters/fledge/back.svg",
  43924. extra: 718/634,
  43925. bottom: 22/740
  43926. }
  43927. },
  43928. head: {
  43929. height: math.unit(5.55, "feet"),
  43930. name: "Head",
  43931. image: {
  43932. source: "./media/characters/fledge/head.svg"
  43933. }
  43934. },
  43935. headAlt: {
  43936. height: math.unit(5.1, "feet"),
  43937. name: "Head (Alt)",
  43938. image: {
  43939. source: "./media/characters/fledge/head-alt.svg"
  43940. }
  43941. },
  43942. },
  43943. [
  43944. {
  43945. name: "Small",
  43946. height: math.unit(6 + 2/12, "feet")
  43947. },
  43948. {
  43949. name: "Big",
  43950. height: math.unit(20, "feet"),
  43951. default: true
  43952. },
  43953. {
  43954. name: "Giant",
  43955. height: math.unit(100, "feet")
  43956. },
  43957. {
  43958. name: "Macro",
  43959. height: math.unit(200, "feet")
  43960. },
  43961. ]
  43962. ))
  43963. characterMakers.push(() => makeCharacter(
  43964. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43965. {
  43966. front: {
  43967. height: math.unit(1, "meter"),
  43968. name: "Front",
  43969. image: {
  43970. source: "./media/characters/atlas-morenai/front.svg",
  43971. extra: 1275/1043,
  43972. bottom: 19/1294
  43973. }
  43974. },
  43975. back: {
  43976. height: math.unit(1, "meter"),
  43977. name: "Back",
  43978. image: {
  43979. source: "./media/characters/atlas-morenai/back.svg",
  43980. extra: 1141/1001,
  43981. bottom: 25/1166
  43982. }
  43983. },
  43984. },
  43985. [
  43986. {
  43987. name: "Normal",
  43988. height: math.unit(1, "meter"),
  43989. default: true
  43990. },
  43991. {
  43992. name: "Magic-Infused",
  43993. height: math.unit(5, "meters")
  43994. },
  43995. ]
  43996. ))
  43997. characterMakers.push(() => makeCharacter(
  43998. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43999. {
  44000. front: {
  44001. height: math.unit(5, "meters"),
  44002. name: "Front",
  44003. image: {
  44004. source: "./media/characters/cintia/front.svg",
  44005. extra: 1312/1228,
  44006. bottom: 38/1350
  44007. }
  44008. },
  44009. back: {
  44010. height: math.unit(5, "meters"),
  44011. name: "Back",
  44012. image: {
  44013. source: "./media/characters/cintia/back.svg",
  44014. extra: 1260/1166,
  44015. bottom: 98/1358
  44016. }
  44017. },
  44018. frontDick: {
  44019. height: math.unit(5, "meters"),
  44020. name: "Front (Dick)",
  44021. image: {
  44022. source: "./media/characters/cintia/front-dick.svg",
  44023. extra: 1312/1228,
  44024. bottom: 38/1350
  44025. }
  44026. },
  44027. backDick: {
  44028. height: math.unit(5, "meters"),
  44029. name: "Back (Dick)",
  44030. image: {
  44031. source: "./media/characters/cintia/back-dick.svg",
  44032. extra: 1260/1166,
  44033. bottom: 98/1358
  44034. }
  44035. },
  44036. bust: {
  44037. height: math.unit(1.97, "meters"),
  44038. name: "Bust",
  44039. image: {
  44040. source: "./media/characters/cintia/bust.svg",
  44041. extra: 617/565,
  44042. bottom: 0/617
  44043. }
  44044. },
  44045. },
  44046. [
  44047. {
  44048. name: "Normal",
  44049. height: math.unit(5, "meters"),
  44050. default: true
  44051. },
  44052. ]
  44053. ))
  44054. characterMakers.push(() => makeCharacter(
  44055. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44056. {
  44057. side: {
  44058. height: math.unit(100, "feet"),
  44059. name: "Side",
  44060. image: {
  44061. source: "./media/characters/denora/side.svg",
  44062. extra: 875/803,
  44063. bottom: 9/884
  44064. }
  44065. },
  44066. },
  44067. [
  44068. {
  44069. name: "Standard",
  44070. height: math.unit(100, "feet"),
  44071. default: true
  44072. },
  44073. {
  44074. name: "Grand",
  44075. height: math.unit(1000, "feet")
  44076. },
  44077. {
  44078. name: "Conquering",
  44079. height: math.unit(10000, "feet")
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44085. {
  44086. dressed: {
  44087. height: math.unit(8 + 5/12, "feet"),
  44088. weight: math.unit(700, "lb"),
  44089. name: "Dressed",
  44090. image: {
  44091. source: "./media/characters/kiva/dressed.svg",
  44092. extra: 1102/1055,
  44093. bottom: 60/1162
  44094. }
  44095. },
  44096. nude: {
  44097. height: math.unit(8 + 5/12, "feet"),
  44098. weight: math.unit(700, "lb"),
  44099. name: "Nude",
  44100. image: {
  44101. source: "./media/characters/kiva/nude.svg",
  44102. extra: 1102/1055,
  44103. bottom: 60/1162
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Base Height",
  44110. height: math.unit(8 + 5/12, "feet"),
  44111. default: true
  44112. },
  44113. {
  44114. name: "Macro",
  44115. height: math.unit(100, "feet")
  44116. },
  44117. {
  44118. name: "Max",
  44119. height: math.unit(3280, "feet")
  44120. },
  44121. ]
  44122. ))
  44123. characterMakers.push(() => makeCharacter(
  44124. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44125. {
  44126. front: {
  44127. height: math.unit(6 + 8/12, "feet"),
  44128. weight: math.unit(250, "lb"),
  44129. name: "Front",
  44130. image: {
  44131. source: "./media/characters/ztragon/front.svg",
  44132. extra: 1825/1684,
  44133. bottom: 98/1923
  44134. }
  44135. },
  44136. },
  44137. [
  44138. {
  44139. name: "Normal",
  44140. height: math.unit(6 + 8/12, "feet"),
  44141. default: true
  44142. },
  44143. {
  44144. name: "Macro",
  44145. height: math.unit(80, "feet")
  44146. },
  44147. ]
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44151. {
  44152. front: {
  44153. height: math.unit(10.4, "feet"),
  44154. weight: math.unit(2, "tons"),
  44155. name: "Front",
  44156. image: {
  44157. source: "./media/characters/yesenia/front.svg",
  44158. extra: 1479/1474,
  44159. bottom: 233/1712
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Normal",
  44166. height: math.unit(10.4, "feet"),
  44167. default: true
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44173. {
  44174. normal: {
  44175. height: math.unit(6 + 1/12, "feet"),
  44176. weight: math.unit(180, "lb"),
  44177. name: "Normal",
  44178. image: {
  44179. source: "./media/characters/leanne-lycheborne/normal.svg",
  44180. extra: 1748/1660,
  44181. bottom: 98/1846
  44182. }
  44183. },
  44184. were: {
  44185. height: math.unit(12, "feet"),
  44186. weight: math.unit(1600, "lb"),
  44187. name: "Were",
  44188. image: {
  44189. source: "./media/characters/leanne-lycheborne/were.svg",
  44190. extra: 1485/1432,
  44191. bottom: 66/1551
  44192. }
  44193. },
  44194. },
  44195. [
  44196. {
  44197. name: "Normal",
  44198. height: math.unit(6 + 1/12, "feet"),
  44199. default: true
  44200. },
  44201. ]
  44202. ))
  44203. characterMakers.push(() => makeCharacter(
  44204. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44205. {
  44206. side: {
  44207. height: math.unit(13, "feet"),
  44208. name: "Side",
  44209. image: {
  44210. source: "./media/characters/kira-tyler/side.svg",
  44211. extra: 693/393,
  44212. bottom: 58/751
  44213. }
  44214. },
  44215. },
  44216. [
  44217. {
  44218. name: "Normal",
  44219. height: math.unit(13, "feet"),
  44220. default: true
  44221. },
  44222. ]
  44223. ))
  44224. characterMakers.push(() => makeCharacter(
  44225. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44226. {
  44227. front: {
  44228. height: math.unit(10.3, "feet"),
  44229. weight: math.unit(150, "lb"),
  44230. name: "Front",
  44231. image: {
  44232. source: "./media/characters/blaze/front.svg",
  44233. extra: 1378/1286,
  44234. bottom: 172/1550
  44235. }
  44236. },
  44237. },
  44238. [
  44239. {
  44240. name: "Normal",
  44241. height: math.unit(10.3, "feet"),
  44242. default: true
  44243. },
  44244. ]
  44245. ))
  44246. characterMakers.push(() => makeCharacter(
  44247. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44248. {
  44249. side: {
  44250. height: math.unit(2, "meters"),
  44251. weight: math.unit(400, "kg"),
  44252. name: "Side",
  44253. image: {
  44254. source: "./media/characters/anu/side.svg",
  44255. extra: 506/394,
  44256. bottom: 18/524
  44257. }
  44258. },
  44259. },
  44260. [
  44261. {
  44262. name: "Humanoid",
  44263. height: math.unit(2, "meters")
  44264. },
  44265. {
  44266. name: "Normal",
  44267. height: math.unit(5, "meters"),
  44268. default: true
  44269. },
  44270. ]
  44271. ))
  44272. characterMakers.push(() => makeCharacter(
  44273. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44274. {
  44275. front: {
  44276. height: math.unit(5 + 5/12, "feet"),
  44277. weight: math.unit(170, "lb"),
  44278. name: "Front",
  44279. image: {
  44280. source: "./media/characters/synx-the-lynx/front.svg",
  44281. extra: 1893/1745,
  44282. bottom: 17/1910
  44283. }
  44284. },
  44285. side: {
  44286. height: math.unit(5 + 5/12, "feet"),
  44287. weight: math.unit(170, "lb"),
  44288. name: "Side",
  44289. image: {
  44290. source: "./media/characters/synx-the-lynx/side.svg",
  44291. extra: 1884/1740,
  44292. bottom: 39/1923
  44293. }
  44294. },
  44295. back: {
  44296. height: math.unit(5 + 5/12, "feet"),
  44297. weight: math.unit(170, "lb"),
  44298. name: "Back",
  44299. image: {
  44300. source: "./media/characters/synx-the-lynx/back.svg",
  44301. extra: 1903/1755,
  44302. bottom: 14/1917
  44303. }
  44304. },
  44305. },
  44306. [
  44307. {
  44308. name: "Normal",
  44309. height: math.unit(5 + 5/12, "feet"),
  44310. default: true
  44311. },
  44312. ]
  44313. ))
  44314. characterMakers.push(() => makeCharacter(
  44315. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44316. {
  44317. back: {
  44318. height: math.unit(15, "feet"),
  44319. name: "Back",
  44320. image: {
  44321. source: "./media/characters/nadezda-fex/back.svg",
  44322. extra: 1695/1481,
  44323. bottom: 25/1720
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Normal",
  44330. height: math.unit(15, "feet"),
  44331. default: true
  44332. },
  44333. {
  44334. name: "Macro",
  44335. height: math.unit(2.5, "miles")
  44336. },
  44337. {
  44338. name: "Goddess",
  44339. height: math.unit(2, "multiverses")
  44340. },
  44341. ]
  44342. ))
  44343. characterMakers.push(() => makeCharacter(
  44344. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44345. {
  44346. front: {
  44347. height: math.unit(216, "cm"),
  44348. name: "Front",
  44349. image: {
  44350. source: "./media/characters/lev/front.svg",
  44351. extra: 1728/1670,
  44352. bottom: 82/1810
  44353. }
  44354. },
  44355. back: {
  44356. height: math.unit(216, "cm"),
  44357. name: "Back",
  44358. image: {
  44359. source: "./media/characters/lev/back.svg",
  44360. extra: 1738/1675,
  44361. bottom: 24/1762
  44362. }
  44363. },
  44364. dressed: {
  44365. height: math.unit(216, "cm"),
  44366. name: "Dressed",
  44367. image: {
  44368. source: "./media/characters/lev/dressed.svg",
  44369. extra: 1397/1351,
  44370. bottom: 73/1470
  44371. }
  44372. },
  44373. head: {
  44374. height: math.unit(0.51, "meter"),
  44375. name: "Head",
  44376. image: {
  44377. source: "./media/characters/lev/head.svg"
  44378. }
  44379. },
  44380. },
  44381. [
  44382. {
  44383. name: "Normal",
  44384. height: math.unit(216, "cm"),
  44385. default: true
  44386. },
  44387. {
  44388. name: "Relatively Macro",
  44389. height: math.unit(80, "meters")
  44390. },
  44391. {
  44392. name: "Megamacro",
  44393. height: math.unit(21600, "meters")
  44394. },
  44395. {
  44396. name: "Megamacro+",
  44397. height: math.unit(64800, "meters")
  44398. },
  44399. ]
  44400. ))
  44401. characterMakers.push(() => makeCharacter(
  44402. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44403. {
  44404. front: {
  44405. height: math.unit(2, "meters"),
  44406. weight: math.unit(80, "kg"),
  44407. name: "Front",
  44408. image: {
  44409. source: "./media/characters/moka/front.svg",
  44410. extra: 1337/1255,
  44411. bottom: 58/1395
  44412. }
  44413. },
  44414. },
  44415. [
  44416. {
  44417. name: "Micro",
  44418. height: math.unit(15, "cm")
  44419. },
  44420. {
  44421. name: "Normal",
  44422. height: math.unit(2, "meters"),
  44423. default: true
  44424. },
  44425. {
  44426. name: "Macro",
  44427. height: math.unit(20, "meters"),
  44428. },
  44429. ]
  44430. ))
  44431. characterMakers.push(() => makeCharacter(
  44432. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44433. {
  44434. front: {
  44435. height: math.unit(9, "feet"),
  44436. weight: math.unit(240, "lb"),
  44437. name: "Front",
  44438. image: {
  44439. source: "./media/characters/kuzco/front.svg",
  44440. extra: 1593/1487,
  44441. bottom: 32/1625
  44442. }
  44443. },
  44444. side: {
  44445. height: math.unit(9, "feet"),
  44446. weight: math.unit(240, "lb"),
  44447. name: "Side",
  44448. image: {
  44449. source: "./media/characters/kuzco/side.svg",
  44450. extra: 1575/1485,
  44451. bottom: 30/1605
  44452. }
  44453. },
  44454. back: {
  44455. height: math.unit(9, "feet"),
  44456. weight: math.unit(240, "lb"),
  44457. name: "Back",
  44458. image: {
  44459. source: "./media/characters/kuzco/back.svg",
  44460. extra: 1603/1514,
  44461. bottom: 14/1617
  44462. }
  44463. },
  44464. },
  44465. [
  44466. {
  44467. name: "Normal",
  44468. height: math.unit(9, "feet"),
  44469. default: true
  44470. },
  44471. ]
  44472. ))
  44473. characterMakers.push(() => makeCharacter(
  44474. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44475. {
  44476. side: {
  44477. height: math.unit(2, "meters"),
  44478. weight: math.unit(300, "kg"),
  44479. name: "Side",
  44480. image: {
  44481. source: "./media/characters/ceruleus/side.svg",
  44482. extra: 1068/974,
  44483. bottom: 126/1194
  44484. }
  44485. },
  44486. },
  44487. [
  44488. {
  44489. name: "Normal",
  44490. height: math.unit(16, "meters"),
  44491. default: true
  44492. },
  44493. ]
  44494. ))
  44495. characterMakers.push(() => makeCharacter(
  44496. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44497. {
  44498. front: {
  44499. height: math.unit(9, "feet"),
  44500. weight: math.unit(500, "kg"),
  44501. name: "Front",
  44502. image: {
  44503. source: "./media/characters/acouya/front.svg",
  44504. extra: 1660/1473,
  44505. bottom: 28/1688
  44506. }
  44507. },
  44508. },
  44509. [
  44510. {
  44511. name: "Normal",
  44512. height: math.unit(9, "feet"),
  44513. default: true
  44514. },
  44515. ]
  44516. ))
  44517. characterMakers.push(() => makeCharacter(
  44518. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44519. {
  44520. front: {
  44521. height: math.unit(5 + 6/12, "feet"),
  44522. weight: math.unit(195, "lb"),
  44523. name: "Front",
  44524. image: {
  44525. source: "./media/characters/vant/front.svg",
  44526. extra: 1396/1320,
  44527. bottom: 20/1416
  44528. }
  44529. },
  44530. back: {
  44531. height: math.unit(5 + 6/12, "feet"),
  44532. weight: math.unit(195, "lb"),
  44533. name: "Back",
  44534. image: {
  44535. source: "./media/characters/vant/back.svg",
  44536. extra: 1396/1320,
  44537. bottom: 20/1416
  44538. }
  44539. },
  44540. maw: {
  44541. height: math.unit(0.75, "feet"),
  44542. name: "Maw",
  44543. image: {
  44544. source: "./media/characters/vant/maw.svg"
  44545. }
  44546. },
  44547. paw: {
  44548. height: math.unit(1.07, "feet"),
  44549. name: "Paw",
  44550. image: {
  44551. source: "./media/characters/vant/paw.svg"
  44552. }
  44553. },
  44554. },
  44555. [
  44556. {
  44557. name: "Micro",
  44558. height: math.unit(0.25, "inches")
  44559. },
  44560. {
  44561. name: "Normal",
  44562. height: math.unit(5 + 6/12, "feet"),
  44563. default: true
  44564. },
  44565. {
  44566. name: "Macro",
  44567. height: math.unit(75, "feet")
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44573. {
  44574. front: {
  44575. height: math.unit(30, "meters"),
  44576. weight: math.unit(363, "tons"),
  44577. name: "Front",
  44578. image: {
  44579. source: "./media/characters/ahra/front.svg",
  44580. extra: 1914/1814,
  44581. bottom: 46/1960
  44582. }
  44583. },
  44584. },
  44585. [
  44586. {
  44587. name: "Macro",
  44588. height: math.unit(30, "meters"),
  44589. default: true
  44590. },
  44591. ]
  44592. ))
  44593. characterMakers.push(() => makeCharacter(
  44594. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44595. {
  44596. undressed: {
  44597. height: math.unit(2, "m"),
  44598. weight: math.unit(250, "kg"),
  44599. name: "Undressed",
  44600. image: {
  44601. source: "./media/characters/coriander/undressed.svg",
  44602. extra: 1757/1606,
  44603. bottom: 107/1864
  44604. }
  44605. },
  44606. dressed: {
  44607. height: math.unit(2, "m"),
  44608. weight: math.unit(250, "kg"),
  44609. name: "Dressed",
  44610. image: {
  44611. source: "./media/characters/coriander/dressed.svg",
  44612. extra: 1757/1606,
  44613. bottom: 107/1864
  44614. }
  44615. },
  44616. },
  44617. [
  44618. {
  44619. name: "Normal",
  44620. height: math.unit(4, "meters"),
  44621. default: true
  44622. },
  44623. {
  44624. name: "XL",
  44625. height: math.unit(6, "meters")
  44626. },
  44627. {
  44628. name: "XXL",
  44629. height: math.unit(8, "meters")
  44630. },
  44631. ]
  44632. ))
  44633. characterMakers.push(() => makeCharacter(
  44634. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44635. {
  44636. front: {
  44637. height: math.unit(6, "feet"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/syrinx/front.svg",
  44641. extra: 1557/1259,
  44642. bottom: 171/1728
  44643. }
  44644. },
  44645. },
  44646. [
  44647. {
  44648. name: "Normal",
  44649. height: math.unit(6 + 3/12, "feet"),
  44650. default: true
  44651. },
  44652. ]
  44653. ))
  44654. characterMakers.push(() => makeCharacter(
  44655. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44656. {
  44657. front: {
  44658. height: math.unit(11 + 6/12, "feet"),
  44659. weight: math.unit(1.5, "tons"),
  44660. name: "Front",
  44661. image: {
  44662. source: "./media/characters/bor/front.svg",
  44663. extra: 1189/1109,
  44664. bottom: 170/1359
  44665. }
  44666. },
  44667. },
  44668. [
  44669. {
  44670. name: "Normal",
  44671. height: math.unit(11 + 6/12, "feet"),
  44672. default: true
  44673. },
  44674. {
  44675. name: "Macro",
  44676. height: math.unit(32 + 9/12, "feet")
  44677. },
  44678. ]
  44679. ))
  44680. characterMakers.push(() => makeCharacter(
  44681. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44682. {
  44683. anthro: {
  44684. height: math.unit(9, "feet"),
  44685. weight: math.unit(2076, "lb"),
  44686. name: "Anthro",
  44687. image: {
  44688. source: "./media/characters/abacus/anthro.svg",
  44689. extra: 1540/1494,
  44690. bottom: 233/1773
  44691. }
  44692. },
  44693. pigeon: {
  44694. height: math.unit(1, "feet"),
  44695. name: "Pigeon",
  44696. image: {
  44697. source: "./media/characters/abacus/pigeon.svg",
  44698. extra: 528/525,
  44699. bottom: 46/574
  44700. }
  44701. },
  44702. },
  44703. [
  44704. {
  44705. name: "Normal",
  44706. height: math.unit(9, "feet"),
  44707. default: true
  44708. },
  44709. ]
  44710. ))
  44711. characterMakers.push(() => makeCharacter(
  44712. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44713. {
  44714. side: {
  44715. height: math.unit(6, "feet"),
  44716. name: "Side",
  44717. image: {
  44718. source: "./media/characters/delkhan/side.svg",
  44719. extra: 1884/1786,
  44720. bottom: 308/2192
  44721. }
  44722. },
  44723. head: {
  44724. height: math.unit(3.38, "feet"),
  44725. name: "Head",
  44726. image: {
  44727. source: "./media/characters/delkhan/head.svg"
  44728. }
  44729. },
  44730. },
  44731. [
  44732. {
  44733. name: "Normal",
  44734. height: math.unit(72, "feet"),
  44735. default: true
  44736. },
  44737. {
  44738. name: "Giant",
  44739. height: math.unit(172, "feet")
  44740. },
  44741. ]
  44742. ))
  44743. characterMakers.push(() => makeCharacter(
  44744. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44745. {
  44746. standing: {
  44747. height: math.unit(6, "feet"),
  44748. name: "Standing",
  44749. image: {
  44750. source: "./media/characters/euchidat/standing.svg",
  44751. extra: 1612/1553,
  44752. bottom: 116/1728
  44753. }
  44754. },
  44755. leaning: {
  44756. height: math.unit(6, "feet"),
  44757. name: "Leaning",
  44758. image: {
  44759. source: "./media/characters/euchidat/leaning.svg",
  44760. extra: 1719/1674,
  44761. bottom: 27/1746
  44762. }
  44763. },
  44764. },
  44765. [
  44766. {
  44767. name: "Normal",
  44768. height: math.unit(175, "feet"),
  44769. default: true
  44770. },
  44771. {
  44772. name: "Megamacro",
  44773. height: math.unit(190, "miles")
  44774. },
  44775. {
  44776. name: "Gigamacro",
  44777. height: math.unit(190000, "miles")
  44778. },
  44779. ]
  44780. ))
  44781. characterMakers.push(() => makeCharacter(
  44782. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44783. {
  44784. front: {
  44785. height: math.unit(6, "feet"),
  44786. weight: math.unit(150, "lb"),
  44787. name: "Front",
  44788. image: {
  44789. source: "./media/characters/rebecca-stack/front.svg",
  44790. extra: 1256/1201,
  44791. bottom: 18/1274
  44792. }
  44793. },
  44794. },
  44795. [
  44796. {
  44797. name: "Normal",
  44798. height: math.unit(5 + 8/12, "feet"),
  44799. default: true
  44800. },
  44801. {
  44802. name: "Demolitionist",
  44803. height: math.unit(200, "feet")
  44804. },
  44805. {
  44806. name: "Out of Control",
  44807. height: math.unit(2, "miles")
  44808. },
  44809. {
  44810. name: "Giga",
  44811. height: math.unit(7200, "miles")
  44812. },
  44813. ]
  44814. ))
  44815. characterMakers.push(() => makeCharacter(
  44816. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44817. {
  44818. front: {
  44819. height: math.unit(6, "feet"),
  44820. weight: math.unit(150, "lb"),
  44821. name: "Front",
  44822. image: {
  44823. source: "./media/characters/jenny-cartwright/front.svg",
  44824. extra: 1384/1376,
  44825. bottom: 58/1442
  44826. }
  44827. },
  44828. },
  44829. [
  44830. {
  44831. name: "Normal",
  44832. height: math.unit(6 + 7/12, "feet"),
  44833. default: true
  44834. },
  44835. {
  44836. name: "Librarian",
  44837. height: math.unit(55, "feet")
  44838. },
  44839. {
  44840. name: "Sightseer",
  44841. height: math.unit(50, "miles")
  44842. },
  44843. {
  44844. name: "Giga",
  44845. height: math.unit(30000, "miles")
  44846. },
  44847. ]
  44848. ))
  44849. characterMakers.push(() => makeCharacter(
  44850. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44851. {
  44852. nude: {
  44853. height: math.unit(8, "feet"),
  44854. weight: math.unit(225, "lb"),
  44855. name: "Nude",
  44856. image: {
  44857. source: "./media/characters/marvy/nude.svg",
  44858. extra: 1900/1683,
  44859. bottom: 89/1989
  44860. }
  44861. },
  44862. dressed: {
  44863. height: math.unit(8, "feet"),
  44864. weight: math.unit(225, "lb"),
  44865. name: "Dressed",
  44866. image: {
  44867. source: "./media/characters/marvy/dressed.svg",
  44868. extra: 1900/1683,
  44869. bottom: 89/1989
  44870. }
  44871. },
  44872. head: {
  44873. height: math.unit(2.85, "feet"),
  44874. name: "Head",
  44875. image: {
  44876. source: "./media/characters/marvy/head.svg"
  44877. }
  44878. },
  44879. },
  44880. [
  44881. {
  44882. name: "Normal",
  44883. height: math.unit(8, "feet"),
  44884. default: true
  44885. },
  44886. ]
  44887. ))
  44888. characterMakers.push(() => makeCharacter(
  44889. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44890. {
  44891. front: {
  44892. height: math.unit(8, "feet"),
  44893. weight: math.unit(250, "lb"),
  44894. name: "Front",
  44895. image: {
  44896. source: "./media/characters/leah/front.svg",
  44897. extra: 1257/1149,
  44898. bottom: 109/1366
  44899. }
  44900. },
  44901. },
  44902. [
  44903. {
  44904. name: "Normal",
  44905. height: math.unit(8, "feet"),
  44906. default: true
  44907. },
  44908. {
  44909. name: "Minimacro",
  44910. height: math.unit(40, "feet")
  44911. },
  44912. {
  44913. name: "Macro",
  44914. height: math.unit(124, "feet")
  44915. },
  44916. {
  44917. name: "Megamacro",
  44918. height: math.unit(850, "feet")
  44919. },
  44920. ]
  44921. ))
  44922. characterMakers.push(() => makeCharacter(
  44923. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44924. {
  44925. side: {
  44926. height: math.unit(13 + 6/12, "feet"),
  44927. weight: math.unit(3200, "lb"),
  44928. name: "Side",
  44929. image: {
  44930. source: "./media/characters/alvir/side.svg",
  44931. extra: 896/589,
  44932. bottom: 26/922
  44933. }
  44934. },
  44935. },
  44936. [
  44937. {
  44938. name: "Normal",
  44939. height: math.unit(13 + 6/12, "feet"),
  44940. default: true
  44941. },
  44942. ]
  44943. ))
  44944. characterMakers.push(() => makeCharacter(
  44945. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  44946. {
  44947. front: {
  44948. height: math.unit(5 + 4/12, "feet"),
  44949. weight: math.unit(236, "lb"),
  44950. name: "Front",
  44951. image: {
  44952. source: "./media/characters/zaina-khalil/front.svg",
  44953. extra: 1533/1485,
  44954. bottom: 94/1627
  44955. }
  44956. },
  44957. side: {
  44958. height: math.unit(5 + 4/12, "feet"),
  44959. weight: math.unit(236, "lb"),
  44960. name: "Side",
  44961. image: {
  44962. source: "./media/characters/zaina-khalil/side.svg",
  44963. extra: 1537/1498,
  44964. bottom: 66/1603
  44965. }
  44966. },
  44967. back: {
  44968. height: math.unit(5 + 4/12, "feet"),
  44969. weight: math.unit(236, "lb"),
  44970. name: "Back",
  44971. image: {
  44972. source: "./media/characters/zaina-khalil/back.svg",
  44973. extra: 1546/1494,
  44974. bottom: 89/1635
  44975. }
  44976. },
  44977. },
  44978. [
  44979. {
  44980. name: "Normal",
  44981. height: math.unit(5 + 4/12, "feet"),
  44982. default: true
  44983. },
  44984. ]
  44985. ))
  44986. //characters
  44987. function makeCharacters() {
  44988. const results = [];
  44989. characterMakers.forEach(character => {
  44990. results.push(character());
  44991. });
  44992. return results;
  44993. }