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

43277 строки
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. }
  1755. //species
  1756. function getSpeciesInfo(speciesList) {
  1757. let result = new Set();
  1758. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1759. result.add(entry)
  1760. });
  1761. return Array.from(result);
  1762. };
  1763. function getSpeciesInfoHelper(species) {
  1764. if (!speciesData[species]) {
  1765. console.warn(species + " doesn't exist");
  1766. return [];
  1767. }
  1768. if (speciesData[species].parents) {
  1769. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1770. } else {
  1771. return [species];
  1772. }
  1773. }
  1774. characterMakers.push(() => makeCharacter(
  1775. {
  1776. name: "Fen",
  1777. species: ["crux"],
  1778. description: {
  1779. title: "Bio",
  1780. text: "Very furry. Sheds on everything."
  1781. },
  1782. tags: [
  1783. "anthro",
  1784. "goo"
  1785. ]
  1786. },
  1787. {
  1788. back: {
  1789. height: math.unit(2.2428, "meter"),
  1790. weight: math.unit(124.738, "kg"),
  1791. name: "Back",
  1792. image: {
  1793. source: "./media/characters/fen/back.svg",
  1794. },
  1795. info: {
  1796. description: {
  1797. mode: "append",
  1798. text: "\n\nHe is not currently looking at you."
  1799. }
  1800. }
  1801. },
  1802. full: {
  1803. height: math.unit(1.34, "meter"),
  1804. weight: math.unit(225, "kg"),
  1805. name: "Full",
  1806. image: {
  1807. source: "./media/characters/fen/full.svg"
  1808. },
  1809. info: {
  1810. description: {
  1811. mode: "append",
  1812. text: "\n\nMunch."
  1813. }
  1814. }
  1815. },
  1816. kneeling: {
  1817. height: math.unit(5.4, "feet"),
  1818. weight: math.unit(124.738, "kg"),
  1819. name: "Kneeling",
  1820. image: {
  1821. source: "./media/characters/fen/kneeling.svg",
  1822. extra: 563 / 507
  1823. }
  1824. },
  1825. goo: {
  1826. height: math.unit(2.8, "feet"),
  1827. weight: math.unit(125, "kg"),
  1828. capacity: math.unit(1, "people"),
  1829. name: "Goo",
  1830. image: {
  1831. source: "./media/characters/fen/goo.svg",
  1832. bottom: 116 / 613
  1833. }
  1834. },
  1835. lounging: {
  1836. height: math.unit(6.5, "feet"),
  1837. weight: math.unit(125, "kg"),
  1838. name: "Lounging",
  1839. image: {
  1840. source: "./media/characters/fen/lounging.svg"
  1841. }
  1842. },
  1843. },
  1844. [
  1845. {
  1846. name: "Normal",
  1847. height: math.unit(2.2428, "meter")
  1848. },
  1849. {
  1850. name: "Big",
  1851. height: math.unit(12, "feet")
  1852. },
  1853. {
  1854. name: "Minimacro",
  1855. height: math.unit(40, "feet"),
  1856. default: true,
  1857. info: {
  1858. description: {
  1859. mode: "append",
  1860. text: "\n\nTOO DAMN BIG"
  1861. }
  1862. }
  1863. },
  1864. {
  1865. name: "Macro",
  1866. height: math.unit(100, "feet"),
  1867. info: {
  1868. description: {
  1869. mode: "append",
  1870. text: "\n\nTOO DAMN BIG"
  1871. }
  1872. }
  1873. },
  1874. {
  1875. name: "Macro+",
  1876. height: math.unit(300, "feet")
  1877. },
  1878. {
  1879. name: "Megamacro",
  1880. height: math.unit(2, "miles")
  1881. }
  1882. ]
  1883. ))
  1884. characterMakers.push(() => makeCharacter(
  1885. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1886. {
  1887. front: {
  1888. height: math.unit(183, "cm"),
  1889. weight: math.unit(80, "kg"),
  1890. name: "Front",
  1891. image: {
  1892. source: "./media/characters/sofia-fluttertail/front.svg",
  1893. bottom: 0.01,
  1894. extra: 2154 / 2081
  1895. }
  1896. },
  1897. frontAlt: {
  1898. height: math.unit(183, "cm"),
  1899. weight: math.unit(80, "kg"),
  1900. name: "Front (alt)",
  1901. image: {
  1902. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1903. }
  1904. },
  1905. back: {
  1906. height: math.unit(183, "cm"),
  1907. weight: math.unit(80, "kg"),
  1908. name: "Back",
  1909. image: {
  1910. source: "./media/characters/sofia-fluttertail/back.svg"
  1911. }
  1912. },
  1913. kneeling: {
  1914. height: math.unit(125, "cm"),
  1915. weight: math.unit(80, "kg"),
  1916. name: "Kneeling",
  1917. image: {
  1918. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1919. extra: 1033 / 977,
  1920. bottom: 23.7 / 1057
  1921. }
  1922. },
  1923. maw: {
  1924. height: math.unit(183 / 5, "cm"),
  1925. name: "Maw",
  1926. image: {
  1927. source: "./media/characters/sofia-fluttertail/maw.svg"
  1928. }
  1929. },
  1930. mawcloseup: {
  1931. height: math.unit(183 / 5 * 0.41, "cm"),
  1932. name: "Maw (Closeup)",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1935. }
  1936. },
  1937. paws: {
  1938. height: math.unit(1.17, "feet"),
  1939. name: "Paws",
  1940. image: {
  1941. source: "./media/characters/sofia-fluttertail/paws.svg",
  1942. extra: 851 / 851,
  1943. bottom: 17 / 868
  1944. }
  1945. },
  1946. },
  1947. [
  1948. {
  1949. name: "Normal",
  1950. height: math.unit(1.83, "meter")
  1951. },
  1952. {
  1953. name: "Size Thief",
  1954. height: math.unit(18, "feet")
  1955. },
  1956. {
  1957. name: "50 Foot Collie",
  1958. height: math.unit(50, "feet")
  1959. },
  1960. {
  1961. name: "Macro",
  1962. height: math.unit(96, "feet"),
  1963. default: true
  1964. },
  1965. {
  1966. name: "Megamerger",
  1967. height: math.unit(650, "feet")
  1968. },
  1969. ]
  1970. ))
  1971. characterMakers.push(() => makeCharacter(
  1972. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1973. {
  1974. front: {
  1975. height: math.unit(7, "feet"),
  1976. weight: math.unit(100, "kg"),
  1977. name: "Front",
  1978. image: {
  1979. source: "./media/characters/march/front.svg",
  1980. extra: 1992/1851,
  1981. bottom: 39/2031
  1982. }
  1983. },
  1984. foot: {
  1985. height: math.unit(0.9, "feet"),
  1986. name: "Foot",
  1987. image: {
  1988. source: "./media/characters/march/foot.svg"
  1989. }
  1990. },
  1991. },
  1992. [
  1993. {
  1994. name: "Normal",
  1995. height: math.unit(7.9, "feet")
  1996. },
  1997. {
  1998. name: "Macro",
  1999. height: math.unit(220, "meters")
  2000. },
  2001. {
  2002. name: "Megamacro",
  2003. height: math.unit(2.98, "km"),
  2004. default: true
  2005. },
  2006. {
  2007. name: "Gigamacro",
  2008. height: math.unit(15963, "km")
  2009. },
  2010. {
  2011. name: "Teramacro",
  2012. height: math.unit(2980000000, "km")
  2013. },
  2014. {
  2015. name: "Examacro",
  2016. height: math.unit(250, "parsecs")
  2017. },
  2018. ]
  2019. ))
  2020. characterMakers.push(() => makeCharacter(
  2021. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2022. {
  2023. front: {
  2024. height: math.unit(6, "feet"),
  2025. weight: math.unit(60, "kg"),
  2026. name: "Front",
  2027. image: {
  2028. source: "./media/characters/noir/front.svg",
  2029. extra: 1,
  2030. bottom: 0.032
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(6.6, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(500, "feet")
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(2.5, "km"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(22500, "km")
  2051. },
  2052. {
  2053. name: "Teramacro",
  2054. height: math.unit(2500000000, "km")
  2055. },
  2056. {
  2057. name: "Examacro",
  2058. height: math.unit(200, "parsecs")
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(7, "feet"),
  2067. weight: math.unit(100, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/okuri/front.svg",
  2071. extra: 1,
  2072. bottom: 0.037
  2073. }
  2074. },
  2075. back: {
  2076. height: math.unit(7, "feet"),
  2077. weight: math.unit(100, "kg"),
  2078. name: "Back",
  2079. image: {
  2080. source: "./media/characters/okuri/back.svg",
  2081. extra: 1,
  2082. bottom: 0.007
  2083. }
  2084. },
  2085. },
  2086. [
  2087. {
  2088. name: "Megamacro",
  2089. height: math.unit(100, "miles"),
  2090. default: true
  2091. },
  2092. ]
  2093. ))
  2094. characterMakers.push(() => makeCharacter(
  2095. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2096. {
  2097. front: {
  2098. height: math.unit(7, "feet"),
  2099. weight: math.unit(100, "kg"),
  2100. name: "Front",
  2101. image: {
  2102. source: "./media/characters/manny/front.svg",
  2103. extra: 1,
  2104. bottom: 0.06
  2105. }
  2106. },
  2107. back: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(100, "kg"),
  2110. name: "Back",
  2111. image: {
  2112. source: "./media/characters/manny/back.svg",
  2113. extra: 1,
  2114. bottom: 0.014
  2115. }
  2116. },
  2117. },
  2118. [
  2119. {
  2120. name: "Normal",
  2121. height: math.unit(7, "feet"),
  2122. },
  2123. {
  2124. name: "Macro",
  2125. height: math.unit(78, "feet"),
  2126. default: true
  2127. },
  2128. {
  2129. name: "Macro+",
  2130. height: math.unit(300, "meters")
  2131. },
  2132. {
  2133. name: "Macro++",
  2134. height: math.unit(2400, "meters")
  2135. },
  2136. {
  2137. name: "Megamacro",
  2138. height: math.unit(5167, "meters")
  2139. },
  2140. {
  2141. name: "Gigamacro",
  2142. height: math.unit(41769, "miles")
  2143. },
  2144. ]
  2145. ))
  2146. characterMakers.push(() => makeCharacter(
  2147. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2148. {
  2149. front: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Front",
  2153. image: {
  2154. source: "./media/characters/adake/front-1.svg"
  2155. }
  2156. },
  2157. frontAlt: {
  2158. height: math.unit(7, "feet"),
  2159. weight: math.unit(100, "kg"),
  2160. name: "Front (Alt)",
  2161. image: {
  2162. source: "./media/characters/adake/front-2.svg",
  2163. extra: 1,
  2164. bottom: 0.01
  2165. }
  2166. },
  2167. back: {
  2168. height: math.unit(7, "feet"),
  2169. weight: math.unit(100, "kg"),
  2170. name: "Back",
  2171. image: {
  2172. source: "./media/characters/adake/back.svg",
  2173. }
  2174. },
  2175. kneel: {
  2176. height: math.unit(5.385, "feet"),
  2177. weight: math.unit(100, "kg"),
  2178. name: "Kneeling",
  2179. image: {
  2180. source: "./media/characters/adake/kneel.svg",
  2181. bottom: 0.052
  2182. }
  2183. },
  2184. },
  2185. [
  2186. {
  2187. name: "Normal",
  2188. height: math.unit(7, "feet"),
  2189. },
  2190. {
  2191. name: "Macro",
  2192. height: math.unit(78, "feet"),
  2193. default: true
  2194. },
  2195. {
  2196. name: "Macro+",
  2197. height: math.unit(300, "meters")
  2198. },
  2199. {
  2200. name: "Macro++",
  2201. height: math.unit(2400, "meters")
  2202. },
  2203. {
  2204. name: "Megamacro",
  2205. height: math.unit(5167, "meters")
  2206. },
  2207. {
  2208. name: "Gigamacro",
  2209. height: math.unit(41769, "miles")
  2210. },
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2215. {
  2216. front: {
  2217. height: math.unit(1.65, "meters"),
  2218. weight: math.unit(50, "kg"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/elijah/front.svg",
  2222. extra: 858 / 830,
  2223. bottom: 95.5 / 953.8559
  2224. }
  2225. },
  2226. back: {
  2227. height: math.unit(1.65, "meters"),
  2228. weight: math.unit(50, "kg"),
  2229. name: "Back",
  2230. image: {
  2231. source: "./media/characters/elijah/back.svg",
  2232. extra: 895 / 850,
  2233. bottom: 5.3 / 897.956
  2234. }
  2235. },
  2236. frontNsfw: {
  2237. height: math.unit(1.65, "meters"),
  2238. weight: math.unit(50, "kg"),
  2239. name: "Front (NSFW)",
  2240. image: {
  2241. source: "./media/characters/elijah/front-nsfw.svg",
  2242. extra: 858 / 830,
  2243. bottom: 95.5 / 953.8559
  2244. }
  2245. },
  2246. backNsfw: {
  2247. height: math.unit(1.65, "meters"),
  2248. weight: math.unit(50, "kg"),
  2249. name: "Back (NSFW)",
  2250. image: {
  2251. source: "./media/characters/elijah/back-nsfw.svg",
  2252. extra: 895 / 850,
  2253. bottom: 5.3 / 897.956
  2254. }
  2255. },
  2256. dick: {
  2257. height: math.unit(1, "feet"),
  2258. name: "Dick",
  2259. image: {
  2260. source: "./media/characters/elijah/dick.svg"
  2261. }
  2262. },
  2263. beakOpen: {
  2264. height: math.unit(1.25, "feet"),
  2265. name: "Beak (Open)",
  2266. image: {
  2267. source: "./media/characters/elijah/beak-open.svg"
  2268. }
  2269. },
  2270. beakShut: {
  2271. height: math.unit(1.25, "feet"),
  2272. name: "Beak (Shut)",
  2273. image: {
  2274. source: "./media/characters/elijah/beak-shut.svg"
  2275. }
  2276. },
  2277. footFlexing: {
  2278. height: math.unit(1.61, "feet"),
  2279. name: "Foot (Flexing)",
  2280. image: {
  2281. source: "./media/characters/elijah/foot-flexing.svg"
  2282. }
  2283. },
  2284. footStepping: {
  2285. height: math.unit(1.44, "feet"),
  2286. name: "Foot (Stepping)",
  2287. image: {
  2288. source: "./media/characters/elijah/foot-stepping.svg"
  2289. }
  2290. },
  2291. plantigradeLeg: {
  2292. height: math.unit(2.34, "feet"),
  2293. name: "Plantigrade Leg",
  2294. image: {
  2295. source: "./media/characters/elijah/plantigrade-leg.svg"
  2296. }
  2297. },
  2298. plantigradeFootLeft: {
  2299. height: math.unit(0.9, "feet"),
  2300. name: "Plantigrade Foot (Left)",
  2301. image: {
  2302. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2303. }
  2304. },
  2305. plantigradeFootRight: {
  2306. height: math.unit(0.9, "feet"),
  2307. name: "Plantigrade Foot (Right)",
  2308. image: {
  2309. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2310. }
  2311. },
  2312. },
  2313. [
  2314. {
  2315. name: "Normal",
  2316. height: math.unit(1.65, "meters")
  2317. },
  2318. {
  2319. name: "Macro",
  2320. height: math.unit(55, "meters"),
  2321. default: true
  2322. },
  2323. {
  2324. name: "Macro+",
  2325. height: math.unit(105, "meters")
  2326. },
  2327. ]
  2328. ))
  2329. characterMakers.push(() => makeCharacter(
  2330. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2331. {
  2332. front: {
  2333. height: math.unit(11, "feet"),
  2334. weight: math.unit(320, "kg"),
  2335. name: "Front",
  2336. image: {
  2337. source: "./media/characters/rai/front.svg",
  2338. extra: 1802/1696,
  2339. bottom: 68/1870
  2340. }
  2341. },
  2342. frontDressed: {
  2343. height: math.unit(11, "feet"),
  2344. weight: math.unit(320, "kg"),
  2345. name: "Front (Dressed)",
  2346. image: {
  2347. source: "./media/characters/rai/front-dressed.svg",
  2348. extra: 1802/1696,
  2349. bottom: 68/1870
  2350. }
  2351. },
  2352. side: {
  2353. height: math.unit(11, "feet"),
  2354. weight: math.unit(320, "kg"),
  2355. name: "Side",
  2356. image: {
  2357. source: "./media/characters/rai/side.svg",
  2358. extra: 1789/1710,
  2359. bottom: 115/1904
  2360. }
  2361. },
  2362. back: {
  2363. height: math.unit(11, "feet"),
  2364. weight: math.unit(320, "kg"),
  2365. name: "Back",
  2366. image: {
  2367. source: "./media/characters/rai/back.svg",
  2368. extra: 1770/1707,
  2369. bottom: 28/1798
  2370. }
  2371. },
  2372. feral: {
  2373. height: math.unit(11, "feet"),
  2374. weight: math.unit(640, "kg"),
  2375. name: "Feral",
  2376. image: {
  2377. source: "./media/characters/rai/feral.svg",
  2378. extra: 1035/642,
  2379. bottom: 86/1121
  2380. }
  2381. },
  2382. dragon: {
  2383. height: math.unit(23, "feet"),
  2384. weight: math.unit(50000, "lb"),
  2385. name: "Dragon",
  2386. image: {
  2387. source: "./media/characters/rai/dragon.svg",
  2388. extra: 2498 / 2030,
  2389. bottom: 85.2 / 2584
  2390. }
  2391. },
  2392. maw: {
  2393. height: math.unit(6 / 3.81416, "feet"),
  2394. name: "Maw",
  2395. image: {
  2396. source: "./media/characters/rai/maw.svg"
  2397. }
  2398. },
  2399. },
  2400. [
  2401. {
  2402. name: "Normal",
  2403. height: math.unit(11, "feet")
  2404. },
  2405. {
  2406. name: "Macro",
  2407. height: math.unit(302, "feet"),
  2408. default: true
  2409. },
  2410. ]
  2411. ))
  2412. characterMakers.push(() => makeCharacter(
  2413. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2414. {
  2415. frontDressed: {
  2416. height: math.unit(216, "feet"),
  2417. weight: math.unit(7000000, "lb"),
  2418. name: "Front (Dressed)",
  2419. image: {
  2420. source: "./media/characters/jazzy/front-dressed.svg",
  2421. extra: 2738 / 2651,
  2422. bottom: 41.8 / 2786
  2423. }
  2424. },
  2425. backDressed: {
  2426. height: math.unit(216, "feet"),
  2427. weight: math.unit(7000000, "lb"),
  2428. name: "Back (Dressed)",
  2429. image: {
  2430. source: "./media/characters/jazzy/back-dressed.svg",
  2431. extra: 2775 / 2673,
  2432. bottom: 36.8 / 2817
  2433. }
  2434. },
  2435. front: {
  2436. height: math.unit(216, "feet"),
  2437. weight: math.unit(7000000, "lb"),
  2438. name: "Front",
  2439. image: {
  2440. source: "./media/characters/jazzy/front.svg",
  2441. extra: 2738 / 2651,
  2442. bottom: 41.8 / 2786
  2443. }
  2444. },
  2445. back: {
  2446. height: math.unit(216, "feet"),
  2447. weight: math.unit(7000000, "lb"),
  2448. name: "Back",
  2449. image: {
  2450. source: "./media/characters/jazzy/back.svg",
  2451. extra: 2775 / 2673,
  2452. bottom: 36.8 / 2817
  2453. }
  2454. },
  2455. maw: {
  2456. height: math.unit(20, "feet"),
  2457. name: "Maw",
  2458. image: {
  2459. source: "./media/characters/jazzy/maw.svg"
  2460. }
  2461. },
  2462. paws: {
  2463. height: math.unit(27.5, "feet"),
  2464. name: "Paws",
  2465. image: {
  2466. source: "./media/characters/jazzy/paws.svg"
  2467. }
  2468. },
  2469. eye: {
  2470. height: math.unit(4.4, "feet"),
  2471. name: "Eye",
  2472. image: {
  2473. source: "./media/characters/jazzy/eye.svg"
  2474. }
  2475. },
  2476. droneOffense: {
  2477. height: math.unit(9.5, "inches"),
  2478. name: "Drone (Offense)",
  2479. image: {
  2480. source: "./media/characters/jazzy/drone-offense.svg"
  2481. }
  2482. },
  2483. droneRecon: {
  2484. height: math.unit(9.5, "inches"),
  2485. name: "Drone (Recon)",
  2486. image: {
  2487. source: "./media/characters/jazzy/drone-recon.svg"
  2488. }
  2489. },
  2490. droneDefense: {
  2491. height: math.unit(9.5, "inches"),
  2492. name: "Drone (Defense)",
  2493. image: {
  2494. source: "./media/characters/jazzy/drone-defense.svg"
  2495. }
  2496. },
  2497. },
  2498. [
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(216, "feet"),
  2502. default: true
  2503. },
  2504. ]
  2505. ))
  2506. characterMakers.push(() => makeCharacter(
  2507. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2508. {
  2509. front: {
  2510. height: math.unit(9 + 6/12, "feet"),
  2511. weight: math.unit(700, "lb"),
  2512. name: "Front",
  2513. image: {
  2514. source: "./media/characters/flamm/front.svg",
  2515. extra: 1751/1632,
  2516. bottom: 46/1797
  2517. }
  2518. },
  2519. buff: {
  2520. height: math.unit(9 + 6/12, "feet"),
  2521. weight: math.unit(950, "lb"),
  2522. name: "Buff",
  2523. image: {
  2524. source: "./media/characters/flamm/buff.svg",
  2525. extra: 3018/2874,
  2526. bottom: 221/3239
  2527. }
  2528. },
  2529. },
  2530. [
  2531. {
  2532. name: "Normal",
  2533. height: math.unit(9.5, "feet")
  2534. },
  2535. {
  2536. name: "Macro",
  2537. height: math.unit(200, "feet"),
  2538. default: true
  2539. },
  2540. ]
  2541. ))
  2542. characterMakers.push(() => makeCharacter(
  2543. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2544. {
  2545. front: {
  2546. height: math.unit(5 + 3/12, "feet"),
  2547. weight: math.unit(60, "kg"),
  2548. name: "Front",
  2549. image: {
  2550. source: "./media/characters/zephiro/front.svg",
  2551. extra: 2309 / 2162,
  2552. bottom: 0.069
  2553. }
  2554. },
  2555. side: {
  2556. height: math.unit(5 + 3/12, "feet"),
  2557. weight: math.unit(60, "kg"),
  2558. name: "Side",
  2559. image: {
  2560. source: "./media/characters/zephiro/side.svg",
  2561. extra: 2403 / 2279,
  2562. bottom: 0.015
  2563. }
  2564. },
  2565. back: {
  2566. height: math.unit(5 + 3/12, "feet"),
  2567. weight: math.unit(60, "kg"),
  2568. name: "Back",
  2569. image: {
  2570. source: "./media/characters/zephiro/back.svg",
  2571. extra: 2373 / 2244,
  2572. bottom: 0.013
  2573. }
  2574. },
  2575. hand: {
  2576. height: math.unit(0.68, "feet"),
  2577. name: "Hand",
  2578. image: {
  2579. source: "./media/characters/zephiro/hand.svg"
  2580. }
  2581. },
  2582. paw: {
  2583. height: math.unit(1, "feet"),
  2584. name: "Paw",
  2585. image: {
  2586. source: "./media/characters/zephiro/paw.svg"
  2587. }
  2588. },
  2589. beans: {
  2590. height: math.unit(0.93, "feet"),
  2591. name: "Beans",
  2592. image: {
  2593. source: "./media/characters/zephiro/beans.svg"
  2594. }
  2595. },
  2596. },
  2597. [
  2598. {
  2599. name: "Micro",
  2600. height: math.unit(3, "inches")
  2601. },
  2602. {
  2603. name: "Normal",
  2604. height: math.unit(5 + 3 / 12, "feet"),
  2605. default: true
  2606. },
  2607. {
  2608. name: "Macro",
  2609. height: math.unit(118, "feet")
  2610. },
  2611. ]
  2612. ))
  2613. characterMakers.push(() => makeCharacter(
  2614. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2615. {
  2616. front: {
  2617. height: math.unit(5, "feet"),
  2618. weight: math.unit(90, "kg"),
  2619. name: "Front",
  2620. image: {
  2621. source: "./media/characters/fory/front.svg",
  2622. extra: 2862 / 2674,
  2623. bottom: 180 / 3043.8
  2624. }
  2625. },
  2626. back: {
  2627. height: math.unit(5, "feet"),
  2628. weight: math.unit(90, "kg"),
  2629. name: "Back",
  2630. image: {
  2631. source: "./media/characters/fory/back.svg",
  2632. extra: 2962 / 2791,
  2633. bottom: 106 / 3071.8
  2634. }
  2635. },
  2636. foot: {
  2637. height: math.unit(2.14, "feet"),
  2638. name: "Foot",
  2639. image: {
  2640. source: "./media/characters/fory/foot.svg"
  2641. }
  2642. },
  2643. },
  2644. [
  2645. {
  2646. name: "Normal",
  2647. height: math.unit(5, "feet")
  2648. },
  2649. {
  2650. name: "Macro",
  2651. height: math.unit(50, "feet"),
  2652. default: true
  2653. },
  2654. {
  2655. name: "Megamacro",
  2656. height: math.unit(10, "miles")
  2657. },
  2658. {
  2659. name: "Gigamacro",
  2660. height: math.unit(5, "earths")
  2661. },
  2662. ]
  2663. ))
  2664. characterMakers.push(() => makeCharacter(
  2665. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2666. {
  2667. front: {
  2668. height: math.unit(7, "feet"),
  2669. weight: math.unit(90, "kg"),
  2670. name: "Front",
  2671. image: {
  2672. source: "./media/characters/kurrikage/front.svg",
  2673. extra: 1,
  2674. bottom: 0.035
  2675. }
  2676. },
  2677. back: {
  2678. height: math.unit(7, "feet"),
  2679. weight: math.unit(90, "lb"),
  2680. name: "Back",
  2681. image: {
  2682. source: "./media/characters/kurrikage/back.svg"
  2683. }
  2684. },
  2685. paw: {
  2686. height: math.unit(1.5, "feet"),
  2687. name: "Paw",
  2688. image: {
  2689. source: "./media/characters/kurrikage/paw.svg"
  2690. }
  2691. },
  2692. staff: {
  2693. height: math.unit(6.7, "feet"),
  2694. name: "Staff",
  2695. image: {
  2696. source: "./media/characters/kurrikage/staff.svg"
  2697. }
  2698. },
  2699. peek: {
  2700. height: math.unit(1.05, "feet"),
  2701. name: "Peeking",
  2702. image: {
  2703. source: "./media/characters/kurrikage/peek.svg",
  2704. bottom: 0.08
  2705. }
  2706. },
  2707. },
  2708. [
  2709. {
  2710. name: "Normal",
  2711. height: math.unit(12, "feet"),
  2712. default: true
  2713. },
  2714. {
  2715. name: "Big",
  2716. height: math.unit(20, "feet")
  2717. },
  2718. {
  2719. name: "Macro",
  2720. height: math.unit(500, "feet")
  2721. },
  2722. {
  2723. name: "Megamacro",
  2724. height: math.unit(20, "miles")
  2725. },
  2726. ]
  2727. ))
  2728. characterMakers.push(() => makeCharacter(
  2729. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2730. {
  2731. front: {
  2732. height: math.unit(6, "feet"),
  2733. weight: math.unit(75, "kg"),
  2734. name: "Front",
  2735. image: {
  2736. source: "./media/characters/shingo/front.svg",
  2737. extra: 1900/1825,
  2738. bottom: 82/1982
  2739. }
  2740. },
  2741. side: {
  2742. height: math.unit(6, "feet"),
  2743. weight: math.unit(75, "kg"),
  2744. name: "Side",
  2745. image: {
  2746. source: "./media/characters/shingo/side.svg",
  2747. extra: 1930/1865,
  2748. bottom: 16/1946
  2749. }
  2750. },
  2751. back: {
  2752. height: math.unit(6, "feet"),
  2753. weight: math.unit(75, "kg"),
  2754. name: "Back",
  2755. image: {
  2756. source: "./media/characters/shingo/back.svg",
  2757. extra: 1922/1852,
  2758. bottom: 16/1938
  2759. }
  2760. },
  2761. frontDressed: {
  2762. height: math.unit(6, "feet"),
  2763. weight: math.unit(150, "lb"),
  2764. name: "Front-dressed",
  2765. image: {
  2766. source: "./media/characters/shingo/front-dressed.svg",
  2767. extra: 1900/1825,
  2768. bottom: 82/1982
  2769. }
  2770. },
  2771. paw: {
  2772. height: math.unit(1.29, "feet"),
  2773. name: "Paw",
  2774. image: {
  2775. source: "./media/characters/shingo/paw.svg"
  2776. }
  2777. },
  2778. hand: {
  2779. height: math.unit(1.07, "feet"),
  2780. name: "Hand",
  2781. image: {
  2782. source: "./media/characters/shingo/hand.svg"
  2783. }
  2784. },
  2785. frontAlt: {
  2786. height: math.unit(6, "feet"),
  2787. weight: math.unit(75, "kg"),
  2788. name: "Front (Alt)",
  2789. image: {
  2790. source: "./media/characters/shingo/front-alt.svg",
  2791. extra: 3511 / 3338,
  2792. bottom: 0.005
  2793. }
  2794. },
  2795. frontAlt2: {
  2796. height: math.unit(6, "feet"),
  2797. weight: math.unit(75, "kg"),
  2798. name: "Front (Alt 2)",
  2799. image: {
  2800. source: "./media/characters/shingo/front-alt-2.svg",
  2801. extra: 706/681,
  2802. bottom: 11/717
  2803. }
  2804. },
  2805. pawAlt: {
  2806. height: math.unit(1, "feet"),
  2807. name: "Paw (Alt)",
  2808. image: {
  2809. source: "./media/characters/shingo/paw-alt.svg"
  2810. }
  2811. },
  2812. },
  2813. [
  2814. {
  2815. name: "Micro",
  2816. height: math.unit(4, "inches")
  2817. },
  2818. {
  2819. name: "Normal",
  2820. height: math.unit(6, "feet"),
  2821. default: true
  2822. },
  2823. {
  2824. name: "Macro",
  2825. height: math.unit(108, "feet")
  2826. },
  2827. {
  2828. name: "Macro+",
  2829. height: math.unit(1500, "feet")
  2830. },
  2831. ]
  2832. ))
  2833. characterMakers.push(() => makeCharacter(
  2834. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2835. {
  2836. side: {
  2837. height: math.unit(6, "feet"),
  2838. weight: math.unit(75, "kg"),
  2839. name: "Side",
  2840. image: {
  2841. source: "./media/characters/aigey/side.svg"
  2842. }
  2843. },
  2844. },
  2845. [
  2846. {
  2847. name: "Macro",
  2848. height: math.unit(200, "feet"),
  2849. default: true
  2850. },
  2851. {
  2852. name: "Megamacro",
  2853. height: math.unit(100, "miles")
  2854. },
  2855. ]
  2856. )
  2857. )
  2858. characterMakers.push(() => makeCharacter(
  2859. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2860. {
  2861. front: {
  2862. height: math.unit(5 + 5 / 12, "feet"),
  2863. weight: math.unit(75, "kg"),
  2864. name: "Front",
  2865. image: {
  2866. source: "./media/characters/natasha/front.svg",
  2867. extra: 859 / 824,
  2868. bottom: 23 / 879.6
  2869. }
  2870. },
  2871. frontNsfw: {
  2872. height: math.unit(5 + 5 / 12, "feet"),
  2873. weight: math.unit(75, "kg"),
  2874. name: "Front (NSFW)",
  2875. image: {
  2876. source: "./media/characters/natasha/front-nsfw.svg",
  2877. extra: 859 / 824,
  2878. bottom: 23 / 879.6
  2879. }
  2880. },
  2881. frontErect: {
  2882. height: math.unit(5 + 5 / 12, "feet"),
  2883. weight: math.unit(75, "kg"),
  2884. name: "Front (Erect)",
  2885. image: {
  2886. source: "./media/characters/natasha/front-erect.svg",
  2887. extra: 859 / 824,
  2888. bottom: 23 / 879.6
  2889. }
  2890. },
  2891. back: {
  2892. height: math.unit(5 + 5 / 12, "feet"),
  2893. weight: math.unit(75, "kg"),
  2894. name: "Back",
  2895. image: {
  2896. source: "./media/characters/natasha/back.svg",
  2897. extra: 887.9 / 852.6,
  2898. bottom: 9.7 / 896.4
  2899. }
  2900. },
  2901. backAlt: {
  2902. height: math.unit(5 + 5 / 12, "feet"),
  2903. weight: math.unit(75, "kg"),
  2904. name: "Back (Alt)",
  2905. image: {
  2906. source: "./media/characters/natasha/back-alt.svg",
  2907. extra: 1236.7 / 1192,
  2908. bottom: 22.3 / 1258.2
  2909. }
  2910. },
  2911. dick: {
  2912. height: math.unit(1.772, "feet"),
  2913. name: "Dick",
  2914. image: {
  2915. source: "./media/characters/natasha/dick.svg"
  2916. }
  2917. },
  2918. paw: {
  2919. height: math.unit(0.250, "meters"),
  2920. name: "Paw",
  2921. image: {
  2922. source: "./media/characters/natasha/paw.svg"
  2923. }
  2924. },
  2925. },
  2926. [
  2927. {
  2928. name: "Normal",
  2929. height: math.unit(5 + 5 / 12, "feet")
  2930. },
  2931. {
  2932. name: "Large",
  2933. height: math.unit(12, "feet")
  2934. },
  2935. {
  2936. name: "Macro",
  2937. height: math.unit(100, "feet"),
  2938. default: true
  2939. },
  2940. {
  2941. name: "Macro+",
  2942. height: math.unit(260, "feet")
  2943. },
  2944. {
  2945. name: "Macro++",
  2946. height: math.unit(1, "mile")
  2947. },
  2948. ]
  2949. ))
  2950. characterMakers.push(() => makeCharacter(
  2951. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2952. {
  2953. front: {
  2954. height: math.unit(6, "feet"),
  2955. weight: math.unit(75, "kg"),
  2956. name: "Front",
  2957. image: {
  2958. source: "./media/characters/malik/front.svg"
  2959. }
  2960. },
  2961. side: {
  2962. height: math.unit(6, "feet"),
  2963. weight: math.unit(75, "kg"),
  2964. name: "Side",
  2965. image: {
  2966. source: "./media/characters/malik/side.svg",
  2967. extra: 1.1539
  2968. }
  2969. },
  2970. back: {
  2971. height: math.unit(6, "feet"),
  2972. weight: math.unit(75, "kg"),
  2973. name: "Back",
  2974. image: {
  2975. source: "./media/characters/malik/back.svg"
  2976. }
  2977. },
  2978. },
  2979. [
  2980. {
  2981. name: "Macro",
  2982. height: math.unit(156, "feet"),
  2983. default: true
  2984. },
  2985. {
  2986. name: "Macro+",
  2987. height: math.unit(1188, "feet")
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/sefer/front.svg",
  3000. extra: 848 / 659,
  3001. bottom: 28.3 / 876.442
  3002. }
  3003. },
  3004. back: {
  3005. height: math.unit(6, "feet"),
  3006. weight: math.unit(75, "kg"),
  3007. name: "Back",
  3008. image: {
  3009. source: "./media/characters/sefer/back.svg",
  3010. extra: 864 / 695,
  3011. bottom: 10 / 871
  3012. }
  3013. },
  3014. frontDressed: {
  3015. height: math.unit(6, "feet"),
  3016. weight: math.unit(75, "kg"),
  3017. name: "Front (Dressed)",
  3018. image: {
  3019. source: "./media/characters/sefer/front-dressed.svg",
  3020. extra: 839 / 653,
  3021. bottom: 37.6 / 878
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Normal",
  3028. height: math.unit(6, "feet"),
  3029. default: true
  3030. },
  3031. ]
  3032. ))
  3033. characterMakers.push(() => makeCharacter(
  3034. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3035. {
  3036. body: {
  3037. height: math.unit(2.2428, "meter"),
  3038. weight: math.unit(124.738, "kg"),
  3039. name: "Body",
  3040. image: {
  3041. extra: 1225 / 1050,
  3042. source: "./media/characters/north/front.svg"
  3043. }
  3044. }
  3045. },
  3046. [
  3047. {
  3048. name: "Micro",
  3049. height: math.unit(4, "inches")
  3050. },
  3051. {
  3052. name: "Macro",
  3053. height: math.unit(63, "meters")
  3054. },
  3055. {
  3056. name: "Megamacro",
  3057. height: math.unit(101, "miles"),
  3058. default: true
  3059. }
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3064. {
  3065. angled: {
  3066. height: math.unit(4, "meter"),
  3067. weight: math.unit(150, "kg"),
  3068. name: "Angled",
  3069. image: {
  3070. source: "./media/characters/talan/angled-sfw.svg",
  3071. bottom: 29 / 3734
  3072. }
  3073. },
  3074. angledNsfw: {
  3075. height: math.unit(4, "meter"),
  3076. weight: math.unit(150, "kg"),
  3077. name: "Angled (NSFW)",
  3078. image: {
  3079. source: "./media/characters/talan/angled-nsfw.svg",
  3080. bottom: 29 / 3734
  3081. }
  3082. },
  3083. frontNsfw: {
  3084. height: math.unit(4, "meter"),
  3085. weight: math.unit(150, "kg"),
  3086. name: "Front (NSFW)",
  3087. image: {
  3088. source: "./media/characters/talan/front-nsfw.svg",
  3089. bottom: 29 / 3734
  3090. }
  3091. },
  3092. sideNsfw: {
  3093. height: math.unit(4, "meter"),
  3094. weight: math.unit(150, "kg"),
  3095. name: "Side (NSFW)",
  3096. image: {
  3097. source: "./media/characters/talan/side-nsfw.svg",
  3098. bottom: 29 / 3734
  3099. }
  3100. },
  3101. back: {
  3102. height: math.unit(4, "meter"),
  3103. weight: math.unit(150, "kg"),
  3104. name: "Back",
  3105. image: {
  3106. source: "./media/characters/talan/back.svg"
  3107. }
  3108. },
  3109. dickBottom: {
  3110. height: math.unit(0.621, "meter"),
  3111. name: "Dick (Bottom)",
  3112. image: {
  3113. source: "./media/characters/talan/dick-bottom.svg"
  3114. }
  3115. },
  3116. dickTop: {
  3117. height: math.unit(0.621, "meter"),
  3118. name: "Dick (Top)",
  3119. image: {
  3120. source: "./media/characters/talan/dick-top.svg"
  3121. }
  3122. },
  3123. dickSide: {
  3124. height: math.unit(0.305, "meter"),
  3125. name: "Dick (Side)",
  3126. image: {
  3127. source: "./media/characters/talan/dick-side.svg"
  3128. }
  3129. },
  3130. dickFront: {
  3131. height: math.unit(0.305, "meter"),
  3132. name: "Dick (Front)",
  3133. image: {
  3134. source: "./media/characters/talan/dick-front.svg"
  3135. }
  3136. },
  3137. },
  3138. [
  3139. {
  3140. name: "Normal",
  3141. height: math.unit(4, "meters")
  3142. },
  3143. {
  3144. name: "Macro",
  3145. height: math.unit(100, "meters")
  3146. },
  3147. {
  3148. name: "Megamacro",
  3149. height: math.unit(2, "miles"),
  3150. default: true
  3151. },
  3152. {
  3153. name: "Gigamacro",
  3154. height: math.unit(5000, "miles")
  3155. },
  3156. {
  3157. name: "Teramacro",
  3158. height: math.unit(100, "parsecs")
  3159. }
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(2, "meter"),
  3167. weight: math.unit(90, "kg"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/gael'rathus/front.svg"
  3171. }
  3172. },
  3173. frontAlt: {
  3174. height: math.unit(2, "meter"),
  3175. weight: math.unit(90, "kg"),
  3176. name: "Front (alt)",
  3177. image: {
  3178. source: "./media/characters/gael'rathus/front-alt.svg"
  3179. }
  3180. },
  3181. frontAlt2: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(90, "kg"),
  3184. name: "Front (alt 2)",
  3185. image: {
  3186. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3187. }
  3188. }
  3189. },
  3190. [
  3191. {
  3192. name: "Normal",
  3193. height: math.unit(9, "feet"),
  3194. default: true
  3195. },
  3196. {
  3197. name: "Large",
  3198. height: math.unit(25, "feet")
  3199. },
  3200. {
  3201. name: "Macro",
  3202. height: math.unit(0.25, "miles")
  3203. },
  3204. {
  3205. name: "Megamacro",
  3206. height: math.unit(10, "miles")
  3207. }
  3208. ]
  3209. ))
  3210. characterMakers.push(() => makeCharacter(
  3211. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3212. {
  3213. side: {
  3214. height: math.unit(2, "meter"),
  3215. weight: math.unit(140, "kg"),
  3216. name: "Side",
  3217. image: {
  3218. source: "./media/characters/sosha/side.svg",
  3219. bottom: 0.042
  3220. }
  3221. },
  3222. },
  3223. [
  3224. {
  3225. name: "Normal",
  3226. height: math.unit(12, "feet"),
  3227. default: true
  3228. }
  3229. ]
  3230. ))
  3231. characterMakers.push(() => makeCharacter(
  3232. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3233. {
  3234. side: {
  3235. height: math.unit(5 + 5 / 12, "feet"),
  3236. weight: math.unit(170, "kg"),
  3237. name: "Side",
  3238. image: {
  3239. source: "./media/characters/runnola/side.svg",
  3240. extra: 741 / 448,
  3241. bottom: 0.05
  3242. }
  3243. },
  3244. },
  3245. [
  3246. {
  3247. name: "Small",
  3248. height: math.unit(3, "feet")
  3249. },
  3250. {
  3251. name: "Normal",
  3252. height: math.unit(5 + 5 / 12, "feet"),
  3253. default: true
  3254. },
  3255. {
  3256. name: "Big",
  3257. height: math.unit(10, "feet")
  3258. },
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3263. {
  3264. front: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(50, "kg"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/kurribird/front.svg",
  3270. bottom: 0.015
  3271. }
  3272. },
  3273. frontAlt: {
  3274. height: math.unit(1.5, "meter"),
  3275. weight: math.unit(50, "kg"),
  3276. name: "Front (Alt)",
  3277. image: {
  3278. source: "./media/characters/kurribird/front-alt.svg",
  3279. extra: 1.45
  3280. }
  3281. },
  3282. },
  3283. [
  3284. {
  3285. name: "Normal",
  3286. height: math.unit(7, "feet")
  3287. },
  3288. {
  3289. name: "Big",
  3290. height: math.unit(12, "feet"),
  3291. default: true
  3292. },
  3293. {
  3294. name: "Macro",
  3295. height: math.unit(1500, "feet")
  3296. },
  3297. {
  3298. name: "Megamacro",
  3299. height: math.unit(2, "miles")
  3300. }
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(80, "kg"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/elbial/front.svg",
  3312. extra: 1643 / 1556,
  3313. bottom: 60.2 / 1696
  3314. }
  3315. },
  3316. side: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(80, "kg"),
  3319. name: "Side",
  3320. image: {
  3321. source: "./media/characters/elbial/side.svg",
  3322. extra: 1630 / 1565,
  3323. bottom: 71.5 / 1697
  3324. }
  3325. },
  3326. back: {
  3327. height: math.unit(2, "meter"),
  3328. weight: math.unit(80, "kg"),
  3329. name: "Back",
  3330. image: {
  3331. source: "./media/characters/elbial/back.svg",
  3332. extra: 1668 / 1595,
  3333. bottom: 5.6 / 1672
  3334. }
  3335. },
  3336. frontDressed: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(80, "kg"),
  3339. name: "Front (Dressed)",
  3340. image: {
  3341. source: "./media/characters/elbial/front-dressed.svg",
  3342. extra: 1653 / 1584,
  3343. bottom: 57 / 1708
  3344. }
  3345. },
  3346. genitals: {
  3347. height: math.unit(2 / 3.367, "meter"),
  3348. name: "Genitals",
  3349. image: {
  3350. source: "./media/characters/elbial/genitals.svg"
  3351. }
  3352. },
  3353. },
  3354. [
  3355. {
  3356. name: "Large",
  3357. height: math.unit(100, "feet")
  3358. },
  3359. {
  3360. name: "Macro",
  3361. height: math.unit(500, "feet"),
  3362. default: true
  3363. },
  3364. {
  3365. name: "Megamacro",
  3366. height: math.unit(10, "miles")
  3367. },
  3368. {
  3369. name: "Gigamacro",
  3370. height: math.unit(25000, "miles")
  3371. },
  3372. {
  3373. name: "Full-Size",
  3374. height: math.unit(8000000, "gigaparsecs")
  3375. }
  3376. ]
  3377. ))
  3378. characterMakers.push(() => makeCharacter(
  3379. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3380. {
  3381. front: {
  3382. height: math.unit(2, "meter"),
  3383. weight: math.unit(60, "kg"),
  3384. name: "Front",
  3385. image: {
  3386. source: "./media/characters/noah/front.svg"
  3387. }
  3388. },
  3389. talons: {
  3390. height: math.unit(0.315, "meter"),
  3391. name: "Talons",
  3392. image: {
  3393. source: "./media/characters/noah/talons.svg"
  3394. }
  3395. }
  3396. },
  3397. [
  3398. {
  3399. name: "Large",
  3400. height: math.unit(50, "feet")
  3401. },
  3402. {
  3403. name: "Macro",
  3404. height: math.unit(750, "feet"),
  3405. default: true
  3406. },
  3407. {
  3408. name: "Megamacro",
  3409. height: math.unit(50, "miles")
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(100000, "miles")
  3414. },
  3415. {
  3416. name: "Full-Size",
  3417. height: math.unit(3000000000, "miles")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(80, "kg"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/natalya/front.svg"
  3430. }
  3431. },
  3432. back: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(80, "kg"),
  3435. name: "Back",
  3436. image: {
  3437. source: "./media/characters/natalya/back.svg"
  3438. }
  3439. }
  3440. },
  3441. [
  3442. {
  3443. name: "Normal",
  3444. height: math.unit(150, "feet"),
  3445. default: true
  3446. },
  3447. {
  3448. name: "Megamacro",
  3449. height: math.unit(5, "miles")
  3450. },
  3451. {
  3452. name: "Full-Size",
  3453. height: math.unit(600, "kiloparsecs")
  3454. }
  3455. ]
  3456. ))
  3457. characterMakers.push(() => makeCharacter(
  3458. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3459. {
  3460. front: {
  3461. height: math.unit(2, "meter"),
  3462. weight: math.unit(50, "kg"),
  3463. name: "Front",
  3464. image: {
  3465. source: "./media/characters/erestrebah/front.svg",
  3466. extra: 208 / 193,
  3467. bottom: 0.055
  3468. }
  3469. },
  3470. back: {
  3471. height: math.unit(2, "meter"),
  3472. weight: math.unit(50, "kg"),
  3473. name: "Back",
  3474. image: {
  3475. source: "./media/characters/erestrebah/back.svg",
  3476. extra: 1.3
  3477. }
  3478. }
  3479. },
  3480. [
  3481. {
  3482. name: "Normal",
  3483. height: math.unit(10, "feet")
  3484. },
  3485. {
  3486. name: "Large",
  3487. height: math.unit(50, "feet"),
  3488. default: true
  3489. },
  3490. {
  3491. name: "Macro",
  3492. height: math.unit(300, "feet")
  3493. },
  3494. {
  3495. name: "Macro+",
  3496. height: math.unit(750, "feet")
  3497. },
  3498. {
  3499. name: "Megamacro",
  3500. height: math.unit(3, "miles")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(80, "kg"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/jennifer/front.svg",
  3513. bottom: 0.11,
  3514. extra: 1.16
  3515. }
  3516. },
  3517. frontAlt: {
  3518. height: math.unit(2, "meter"),
  3519. weight: math.unit(80, "kg"),
  3520. name: "Front (Alt)",
  3521. image: {
  3522. source: "./media/characters/jennifer/front-alt.svg"
  3523. }
  3524. }
  3525. },
  3526. [
  3527. {
  3528. name: "Canon Height",
  3529. height: math.unit(120, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro+",
  3534. height: math.unit(300, "feet")
  3535. },
  3536. {
  3537. name: "Megamacro",
  3538. height: math.unit(20000, "feet")
  3539. }
  3540. ]
  3541. ))
  3542. characterMakers.push(() => makeCharacter(
  3543. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3544. {
  3545. front: {
  3546. height: math.unit(2, "meter"),
  3547. weight: math.unit(50, "kg"),
  3548. name: "Front",
  3549. image: {
  3550. source: "./media/characters/kalista/front.svg",
  3551. extra: 1947 / 1700,
  3552. bottom: 76.6 / 1412.98
  3553. }
  3554. },
  3555. back: {
  3556. height: math.unit(2, "meter"),
  3557. weight: math.unit(50, "kg"),
  3558. name: "Back",
  3559. image: {
  3560. source: "./media/characters/kalista/back.svg",
  3561. extra: 1366 / 1156,
  3562. bottom: 33.9 / 1362.78
  3563. }
  3564. }
  3565. },
  3566. [
  3567. {
  3568. name: "Uncomfortably Small",
  3569. height: math.unit(10, "feet")
  3570. },
  3571. {
  3572. name: "Small",
  3573. height: math.unit(30, "feet")
  3574. },
  3575. {
  3576. name: "Macro",
  3577. height: math.unit(100, "feet"),
  3578. default: true
  3579. },
  3580. {
  3581. name: "Macro+",
  3582. height: math.unit(2000, "feet")
  3583. },
  3584. {
  3585. name: "True Form",
  3586. height: math.unit(8924, "miles")
  3587. }
  3588. ]
  3589. ))
  3590. characterMakers.push(() => makeCharacter(
  3591. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3592. {
  3593. front: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(120, "kg"),
  3596. name: "Front",
  3597. image: {
  3598. source: "./media/characters/ggv/front.svg"
  3599. }
  3600. },
  3601. side: {
  3602. height: math.unit(2, "meter"),
  3603. weight: math.unit(120, "kg"),
  3604. name: "Side",
  3605. image: {
  3606. source: "./media/characters/ggv/side.svg"
  3607. }
  3608. }
  3609. },
  3610. [
  3611. {
  3612. name: "Extremely Puny",
  3613. height: math.unit(9 + 5 / 12, "feet")
  3614. },
  3615. {
  3616. name: "Horribly Small",
  3617. height: math.unit(47.7, "miles"),
  3618. default: true
  3619. },
  3620. {
  3621. name: "Reasonably Sized",
  3622. height: math.unit(25000, "parsecs")
  3623. },
  3624. {
  3625. name: "Slightly Uncompressed",
  3626. height: math.unit(7.77e31, "parsecs")
  3627. },
  3628. {
  3629. name: "Omniversal",
  3630. height: math.unit(1e300, "meters")
  3631. },
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(75, "lb"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/napalm/front.svg"
  3643. }
  3644. },
  3645. back: {
  3646. height: math.unit(2, "meter"),
  3647. weight: math.unit(75, "lb"),
  3648. name: "Back",
  3649. image: {
  3650. source: "./media/characters/napalm/back.svg"
  3651. }
  3652. }
  3653. },
  3654. [
  3655. {
  3656. name: "Standard",
  3657. height: math.unit(55, "feet"),
  3658. default: true
  3659. }
  3660. ]
  3661. ))
  3662. characterMakers.push(() => makeCharacter(
  3663. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3664. {
  3665. front: {
  3666. height: math.unit(7 + 5 / 6, "feet"),
  3667. weight: math.unit(325, "lb"),
  3668. name: "Front",
  3669. image: {
  3670. source: "./media/characters/asana/front.svg",
  3671. extra: 1133 / 1060,
  3672. bottom: 15.2 / 1148.6
  3673. }
  3674. },
  3675. back: {
  3676. height: math.unit(7 + 5 / 6, "feet"),
  3677. weight: math.unit(325, "lb"),
  3678. name: "Back",
  3679. image: {
  3680. source: "./media/characters/asana/back.svg",
  3681. extra: 1114 / 1043,
  3682. bottom: 5 / 1120
  3683. }
  3684. },
  3685. dressedDark: {
  3686. height: math.unit(7 + 5 / 6, "feet"),
  3687. weight: math.unit(325, "lb"),
  3688. name: "Dressed (Dark)",
  3689. image: {
  3690. source: "./media/characters/asana/dressed-dark.svg",
  3691. extra: 1133 / 1060,
  3692. bottom: 15.2 / 1148.6
  3693. }
  3694. },
  3695. dressedLight: {
  3696. height: math.unit(7 + 5 / 6, "feet"),
  3697. weight: math.unit(325, "lb"),
  3698. name: "Dressed (Light)",
  3699. image: {
  3700. source: "./media/characters/asana/dressed-light.svg",
  3701. extra: 1133 / 1060,
  3702. bottom: 15.2 / 1148.6
  3703. }
  3704. },
  3705. },
  3706. [
  3707. {
  3708. name: "Standard",
  3709. height: math.unit(7 + 5 / 6, "feet"),
  3710. default: true
  3711. },
  3712. {
  3713. name: "Large",
  3714. height: math.unit(10, "meters")
  3715. },
  3716. {
  3717. name: "Macro",
  3718. height: math.unit(2500, "meters")
  3719. },
  3720. {
  3721. name: "Megamacro",
  3722. height: math.unit(5e6, "meters")
  3723. },
  3724. {
  3725. name: "Examacro",
  3726. height: math.unit(5e12, "lightyears")
  3727. },
  3728. {
  3729. name: "Max Size",
  3730. height: math.unit(1e31, "lightyears")
  3731. }
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(60, "kg"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/ebony/front.svg",
  3743. bottom: 0.03,
  3744. extra: 1045 / 810 + 0.03
  3745. }
  3746. },
  3747. side: {
  3748. height: math.unit(2, "meter"),
  3749. weight: math.unit(60, "kg"),
  3750. name: "Side",
  3751. image: {
  3752. source: "./media/characters/ebony/side.svg",
  3753. bottom: 0.03,
  3754. extra: 1045 / 810 + 0.03
  3755. }
  3756. },
  3757. back: {
  3758. height: math.unit(2, "meter"),
  3759. weight: math.unit(60, "kg"),
  3760. name: "Back",
  3761. image: {
  3762. source: "./media/characters/ebony/back.svg",
  3763. bottom: 0.01,
  3764. extra: 1045 / 810 + 0.01
  3765. }
  3766. },
  3767. },
  3768. [
  3769. // TODO check why I did this lol
  3770. {
  3771. name: "Standard",
  3772. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3773. default: true
  3774. },
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(200, "feet")
  3778. },
  3779. {
  3780. name: "Gigamacro",
  3781. height: math.unit(13000, "km")
  3782. }
  3783. ]
  3784. ))
  3785. characterMakers.push(() => makeCharacter(
  3786. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3787. {
  3788. front: {
  3789. height: math.unit(6, "feet"),
  3790. weight: math.unit(175, "lb"),
  3791. name: "Front",
  3792. image: {
  3793. source: "./media/characters/mountain/front.svg",
  3794. extra: 972 / 955,
  3795. bottom: 64 / 1036.6
  3796. }
  3797. },
  3798. back: {
  3799. height: math.unit(6, "feet"),
  3800. weight: math.unit(175, "lb"),
  3801. name: "Back",
  3802. image: {
  3803. source: "./media/characters/mountain/back.svg",
  3804. extra: 970 / 950,
  3805. bottom: 28.25 / 999
  3806. }
  3807. },
  3808. },
  3809. [
  3810. {
  3811. name: "Large",
  3812. height: math.unit(20, "meters")
  3813. },
  3814. {
  3815. name: "Macro",
  3816. height: math.unit(300, "meters")
  3817. },
  3818. {
  3819. name: "Gigamacro",
  3820. height: math.unit(10000, "km"),
  3821. default: true
  3822. },
  3823. {
  3824. name: "Examacro",
  3825. height: math.unit(10e9, "lightyears")
  3826. }
  3827. ]
  3828. ))
  3829. characterMakers.push(() => makeCharacter(
  3830. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3831. {
  3832. front: {
  3833. height: math.unit(8, "feet"),
  3834. weight: math.unit(500, "lb"),
  3835. name: "Front",
  3836. image: {
  3837. source: "./media/characters/rick/front.svg"
  3838. }
  3839. }
  3840. },
  3841. [
  3842. {
  3843. name: "Normal",
  3844. height: math.unit(8, "feet"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Macro",
  3849. height: math.unit(5, "km")
  3850. }
  3851. ]
  3852. ))
  3853. characterMakers.push(() => makeCharacter(
  3854. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3855. {
  3856. front: {
  3857. height: math.unit(8, "feet"),
  3858. weight: math.unit(120, "lb"),
  3859. name: "Front",
  3860. image: {
  3861. source: "./media/characters/ona/front.svg"
  3862. }
  3863. },
  3864. frontAlt: {
  3865. height: math.unit(8, "feet"),
  3866. weight: math.unit(120, "lb"),
  3867. name: "Front (Alt)",
  3868. image: {
  3869. source: "./media/characters/ona/front-alt.svg"
  3870. }
  3871. },
  3872. back: {
  3873. height: math.unit(8, "feet"),
  3874. weight: math.unit(120, "lb"),
  3875. name: "Back",
  3876. image: {
  3877. source: "./media/characters/ona/back.svg"
  3878. }
  3879. },
  3880. foot: {
  3881. height: math.unit(1.1, "feet"),
  3882. name: "Foot",
  3883. image: {
  3884. source: "./media/characters/ona/foot.svg"
  3885. }
  3886. }
  3887. },
  3888. [
  3889. {
  3890. name: "Megamacro",
  3891. height: math.unit(70, "km"),
  3892. default: true
  3893. },
  3894. {
  3895. name: "Gigamacro",
  3896. height: math.unit(681818, "miles")
  3897. },
  3898. {
  3899. name: "Examacro",
  3900. height: math.unit(3800000, "lightyears")
  3901. },
  3902. ]
  3903. ))
  3904. characterMakers.push(() => makeCharacter(
  3905. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3906. {
  3907. front: {
  3908. height: math.unit(12, "feet"),
  3909. weight: math.unit(3000, "lb"),
  3910. name: "Front",
  3911. image: {
  3912. source: "./media/characters/mech/front.svg",
  3913. extra: 2900 / 2770,
  3914. bottom: 110 / 3010
  3915. }
  3916. },
  3917. back: {
  3918. height: math.unit(12, "feet"),
  3919. weight: math.unit(3000, "lb"),
  3920. name: "Back",
  3921. image: {
  3922. source: "./media/characters/mech/back.svg",
  3923. extra: 3011 / 2890,
  3924. bottom: 94 / 3105
  3925. }
  3926. },
  3927. maw: {
  3928. height: math.unit(3.07, "feet"),
  3929. name: "Maw",
  3930. image: {
  3931. source: "./media/characters/mech/maw.svg"
  3932. }
  3933. },
  3934. head: {
  3935. height: math.unit(2.82, "feet"),
  3936. name: "Head",
  3937. image: {
  3938. source: "./media/characters/mech/head.svg"
  3939. }
  3940. },
  3941. dick: {
  3942. height: math.unit(1.43, "feet"),
  3943. name: "Dick",
  3944. image: {
  3945. source: "./media/characters/mech/dick.svg"
  3946. }
  3947. },
  3948. },
  3949. [
  3950. {
  3951. name: "Normal",
  3952. height: math.unit(12, "feet")
  3953. },
  3954. {
  3955. name: "Macro",
  3956. height: math.unit(300, "feet"),
  3957. default: true
  3958. },
  3959. {
  3960. name: "Macro+",
  3961. height: math.unit(1500, "feet")
  3962. },
  3963. ]
  3964. ))
  3965. characterMakers.push(() => makeCharacter(
  3966. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3967. {
  3968. front: {
  3969. height: math.unit(1.3, "meter"),
  3970. weight: math.unit(30, "kg"),
  3971. name: "Front",
  3972. image: {
  3973. source: "./media/characters/gregory/front.svg",
  3974. }
  3975. }
  3976. },
  3977. [
  3978. {
  3979. name: "Normal",
  3980. height: math.unit(1.3, "meter"),
  3981. default: true
  3982. },
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(20, "meter")
  3986. }
  3987. ]
  3988. ))
  3989. characterMakers.push(() => makeCharacter(
  3990. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3991. {
  3992. front: {
  3993. height: math.unit(2.8, "meter"),
  3994. weight: math.unit(200, "kg"),
  3995. name: "Front",
  3996. image: {
  3997. source: "./media/characters/elory/front.svg",
  3998. }
  3999. }
  4000. },
  4001. [
  4002. {
  4003. name: "Normal",
  4004. height: math.unit(2.8, "meter"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(38, "meter")
  4010. }
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4015. {
  4016. front: {
  4017. height: math.unit(470, "feet"),
  4018. weight: math.unit(924, "tons"),
  4019. name: "Front",
  4020. image: {
  4021. source: "./media/characters/angelpatamon/front.svg",
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(470, "feet"),
  4029. default: true
  4030. },
  4031. {
  4032. name: "Deity Size I",
  4033. height: math.unit(28651.2, "km")
  4034. },
  4035. {
  4036. name: "Deity Size II",
  4037. height: math.unit(171907.2, "km")
  4038. }
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4043. {
  4044. side: {
  4045. height: math.unit(7.2, "meter"),
  4046. weight: math.unit(8.2, "tons"),
  4047. name: "Side",
  4048. image: {
  4049. source: "./media/characters/cryae/side.svg",
  4050. extra: 3500 / 1500
  4051. }
  4052. }
  4053. },
  4054. [
  4055. {
  4056. name: "Normal",
  4057. height: math.unit(7.2, "meter"),
  4058. default: true
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/xera/front.svg",
  4071. extra: 2377 / 1972,
  4072. bottom: 75.5 / 2452
  4073. }
  4074. },
  4075. side: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(175, "lb"),
  4078. name: "Side",
  4079. image: {
  4080. source: "./media/characters/xera/side.svg",
  4081. extra: 2345 / 2019,
  4082. bottom: 39.7 / 2384
  4083. }
  4084. },
  4085. back: {
  4086. height: math.unit(6, "feet"),
  4087. weight: math.unit(175, "lb"),
  4088. name: "Back",
  4089. image: {
  4090. source: "./media/characters/xera/back.svg",
  4091. extra: 2095 / 1984,
  4092. bottom: 67 / 2166
  4093. }
  4094. },
  4095. },
  4096. [
  4097. {
  4098. name: "Small",
  4099. height: math.unit(10, "feet")
  4100. },
  4101. {
  4102. name: "Macro",
  4103. height: math.unit(500, "meters"),
  4104. default: true
  4105. },
  4106. {
  4107. name: "Macro+",
  4108. height: math.unit(10, "km")
  4109. },
  4110. {
  4111. name: "Gigamacro",
  4112. height: math.unit(25000, "km")
  4113. },
  4114. {
  4115. name: "Teramacro",
  4116. height: math.unit(3e6, "km")
  4117. }
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4122. {
  4123. front: {
  4124. height: math.unit(6, "feet"),
  4125. weight: math.unit(175, "lb"),
  4126. name: "Front",
  4127. image: {
  4128. source: "./media/characters/nebula/front.svg",
  4129. extra: 2566 / 2362,
  4130. bottom: 81 / 2644
  4131. }
  4132. }
  4133. },
  4134. [
  4135. {
  4136. name: "Small",
  4137. height: math.unit(4.5, "meters")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(1500, "meters"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Megamacro",
  4146. height: math.unit(150, "km")
  4147. },
  4148. {
  4149. name: "Gigamacro",
  4150. height: math.unit(27000, "km")
  4151. }
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4156. {
  4157. front: {
  4158. height: math.unit(6, "feet"),
  4159. weight: math.unit(225, "lb"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/abysgar/front.svg"
  4163. }
  4164. }
  4165. },
  4166. [
  4167. {
  4168. name: "Small",
  4169. height: math.unit(4.5, "meters")
  4170. },
  4171. {
  4172. name: "Macro",
  4173. height: math.unit(1250, "meters"),
  4174. default: true
  4175. },
  4176. {
  4177. name: "Megamacro",
  4178. height: math.unit(125, "km")
  4179. },
  4180. {
  4181. name: "Gigamacro",
  4182. height: math.unit(26000, "km")
  4183. }
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4188. {
  4189. front: {
  4190. height: math.unit(6, "feet"),
  4191. weight: math.unit(180, "lb"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/yakuz/front.svg"
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Small",
  4201. height: math.unit(5, "meters")
  4202. },
  4203. {
  4204. name: "Macro",
  4205. height: math.unit(1500, "meters"),
  4206. default: true
  4207. },
  4208. {
  4209. name: "Megamacro",
  4210. height: math.unit(200, "km")
  4211. },
  4212. {
  4213. name: "Gigamacro",
  4214. height: math.unit(100000, "km")
  4215. }
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4220. {
  4221. front: {
  4222. height: math.unit(6, "feet"),
  4223. weight: math.unit(175, "lb"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/mirova/front.svg",
  4227. extra: 3334 / 3071,
  4228. bottom: 42 / 3375.6
  4229. }
  4230. }
  4231. },
  4232. [
  4233. {
  4234. name: "Small",
  4235. height: math.unit(5, "meters")
  4236. },
  4237. {
  4238. name: "Macro",
  4239. height: math.unit(900, "meters"),
  4240. default: true
  4241. },
  4242. {
  4243. name: "Megamacro",
  4244. height: math.unit(135, "km")
  4245. },
  4246. {
  4247. name: "Gigamacro",
  4248. height: math.unit(20000, "km")
  4249. }
  4250. ]
  4251. ))
  4252. characterMakers.push(() => makeCharacter(
  4253. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4254. {
  4255. side: {
  4256. height: math.unit(28.35, "feet"),
  4257. weight: math.unit(99.75, "tons"),
  4258. name: "Side",
  4259. image: {
  4260. source: "./media/characters/asana-mech/side.svg",
  4261. extra: 923 / 699,
  4262. bottom: 50 / 975
  4263. }
  4264. },
  4265. chaingun: {
  4266. height: math.unit(7, "feet"),
  4267. weight: math.unit(2400, "lb"),
  4268. name: "Chaingun",
  4269. image: {
  4270. source: "./media/characters/asana-mech/chaingun.svg"
  4271. }
  4272. },
  4273. laser: {
  4274. height: math.unit(7.12, "feet"),
  4275. weight: math.unit(2000, "lb"),
  4276. name: "Laser",
  4277. image: {
  4278. source: "./media/characters/asana-mech/laser.svg"
  4279. }
  4280. },
  4281. },
  4282. [
  4283. {
  4284. name: "Normal",
  4285. height: math.unit(28.35, "feet"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(2500, "feet")
  4291. },
  4292. {
  4293. name: "Megamacro",
  4294. height: math.unit(25, "miles")
  4295. },
  4296. {
  4297. name: "Examacro",
  4298. height: math.unit(6e8, "lightyears")
  4299. },
  4300. ]
  4301. ))
  4302. characterMakers.push(() => makeCharacter(
  4303. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4304. {
  4305. front: {
  4306. height: math.unit(5, "meters"),
  4307. weight: math.unit(1000, "kg"),
  4308. name: "Front",
  4309. image: {
  4310. source: "./media/characters/asche/front.svg",
  4311. extra: 1258 / 1190,
  4312. bottom: 47 / 1305
  4313. }
  4314. },
  4315. frontUnderwear: {
  4316. height: math.unit(5, "meters"),
  4317. weight: math.unit(1000, "kg"),
  4318. name: "Front (Underwear)",
  4319. image: {
  4320. source: "./media/characters/asche/front-underwear.svg",
  4321. extra: 1258 / 1190,
  4322. bottom: 47 / 1305
  4323. }
  4324. },
  4325. frontDressed: {
  4326. height: math.unit(5, "meters"),
  4327. weight: math.unit(1000, "kg"),
  4328. name: "Front (Dressed)",
  4329. image: {
  4330. source: "./media/characters/asche/front-dressed.svg",
  4331. extra: 1258 / 1190,
  4332. bottom: 47 / 1305
  4333. }
  4334. },
  4335. frontArmor: {
  4336. height: math.unit(5, "meters"),
  4337. weight: math.unit(1000, "kg"),
  4338. name: "Front (Armored)",
  4339. image: {
  4340. source: "./media/characters/asche/front-armored.svg",
  4341. extra: 1374 / 1308,
  4342. bottom: 23 / 1397
  4343. }
  4344. },
  4345. mp724: {
  4346. height: math.unit(0.96, "meters"),
  4347. weight: math.unit(38, "kg"),
  4348. name: "H&K MP724",
  4349. image: {
  4350. source: "./media/characters/asche/h&k-mp724.svg"
  4351. }
  4352. },
  4353. side: {
  4354. height: math.unit(5, "meters"),
  4355. weight: math.unit(1000, "kg"),
  4356. name: "Side",
  4357. image: {
  4358. source: "./media/characters/asche/side.svg",
  4359. extra: 1717 / 1609,
  4360. bottom: 0.005
  4361. }
  4362. },
  4363. back: {
  4364. height: math.unit(5, "meters"),
  4365. weight: math.unit(1000, "kg"),
  4366. name: "Back",
  4367. image: {
  4368. source: "./media/characters/asche/back.svg",
  4369. extra: 1570 / 1501
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "DEFCON 5",
  4376. height: math.unit(5, "meters")
  4377. },
  4378. {
  4379. name: "DEFCON 4",
  4380. height: math.unit(500, "meters"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "DEFCON 3",
  4385. height: math.unit(5, "km")
  4386. },
  4387. {
  4388. name: "DEFCON 2",
  4389. height: math.unit(500, "km")
  4390. },
  4391. {
  4392. name: "DEFCON 1",
  4393. height: math.unit(500000, "km")
  4394. },
  4395. {
  4396. name: "DEFCON 0",
  4397. height: math.unit(3, "gigaparsecs")
  4398. },
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4403. {
  4404. front: {
  4405. height: math.unit(2, "meters"),
  4406. weight: math.unit(76, "kg"),
  4407. name: "Front",
  4408. image: {
  4409. source: "./media/characters/gale/front.svg"
  4410. }
  4411. },
  4412. frontAlt1: {
  4413. height: math.unit(2, "meters"),
  4414. weight: math.unit(76, "kg"),
  4415. name: "Front (Alt 1)",
  4416. image: {
  4417. source: "./media/characters/gale/front-alt-1.svg"
  4418. }
  4419. },
  4420. frontAlt2: {
  4421. height: math.unit(2, "meters"),
  4422. weight: math.unit(76, "kg"),
  4423. name: "Front (Alt 2)",
  4424. image: {
  4425. source: "./media/characters/gale/front-alt-2.svg"
  4426. }
  4427. },
  4428. },
  4429. [
  4430. {
  4431. name: "Normal",
  4432. height: math.unit(7, "feet")
  4433. },
  4434. {
  4435. name: "Macro",
  4436. height: math.unit(150, "feet"),
  4437. default: true
  4438. },
  4439. {
  4440. name: "Macro+",
  4441. height: math.unit(300, "feet")
  4442. },
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4447. {
  4448. front: {
  4449. height: math.unit(2, "meters"),
  4450. weight: math.unit(76, "kg"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/draylen/front.svg"
  4454. }
  4455. }
  4456. },
  4457. [
  4458. {
  4459. name: "Macro",
  4460. height: math.unit(150, "feet"),
  4461. default: true
  4462. }
  4463. ]
  4464. ))
  4465. characterMakers.push(() => makeCharacter(
  4466. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4467. {
  4468. front: {
  4469. height: math.unit(7 + 9 / 12, "feet"),
  4470. weight: math.unit(379, "lbs"),
  4471. name: "Front",
  4472. image: {
  4473. source: "./media/characters/chez/front.svg"
  4474. }
  4475. },
  4476. side: {
  4477. height: math.unit(7 + 9 / 12, "feet"),
  4478. weight: math.unit(379, "lbs"),
  4479. name: "Side",
  4480. image: {
  4481. source: "./media/characters/chez/side.svg"
  4482. }
  4483. }
  4484. },
  4485. [
  4486. {
  4487. name: "Normal",
  4488. height: math.unit(7 + 9 / 12, "feet"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "God King",
  4493. height: math.unit(9750000, "meters")
  4494. }
  4495. ]
  4496. ))
  4497. characterMakers.push(() => makeCharacter(
  4498. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4499. {
  4500. front: {
  4501. height: math.unit(6, "feet"),
  4502. weight: math.unit(275, "lbs"),
  4503. name: "Front",
  4504. image: {
  4505. source: "./media/characters/kaylum/front.svg",
  4506. bottom: 0.01,
  4507. extra: 1166 / 1031
  4508. }
  4509. },
  4510. frontWingless: {
  4511. height: math.unit(6, "feet"),
  4512. weight: math.unit(275, "lbs"),
  4513. name: "Front (Wingless)",
  4514. image: {
  4515. source: "./media/characters/kaylum/front-wingless.svg",
  4516. bottom: 0.01,
  4517. extra: 1117 / 1031
  4518. }
  4519. }
  4520. },
  4521. [
  4522. {
  4523. name: "Normal",
  4524. height: math.unit(3.05, "meters")
  4525. },
  4526. {
  4527. name: "Master",
  4528. height: math.unit(5.5, "meters")
  4529. },
  4530. {
  4531. name: "Rampage",
  4532. height: math.unit(19, "meters")
  4533. },
  4534. {
  4535. name: "Macro Lite",
  4536. height: math.unit(37, "meters")
  4537. },
  4538. {
  4539. name: "Hyper Predator",
  4540. height: math.unit(61, "meters")
  4541. },
  4542. {
  4543. name: "Macro",
  4544. height: math.unit(138, "meters"),
  4545. default: true
  4546. }
  4547. ]
  4548. ))
  4549. characterMakers.push(() => makeCharacter(
  4550. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4551. {
  4552. front: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(150, "lbs"),
  4555. name: "Front",
  4556. image: {
  4557. source: "./media/characters/geta/front.svg"
  4558. }
  4559. }
  4560. },
  4561. [
  4562. {
  4563. name: "Micro",
  4564. height: math.unit(3, "inches"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Normal",
  4569. height: math.unit(5 + 5 / 12, "feet")
  4570. }
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4575. {
  4576. front: {
  4577. height: math.unit(6, "feet"),
  4578. weight: math.unit(300, "lbs"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/tyrnn/front.svg"
  4582. }
  4583. }
  4584. },
  4585. [
  4586. {
  4587. name: "Main Height",
  4588. height: math.unit(355, "feet"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Fave. Height",
  4593. height: math.unit(2400, "feet")
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(6, "feet"),
  4602. weight: math.unit(300, "lbs"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/appledectomy/front.svg"
  4606. }
  4607. }
  4608. },
  4609. [
  4610. {
  4611. name: "Macro",
  4612. height: math.unit(2500, "feet")
  4613. },
  4614. {
  4615. name: "Megamacro",
  4616. height: math.unit(50, "miles"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Gigamacro",
  4621. height: math.unit(5000, "miles")
  4622. },
  4623. {
  4624. name: "Teramacro",
  4625. height: math.unit(250000, "miles")
  4626. },
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4631. {
  4632. front: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(200, "lbs"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/vulpes/front.svg",
  4638. extra: 573 / 543,
  4639. bottom: 0.033
  4640. }
  4641. },
  4642. side: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(200, "lbs"),
  4645. name: "Side",
  4646. image: {
  4647. source: "./media/characters/vulpes/side.svg",
  4648. extra: 577 / 549,
  4649. bottom: 11 / 588
  4650. }
  4651. },
  4652. back: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(200, "lbs"),
  4655. name: "Back",
  4656. image: {
  4657. source: "./media/characters/vulpes/back.svg",
  4658. extra: 573 / 549,
  4659. bottom: 20 / 593
  4660. }
  4661. },
  4662. feet: {
  4663. height: math.unit(1.276, "feet"),
  4664. name: "Feet",
  4665. image: {
  4666. source: "./media/characters/vulpes/feet.svg"
  4667. }
  4668. },
  4669. maw: {
  4670. height: math.unit(1.18, "feet"),
  4671. name: "Maw",
  4672. image: {
  4673. source: "./media/characters/vulpes/maw.svg"
  4674. }
  4675. },
  4676. },
  4677. [
  4678. {
  4679. name: "Micro",
  4680. height: math.unit(2, "inches")
  4681. },
  4682. {
  4683. name: "Normal",
  4684. height: math.unit(6.3, "feet")
  4685. },
  4686. {
  4687. name: "Macro",
  4688. height: math.unit(850, "feet")
  4689. },
  4690. {
  4691. name: "Megamacro",
  4692. height: math.unit(7500, "feet"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Gigamacro",
  4697. height: math.unit(570000, "miles")
  4698. }
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4703. {
  4704. front: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(210, "lbs"),
  4707. name: "Front",
  4708. image: {
  4709. source: "./media/characters/rain-fallen/front.svg"
  4710. }
  4711. },
  4712. side: {
  4713. height: math.unit(6, "feet"),
  4714. weight: math.unit(210, "lbs"),
  4715. name: "Side",
  4716. image: {
  4717. source: "./media/characters/rain-fallen/side.svg"
  4718. }
  4719. },
  4720. back: {
  4721. height: math.unit(6, "feet"),
  4722. weight: math.unit(210, "lbs"),
  4723. name: "Back",
  4724. image: {
  4725. source: "./media/characters/rain-fallen/back.svg"
  4726. }
  4727. },
  4728. feral: {
  4729. height: math.unit(9, "feet"),
  4730. weight: math.unit(700, "lbs"),
  4731. name: "Feral",
  4732. image: {
  4733. source: "./media/characters/rain-fallen/feral.svg"
  4734. }
  4735. },
  4736. },
  4737. [
  4738. {
  4739. name: "Meddling with Mortals",
  4740. height: math.unit(8 + 8/12, "feet")
  4741. },
  4742. {
  4743. name: "Normal",
  4744. height: math.unit(5, "meter")
  4745. },
  4746. {
  4747. name: "Macro",
  4748. height: math.unit(150, "meter"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Megamacro",
  4753. height: math.unit(278e6, "meter")
  4754. },
  4755. {
  4756. name: "Gigamacro",
  4757. height: math.unit(2e9, "meter")
  4758. },
  4759. {
  4760. name: "Teramacro",
  4761. height: math.unit(8e12, "meter")
  4762. },
  4763. {
  4764. name: "Devourer",
  4765. height: math.unit(14, "zettameters")
  4766. },
  4767. {
  4768. name: "Scarlet King",
  4769. height: math.unit(18, "yottameters")
  4770. },
  4771. {
  4772. name: "Void",
  4773. height: math.unit(1e88, "yottameters")
  4774. }
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4779. {
  4780. standing: {
  4781. height: math.unit(6, "feet"),
  4782. weight: math.unit(180, "lbs"),
  4783. name: "Standing",
  4784. image: {
  4785. source: "./media/characters/zaakira/standing.svg",
  4786. extra: 1599/1504,
  4787. bottom: 39/1638
  4788. }
  4789. },
  4790. laying: {
  4791. height: math.unit(3, "feet"),
  4792. weight: math.unit(180, "lbs"),
  4793. name: "Laying",
  4794. image: {
  4795. source: "./media/characters/zaakira/laying.svg"
  4796. }
  4797. },
  4798. },
  4799. [
  4800. {
  4801. name: "Normal",
  4802. height: math.unit(12, "feet")
  4803. },
  4804. {
  4805. name: "Macro",
  4806. height: math.unit(279, "feet"),
  4807. default: true
  4808. }
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4813. {
  4814. femSfw: {
  4815. height: math.unit(8, "feet"),
  4816. weight: math.unit(350, "lb"),
  4817. name: "Fem",
  4818. image: {
  4819. source: "./media/characters/sigvald/fem-sfw.svg",
  4820. extra: 182 / 164,
  4821. bottom: 8.7 / 190.5
  4822. }
  4823. },
  4824. femNsfw: {
  4825. height: math.unit(8, "feet"),
  4826. weight: math.unit(350, "lb"),
  4827. name: "Fem (NSFW)",
  4828. image: {
  4829. source: "./media/characters/sigvald/fem-nsfw.svg",
  4830. extra: 182 / 164,
  4831. bottom: 8.7 / 190.5
  4832. }
  4833. },
  4834. maleNsfw: {
  4835. height: math.unit(8, "feet"),
  4836. weight: math.unit(350, "lb"),
  4837. name: "Male (NSFW)",
  4838. image: {
  4839. source: "./media/characters/sigvald/male-nsfw.svg",
  4840. extra: 182 / 164,
  4841. bottom: 8.7 / 190.5
  4842. }
  4843. },
  4844. hermNsfw: {
  4845. height: math.unit(8, "feet"),
  4846. weight: math.unit(350, "lb"),
  4847. name: "Herm (NSFW)",
  4848. image: {
  4849. source: "./media/characters/sigvald/herm-nsfw.svg",
  4850. extra: 182 / 164,
  4851. bottom: 8.7 / 190.5
  4852. }
  4853. },
  4854. dick: {
  4855. height: math.unit(2.36, "feet"),
  4856. name: "Dick",
  4857. image: {
  4858. source: "./media/characters/sigvald/dick.svg"
  4859. }
  4860. },
  4861. eye: {
  4862. height: math.unit(0.31, "feet"),
  4863. name: "Eye",
  4864. image: {
  4865. source: "./media/characters/sigvald/eye.svg"
  4866. }
  4867. },
  4868. mouth: {
  4869. height: math.unit(0.92, "feet"),
  4870. name: "Mouth",
  4871. image: {
  4872. source: "./media/characters/sigvald/mouth.svg"
  4873. }
  4874. },
  4875. paws: {
  4876. height: math.unit(2.2, "feet"),
  4877. name: "Paws",
  4878. image: {
  4879. source: "./media/characters/sigvald/paws.svg"
  4880. }
  4881. }
  4882. },
  4883. [
  4884. {
  4885. name: "Normal",
  4886. height: math.unit(8, "feet")
  4887. },
  4888. {
  4889. name: "Large",
  4890. height: math.unit(12, "feet")
  4891. },
  4892. {
  4893. name: "Larger",
  4894. height: math.unit(20, "feet")
  4895. },
  4896. {
  4897. name: "Macro",
  4898. height: math.unit(150, "feet")
  4899. },
  4900. {
  4901. name: "Macro+",
  4902. height: math.unit(200, "feet"),
  4903. default: true
  4904. },
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4909. {
  4910. side: {
  4911. height: math.unit(12, "feet"),
  4912. weight: math.unit(2000, "kg"),
  4913. name: "Side",
  4914. image: {
  4915. source: "./media/characters/scott/side.svg",
  4916. extra: 754 / 724,
  4917. bottom: 0.069
  4918. }
  4919. },
  4920. upright: {
  4921. height: math.unit(12, "feet"),
  4922. weight: math.unit(2000, "kg"),
  4923. name: "Upright",
  4924. image: {
  4925. source: "./media/characters/scott/upright.svg",
  4926. extra: 3881 / 3722,
  4927. bottom: 0.05
  4928. }
  4929. },
  4930. },
  4931. [
  4932. {
  4933. name: "Normal",
  4934. height: math.unit(12, "feet"),
  4935. default: true
  4936. },
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4941. {
  4942. side: {
  4943. height: math.unit(8, "meters"),
  4944. weight: math.unit(84755, "lbs"),
  4945. name: "Side",
  4946. image: {
  4947. source: "./media/characters/tobias/side.svg",
  4948. extra: 1474 / 1096,
  4949. bottom: 38.9 / 1513.1235
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(8, "meters"),
  4957. default: true
  4958. },
  4959. ]
  4960. ))
  4961. characterMakers.push(() => makeCharacter(
  4962. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4963. {
  4964. front: {
  4965. height: math.unit(5.5, "feet"),
  4966. weight: math.unit(400, "lbs"),
  4967. name: "Front",
  4968. image: {
  4969. source: "./media/characters/kieran/front.svg",
  4970. extra: 2694 / 2364,
  4971. bottom: 217 / 2908
  4972. }
  4973. },
  4974. side: {
  4975. height: math.unit(5.5, "feet"),
  4976. weight: math.unit(400, "lbs"),
  4977. name: "Side",
  4978. image: {
  4979. source: "./media/characters/kieran/side.svg",
  4980. extra: 875 / 777,
  4981. bottom: 84.6 / 959
  4982. }
  4983. },
  4984. },
  4985. [
  4986. {
  4987. name: "Normal",
  4988. height: math.unit(5.5, "feet"),
  4989. default: true
  4990. },
  4991. ]
  4992. ))
  4993. characterMakers.push(() => makeCharacter(
  4994. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4995. {
  4996. side: {
  4997. height: math.unit(2, "meters"),
  4998. weight: math.unit(70, "kg"),
  4999. name: "Side",
  5000. image: {
  5001. source: "./media/characters/sanya/side.svg",
  5002. bottom: 0.02,
  5003. extra: 1.02
  5004. }
  5005. },
  5006. },
  5007. [
  5008. {
  5009. name: "Small",
  5010. height: math.unit(2, "meters")
  5011. },
  5012. {
  5013. name: "Normal",
  5014. height: math.unit(3, "meters")
  5015. },
  5016. {
  5017. name: "Macro",
  5018. height: math.unit(16, "meters"),
  5019. default: true
  5020. },
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(2, "meters"),
  5028. weight: math.unit(120, "kg"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/miranda/front.svg",
  5032. extra: 195 / 185,
  5033. bottom: 10.9 / 206.5
  5034. }
  5035. },
  5036. back: {
  5037. height: math.unit(2, "meters"),
  5038. weight: math.unit(120, "kg"),
  5039. name: "Back",
  5040. image: {
  5041. source: "./media/characters/miranda/back.svg",
  5042. extra: 201 / 193,
  5043. bottom: 2.3 / 203.7
  5044. }
  5045. },
  5046. },
  5047. [
  5048. {
  5049. name: "Normal",
  5050. height: math.unit(10, "feet"),
  5051. default: true
  5052. }
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "James", species: ["deer"], tags: ["anthro"] },
  5057. {
  5058. side: {
  5059. height: math.unit(2, "meters"),
  5060. weight: math.unit(100, "kg"),
  5061. name: "Front",
  5062. image: {
  5063. source: "./media/characters/james/front.svg",
  5064. extra: 10 / 8.5
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Normal",
  5071. height: math.unit(8.5, "feet"),
  5072. default: true
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5078. {
  5079. side: {
  5080. height: math.unit(9.5, "feet"),
  5081. weight: math.unit(2500, "lbs"),
  5082. name: "Side",
  5083. image: {
  5084. source: "./media/characters/heather/side.svg"
  5085. }
  5086. },
  5087. },
  5088. [
  5089. {
  5090. name: "Normal",
  5091. height: math.unit(9.5, "feet"),
  5092. default: true
  5093. }
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5098. {
  5099. side: {
  5100. height: math.unit(6.5, "feet"),
  5101. weight: math.unit(400, "lbs"),
  5102. name: "Side",
  5103. image: {
  5104. source: "./media/characters/lukas/side.svg",
  5105. extra: 7.25 / 6.5
  5106. }
  5107. },
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(6.5, "feet"),
  5113. default: true
  5114. }
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5119. {
  5120. side: {
  5121. height: math.unit(5, "feet"),
  5122. weight: math.unit(3000, "lbs"),
  5123. name: "Side",
  5124. image: {
  5125. source: "./media/characters/louise/side.svg"
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(5, "feet"),
  5133. default: true
  5134. }
  5135. ]
  5136. ))
  5137. characterMakers.push(() => makeCharacter(
  5138. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5139. {
  5140. side: {
  5141. height: math.unit(6, "feet"),
  5142. weight: math.unit(150, "lbs"),
  5143. name: "Side",
  5144. image: {
  5145. source: "./media/characters/ramona/side.svg"
  5146. }
  5147. },
  5148. },
  5149. [
  5150. {
  5151. name: "Normal",
  5152. height: math.unit(5.3, "meters"),
  5153. default: true
  5154. },
  5155. {
  5156. name: "Macro",
  5157. height: math.unit(20, "stories")
  5158. },
  5159. {
  5160. name: "Macro+",
  5161. height: math.unit(50, "stories")
  5162. },
  5163. ]
  5164. ))
  5165. characterMakers.push(() => makeCharacter(
  5166. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5167. {
  5168. standing: {
  5169. height: math.unit(5.75, "feet"),
  5170. weight: math.unit(160, "lbs"),
  5171. name: "Standing",
  5172. image: {
  5173. source: "./media/characters/deerpuff/standing.svg",
  5174. extra: 682 / 624
  5175. }
  5176. },
  5177. sitting: {
  5178. height: math.unit(5.75 / 1.79, "feet"),
  5179. weight: math.unit(160, "lbs"),
  5180. name: "Sitting",
  5181. image: {
  5182. source: "./media/characters/deerpuff/sitting.svg",
  5183. bottom: 44 / 400,
  5184. extra: 1
  5185. }
  5186. },
  5187. taurLaying: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(400, "lbs"),
  5190. name: "Taur (Laying)",
  5191. image: {
  5192. source: "./media/characters/deerpuff/taur-laying.svg"
  5193. }
  5194. },
  5195. },
  5196. [
  5197. {
  5198. name: "Puffball",
  5199. height: math.unit(6, "inches")
  5200. },
  5201. {
  5202. name: "Normalpuff",
  5203. height: math.unit(5.75, "feet")
  5204. },
  5205. {
  5206. name: "Macropuff",
  5207. height: math.unit(1500, "feet"),
  5208. default: true
  5209. },
  5210. {
  5211. name: "Megapuff",
  5212. height: math.unit(500, "miles")
  5213. },
  5214. {
  5215. name: "Gigapuff",
  5216. height: math.unit(250000, "miles")
  5217. },
  5218. {
  5219. name: "Omegapuff",
  5220. height: math.unit(1000, "lightyears")
  5221. },
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5226. {
  5227. stomping: {
  5228. height: math.unit(6, "feet"),
  5229. weight: math.unit(170, "lbs"),
  5230. name: "Stomping",
  5231. image: {
  5232. source: "./media/characters/vivian/stomping.svg"
  5233. }
  5234. },
  5235. sitting: {
  5236. height: math.unit(6 / 1.75, "feet"),
  5237. weight: math.unit(170, "lbs"),
  5238. name: "Sitting",
  5239. image: {
  5240. source: "./media/characters/vivian/sitting.svg",
  5241. bottom: 1 / 6.4,
  5242. extra: 1,
  5243. }
  5244. },
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(7, "feet"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Macro",
  5254. height: math.unit(10, "stories")
  5255. },
  5256. {
  5257. name: "Macro+",
  5258. height: math.unit(30, "stories")
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(10, "miles")
  5263. },
  5264. {
  5265. name: "Megamacro+",
  5266. height: math.unit(2750000, "meters")
  5267. },
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(160, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/prince/front.svg",
  5279. extra: 3400 / 3000
  5280. }
  5281. },
  5282. jumping: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(160, "lbs"),
  5285. name: "Jumping",
  5286. image: {
  5287. source: "./media/characters/prince/jump.svg",
  5288. extra: 2555 / 2134
  5289. }
  5290. },
  5291. },
  5292. [
  5293. {
  5294. name: "Normal",
  5295. height: math.unit(7.75, "feet"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Not cute",
  5300. height: math.unit(17, "feet")
  5301. },
  5302. {
  5303. name: "I said NOT",
  5304. height: math.unit(91, "feet")
  5305. },
  5306. {
  5307. name: "Please stop",
  5308. height: math.unit(560, "feet")
  5309. },
  5310. {
  5311. name: "What have you done",
  5312. height: math.unit(2200, "feet")
  5313. },
  5314. {
  5315. name: "Deer God",
  5316. height: math.unit(3.6, "miles")
  5317. },
  5318. ]
  5319. ))
  5320. characterMakers.push(() => makeCharacter(
  5321. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5322. {
  5323. standing: {
  5324. height: math.unit(6, "feet"),
  5325. weight: math.unit(300, "lbs"),
  5326. name: "Standing",
  5327. image: {
  5328. source: "./media/characters/psymon/standing.svg",
  5329. extra: 1888 / 1810,
  5330. bottom: 0.05
  5331. }
  5332. },
  5333. slithering: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(300, "lbs"),
  5336. name: "Slithering",
  5337. image: {
  5338. source: "./media/characters/psymon/slithering.svg",
  5339. extra: 1330 / 1224
  5340. }
  5341. },
  5342. slitheringAlt: {
  5343. height: math.unit(6, "feet"),
  5344. weight: math.unit(300, "lbs"),
  5345. name: "Slithering (Alt)",
  5346. image: {
  5347. source: "./media/characters/psymon/slithering-alt.svg",
  5348. extra: 1330 / 1224
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(11.25, "feet"),
  5356. default: true
  5357. },
  5358. {
  5359. name: "Large",
  5360. height: math.unit(27, "feet")
  5361. },
  5362. {
  5363. name: "Giant",
  5364. height: math.unit(87, "feet")
  5365. },
  5366. {
  5367. name: "Macro",
  5368. height: math.unit(365, "feet")
  5369. },
  5370. {
  5371. name: "Megamacro",
  5372. height: math.unit(3, "miles")
  5373. },
  5374. {
  5375. name: "World Serpent",
  5376. height: math.unit(8000, "miles")
  5377. },
  5378. ]
  5379. ))
  5380. characterMakers.push(() => makeCharacter(
  5381. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5382. {
  5383. front: {
  5384. height: math.unit(6, "feet"),
  5385. weight: math.unit(180, "lbs"),
  5386. name: "Front",
  5387. image: {
  5388. source: "./media/characters/daimos/front.svg",
  5389. extra: 4160 / 3897,
  5390. bottom: 0.021
  5391. }
  5392. }
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(8, "feet"),
  5398. default: true
  5399. },
  5400. {
  5401. name: "Big Dog",
  5402. height: math.unit(22, "feet")
  5403. },
  5404. {
  5405. name: "Macro",
  5406. height: math.unit(127, "feet")
  5407. },
  5408. {
  5409. name: "Megamacro",
  5410. height: math.unit(3600, "feet")
  5411. },
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5416. {
  5417. side: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(180, "lbs"),
  5420. name: "Side",
  5421. image: {
  5422. source: "./media/characters/blake/side.svg",
  5423. extra: 1212 / 1120,
  5424. bottom: 0.05
  5425. }
  5426. },
  5427. crouched: {
  5428. height: math.unit(6 * 0.57, "feet"),
  5429. weight: math.unit(180, "lbs"),
  5430. name: "Crouched",
  5431. image: {
  5432. source: "./media/characters/blake/crouched.svg",
  5433. extra: 840 / 587,
  5434. bottom: 0.04
  5435. }
  5436. },
  5437. bent: {
  5438. height: math.unit(6 * 0.75, "feet"),
  5439. weight: math.unit(180, "lbs"),
  5440. name: "Bent",
  5441. image: {
  5442. source: "./media/characters/blake/bent.svg",
  5443. extra: 592 / 544,
  5444. bottom: 0.035
  5445. }
  5446. },
  5447. },
  5448. [
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(8 + 1 / 6, "feet"),
  5452. default: true
  5453. },
  5454. {
  5455. name: "Big Backside",
  5456. height: math.unit(37, "feet")
  5457. },
  5458. {
  5459. name: "Subway Shredder",
  5460. height: math.unit(72, "feet")
  5461. },
  5462. {
  5463. name: "City Carver",
  5464. height: math.unit(1675, "feet")
  5465. },
  5466. {
  5467. name: "Tectonic Tweaker",
  5468. height: math.unit(2300, "miles")
  5469. },
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5474. {
  5475. front: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(180, "lbs"),
  5478. name: "Front",
  5479. image: {
  5480. source: "./media/characters/guisetto/front.svg",
  5481. extra: 856 / 817,
  5482. bottom: 0.06
  5483. }
  5484. },
  5485. airborne: {
  5486. height: math.unit(6, "feet"),
  5487. weight: math.unit(180, "lbs"),
  5488. name: "Airborne",
  5489. image: {
  5490. source: "./media/characters/guisetto/airborne.svg",
  5491. extra: 584 / 525
  5492. }
  5493. },
  5494. },
  5495. [
  5496. {
  5497. name: "Normal",
  5498. height: math.unit(10 + 11 / 12, "feet"),
  5499. default: true
  5500. },
  5501. {
  5502. name: "Large",
  5503. height: math.unit(35, "feet")
  5504. },
  5505. {
  5506. name: "Macro",
  5507. height: math.unit(475, "feet")
  5508. },
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5513. {
  5514. front: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(180, "lbs"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/luxor/front.svg",
  5520. extra: 2940 / 2152
  5521. }
  5522. },
  5523. back: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(180, "lbs"),
  5526. name: "Back",
  5527. image: {
  5528. source: "./media/characters/luxor/back.svg",
  5529. extra: 1083 / 960
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(5 + 5 / 6, "feet"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Lamp",
  5541. height: math.unit(50, "feet")
  5542. },
  5543. {
  5544. name: "Lämp",
  5545. height: math.unit(300, "feet")
  5546. },
  5547. {
  5548. name: "The sun is a lamp",
  5549. height: math.unit(250000, "miles")
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5555. {
  5556. front: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(50, "lbs"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/huoyan/front.svg"
  5562. }
  5563. },
  5564. side: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(180, "lbs"),
  5567. name: "Side",
  5568. image: {
  5569. source: "./media/characters/huoyan/side.svg"
  5570. }
  5571. },
  5572. },
  5573. [
  5574. {
  5575. name: "Chef",
  5576. height: math.unit(9, "feet")
  5577. },
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(65, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Macro",
  5585. height: math.unit(780, "feet")
  5586. },
  5587. {
  5588. name: "Flaming Mountain",
  5589. height: math.unit(4.8, "miles")
  5590. },
  5591. {
  5592. name: "Celestial",
  5593. height: math.unit(765000, "miles")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(5 + 3 / 4, "feet"),
  5602. weight: math.unit(120, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/tails/front.svg"
  5606. }
  5607. }
  5608. },
  5609. [
  5610. {
  5611. name: "Normal",
  5612. height: math.unit(5 + 3 / 4, "feet"),
  5613. default: true
  5614. }
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(4, "feet"),
  5622. weight: math.unit(50, "lbs"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/rainy/front.svg"
  5626. }
  5627. }
  5628. },
  5629. [
  5630. {
  5631. name: "Macro",
  5632. height: math.unit(800, "feet"),
  5633. default: true
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(6, "feet"),
  5642. weight: math.unit(150, "lbs"),
  5643. name: "Front",
  5644. image: {
  5645. source: "./media/characters/rainier/front.svg"
  5646. }
  5647. }
  5648. },
  5649. [
  5650. {
  5651. name: "Micro",
  5652. height: math.unit(2, "mm"),
  5653. default: true
  5654. }
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5659. {
  5660. front: {
  5661. height: math.unit(8 + 4/12, "feet"),
  5662. name: "Front",
  5663. image: {
  5664. source: "./media/characters/andy-renard/front.svg",
  5665. extra: 1839/1726,
  5666. bottom: 134/1973
  5667. }
  5668. },
  5669. back: {
  5670. height: math.unit(8 + 4/12, "feet"),
  5671. name: "Back",
  5672. image: {
  5673. source: "./media/characters/andy-renard/back.svg",
  5674. extra: 1838/1710,
  5675. bottom: 105/1943
  5676. }
  5677. },
  5678. },
  5679. [
  5680. {
  5681. name: "Tall",
  5682. height: math.unit(8 + 4/12, "feet")
  5683. },
  5684. {
  5685. name: "Mini Macro",
  5686. height: math.unit(15, "feet"),
  5687. default: true
  5688. },
  5689. {
  5690. name: "Macro",
  5691. height: math.unit(100, "feet")
  5692. },
  5693. {
  5694. name: "Mega Macro",
  5695. height: math.unit(1000, "feet")
  5696. },
  5697. {
  5698. name: "Giga Macro",
  5699. height: math.unit(10, "miles")
  5700. },
  5701. {
  5702. name: "God Macro",
  5703. height: math.unit(1, "multiverse")
  5704. },
  5705. ]
  5706. ))
  5707. characterMakers.push(() => makeCharacter(
  5708. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5709. {
  5710. front: {
  5711. height: math.unit(6, "feet"),
  5712. weight: math.unit(210, "lbs"),
  5713. name: "Front",
  5714. image: {
  5715. source: "./media/characters/cimmaron/front-sfw.svg",
  5716. extra: 701 / 676,
  5717. bottom: 0.046
  5718. }
  5719. },
  5720. back: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(210, "lbs"),
  5723. name: "Back",
  5724. image: {
  5725. source: "./media/characters/cimmaron/back-sfw.svg",
  5726. extra: 701 / 676,
  5727. bottom: 0.046
  5728. }
  5729. },
  5730. frontNsfw: {
  5731. height: math.unit(6, "feet"),
  5732. weight: math.unit(210, "lbs"),
  5733. name: "Front (NSFW)",
  5734. image: {
  5735. source: "./media/characters/cimmaron/front-nsfw.svg",
  5736. extra: 701 / 676,
  5737. bottom: 0.046
  5738. }
  5739. },
  5740. backNsfw: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(210, "lbs"),
  5743. name: "Back (NSFW)",
  5744. image: {
  5745. source: "./media/characters/cimmaron/back-nsfw.svg",
  5746. extra: 701 / 676,
  5747. bottom: 0.046
  5748. }
  5749. },
  5750. dick: {
  5751. height: math.unit(1.714, "feet"),
  5752. name: "Dick",
  5753. image: {
  5754. source: "./media/characters/cimmaron/dick.svg"
  5755. }
  5756. },
  5757. },
  5758. [
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(6, "feet"),
  5762. default: true
  5763. },
  5764. {
  5765. name: "Macro Mayor",
  5766. height: math.unit(350, "meters")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(200, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/akari/front.svg",
  5779. extra: 962 / 901,
  5780. bottom: 0.04
  5781. }
  5782. }
  5783. },
  5784. [
  5785. {
  5786. name: "Micro",
  5787. height: math.unit(5, "inches"),
  5788. default: true
  5789. },
  5790. {
  5791. name: "Normal",
  5792. height: math.unit(7, "feet")
  5793. },
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5798. {
  5799. front: {
  5800. height: math.unit(6, "feet"),
  5801. weight: math.unit(140, "lbs"),
  5802. name: "Front",
  5803. image: {
  5804. source: "./media/characters/cynosura/front.svg",
  5805. extra: 896 / 847
  5806. }
  5807. },
  5808. back: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(140, "lbs"),
  5811. name: "Back",
  5812. image: {
  5813. source: "./media/characters/cynosura/back.svg",
  5814. extra: 1365 / 1250
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Micro",
  5821. height: math.unit(4, "inches")
  5822. },
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(5.75, "feet"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Tall",
  5830. height: math.unit(10, "feet")
  5831. },
  5832. {
  5833. name: "Big",
  5834. height: math.unit(20, "feet")
  5835. },
  5836. {
  5837. name: "Macro",
  5838. height: math.unit(50, "feet")
  5839. },
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5844. {
  5845. front: {
  5846. height: math.unit(13 + 2/12, "feet"),
  5847. weight: math.unit(800, "kg"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/gin/front.svg",
  5851. extra: 1312/1191,
  5852. bottom: 45/1357
  5853. }
  5854. },
  5855. mouth: {
  5856. height: math.unit(2.39 * 1.8, "feet"),
  5857. name: "Mouth",
  5858. image: {
  5859. source: "./media/characters/gin/mouth.svg"
  5860. }
  5861. },
  5862. hand: {
  5863. height: math.unit(1.57 * 2.19, "feet"),
  5864. name: "Hand",
  5865. image: {
  5866. source: "./media/characters/gin/hand.svg"
  5867. }
  5868. },
  5869. foot: {
  5870. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5871. name: "Foot",
  5872. image: {
  5873. source: "./media/characters/gin/foot.svg"
  5874. }
  5875. },
  5876. sole: {
  5877. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5878. name: "Sole",
  5879. image: {
  5880. source: "./media/characters/gin/sole.svg"
  5881. }
  5882. },
  5883. },
  5884. [
  5885. {
  5886. name: "Very Small",
  5887. height: math.unit(13 + 2 / 12, "feet")
  5888. },
  5889. {
  5890. name: "Micro",
  5891. height: math.unit(600, "miles")
  5892. },
  5893. {
  5894. name: "Regular",
  5895. height: math.unit(20, "earths"),
  5896. default: true
  5897. },
  5898. {
  5899. name: "Macro",
  5900. height: math.unit(2.2, "solarradii")
  5901. },
  5902. {
  5903. name: "Teramacro",
  5904. height: math.unit(1.2, "galaxies")
  5905. },
  5906. {
  5907. name: "Omegamacro",
  5908. height: math.unit(200, "universes")
  5909. },
  5910. ]
  5911. ))
  5912. characterMakers.push(() => makeCharacter(
  5913. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5914. {
  5915. front: {
  5916. height: math.unit(6 + 1 / 6, "feet"),
  5917. weight: math.unit(178, "lbs"),
  5918. name: "Front",
  5919. image: {
  5920. source: "./media/characters/guy/front.svg"
  5921. }
  5922. }
  5923. },
  5924. [
  5925. {
  5926. name: "Normal",
  5927. height: math.unit(6 + 1 / 6, "feet"),
  5928. default: true
  5929. },
  5930. {
  5931. name: "Large",
  5932. height: math.unit(25 + 7 / 12, "feet")
  5933. },
  5934. {
  5935. name: "Macro",
  5936. height: math.unit(60 + 9 / 12, "feet")
  5937. },
  5938. {
  5939. name: "Macro+",
  5940. height: math.unit(246, "feet")
  5941. },
  5942. {
  5943. name: "Macro++",
  5944. height: math.unit(878, "feet")
  5945. }
  5946. ]
  5947. ))
  5948. characterMakers.push(() => makeCharacter(
  5949. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5950. {
  5951. front: {
  5952. height: math.unit(9, "feet"),
  5953. weight: math.unit(800, "lbs"),
  5954. name: "Front",
  5955. image: {
  5956. source: "./media/characters/tiberius/front.svg",
  5957. extra: 2295 / 2071
  5958. }
  5959. },
  5960. back: {
  5961. height: math.unit(9, "feet"),
  5962. weight: math.unit(800, "lbs"),
  5963. name: "Back",
  5964. image: {
  5965. source: "./media/characters/tiberius/back.svg",
  5966. extra: 2373 / 2160
  5967. }
  5968. },
  5969. },
  5970. [
  5971. {
  5972. name: "Normal",
  5973. height: math.unit(9, "feet"),
  5974. default: true
  5975. }
  5976. ]
  5977. ))
  5978. characterMakers.push(() => makeCharacter(
  5979. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5980. {
  5981. front: {
  5982. height: math.unit(6, "feet"),
  5983. weight: math.unit(600, "lbs"),
  5984. name: "Front",
  5985. image: {
  5986. source: "./media/characters/surgo/front.svg",
  5987. extra: 3591 / 2227
  5988. }
  5989. },
  5990. back: {
  5991. height: math.unit(6, "feet"),
  5992. weight: math.unit(600, "lbs"),
  5993. name: "Back",
  5994. image: {
  5995. source: "./media/characters/surgo/back.svg",
  5996. extra: 3557 / 2228
  5997. }
  5998. },
  5999. laying: {
  6000. height: math.unit(6 * 0.85, "feet"),
  6001. weight: math.unit(600, "lbs"),
  6002. name: "Laying",
  6003. image: {
  6004. source: "./media/characters/surgo/laying.svg"
  6005. }
  6006. },
  6007. },
  6008. [
  6009. {
  6010. name: "Normal",
  6011. height: math.unit(6, "feet"),
  6012. default: true
  6013. }
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6018. {
  6019. side: {
  6020. height: math.unit(6, "feet"),
  6021. weight: math.unit(150, "lbs"),
  6022. name: "Side",
  6023. image: {
  6024. source: "./media/characters/cibus/side.svg",
  6025. extra: 800 / 400
  6026. }
  6027. },
  6028. },
  6029. [
  6030. {
  6031. name: "Normal",
  6032. height: math.unit(6, "feet"),
  6033. default: true
  6034. }
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6039. {
  6040. front: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(240, "lbs"),
  6043. name: "Front",
  6044. image: {
  6045. source: "./media/characters/nibbles/front.svg"
  6046. }
  6047. },
  6048. side: {
  6049. height: math.unit(6, "feet"),
  6050. weight: math.unit(240, "lbs"),
  6051. name: "Side",
  6052. image: {
  6053. source: "./media/characters/nibbles/side.svg"
  6054. }
  6055. },
  6056. },
  6057. [
  6058. {
  6059. name: "Normal",
  6060. height: math.unit(9, "feet"),
  6061. default: true
  6062. }
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6067. {
  6068. side: {
  6069. height: math.unit(5 + 1 / 6, "feet"),
  6070. weight: math.unit(130, "lbs"),
  6071. name: "Side",
  6072. image: {
  6073. source: "./media/characters/rikky/side.svg",
  6074. extra: 851 / 801
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(5 + 1 / 6, "feet")
  6082. },
  6083. {
  6084. name: "Macro",
  6085. height: math.unit(152, "feet"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Megamacro",
  6090. height: math.unit(7, "miles")
  6091. }
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6096. {
  6097. side: {
  6098. height: math.unit(370, "cm"),
  6099. weight: math.unit(350, "lbs"),
  6100. name: "Side",
  6101. image: {
  6102. source: "./media/characters/malfressa/side.svg"
  6103. }
  6104. },
  6105. walking: {
  6106. height: math.unit(370, "cm"),
  6107. weight: math.unit(350, "lbs"),
  6108. name: "Walking",
  6109. image: {
  6110. source: "./media/characters/malfressa/walking.svg"
  6111. }
  6112. },
  6113. feral: {
  6114. height: math.unit(2500, "cm"),
  6115. weight: math.unit(100000, "lbs"),
  6116. name: "Feral",
  6117. image: {
  6118. source: "./media/characters/malfressa/feral.svg",
  6119. extra: 2108 / 837,
  6120. bottom: 0.02
  6121. }
  6122. },
  6123. },
  6124. [
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(370, "cm")
  6128. },
  6129. {
  6130. name: "Macro",
  6131. height: math.unit(300, "meters"),
  6132. default: true
  6133. }
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(60, "kg"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/jaro/front.svg"
  6145. }
  6146. },
  6147. back: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(60, "kg"),
  6150. name: "Back",
  6151. image: {
  6152. source: "./media/characters/jaro/back.svg"
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Micro",
  6159. height: math.unit(7, "inches")
  6160. },
  6161. {
  6162. name: "Normal",
  6163. height: math.unit(5.5, "feet"),
  6164. default: true
  6165. },
  6166. {
  6167. name: "Minimacro",
  6168. height: math.unit(20, "feet")
  6169. },
  6170. {
  6171. name: "Macro",
  6172. height: math.unit(200, "meters")
  6173. }
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6178. {
  6179. front: {
  6180. height: math.unit(6, "feet"),
  6181. weight: math.unit(195, "lb"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/rogue/front.svg"
  6185. }
  6186. },
  6187. },
  6188. [
  6189. {
  6190. name: "Macro",
  6191. height: math.unit(90, "feet"),
  6192. default: true
  6193. },
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6198. {
  6199. front: {
  6200. height: math.unit(5 + 8 / 12, "feet"),
  6201. weight: math.unit(140, "lb"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/piper/front.svg",
  6205. extra: 3948/3655,
  6206. bottom: 0/3948
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Micro",
  6213. height: math.unit(2, "inches")
  6214. },
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(5 + 8 / 12, "feet")
  6218. },
  6219. {
  6220. name: "Macro",
  6221. height: math.unit(250, "feet"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Megamacro",
  6226. height: math.unit(7, "miles")
  6227. },
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6232. {
  6233. front: {
  6234. height: math.unit(6, "feet"),
  6235. weight: math.unit(220, "lb"),
  6236. name: "Front",
  6237. image: {
  6238. source: "./media/characters/gemini/front.svg"
  6239. }
  6240. },
  6241. back: {
  6242. height: math.unit(6, "feet"),
  6243. weight: math.unit(220, "lb"),
  6244. name: "Back",
  6245. image: {
  6246. source: "./media/characters/gemini/back.svg"
  6247. }
  6248. },
  6249. kneeling: {
  6250. height: math.unit(6 / 1.5, "feet"),
  6251. weight: math.unit(220, "lb"),
  6252. name: "Kneeling",
  6253. image: {
  6254. source: "./media/characters/gemini/kneeling.svg",
  6255. bottom: 0.02
  6256. }
  6257. },
  6258. },
  6259. [
  6260. {
  6261. name: "Macro",
  6262. height: math.unit(300, "meters"),
  6263. default: true
  6264. },
  6265. {
  6266. name: "Megamacro",
  6267. height: math.unit(6900, "meters")
  6268. },
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6273. {
  6274. anthro: {
  6275. height: math.unit(2.35, "meters"),
  6276. weight: math.unit(73, "kg"),
  6277. name: "Anthro",
  6278. image: {
  6279. source: "./media/characters/alicia/anthro.svg",
  6280. extra: 2571 / 2385,
  6281. bottom: 75 / 2648
  6282. }
  6283. },
  6284. paw: {
  6285. height: math.unit(1.32, "feet"),
  6286. name: "Paw",
  6287. image: {
  6288. source: "./media/characters/alicia/paw.svg"
  6289. }
  6290. },
  6291. feral: {
  6292. height: math.unit(1.69, "meters"),
  6293. weight: math.unit(73, "kg"),
  6294. name: "Feral",
  6295. image: {
  6296. source: "./media/characters/alicia/feral.svg",
  6297. extra: 2123 / 1715,
  6298. bottom: 222 / 2349
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(2.35, "meters")
  6306. },
  6307. {
  6308. name: "Macro",
  6309. height: math.unit(60, "meters"),
  6310. default: true
  6311. },
  6312. {
  6313. name: "Megamacro",
  6314. height: math.unit(10000, "kilometers")
  6315. },
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(7, "feet"),
  6323. weight: math.unit(250, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/archy/front.svg"
  6327. }
  6328. }
  6329. },
  6330. [
  6331. {
  6332. name: "Micro",
  6333. height: math.unit(1, "inch")
  6334. },
  6335. {
  6336. name: "Shorty",
  6337. height: math.unit(5, "feet")
  6338. },
  6339. {
  6340. name: "Normal",
  6341. height: math.unit(7, "feet")
  6342. },
  6343. {
  6344. name: "Macro",
  6345. height: math.unit(600, "meters"),
  6346. default: true
  6347. },
  6348. {
  6349. name: "Megamacro",
  6350. height: math.unit(1, "mile")
  6351. },
  6352. ]
  6353. ))
  6354. characterMakers.push(() => makeCharacter(
  6355. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6356. {
  6357. front: {
  6358. height: math.unit(1.65, "meters"),
  6359. weight: math.unit(74, "kg"),
  6360. name: "Front",
  6361. image: {
  6362. source: "./media/characters/berri/front.svg",
  6363. extra: 857 / 837,
  6364. bottom: 18 / 877
  6365. }
  6366. },
  6367. bum: {
  6368. height: math.unit(1.46, "feet"),
  6369. name: "Bum",
  6370. image: {
  6371. source: "./media/characters/berri/bum.svg"
  6372. }
  6373. },
  6374. mouth: {
  6375. height: math.unit(0.44, "feet"),
  6376. name: "Mouth",
  6377. image: {
  6378. source: "./media/characters/berri/mouth.svg"
  6379. }
  6380. },
  6381. paw: {
  6382. height: math.unit(0.826, "feet"),
  6383. name: "Paw",
  6384. image: {
  6385. source: "./media/characters/berri/paw.svg"
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Normal",
  6392. height: math.unit(1.65, "meters")
  6393. },
  6394. {
  6395. name: "Macro",
  6396. height: math.unit(60, "m"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Megamacro",
  6401. height: math.unit(9.213, "km")
  6402. },
  6403. {
  6404. name: "Planet Eater",
  6405. height: math.unit(489, "megameters")
  6406. },
  6407. {
  6408. name: "Teramacro",
  6409. height: math.unit(2471635000000, "meters")
  6410. },
  6411. {
  6412. name: "Examacro",
  6413. height: math.unit(8.0624e+26, "meters")
  6414. }
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(1.72, "meters"),
  6422. weight: math.unit(68, "kg"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/lexi/front.svg"
  6426. }
  6427. }
  6428. },
  6429. [
  6430. {
  6431. name: "Very Smol",
  6432. height: math.unit(10, "mm")
  6433. },
  6434. {
  6435. name: "Micro",
  6436. height: math.unit(6.8, "cm"),
  6437. default: true
  6438. },
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(1.72, "m")
  6442. }
  6443. ]
  6444. ))
  6445. characterMakers.push(() => makeCharacter(
  6446. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6447. {
  6448. front: {
  6449. height: math.unit(1.69, "meters"),
  6450. weight: math.unit(68, "kg"),
  6451. name: "Front",
  6452. image: {
  6453. source: "./media/characters/martin/front.svg",
  6454. extra: 596 / 581
  6455. }
  6456. }
  6457. },
  6458. [
  6459. {
  6460. name: "Micro",
  6461. height: math.unit(6.85, "cm"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Normal",
  6466. height: math.unit(1.69, "m")
  6467. }
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6472. {
  6473. front: {
  6474. height: math.unit(1.69, "meters"),
  6475. weight: math.unit(68, "kg"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/juno/front.svg"
  6479. }
  6480. }
  6481. },
  6482. [
  6483. {
  6484. name: "Micro",
  6485. height: math.unit(7, "cm")
  6486. },
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(1.89, "m")
  6490. },
  6491. {
  6492. name: "Macro",
  6493. height: math.unit(353, "meters"),
  6494. default: true
  6495. }
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6500. {
  6501. front: {
  6502. height: math.unit(1.93, "meters"),
  6503. weight: math.unit(83, "kg"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/samantha/front.svg"
  6507. }
  6508. },
  6509. frontClothed: {
  6510. height: math.unit(1.93, "meters"),
  6511. weight: math.unit(83, "kg"),
  6512. name: "Front (Clothed)",
  6513. image: {
  6514. source: "./media/characters/samantha/front-clothed.svg"
  6515. }
  6516. },
  6517. back: {
  6518. height: math.unit(1.93, "meters"),
  6519. weight: math.unit(83, "kg"),
  6520. name: "Back",
  6521. image: {
  6522. source: "./media/characters/samantha/back.svg"
  6523. }
  6524. },
  6525. },
  6526. [
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(1.93, "m")
  6530. },
  6531. {
  6532. name: "Macro",
  6533. height: math.unit(74, "meters"),
  6534. default: true
  6535. },
  6536. {
  6537. name: "Macro+",
  6538. height: math.unit(223, "meters"),
  6539. },
  6540. {
  6541. name: "Megamacro",
  6542. height: math.unit(8381, "meters"),
  6543. },
  6544. {
  6545. name: "Megamacro+",
  6546. height: math.unit(12000, "kilometers")
  6547. },
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(1.92, "meters"),
  6555. weight: math.unit(80, "kg"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/dr-clay/front.svg"
  6559. }
  6560. },
  6561. frontClothed: {
  6562. height: math.unit(1.92, "meters"),
  6563. weight: math.unit(80, "kg"),
  6564. name: "Front (Clothed)",
  6565. image: {
  6566. source: "./media/characters/dr-clay/front-clothed.svg"
  6567. }
  6568. }
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(1.92, "m")
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(214, "meters"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Macro+",
  6582. height: math.unit(12.237, "meters"),
  6583. },
  6584. {
  6585. name: "Megamacro",
  6586. height: math.unit(557, "megameters"),
  6587. },
  6588. {
  6589. name: "Unimaginable",
  6590. height: math.unit(120e9, "lightyears")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(2, "meters"),
  6599. weight: math.unit(80, "kg"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6603. }
  6604. }
  6605. },
  6606. [
  6607. {
  6608. name: "Teramacro",
  6609. height: math.unit(500000, "lightyears"),
  6610. default: true
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6616. {
  6617. crux: {
  6618. height: math.unit(2, "meters"),
  6619. weight: math.unit(150, "kg"),
  6620. name: "Crux",
  6621. image: {
  6622. source: "./media/characters/vemus/crux.svg",
  6623. extra: 1074/936,
  6624. bottom: 23/1097
  6625. }
  6626. },
  6627. skunkTanuki: {
  6628. height: math.unit(2, "meters"),
  6629. weight: math.unit(150, "kg"),
  6630. name: "Skunk-Tanuki",
  6631. image: {
  6632. source: "./media/characters/vemus/skunk-tanuki.svg",
  6633. extra: 926/893,
  6634. bottom: 20/946
  6635. }
  6636. },
  6637. },
  6638. [
  6639. {
  6640. name: "Normal",
  6641. height: math.unit(3.75, "meters"),
  6642. default: true
  6643. },
  6644. {
  6645. name: "Big",
  6646. height: math.unit(8, "meters")
  6647. },
  6648. {
  6649. name: "Macro",
  6650. height: math.unit(100, "meters")
  6651. },
  6652. {
  6653. name: "Macro+",
  6654. height: math.unit(1500, "meters")
  6655. },
  6656. {
  6657. name: "Stellar",
  6658. height: math.unit(14e8, "meters")
  6659. },
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6664. {
  6665. front: {
  6666. height: math.unit(2, "meters"),
  6667. weight: math.unit(70, "kg"),
  6668. name: "Front",
  6669. image: {
  6670. source: "./media/characters/beherit/front.svg",
  6671. extra: 1408 / 1242
  6672. }
  6673. }
  6674. },
  6675. [
  6676. {
  6677. name: "Normal",
  6678. height: math.unit(6, "feet")
  6679. },
  6680. {
  6681. name: "Lorg",
  6682. height: math.unit(25, "feet"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Lorger",
  6687. height: math.unit(75, "feet")
  6688. },
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(200, "meters")
  6692. },
  6693. ]
  6694. ))
  6695. characterMakers.push(() => makeCharacter(
  6696. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6697. {
  6698. front: {
  6699. height: math.unit(2, "meters"),
  6700. weight: math.unit(150, "kg"),
  6701. name: "Front",
  6702. image: {
  6703. source: "./media/characters/everett/front.svg",
  6704. extra: 2038 / 1737,
  6705. bottom: 0.03
  6706. }
  6707. },
  6708. paw: {
  6709. height: math.unit(2 / 3.6, "meters"),
  6710. name: "Paw",
  6711. image: {
  6712. source: "./media/characters/everett/paw.svg"
  6713. }
  6714. },
  6715. },
  6716. [
  6717. {
  6718. name: "Normal",
  6719. height: math.unit(15, "feet"),
  6720. default: true
  6721. },
  6722. {
  6723. name: "Lorg",
  6724. height: math.unit(70, "feet"),
  6725. default: true
  6726. },
  6727. {
  6728. name: "Lorger",
  6729. height: math.unit(250, "feet")
  6730. },
  6731. {
  6732. name: "Macro",
  6733. height: math.unit(500, "meters")
  6734. },
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6739. {
  6740. front: {
  6741. height: math.unit(2, "meters"),
  6742. weight: math.unit(86, "kg"),
  6743. name: "Front",
  6744. image: {
  6745. source: "./media/characters/rose/front.svg",
  6746. extra: 1785/1636,
  6747. bottom: 30/1815
  6748. }
  6749. },
  6750. frontSporty: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(86, "kg"),
  6753. name: "Front (Sporty)",
  6754. image: {
  6755. source: "./media/characters/rose/front-sporty.svg",
  6756. extra: 350/335,
  6757. bottom: 10/360
  6758. }
  6759. },
  6760. frontAlt: {
  6761. height: math.unit(1.6, "meters"),
  6762. weight: math.unit(86, "kg"),
  6763. name: "Front (Alt)",
  6764. image: {
  6765. source: "./media/characters/rose/front-alt.svg",
  6766. extra: 299/283,
  6767. bottom: 3/302
  6768. }
  6769. },
  6770. plush: {
  6771. height: math.unit(2, "meters"),
  6772. weight: math.unit(86/3, "kg"),
  6773. name: "Plush",
  6774. image: {
  6775. source: "./media/characters/rose/plush.svg",
  6776. extra: 361/337,
  6777. bottom: 11/372
  6778. }
  6779. },
  6780. },
  6781. [
  6782. {
  6783. name: "True Micro",
  6784. height: math.unit(9, "cm")
  6785. },
  6786. {
  6787. name: "Micro",
  6788. height: math.unit(16, "cm")
  6789. },
  6790. {
  6791. name: "Normal",
  6792. height: math.unit(1.85, "meters"),
  6793. default: true
  6794. },
  6795. {
  6796. name: "Mini-Macro",
  6797. height: math.unit(5, "meters")
  6798. },
  6799. {
  6800. name: "Macro",
  6801. height: math.unit(15, "meters")
  6802. },
  6803. {
  6804. name: "True Macro",
  6805. height: math.unit(40, "meters")
  6806. },
  6807. {
  6808. name: "City Scale",
  6809. height: math.unit(1, "km")
  6810. },
  6811. ]
  6812. ))
  6813. characterMakers.push(() => makeCharacter(
  6814. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6815. {
  6816. front: {
  6817. height: math.unit(2, "meters"),
  6818. weight: math.unit(350, "lbs"),
  6819. name: "Front",
  6820. image: {
  6821. source: "./media/characters/regal/front.svg"
  6822. }
  6823. },
  6824. back: {
  6825. height: math.unit(2, "meters"),
  6826. weight: math.unit(350, "lbs"),
  6827. name: "Back",
  6828. image: {
  6829. source: "./media/characters/regal/back.svg"
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(350, "feet"),
  6837. default: true
  6838. }
  6839. ]
  6840. ))
  6841. characterMakers.push(() => makeCharacter(
  6842. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6843. {
  6844. front: {
  6845. height: math.unit(4 + 11 / 12, "feet"),
  6846. weight: math.unit(100, "lbs"),
  6847. name: "Front",
  6848. image: {
  6849. source: "./media/characters/opal/front.svg"
  6850. }
  6851. },
  6852. frontAlt: {
  6853. height: math.unit(4 + 11 / 12, "feet"),
  6854. weight: math.unit(100, "lbs"),
  6855. name: "Front (Alt)",
  6856. image: {
  6857. source: "./media/characters/opal/front-alt.svg"
  6858. }
  6859. },
  6860. },
  6861. [
  6862. {
  6863. name: "Small",
  6864. height: math.unit(4 + 11 / 12, "feet")
  6865. },
  6866. {
  6867. name: "Normal",
  6868. height: math.unit(20, "feet"),
  6869. default: true
  6870. },
  6871. {
  6872. name: "Macro",
  6873. height: math.unit(120, "feet")
  6874. },
  6875. {
  6876. name: "Megamacro",
  6877. height: math.unit(80, "miles")
  6878. },
  6879. {
  6880. name: "True Size",
  6881. height: math.unit(100000, "lightyears")
  6882. },
  6883. ]
  6884. ))
  6885. characterMakers.push(() => makeCharacter(
  6886. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6887. {
  6888. front: {
  6889. height: math.unit(6, "feet"),
  6890. weight: math.unit(200, "lbs"),
  6891. name: "Front",
  6892. image: {
  6893. source: "./media/characters/vector-wuff/front.svg"
  6894. }
  6895. }
  6896. },
  6897. [
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(2.8, "meters")
  6901. },
  6902. {
  6903. name: "Macro",
  6904. height: math.unit(450, "meters"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Megamacro",
  6909. height: math.unit(15, "kilometers")
  6910. }
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(6, "feet"),
  6918. weight: math.unit(256, "lbs"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/dannik/front.svg"
  6922. }
  6923. }
  6924. },
  6925. [
  6926. {
  6927. name: "Macro",
  6928. height: math.unit(69.57, "meters"),
  6929. default: true
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6935. {
  6936. front: {
  6937. height: math.unit(6, "feet"),
  6938. weight: math.unit(120, "lbs"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/azura-saharah/front.svg"
  6942. }
  6943. },
  6944. back: {
  6945. height: math.unit(6, "feet"),
  6946. weight: math.unit(120, "lbs"),
  6947. name: "Back",
  6948. image: {
  6949. source: "./media/characters/azura-saharah/back.svg"
  6950. }
  6951. },
  6952. },
  6953. [
  6954. {
  6955. name: "Macro",
  6956. height: math.unit(100, "feet"),
  6957. default: true
  6958. },
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6963. {
  6964. side: {
  6965. height: math.unit(5 + 4 / 12, "feet"),
  6966. weight: math.unit(163, "lbs"),
  6967. name: "Side",
  6968. image: {
  6969. source: "./media/characters/kennedy/side.svg"
  6970. }
  6971. }
  6972. },
  6973. [
  6974. {
  6975. name: "Standard Doggo",
  6976. height: math.unit(5 + 4 / 12, "feet")
  6977. },
  6978. {
  6979. name: "Big Doggo",
  6980. height: math.unit(25 + 3 / 12, "feet"),
  6981. default: true
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(6, "feet"),
  6990. weight: math.unit(90, "lbs"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/odi-lunar/front.svg"
  6994. }
  6995. }
  6996. },
  6997. [
  6998. {
  6999. name: "Micro",
  7000. height: math.unit(3, "inches"),
  7001. default: true
  7002. },
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(5.5, "feet")
  7006. }
  7007. ]
  7008. ))
  7009. characterMakers.push(() => makeCharacter(
  7010. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7011. {
  7012. back: {
  7013. height: math.unit(6, "feet"),
  7014. weight: math.unit(220, "lbs"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/mandake/back.svg"
  7018. }
  7019. }
  7020. },
  7021. [
  7022. {
  7023. name: "Normal",
  7024. height: math.unit(7, "feet"),
  7025. default: true
  7026. },
  7027. {
  7028. name: "Macro",
  7029. height: math.unit(78, "feet")
  7030. },
  7031. {
  7032. name: "Macro+",
  7033. height: math.unit(300, "meters")
  7034. },
  7035. {
  7036. name: "Macro++",
  7037. height: math.unit(2400, "feet")
  7038. },
  7039. {
  7040. name: "Megamacro",
  7041. height: math.unit(5167, "meters")
  7042. },
  7043. {
  7044. name: "Gigamacro",
  7045. height: math.unit(41769, "miles")
  7046. },
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(120, "lbs"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/yozey/front.svg"
  7058. }
  7059. },
  7060. frontAlt: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(120, "lbs"),
  7063. name: "Front (Alt)",
  7064. image: {
  7065. source: "./media/characters/yozey/front-alt.svg"
  7066. }
  7067. },
  7068. side: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(120, "lbs"),
  7071. name: "Side",
  7072. image: {
  7073. source: "./media/characters/yozey/side.svg"
  7074. }
  7075. },
  7076. },
  7077. [
  7078. {
  7079. name: "Micro",
  7080. height: math.unit(3, "inches"),
  7081. default: true
  7082. },
  7083. {
  7084. name: "Normal",
  7085. height: math.unit(6, "feet")
  7086. }
  7087. ]
  7088. ))
  7089. characterMakers.push(() => makeCharacter(
  7090. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7091. {
  7092. front: {
  7093. height: math.unit(6, "feet"),
  7094. weight: math.unit(103, "lbs"),
  7095. name: "Front",
  7096. image: {
  7097. source: "./media/characters/valeska-voss/front.svg"
  7098. }
  7099. }
  7100. },
  7101. [
  7102. {
  7103. name: "Mini-Sized Sub",
  7104. height: math.unit(3.1, "inches")
  7105. },
  7106. {
  7107. name: "Mid-Sized Sub",
  7108. height: math.unit(6.2, "inches")
  7109. },
  7110. {
  7111. name: "Full-Sized Sub",
  7112. height: math.unit(9.3, "inches")
  7113. },
  7114. {
  7115. name: "Normal",
  7116. height: math.unit(5 + 2 / 12, "foot"),
  7117. default: true
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(160, "lbs"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/gene-zeta/front.svg",
  7130. extra: 3006 / 2826,
  7131. bottom: 182 / 3188
  7132. }
  7133. }
  7134. },
  7135. [
  7136. {
  7137. name: "Micro",
  7138. height: math.unit(6, "inches")
  7139. },
  7140. {
  7141. name: "Normal",
  7142. height: math.unit(5 + 11 / 12, "foot"),
  7143. default: true
  7144. },
  7145. {
  7146. name: "Macro",
  7147. height: math.unit(140, "feet")
  7148. },
  7149. {
  7150. name: "Supercharged",
  7151. height: math.unit(2500, "feet")
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7157. {
  7158. front: {
  7159. height: math.unit(6, "feet"),
  7160. weight: math.unit(350, "lbs"),
  7161. name: "Front",
  7162. image: {
  7163. source: "./media/characters/razinox/front.svg",
  7164. extra: 1686 / 1548,
  7165. bottom: 28.2 / 1868
  7166. }
  7167. },
  7168. back: {
  7169. height: math.unit(6, "feet"),
  7170. weight: math.unit(350, "lbs"),
  7171. name: "Back",
  7172. image: {
  7173. source: "./media/characters/razinox/back.svg",
  7174. extra: 1660 / 1590,
  7175. bottom: 15 / 1665
  7176. }
  7177. },
  7178. },
  7179. [
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(10 + 8 / 12, "foot")
  7183. },
  7184. {
  7185. name: "Minimacro",
  7186. height: math.unit(15, "foot")
  7187. },
  7188. {
  7189. name: "Macro",
  7190. height: math.unit(60, "foot"),
  7191. default: true
  7192. },
  7193. {
  7194. name: "Megamacro",
  7195. height: math.unit(5, "miles")
  7196. },
  7197. {
  7198. name: "Gigamacro",
  7199. height: math.unit(6000, "miles")
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(150, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/cobalt/front.svg"
  7212. }
  7213. }
  7214. },
  7215. [
  7216. {
  7217. name: "Normal",
  7218. height: math.unit(8 + 1 / 12, "foot")
  7219. },
  7220. {
  7221. name: "Macro",
  7222. height: math.unit(111, "foot"),
  7223. default: true
  7224. },
  7225. {
  7226. name: "Supracosmic",
  7227. height: math.unit(1e42, "feet")
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(6, "feet"),
  7236. weight: math.unit(140, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/amanda/front.svg"
  7240. }
  7241. }
  7242. },
  7243. [
  7244. {
  7245. name: "Micro",
  7246. height: math.unit(5, "inches"),
  7247. default: true
  7248. },
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7253. {
  7254. front: {
  7255. height: math.unit(2.75, "meters"),
  7256. weight: math.unit(1200, "lb"),
  7257. name: "Front",
  7258. image: {
  7259. source: "./media/characters/teal/front.svg",
  7260. extra: 2463 / 2320,
  7261. bottom: 166 / 2629
  7262. }
  7263. },
  7264. back: {
  7265. height: math.unit(2.75, "meters"),
  7266. weight: math.unit(1200, "lb"),
  7267. name: "Back",
  7268. image: {
  7269. source: "./media/characters/teal/back.svg",
  7270. extra: 2580 / 2489,
  7271. bottom: 151 / 2731
  7272. }
  7273. },
  7274. sitting: {
  7275. height: math.unit(1.9, "meters"),
  7276. weight: math.unit(1200, "lb"),
  7277. name: "Sitting",
  7278. image: {
  7279. source: "./media/characters/teal/sitting.svg",
  7280. extra: 623 / 590,
  7281. bottom: 121 / 744
  7282. }
  7283. },
  7284. standing: {
  7285. height: math.unit(2.75, "meters"),
  7286. weight: math.unit(1200, "lb"),
  7287. name: "Standing",
  7288. image: {
  7289. source: "./media/characters/teal/standing.svg",
  7290. extra: 923 / 893,
  7291. bottom: 60 / 983
  7292. }
  7293. },
  7294. stretching: {
  7295. height: math.unit(3.65, "meters"),
  7296. weight: math.unit(1200, "lb"),
  7297. name: "Stretching",
  7298. image: {
  7299. source: "./media/characters/teal/stretching.svg",
  7300. extra: 1276 / 1244,
  7301. bottom: 0 / 1276
  7302. }
  7303. },
  7304. legged: {
  7305. height: math.unit(1.3, "meters"),
  7306. weight: math.unit(100, "lb"),
  7307. name: "Legged",
  7308. image: {
  7309. source: "./media/characters/teal/legged.svg",
  7310. extra: 462 / 437,
  7311. bottom: 24 / 486
  7312. }
  7313. },
  7314. naga: {
  7315. height: math.unit(5.4, "meters"),
  7316. weight: math.unit(4000, "lb"),
  7317. name: "Naga",
  7318. image: {
  7319. source: "./media/characters/teal/naga.svg",
  7320. extra: 1902 / 1858,
  7321. bottom: 0 / 1902
  7322. }
  7323. },
  7324. hand: {
  7325. height: math.unit(0.52, "meters"),
  7326. name: "Hand",
  7327. image: {
  7328. source: "./media/characters/teal/hand.svg"
  7329. }
  7330. },
  7331. maw: {
  7332. height: math.unit(0.43, "meters"),
  7333. name: "Maw",
  7334. image: {
  7335. source: "./media/characters/teal/maw.svg"
  7336. }
  7337. },
  7338. slit: {
  7339. height: math.unit(0.25, "meters"),
  7340. name: "Slit",
  7341. image: {
  7342. source: "./media/characters/teal/slit.svg"
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Normal",
  7349. height: math.unit(2.75, "meters"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Macro",
  7354. height: math.unit(300, "feet")
  7355. },
  7356. {
  7357. name: "Macro+",
  7358. height: math.unit(2000, "feet")
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7364. {
  7365. frontCat: {
  7366. height: math.unit(6, "feet"),
  7367. weight: math.unit(180, "lbs"),
  7368. name: "Front (Cat)",
  7369. image: {
  7370. source: "./media/characters/ravin-amulet/front-cat.svg"
  7371. }
  7372. },
  7373. frontCatAlt: {
  7374. height: math.unit(6, "feet"),
  7375. weight: math.unit(180, "lbs"),
  7376. name: "Front (Alt, Cat)",
  7377. image: {
  7378. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7379. }
  7380. },
  7381. frontWerewolf: {
  7382. height: math.unit(6 * 1.2, "feet"),
  7383. weight: math.unit(225, "lbs"),
  7384. name: "Front (Werewolf)",
  7385. image: {
  7386. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7387. }
  7388. },
  7389. backWerewolf: {
  7390. height: math.unit(6 * 1.2, "feet"),
  7391. weight: math.unit(225, "lbs"),
  7392. name: "Back (Werewolf)",
  7393. image: {
  7394. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7395. }
  7396. },
  7397. },
  7398. [
  7399. {
  7400. name: "Nano",
  7401. height: math.unit(1, "micrometer")
  7402. },
  7403. {
  7404. name: "Micro",
  7405. height: math.unit(1, "inch")
  7406. },
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(6, "feet"),
  7410. default: true
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(60, "feet")
  7415. }
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(165, "lbs"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/fluoresce/front.svg"
  7427. }
  7428. }
  7429. },
  7430. [
  7431. {
  7432. name: "Micro",
  7433. height: math.unit(6, "cm")
  7434. },
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(5 + 7 / 12, "feet"),
  7438. default: true
  7439. },
  7440. {
  7441. name: "Macro",
  7442. height: math.unit(56, "feet")
  7443. },
  7444. {
  7445. name: "Megamacro",
  7446. height: math.unit(1.9, "miles")
  7447. },
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7452. {
  7453. front: {
  7454. height: math.unit(9 + 6 / 12, "feet"),
  7455. weight: math.unit(523, "lbs"),
  7456. name: "Side",
  7457. image: {
  7458. source: "./media/characters/aurora/side.svg"
  7459. }
  7460. }
  7461. },
  7462. [
  7463. {
  7464. name: "Normal",
  7465. height: math.unit(9 + 6 / 12, "feet")
  7466. },
  7467. {
  7468. name: "Macro",
  7469. height: math.unit(96, "feet"),
  7470. default: true
  7471. },
  7472. {
  7473. name: "Macro+",
  7474. height: math.unit(243, "feet")
  7475. },
  7476. ]
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7480. {
  7481. front: {
  7482. height: math.unit(194, "cm"),
  7483. weight: math.unit(90, "kg"),
  7484. name: "Front",
  7485. image: {
  7486. source: "./media/characters/ranek/front.svg"
  7487. }
  7488. },
  7489. side: {
  7490. height: math.unit(194, "cm"),
  7491. weight: math.unit(90, "kg"),
  7492. name: "Side",
  7493. image: {
  7494. source: "./media/characters/ranek/side.svg"
  7495. }
  7496. },
  7497. back: {
  7498. height: math.unit(194, "cm"),
  7499. weight: math.unit(90, "kg"),
  7500. name: "Back",
  7501. image: {
  7502. source: "./media/characters/ranek/back.svg"
  7503. }
  7504. },
  7505. feral: {
  7506. height: math.unit(30, "cm"),
  7507. weight: math.unit(1.6, "lbs"),
  7508. name: "Feral",
  7509. image: {
  7510. source: "./media/characters/ranek/feral.svg"
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(194, "cm"),
  7518. default: true
  7519. },
  7520. {
  7521. name: "Macro",
  7522. height: math.unit(100, "meters")
  7523. },
  7524. ]
  7525. ))
  7526. characterMakers.push(() => makeCharacter(
  7527. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7528. {
  7529. front: {
  7530. height: math.unit(5 + 6 / 12, "feet"),
  7531. weight: math.unit(153, "lbs"),
  7532. name: "Front",
  7533. image: {
  7534. source: "./media/characters/andrew-cooper/front.svg"
  7535. }
  7536. },
  7537. },
  7538. [
  7539. {
  7540. name: "Nano",
  7541. height: math.unit(1, "mm")
  7542. },
  7543. {
  7544. name: "Micro",
  7545. height: math.unit(2, "inches")
  7546. },
  7547. {
  7548. name: "Normal",
  7549. height: math.unit(5 + 6 / 12, "feet"),
  7550. default: true
  7551. }
  7552. ]
  7553. ))
  7554. characterMakers.push(() => makeCharacter(
  7555. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7556. {
  7557. front: {
  7558. height: math.unit(6, "feet"),
  7559. weight: math.unit(180, "lbs"),
  7560. name: "Front",
  7561. image: {
  7562. source: "./media/characters/akane-sato/front.svg",
  7563. extra: 1219 / 1140
  7564. }
  7565. },
  7566. back: {
  7567. height: math.unit(6, "feet"),
  7568. weight: math.unit(180, "lbs"),
  7569. name: "Back",
  7570. image: {
  7571. source: "./media/characters/akane-sato/back.svg",
  7572. extra: 1219 / 1170
  7573. }
  7574. },
  7575. },
  7576. [
  7577. {
  7578. name: "Normal",
  7579. height: math.unit(2.5, "meters")
  7580. },
  7581. {
  7582. name: "Macro",
  7583. height: math.unit(250, "meters"),
  7584. default: true
  7585. },
  7586. {
  7587. name: "Megamacro",
  7588. height: math.unit(25, "km")
  7589. },
  7590. ]
  7591. ))
  7592. characterMakers.push(() => makeCharacter(
  7593. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7594. {
  7595. front: {
  7596. height: math.unit(6, "feet"),
  7597. weight: math.unit(65, "kg"),
  7598. name: "Front",
  7599. image: {
  7600. source: "./media/characters/rook/front.svg",
  7601. extra: 960 / 950
  7602. }
  7603. }
  7604. },
  7605. [
  7606. {
  7607. name: "Normal",
  7608. height: math.unit(8.8, "feet")
  7609. },
  7610. {
  7611. name: "Macro",
  7612. height: math.unit(88, "feet"),
  7613. default: true
  7614. },
  7615. {
  7616. name: "Megamacro",
  7617. height: math.unit(8, "miles")
  7618. },
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7623. {
  7624. front: {
  7625. height: math.unit(12 + 2 / 12, "feet"),
  7626. weight: math.unit(808, "lbs"),
  7627. name: "Front",
  7628. image: {
  7629. source: "./media/characters/prodigy/front.svg"
  7630. }
  7631. }
  7632. },
  7633. [
  7634. {
  7635. name: "Normal",
  7636. height: math.unit(12 + 2 / 12, "feet"),
  7637. default: true
  7638. },
  7639. {
  7640. name: "Macro",
  7641. height: math.unit(143, "feet")
  7642. },
  7643. {
  7644. name: "Macro+",
  7645. height: math.unit(400, "feet")
  7646. },
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7651. {
  7652. front: {
  7653. height: math.unit(6, "feet"),
  7654. weight: math.unit(225, "lbs"),
  7655. name: "Front",
  7656. image: {
  7657. source: "./media/characters/daniel/front.svg"
  7658. }
  7659. },
  7660. leaning: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(225, "lbs"),
  7663. name: "Leaning",
  7664. image: {
  7665. source: "./media/characters/daniel/leaning.svg"
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Macro",
  7672. height: math.unit(1000, "feet"),
  7673. default: true
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(88, "lbs"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/chiros/front.svg",
  7686. extra: 306 / 226
  7687. }
  7688. },
  7689. side: {
  7690. height: math.unit(6, "feet"),
  7691. weight: math.unit(88, "lbs"),
  7692. name: "Side",
  7693. image: {
  7694. source: "./media/characters/chiros/side.svg",
  7695. extra: 306 / 226
  7696. }
  7697. },
  7698. },
  7699. [
  7700. {
  7701. name: "Normal",
  7702. height: math.unit(6, "cm"),
  7703. default: true
  7704. },
  7705. ]
  7706. ))
  7707. characterMakers.push(() => makeCharacter(
  7708. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7709. {
  7710. front: {
  7711. height: math.unit(6, "feet"),
  7712. weight: math.unit(100, "lbs"),
  7713. name: "Front",
  7714. image: {
  7715. source: "./media/characters/selka/front.svg",
  7716. extra: 947 / 887
  7717. }
  7718. }
  7719. },
  7720. [
  7721. {
  7722. name: "Normal",
  7723. height: math.unit(5, "cm"),
  7724. default: true
  7725. },
  7726. ]
  7727. ))
  7728. characterMakers.push(() => makeCharacter(
  7729. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7730. {
  7731. front: {
  7732. height: math.unit(8 + 3 / 12, "feet"),
  7733. weight: math.unit(424, "lbs"),
  7734. name: "Front",
  7735. image: {
  7736. source: "./media/characters/verin/front.svg",
  7737. extra: 1845 / 1550
  7738. }
  7739. },
  7740. frontArmored: {
  7741. height: math.unit(8 + 3 / 12, "feet"),
  7742. weight: math.unit(424, "lbs"),
  7743. name: "Front (Armored)",
  7744. image: {
  7745. source: "./media/characters/verin/front-armor.svg",
  7746. extra: 1845 / 1550,
  7747. bottom: 0.01
  7748. }
  7749. },
  7750. back: {
  7751. height: math.unit(8 + 3 / 12, "feet"),
  7752. weight: math.unit(424, "lbs"),
  7753. name: "Back",
  7754. image: {
  7755. source: "./media/characters/verin/back.svg",
  7756. bottom: 0.1,
  7757. extra: 1
  7758. }
  7759. },
  7760. foot: {
  7761. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7762. name: "Foot",
  7763. image: {
  7764. source: "./media/characters/verin/foot.svg"
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(8 + 3 / 12, "feet")
  7772. },
  7773. {
  7774. name: "Minimacro",
  7775. height: math.unit(21, "feet"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Macro",
  7780. height: math.unit(626, "feet")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(2.718, "meters"),
  7789. weight: math.unit(150, "lbs"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/sovrim-terraquian/front.svg"
  7793. }
  7794. },
  7795. back: {
  7796. height: math.unit(2.718, "meters"),
  7797. weight: math.unit(150, "lbs"),
  7798. name: "Back",
  7799. image: {
  7800. source: "./media/characters/sovrim-terraquian/back.svg"
  7801. }
  7802. }
  7803. },
  7804. [
  7805. {
  7806. name: "Micro",
  7807. height: math.unit(2, "inches")
  7808. },
  7809. {
  7810. name: "Small",
  7811. height: math.unit(1, "meter")
  7812. },
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(Math.E, "meters"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Macro",
  7820. height: math.unit(20, "meters")
  7821. },
  7822. {
  7823. name: "Macro+",
  7824. height: math.unit(400, "meters")
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(7, "feet"),
  7833. weight: math.unit(489, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/reece-silvermane/front.svg",
  7837. bottom: 0.02,
  7838. extra: 1
  7839. }
  7840. },
  7841. },
  7842. [
  7843. {
  7844. name: "Macro",
  7845. height: math.unit(1.5, "miles"),
  7846. default: true
  7847. },
  7848. ]
  7849. ))
  7850. characterMakers.push(() => makeCharacter(
  7851. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7852. {
  7853. front: {
  7854. height: math.unit(6, "feet"),
  7855. weight: math.unit(78, "kg"),
  7856. name: "Front",
  7857. image: {
  7858. source: "./media/characters/kane/front.svg",
  7859. extra: 978 / 899
  7860. }
  7861. },
  7862. },
  7863. [
  7864. {
  7865. name: "Normal",
  7866. height: math.unit(2.1, "m"),
  7867. },
  7868. {
  7869. name: "Macro",
  7870. height: math.unit(1, "km"),
  7871. default: true
  7872. },
  7873. ]
  7874. ))
  7875. characterMakers.push(() => makeCharacter(
  7876. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7877. {
  7878. front: {
  7879. height: math.unit(6, "feet"),
  7880. weight: math.unit(200, "kg"),
  7881. name: "Front",
  7882. image: {
  7883. source: "./media/characters/tegon/front.svg",
  7884. bottom: 0.01,
  7885. extra: 1
  7886. }
  7887. },
  7888. },
  7889. [
  7890. {
  7891. name: "Micro",
  7892. height: math.unit(1, "inch")
  7893. },
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(6 + 3 / 12, "feet"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Macro",
  7901. height: math.unit(300, "feet")
  7902. },
  7903. {
  7904. name: "Megamacro",
  7905. height: math.unit(69, "miles")
  7906. },
  7907. ]
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7911. {
  7912. side: {
  7913. height: math.unit(6, "feet"),
  7914. weight: math.unit(2304, "lbs"),
  7915. name: "Side",
  7916. image: {
  7917. source: "./media/characters/arcturax/side.svg",
  7918. extra: 790 / 376,
  7919. bottom: 0.01
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Micro",
  7926. height: math.unit(2, "inch")
  7927. },
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(6, "feet")
  7931. },
  7932. {
  7933. name: "Macro",
  7934. height: math.unit(39, "feet"),
  7935. default: true
  7936. },
  7937. {
  7938. name: "Megamacro",
  7939. height: math.unit(7, "miles")
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(6, "feet"),
  7948. weight: math.unit(50, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/sentri/front.svg",
  7952. extra: 1750 / 1570,
  7953. bottom: 0.025
  7954. }
  7955. },
  7956. frontAlt: {
  7957. height: math.unit(6, "feet"),
  7958. weight: math.unit(50, "lbs"),
  7959. name: "Front (Alt)",
  7960. image: {
  7961. source: "./media/characters/sentri/front-alt.svg",
  7962. extra: 1750 / 1570,
  7963. bottom: 0.025
  7964. }
  7965. },
  7966. },
  7967. [
  7968. {
  7969. name: "Normal",
  7970. height: math.unit(15, "feet"),
  7971. default: true
  7972. },
  7973. {
  7974. name: "Macro",
  7975. height: math.unit(2500, "feet")
  7976. }
  7977. ]
  7978. ))
  7979. characterMakers.push(() => makeCharacter(
  7980. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7981. {
  7982. front: {
  7983. height: math.unit(5 + 8 / 12, "feet"),
  7984. weight: math.unit(130, "lbs"),
  7985. name: "Front",
  7986. image: {
  7987. source: "./media/characters/corvin/front.svg",
  7988. extra: 1803 / 1629
  7989. }
  7990. },
  7991. frontShirt: {
  7992. height: math.unit(5 + 8 / 12, "feet"),
  7993. weight: math.unit(130, "lbs"),
  7994. name: "Front (Shirt)",
  7995. image: {
  7996. source: "./media/characters/corvin/front-shirt.svg",
  7997. extra: 1803 / 1629
  7998. }
  7999. },
  8000. frontPoncho: {
  8001. height: math.unit(5 + 8 / 12, "feet"),
  8002. weight: math.unit(130, "lbs"),
  8003. name: "Front (Poncho)",
  8004. image: {
  8005. source: "./media/characters/corvin/front-poncho.svg",
  8006. extra: 1803 / 1629
  8007. }
  8008. },
  8009. side: {
  8010. height: math.unit(5 + 8 / 12, "feet"),
  8011. weight: math.unit(130, "lbs"),
  8012. name: "Side",
  8013. image: {
  8014. source: "./media/characters/corvin/side.svg",
  8015. extra: 1012 / 945
  8016. }
  8017. },
  8018. back: {
  8019. height: math.unit(5 + 8 / 12, "feet"),
  8020. weight: math.unit(130, "lbs"),
  8021. name: "Back",
  8022. image: {
  8023. source: "./media/characters/corvin/back.svg",
  8024. extra: 1803 / 1629
  8025. }
  8026. },
  8027. },
  8028. [
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(3, "inches")
  8032. },
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(5 + 8 / 12, "feet")
  8036. },
  8037. {
  8038. name: "Macro",
  8039. height: math.unit(300, "feet"),
  8040. default: true
  8041. },
  8042. {
  8043. name: "Megamacro",
  8044. height: math.unit(500, "miles")
  8045. }
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8050. {
  8051. front: {
  8052. height: math.unit(6, "feet"),
  8053. weight: math.unit(135, "lbs"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/q/front.svg",
  8057. extra: 854 / 752,
  8058. bottom: 0.005
  8059. }
  8060. },
  8061. back: {
  8062. height: math.unit(6, "feet"),
  8063. weight: math.unit(130, "lbs"),
  8064. name: "Back",
  8065. image: {
  8066. source: "./media/characters/q/back.svg",
  8067. extra: 854 / 752
  8068. }
  8069. },
  8070. },
  8071. [
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(90, "feet"),
  8075. default: true
  8076. },
  8077. {
  8078. name: "Extra Macro",
  8079. height: math.unit(300, "feet"),
  8080. },
  8081. {
  8082. name: "BIG WALF",
  8083. height: math.unit(750, "feet"),
  8084. },
  8085. ]
  8086. ))
  8087. characterMakers.push(() => makeCharacter(
  8088. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8089. {
  8090. front: {
  8091. height: math.unit(6, "feet"),
  8092. weight: math.unit(150, "lbs"),
  8093. name: "Front",
  8094. image: {
  8095. source: "./media/characters/carley/front.svg",
  8096. extra: 3927 / 3540,
  8097. bottom: 29.2 / 735
  8098. }
  8099. }
  8100. },
  8101. [
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(6 + 3 / 12, "feet")
  8105. },
  8106. {
  8107. name: "Macro",
  8108. height: math.unit(185, "feet"),
  8109. default: true
  8110. },
  8111. {
  8112. name: "Megamacro",
  8113. height: math.unit(8, "miles"),
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8119. {
  8120. front: {
  8121. height: math.unit(3, "feet"),
  8122. weight: math.unit(28, "lbs"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/citrine/front.svg"
  8126. }
  8127. }
  8128. },
  8129. [
  8130. {
  8131. name: "Normal",
  8132. height: math.unit(3, "feet"),
  8133. default: true
  8134. }
  8135. ]
  8136. ))
  8137. characterMakers.push(() => makeCharacter(
  8138. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8139. {
  8140. front: {
  8141. height: math.unit(14, "feet"),
  8142. weight: math.unit(1450, "kg"),
  8143. capacity: math.unit(15, "people"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/aura-starwind/front.svg",
  8147. extra: 1455 / 1335
  8148. }
  8149. },
  8150. side: {
  8151. height: math.unit(14, "feet"),
  8152. weight: math.unit(1450, "kg"),
  8153. capacity: math.unit(15, "people"),
  8154. name: "Side",
  8155. image: {
  8156. source: "./media/characters/aura-starwind/side.svg",
  8157. extra: 1654 / 1497
  8158. }
  8159. },
  8160. taur: {
  8161. height: math.unit(18, "feet"),
  8162. weight: math.unit(5500, "kg"),
  8163. capacity: math.unit(50, "people"),
  8164. name: "Taur",
  8165. image: {
  8166. source: "./media/characters/aura-starwind/taur.svg",
  8167. extra: 1760 / 1650
  8168. }
  8169. },
  8170. feral: {
  8171. height: math.unit(46, "feet"),
  8172. weight: math.unit(25000, "kg"),
  8173. capacity: math.unit(120, "people"),
  8174. name: "Feral",
  8175. image: {
  8176. source: "./media/characters/aura-starwind/feral.svg"
  8177. }
  8178. },
  8179. },
  8180. [
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(14, "feet"),
  8184. default: true
  8185. },
  8186. {
  8187. name: "Macro",
  8188. height: math.unit(50, "meters")
  8189. },
  8190. {
  8191. name: "Megamacro",
  8192. height: math.unit(5000, "meters")
  8193. },
  8194. {
  8195. name: "Gigamacro",
  8196. height: math.unit(100000, "kilometers")
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(2 + 7 / 12, "feet"),
  8205. weight: math.unit(32, "lbs"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/rivet/front.svg",
  8209. extra: 1716 / 1658,
  8210. bottom: 0.03
  8211. }
  8212. },
  8213. foot: {
  8214. height: math.unit(0.551, "feet"),
  8215. name: "Rivet's Foot",
  8216. image: {
  8217. source: "./media/characters/rivet/foot.svg"
  8218. },
  8219. rename: true
  8220. }
  8221. },
  8222. [
  8223. {
  8224. name: "Micro",
  8225. height: math.unit(1.5, "inches"),
  8226. },
  8227. {
  8228. name: "Normal",
  8229. height: math.unit(2 + 7 / 12, "feet"),
  8230. default: true
  8231. },
  8232. {
  8233. name: "Macro",
  8234. height: math.unit(85, "feet")
  8235. },
  8236. {
  8237. name: "Megamacro",
  8238. height: math.unit(2.2, "km")
  8239. }
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(5 + 9 / 12, "feet"),
  8247. weight: math.unit(150, "lbs"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/coffee/front.svg",
  8251. extra: 3666 / 3032,
  8252. bottom: 0.04
  8253. }
  8254. },
  8255. foot: {
  8256. height: math.unit(1.29, "feet"),
  8257. name: "Foot",
  8258. image: {
  8259. source: "./media/characters/coffee/foot.svg"
  8260. }
  8261. },
  8262. },
  8263. [
  8264. {
  8265. name: "Micro",
  8266. height: math.unit(2, "inches"),
  8267. },
  8268. {
  8269. name: "Normal",
  8270. height: math.unit(5 + 9 / 12, "feet"),
  8271. default: true
  8272. },
  8273. {
  8274. name: "Macro",
  8275. height: math.unit(800, "feet")
  8276. },
  8277. {
  8278. name: "Megamacro",
  8279. height: math.unit(25, "miles")
  8280. }
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8285. {
  8286. front: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(200, "lbs"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/chari-gal/front.svg",
  8292. extra: 1568 / 1385,
  8293. bottom: 0.047
  8294. }
  8295. },
  8296. gigantamax: {
  8297. height: math.unit(6 * 16, "feet"),
  8298. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8299. name: "Gigantamax",
  8300. image: {
  8301. source: "./media/characters/chari-gal/gigantamax.svg",
  8302. extra: 1124 / 888,
  8303. bottom: 0.03
  8304. }
  8305. },
  8306. },
  8307. [
  8308. {
  8309. name: "Normal",
  8310. height: math.unit(5 + 7 / 12, "feet")
  8311. },
  8312. {
  8313. name: "Macro",
  8314. height: math.unit(200, "feet"),
  8315. default: true
  8316. }
  8317. ]
  8318. ))
  8319. characterMakers.push(() => makeCharacter(
  8320. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8321. {
  8322. front: {
  8323. height: math.unit(6, "feet"),
  8324. weight: math.unit(150, "lbs"),
  8325. name: "Front",
  8326. image: {
  8327. source: "./media/characters/nova/front.svg",
  8328. extra: 5000 / 4722,
  8329. bottom: 0.02
  8330. }
  8331. }
  8332. },
  8333. [
  8334. {
  8335. name: "Micro-",
  8336. height: math.unit(0.8, "inches")
  8337. },
  8338. {
  8339. name: "Micro",
  8340. height: math.unit(2, "inches"),
  8341. default: true
  8342. },
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8347. {
  8348. front: {
  8349. height: math.unit(3 + 1 / 12, "feet"),
  8350. weight: math.unit(21.7, "lbs"),
  8351. name: "Front",
  8352. image: {
  8353. source: "./media/characters/argent/front.svg",
  8354. extra: 1471 / 1331,
  8355. bottom: 100.8 / 1575.5
  8356. }
  8357. }
  8358. },
  8359. [
  8360. {
  8361. name: "Micro",
  8362. height: math.unit(2, "inches")
  8363. },
  8364. {
  8365. name: "Normal",
  8366. height: math.unit(3 + 1 / 12, "feet"),
  8367. default: true
  8368. },
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(120, "feet")
  8372. },
  8373. ]
  8374. ))
  8375. characterMakers.push(() => makeCharacter(
  8376. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8377. {
  8378. lamp: {
  8379. height: math.unit(7 * 1559 / 989, "feet"),
  8380. name: "Magic Lamp",
  8381. image: {
  8382. source: "./media/characters/mira-al-cul/lamp.svg",
  8383. extra: 1617 / 1559
  8384. }
  8385. },
  8386. front: {
  8387. height: math.unit(7, "feet"),
  8388. name: "Front",
  8389. image: {
  8390. source: "./media/characters/mira-al-cul/front.svg",
  8391. extra: 1044 / 990
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Heavily Restricted",
  8398. height: math.unit(7 * 1559 / 989, "feet")
  8399. },
  8400. {
  8401. name: "Freshly Freed",
  8402. height: math.unit(50 * 1559 / 989, "feet")
  8403. },
  8404. {
  8405. name: "World Encompassing",
  8406. height: math.unit(10000 * 1559 / 989, "miles")
  8407. },
  8408. {
  8409. name: "Galactic",
  8410. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8411. },
  8412. {
  8413. name: "Palmed Universe",
  8414. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8415. default: true
  8416. },
  8417. {
  8418. name: "Multiversal Matriarch",
  8419. height: math.unit(8.87e10, "yottameters")
  8420. },
  8421. {
  8422. name: "Void Mother",
  8423. height: math.unit(3.14e110, "yottaparsecs")
  8424. },
  8425. {
  8426. name: "Toying with Transcendence",
  8427. height: math.unit(1e307, "meters")
  8428. },
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8433. {
  8434. front: {
  8435. height: math.unit(17 + 1 / 12, "feet"),
  8436. weight: math.unit(476.2 * 5, "lbs"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/kuro-shi-uchū/front.svg",
  8440. extra: 2329 / 1835,
  8441. bottom: 0.02
  8442. }
  8443. },
  8444. },
  8445. [
  8446. {
  8447. name: "Micro",
  8448. height: math.unit(2, "inches")
  8449. },
  8450. {
  8451. name: "Normal",
  8452. height: math.unit(12, "meters")
  8453. },
  8454. {
  8455. name: "Planetary",
  8456. height: math.unit(0.00929, "AU"),
  8457. default: true
  8458. },
  8459. {
  8460. name: "Universal",
  8461. height: math.unit(20, "gigaparsecs")
  8462. },
  8463. ]
  8464. ))
  8465. characterMakers.push(() => makeCharacter(
  8466. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8467. {
  8468. front: {
  8469. height: math.unit(5 + 2 / 12, "feet"),
  8470. weight: math.unit(120, "lbs"),
  8471. name: "Front",
  8472. image: {
  8473. source: "./media/characters/katherine/front.svg",
  8474. extra: 2075 / 1969
  8475. }
  8476. },
  8477. dress: {
  8478. height: math.unit(5 + 2 / 12, "feet"),
  8479. weight: math.unit(120, "lbs"),
  8480. name: "Dress",
  8481. image: {
  8482. source: "./media/characters/katherine/dress.svg",
  8483. extra: 2258 / 2064
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Micro",
  8490. height: math.unit(1, "inches"),
  8491. default: true
  8492. },
  8493. {
  8494. name: "Normal",
  8495. height: math.unit(5 + 2 / 12, "feet")
  8496. },
  8497. {
  8498. name: "Macro",
  8499. height: math.unit(100, "meters")
  8500. },
  8501. {
  8502. name: "Megamacro",
  8503. height: math.unit(80, "miles")
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(7 + 8 / 12, "feet"),
  8512. weight: math.unit(250, "lbs"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/yevis/front.svg",
  8516. extra: 1938 / 1755
  8517. }
  8518. }
  8519. },
  8520. [
  8521. {
  8522. name: "Mortal",
  8523. height: math.unit(7 + 8 / 12, "feet")
  8524. },
  8525. {
  8526. name: "Battle",
  8527. height: math.unit(25 + 11 / 12, "feet")
  8528. },
  8529. {
  8530. name: "Wrath",
  8531. height: math.unit(1654 + 11 / 12, "feet")
  8532. },
  8533. {
  8534. name: "Planet Destroyer",
  8535. height: math.unit(12000, "miles")
  8536. },
  8537. {
  8538. name: "Galaxy Conqueror",
  8539. height: math.unit(1.45, "zettameters"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Universal War",
  8544. height: math.unit(184, "gigaparsecs")
  8545. },
  8546. {
  8547. name: "Eternity War",
  8548. height: math.unit(1.98e55, "yottaparsecs")
  8549. },
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8554. {
  8555. front: {
  8556. height: math.unit(5 + 8 / 12, "feet"),
  8557. weight: math.unit(63, "kg"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/xavier/front.svg",
  8561. extra: 944 / 883
  8562. }
  8563. },
  8564. frontStretch: {
  8565. height: math.unit(5 + 8 / 12, "feet"),
  8566. weight: math.unit(63, "kg"),
  8567. name: "Stretching",
  8568. image: {
  8569. source: "./media/characters/xavier/front-stretch.svg",
  8570. extra: 962 / 820
  8571. }
  8572. },
  8573. },
  8574. [
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(5 + 8 / 12, "feet")
  8578. },
  8579. {
  8580. name: "Macro",
  8581. height: math.unit(100, "meters"),
  8582. default: true
  8583. },
  8584. {
  8585. name: "McLargeHuge",
  8586. height: math.unit(10, "miles")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(5 + 5 / 12, "feet"),
  8595. weight: math.unit(150, "lb"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/joshii/front.svg",
  8599. extra: 765 / 653,
  8600. bottom: 51 / 816
  8601. }
  8602. },
  8603. foot: {
  8604. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8605. name: "Foot",
  8606. image: {
  8607. source: "./media/characters/joshii/foot.svg"
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Micro",
  8614. height: math.unit(2, "inches"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(5 + 5 / 12, "feet")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(785, "feet")
  8624. },
  8625. {
  8626. name: "Megamacro",
  8627. height: math.unit(24.5, "miles")
  8628. },
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8633. {
  8634. front: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(150, "lb"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/goddess-elizabeth/front.svg",
  8640. extra: 1800 / 1525,
  8641. bottom: 0.005
  8642. }
  8643. },
  8644. foot: {
  8645. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8646. name: "Foot",
  8647. image: {
  8648. source: "./media/characters/goddess-elizabeth/foot.svg"
  8649. }
  8650. },
  8651. mouth: {
  8652. height: math.unit(6, "feet"),
  8653. name: "Mouth",
  8654. image: {
  8655. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Micro",
  8662. height: math.unit(12, "feet")
  8663. },
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(80, "miles"),
  8667. default: true
  8668. },
  8669. {
  8670. name: "Macro",
  8671. height: math.unit(15000, "parsecs")
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(5 + 9 / 12, "feet"),
  8680. weight: math.unit(144, "lb"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/kara/front.svg"
  8684. }
  8685. },
  8686. feet: {
  8687. height: math.unit(6 / 6.765, "feet"),
  8688. name: "Kara's Feet",
  8689. rename: true,
  8690. image: {
  8691. source: "./media/characters/kara/feet.svg"
  8692. }
  8693. },
  8694. },
  8695. [
  8696. {
  8697. name: "Normal",
  8698. height: math.unit(5 + 9 / 12, "feet")
  8699. },
  8700. {
  8701. name: "Macro",
  8702. height: math.unit(174, "feet"),
  8703. default: true
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(18, "feet"),
  8712. weight: math.unit(4050, "lb"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/tyrone/front.svg",
  8716. extra: 2405 / 2270,
  8717. bottom: 182 / 2587
  8718. }
  8719. },
  8720. },
  8721. [
  8722. {
  8723. name: "Normal",
  8724. height: math.unit(18, "feet"),
  8725. default: true
  8726. },
  8727. {
  8728. name: "Macro",
  8729. height: math.unit(300, "feet")
  8730. },
  8731. {
  8732. name: "Megamacro",
  8733. height: math.unit(15, "km")
  8734. },
  8735. {
  8736. name: "Gigamacro",
  8737. height: math.unit(500, "km")
  8738. },
  8739. {
  8740. name: "Teramacro",
  8741. height: math.unit(0.5, "gigameters")
  8742. },
  8743. {
  8744. name: "Omnimacro",
  8745. height: math.unit(1e252, "yottauniverse")
  8746. },
  8747. ]
  8748. ))
  8749. characterMakers.push(() => makeCharacter(
  8750. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8751. {
  8752. front: {
  8753. height: math.unit(7 + 8 / 12, "feet"),
  8754. weight: math.unit(120, "lb"),
  8755. name: "Front",
  8756. image: {
  8757. source: "./media/characters/danny/front.svg",
  8758. extra: 1490 / 1350
  8759. }
  8760. },
  8761. back: {
  8762. height: math.unit(7 + 8 / 12, "feet"),
  8763. weight: math.unit(120, "lb"),
  8764. name: "Back",
  8765. image: {
  8766. source: "./media/characters/danny/back.svg",
  8767. extra: 1490 / 1350
  8768. }
  8769. },
  8770. },
  8771. [
  8772. {
  8773. name: "Normal",
  8774. height: math.unit(7 + 8 / 12, "feet"),
  8775. default: true
  8776. },
  8777. ]
  8778. ))
  8779. characterMakers.push(() => makeCharacter(
  8780. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8781. {
  8782. front: {
  8783. height: math.unit(3.5, "inches"),
  8784. weight: math.unit(19, "grams"),
  8785. name: "Front",
  8786. image: {
  8787. source: "./media/characters/mallow/front.svg",
  8788. extra: 471 / 431
  8789. }
  8790. },
  8791. back: {
  8792. height: math.unit(3.5, "inches"),
  8793. weight: math.unit(19, "grams"),
  8794. name: "Back",
  8795. image: {
  8796. source: "./media/characters/mallow/back.svg",
  8797. extra: 471 / 431
  8798. }
  8799. },
  8800. },
  8801. [
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(3.5, "inches"),
  8805. default: true
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(9, "feet"),
  8814. weight: math.unit(230, "kg"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/starry-aqua/front.svg"
  8818. }
  8819. },
  8820. back: {
  8821. height: math.unit(9, "feet"),
  8822. weight: math.unit(230, "kg"),
  8823. name: "Back",
  8824. image: {
  8825. source: "./media/characters/starry-aqua/back.svg"
  8826. }
  8827. },
  8828. hand: {
  8829. height: math.unit(9 * 0.1168, "feet"),
  8830. name: "Hand",
  8831. image: {
  8832. source: "./media/characters/starry-aqua/hand.svg"
  8833. }
  8834. },
  8835. foot: {
  8836. height: math.unit(9 * 0.18, "feet"),
  8837. name: "Foot",
  8838. image: {
  8839. source: "./media/characters/starry-aqua/foot.svg"
  8840. }
  8841. }
  8842. },
  8843. [
  8844. {
  8845. name: "Micro",
  8846. height: math.unit(3, "inches")
  8847. },
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(9, "feet")
  8851. },
  8852. {
  8853. name: "Macro",
  8854. height: math.unit(300, "feet"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "Megamacro",
  8859. height: math.unit(3200, "feet")
  8860. }
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8865. {
  8866. front: {
  8867. height: math.unit(6, "feet"),
  8868. weight: math.unit(230, "lb"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/luka/front.svg",
  8872. extra: 1,
  8873. bottom: 0.025
  8874. }
  8875. },
  8876. },
  8877. [
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(12 + 8 / 12, "feet"),
  8881. default: true
  8882. },
  8883. {
  8884. name: "Minimacro",
  8885. height: math.unit(20, "feet")
  8886. },
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(250, "feet")
  8890. },
  8891. {
  8892. name: "Megamacro",
  8893. height: math.unit(5, "miles")
  8894. },
  8895. {
  8896. name: "Gigamacro",
  8897. height: math.unit(8000, "miles")
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8903. {
  8904. front: {
  8905. height: math.unit(6, "feet"),
  8906. weight: math.unit(150, "lb"),
  8907. name: "Front",
  8908. image: {
  8909. source: "./media/characters/natalie-nightring/front.svg",
  8910. extra: 1,
  8911. bottom: 0.06
  8912. }
  8913. },
  8914. },
  8915. [
  8916. {
  8917. name: "Uh Oh",
  8918. height: math.unit(0.1, "mm")
  8919. },
  8920. {
  8921. name: "Small",
  8922. height: math.unit(3, "inches")
  8923. },
  8924. {
  8925. name: "Human Scale",
  8926. height: math.unit(6, "feet")
  8927. },
  8928. {
  8929. name: "Librarian",
  8930. height: math.unit(50, "feet"),
  8931. default: true
  8932. },
  8933. {
  8934. name: "Immense",
  8935. height: math.unit(200, "miles")
  8936. },
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8941. {
  8942. front: {
  8943. height: math.unit(6, "feet"),
  8944. weight: math.unit(180, "lbs"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/danni-rosie/front.svg",
  8948. extra: 1260 / 1128,
  8949. bottom: 0.022
  8950. }
  8951. },
  8952. },
  8953. [
  8954. {
  8955. name: "Micro",
  8956. height: math.unit(2, "inches"),
  8957. default: true
  8958. },
  8959. ]
  8960. ))
  8961. characterMakers.push(() => makeCharacter(
  8962. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8963. {
  8964. front: {
  8965. height: math.unit(5 + 9 / 12, "feet"),
  8966. weight: math.unit(220, "lb"),
  8967. name: "Front",
  8968. image: {
  8969. source: "./media/characters/samantha-kruse/front.svg",
  8970. extra: (985 / 935),
  8971. bottom: 0.03
  8972. }
  8973. },
  8974. frontUndressed: {
  8975. height: math.unit(5 + 9 / 12, "feet"),
  8976. weight: math.unit(220, "lb"),
  8977. name: "Front (Undressed)",
  8978. image: {
  8979. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8980. extra: (973 / 923),
  8981. bottom: 0.025
  8982. }
  8983. },
  8984. fat: {
  8985. height: math.unit(5 + 9 / 12, "feet"),
  8986. weight: math.unit(900, "lb"),
  8987. name: "Front (Fat)",
  8988. image: {
  8989. source: "./media/characters/samantha-kruse/fat.svg",
  8990. extra: 2688 / 2561
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Normal",
  8997. height: math.unit(5 + 9 / 12, "feet"),
  8998. default: true
  8999. }
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9004. {
  9005. back: {
  9006. height: math.unit(5 + 4 / 12, "feet"),
  9007. weight: math.unit(4963, "lb"),
  9008. name: "Back",
  9009. image: {
  9010. source: "./media/characters/amelia-rosie/back.svg",
  9011. extra: 1113 / 963,
  9012. bottom: 0.01
  9013. }
  9014. },
  9015. },
  9016. [
  9017. {
  9018. name: "Level 0",
  9019. height: math.unit(5 + 4 / 12, "feet")
  9020. },
  9021. {
  9022. name: "Level 1",
  9023. height: math.unit(164597, "feet"),
  9024. default: true
  9025. },
  9026. {
  9027. name: "Level 2",
  9028. height: math.unit(956243, "miles")
  9029. },
  9030. {
  9031. name: "Level 3",
  9032. height: math.unit(29421709423, "miles")
  9033. },
  9034. {
  9035. name: "Level 4",
  9036. height: math.unit(154, "lightyears")
  9037. },
  9038. {
  9039. name: "Level 5",
  9040. height: math.unit(4738272, "lightyears")
  9041. },
  9042. {
  9043. name: "Level 6",
  9044. height: math.unit(145787152896, "lightyears")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(5 + 11 / 12, "feet"),
  9053. weight: math.unit(65, "kg"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/rook-kitara/front.svg",
  9057. extra: 1347 / 1274,
  9058. bottom: 0.005
  9059. }
  9060. },
  9061. },
  9062. [
  9063. {
  9064. name: "Totally Unfair",
  9065. height: math.unit(1.8, "mm")
  9066. },
  9067. {
  9068. name: "Lap Rookie",
  9069. height: math.unit(1.4, "feet")
  9070. },
  9071. {
  9072. name: "Normal",
  9073. height: math.unit(5 + 11 / 12, "feet"),
  9074. default: true
  9075. },
  9076. {
  9077. name: "How Did This Happen",
  9078. height: math.unit(80, "miles")
  9079. }
  9080. ]
  9081. ))
  9082. characterMakers.push(() => makeCharacter(
  9083. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9084. {
  9085. front: {
  9086. height: math.unit(7, "feet"),
  9087. weight: math.unit(300, "lb"),
  9088. name: "Front",
  9089. image: {
  9090. source: "./media/characters/pisces/front.svg",
  9091. extra: 2255 / 2115,
  9092. bottom: 0.03
  9093. }
  9094. },
  9095. back: {
  9096. height: math.unit(7, "feet"),
  9097. weight: math.unit(300, "lb"),
  9098. name: "Back",
  9099. image: {
  9100. source: "./media/characters/pisces/back.svg",
  9101. extra: 2146 / 2055,
  9102. bottom: 0.04
  9103. }
  9104. },
  9105. },
  9106. [
  9107. {
  9108. name: "Normal",
  9109. height: math.unit(7, "feet"),
  9110. default: true
  9111. },
  9112. {
  9113. name: "Swimming Pool",
  9114. height: math.unit(12.2, "meters")
  9115. },
  9116. {
  9117. name: "Olympic Swimming Pool",
  9118. height: math.unit(56.3, "meters")
  9119. },
  9120. {
  9121. name: "Lake Superior",
  9122. height: math.unit(93900, "meters")
  9123. },
  9124. {
  9125. name: "Mediterranean Sea",
  9126. height: math.unit(644457, "meters")
  9127. },
  9128. {
  9129. name: "World's Oceans",
  9130. height: math.unit(4567491, "meters")
  9131. },
  9132. ]
  9133. ))
  9134. characterMakers.push(() => makeCharacter(
  9135. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9136. {
  9137. front: {
  9138. height: math.unit(2.3, "meters"),
  9139. weight: math.unit(120, "kg"),
  9140. name: "Front",
  9141. image: {
  9142. source: "./media/characters/zelas/front.svg"
  9143. }
  9144. },
  9145. side: {
  9146. height: math.unit(2.3, "meters"),
  9147. weight: math.unit(120, "kg"),
  9148. name: "Side",
  9149. image: {
  9150. source: "./media/characters/zelas/side.svg"
  9151. }
  9152. },
  9153. back: {
  9154. height: math.unit(2.3, "meters"),
  9155. weight: math.unit(120, "kg"),
  9156. name: "Back",
  9157. image: {
  9158. source: "./media/characters/zelas/back.svg"
  9159. }
  9160. },
  9161. foot: {
  9162. height: math.unit(1.116, "feet"),
  9163. name: "Foot",
  9164. image: {
  9165. source: "./media/characters/zelas/foot.svg"
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(2.3, "meters")
  9173. },
  9174. {
  9175. name: "Macro",
  9176. height: math.unit(30, "meters"),
  9177. default: true
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9183. {
  9184. front: {
  9185. height: math.unit(1, "inch"),
  9186. weight: math.unit(0.21, "grams"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/talbot/front.svg",
  9190. extra: 594 / 544
  9191. }
  9192. },
  9193. },
  9194. [
  9195. {
  9196. name: "Micro",
  9197. height: math.unit(1, "inch"),
  9198. default: true
  9199. },
  9200. ]
  9201. ))
  9202. characterMakers.push(() => makeCharacter(
  9203. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9204. {
  9205. front: {
  9206. height: math.unit(3 + 3 / 12, "feet"),
  9207. weight: math.unit(51.8, "lb"),
  9208. name: "Front",
  9209. image: {
  9210. source: "./media/characters/fliss/front.svg",
  9211. extra: 840 / 640
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Teeny Tiny",
  9218. height: math.unit(1, "mm")
  9219. },
  9220. {
  9221. name: "Small",
  9222. height: math.unit(1, "inch"),
  9223. default: true
  9224. },
  9225. {
  9226. name: "Standard Sylveon",
  9227. height: math.unit(3 + 3 / 12, "feet")
  9228. },
  9229. {
  9230. name: "Large Nuisance",
  9231. height: math.unit(33, "feet")
  9232. },
  9233. {
  9234. name: "City Filler",
  9235. height: math.unit(3000, "feet")
  9236. },
  9237. {
  9238. name: "New Horizon",
  9239. height: math.unit(6000, "miles")
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9245. {
  9246. front: {
  9247. height: math.unit(5, "cm"),
  9248. weight: math.unit(1.94, "g"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/fleta/front.svg",
  9252. extra: 835 / 803
  9253. }
  9254. },
  9255. back: {
  9256. height: math.unit(5, "cm"),
  9257. weight: math.unit(1.94, "g"),
  9258. name: "Back",
  9259. image: {
  9260. source: "./media/characters/fleta/back.svg",
  9261. extra: 835 / 803
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Micro",
  9268. height: math.unit(5, "cm"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(6, "feet"),
  9278. weight: math.unit(225, "lb"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/dominic/front.svg",
  9282. extra: 1770 / 1620,
  9283. bottom: 0.025
  9284. }
  9285. },
  9286. back: {
  9287. height: math.unit(6, "feet"),
  9288. weight: math.unit(225, "lb"),
  9289. name: "Back",
  9290. image: {
  9291. source: "./media/characters/dominic/back.svg",
  9292. extra: 1745 / 1620,
  9293. bottom: 0.065
  9294. }
  9295. },
  9296. },
  9297. [
  9298. {
  9299. name: "Nano",
  9300. height: math.unit(0.1, "mm")
  9301. },
  9302. {
  9303. name: "Micro-",
  9304. height: math.unit(1, "mm")
  9305. },
  9306. {
  9307. name: "Micro",
  9308. height: math.unit(4, "inches")
  9309. },
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(6 + 4 / 12, "feet"),
  9313. default: true
  9314. },
  9315. {
  9316. name: "Macro",
  9317. height: math.unit(115, "feet")
  9318. },
  9319. {
  9320. name: "Macro+",
  9321. height: math.unit(955, "feet")
  9322. },
  9323. {
  9324. name: "Megamacro",
  9325. height: math.unit(8990, "feet")
  9326. },
  9327. {
  9328. name: "Gigmacro",
  9329. height: math.unit(9310, "miles")
  9330. },
  9331. {
  9332. name: "Teramacro",
  9333. height: math.unit(1567005010, "miles")
  9334. },
  9335. {
  9336. name: "Examacro",
  9337. height: math.unit(1425, "parsecs")
  9338. },
  9339. ]
  9340. ))
  9341. characterMakers.push(() => makeCharacter(
  9342. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9343. {
  9344. front: {
  9345. height: math.unit(400, "feet"),
  9346. weight: math.unit(44444444, "lb"),
  9347. name: "Front",
  9348. image: {
  9349. source: "./media/characters/major-colonel/front.svg"
  9350. }
  9351. },
  9352. back: {
  9353. height: math.unit(400, "feet"),
  9354. weight: math.unit(44444444, "lb"),
  9355. name: "Back",
  9356. image: {
  9357. source: "./media/characters/major-colonel/back.svg"
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Macro",
  9364. height: math.unit(400, "feet"),
  9365. default: true
  9366. },
  9367. ]
  9368. ))
  9369. characterMakers.push(() => makeCharacter(
  9370. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9371. {
  9372. catFront: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(120, "lb"),
  9375. name: "Front (Cat Side)",
  9376. image: {
  9377. source: "./media/characters/axel-lycan/cat-front.svg",
  9378. extra: 430 / 402,
  9379. bottom: 43 / 472.35
  9380. }
  9381. },
  9382. catBack: {
  9383. height: math.unit(6, "feet"),
  9384. weight: math.unit(120, "lb"),
  9385. name: "Back (Cat Side)",
  9386. image: {
  9387. source: "./media/characters/axel-lycan/cat-back.svg",
  9388. extra: 447 / 419,
  9389. bottom: 23.3 / 469
  9390. }
  9391. },
  9392. wolfFront: {
  9393. height: math.unit(6, "feet"),
  9394. weight: math.unit(120, "lb"),
  9395. name: "Front (Wolf Side)",
  9396. image: {
  9397. source: "./media/characters/axel-lycan/wolf-front.svg",
  9398. extra: 485 / 456,
  9399. bottom: 19 / 504
  9400. }
  9401. },
  9402. wolfBack: {
  9403. height: math.unit(6, "feet"),
  9404. weight: math.unit(120, "lb"),
  9405. name: "Back (Wolf Side)",
  9406. image: {
  9407. source: "./media/characters/axel-lycan/wolf-back.svg",
  9408. extra: 475 / 438,
  9409. bottom: 39.2 / 514
  9410. }
  9411. },
  9412. },
  9413. [
  9414. {
  9415. name: "Macro",
  9416. height: math.unit(1, "km"),
  9417. default: true
  9418. },
  9419. ]
  9420. ))
  9421. characterMakers.push(() => makeCharacter(
  9422. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9423. {
  9424. front: {
  9425. height: math.unit(5 + 9 / 12, "feet"),
  9426. weight: math.unit(175, "lb"),
  9427. name: "Front",
  9428. image: {
  9429. source: "./media/characters/vanrel-hyena/front.svg",
  9430. extra: 1086 / 1010,
  9431. bottom: 0.04
  9432. }
  9433. },
  9434. },
  9435. [
  9436. {
  9437. name: "Normal",
  9438. height: math.unit(5 + 9 / 12, "feet"),
  9439. default: true
  9440. },
  9441. ]
  9442. ))
  9443. characterMakers.push(() => makeCharacter(
  9444. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9445. {
  9446. front: {
  9447. height: math.unit(6, "feet"),
  9448. weight: math.unit(103, "lb"),
  9449. name: "Front",
  9450. image: {
  9451. source: "./media/characters/abbott-absol/front.svg",
  9452. extra: 2010 / 1842
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Megamicro",
  9459. height: math.unit(0.1, "mm")
  9460. },
  9461. {
  9462. name: "Micro",
  9463. height: math.unit(1, "inch")
  9464. },
  9465. {
  9466. name: "Normal",
  9467. height: math.unit(6, "feet"),
  9468. default: true
  9469. },
  9470. ]
  9471. ))
  9472. characterMakers.push(() => makeCharacter(
  9473. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9474. {
  9475. front: {
  9476. height: math.unit(6, "feet"),
  9477. weight: math.unit(264, "lb"),
  9478. name: "Front",
  9479. image: {
  9480. source: "./media/characters/hector/front.svg",
  9481. extra: 2280 / 2130,
  9482. bottom: 0.07
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Normal",
  9489. height: math.unit(12.25, "foot"),
  9490. default: true
  9491. },
  9492. {
  9493. name: "Macro",
  9494. height: math.unit(160, "feet")
  9495. },
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9500. {
  9501. front: {
  9502. height: math.unit(6, "feet"),
  9503. weight: math.unit(150, "lb"),
  9504. name: "Front",
  9505. image: {
  9506. source: "./media/characters/sal/front.svg",
  9507. extra: 1846 / 1699,
  9508. bottom: 0.04
  9509. }
  9510. },
  9511. },
  9512. [
  9513. {
  9514. name: "Megamacro",
  9515. height: math.unit(10, "miles"),
  9516. default: true
  9517. },
  9518. ]
  9519. ))
  9520. characterMakers.push(() => makeCharacter(
  9521. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9522. {
  9523. front: {
  9524. height: math.unit(3, "meters"),
  9525. weight: math.unit(450, "kg"),
  9526. name: "front",
  9527. image: {
  9528. source: "./media/characters/ranger/front.svg",
  9529. extra: 2401 / 2243,
  9530. bottom: 0.05
  9531. }
  9532. },
  9533. },
  9534. [
  9535. {
  9536. name: "Normal",
  9537. height: math.unit(3, "meters"),
  9538. default: true
  9539. },
  9540. ]
  9541. ))
  9542. characterMakers.push(() => makeCharacter(
  9543. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9544. {
  9545. front: {
  9546. height: math.unit(14, "feet"),
  9547. weight: math.unit(800, "kg"),
  9548. name: "Front",
  9549. image: {
  9550. source: "./media/characters/theresa/front.svg",
  9551. extra: 3575 / 3346,
  9552. bottom: 0.03
  9553. }
  9554. },
  9555. },
  9556. [
  9557. {
  9558. name: "Normal",
  9559. height: math.unit(14, "feet"),
  9560. default: true
  9561. },
  9562. ]
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9566. {
  9567. front: {
  9568. height: math.unit(6, "feet"),
  9569. weight: math.unit(3, "kg"),
  9570. name: "Front",
  9571. image: {
  9572. source: "./media/characters/ine/front.svg",
  9573. extra: 678 / 539,
  9574. bottom: 0.023
  9575. }
  9576. },
  9577. },
  9578. [
  9579. {
  9580. name: "Normal",
  9581. height: math.unit(2.265, "feet"),
  9582. default: true
  9583. },
  9584. ]
  9585. ))
  9586. characterMakers.push(() => makeCharacter(
  9587. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9588. {
  9589. front: {
  9590. height: math.unit(5, "feet"),
  9591. weight: math.unit(30, "kg"),
  9592. name: "Front",
  9593. image: {
  9594. source: "./media/characters/vial/front.svg",
  9595. extra: 1365 / 1277,
  9596. bottom: 0.04
  9597. }
  9598. },
  9599. },
  9600. [
  9601. {
  9602. name: "Normal",
  9603. height: math.unit(5, "feet"),
  9604. default: true
  9605. },
  9606. ]
  9607. ))
  9608. characterMakers.push(() => makeCharacter(
  9609. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9610. {
  9611. side: {
  9612. height: math.unit(3.4, "meters"),
  9613. weight: math.unit(1000, "lb"),
  9614. name: "Side",
  9615. image: {
  9616. source: "./media/characters/rovoska/side.svg",
  9617. extra: 4403 / 1515
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Normal",
  9624. height: math.unit(3.4, "meters"),
  9625. default: true
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(8, "feet"),
  9634. weight: math.unit(315, "lb"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/gunner-rotthbauer/front.svg"
  9638. }
  9639. },
  9640. back: {
  9641. height: math.unit(8, "feet"),
  9642. weight: math.unit(315, "lb"),
  9643. name: "Back",
  9644. image: {
  9645. source: "./media/characters/gunner-rotthbauer/back.svg"
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Micro",
  9652. height: math.unit(3.5, "inches")
  9653. },
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(8, "feet"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(250, "feet")
  9662. },
  9663. {
  9664. name: "Megamacro",
  9665. height: math.unit(1, "AU")
  9666. },
  9667. ]
  9668. ))
  9669. characterMakers.push(() => makeCharacter(
  9670. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9671. {
  9672. front: {
  9673. height: math.unit(5 + 5 / 12, "feet"),
  9674. weight: math.unit(140, "lb"),
  9675. name: "Front",
  9676. image: {
  9677. source: "./media/characters/allatia/front.svg",
  9678. extra: 1227 / 1180,
  9679. bottom: 0.027
  9680. }
  9681. },
  9682. },
  9683. [
  9684. {
  9685. name: "Normal",
  9686. height: math.unit(5 + 5 / 12, "feet")
  9687. },
  9688. {
  9689. name: "Macro",
  9690. height: math.unit(250, "feet"),
  9691. default: true
  9692. },
  9693. {
  9694. name: "Megamacro",
  9695. height: math.unit(8, "miles")
  9696. }
  9697. ]
  9698. ))
  9699. characterMakers.push(() => makeCharacter(
  9700. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9701. {
  9702. front: {
  9703. height: math.unit(6, "feet"),
  9704. weight: math.unit(120, "lb"),
  9705. name: "Front",
  9706. image: {
  9707. source: "./media/characters/tene/front.svg",
  9708. extra: 1728 / 1578,
  9709. bottom: 0.022
  9710. }
  9711. },
  9712. stomping: {
  9713. height: math.unit(2.025, "meters"),
  9714. weight: math.unit(120, "lb"),
  9715. name: "Stomping",
  9716. image: {
  9717. source: "./media/characters/tene/stomping.svg",
  9718. extra: 938 / 873,
  9719. bottom: 0.01
  9720. }
  9721. },
  9722. sitting: {
  9723. height: math.unit(1, "meter"),
  9724. weight: math.unit(120, "lb"),
  9725. name: "Sitting",
  9726. image: {
  9727. source: "./media/characters/tene/sitting.svg",
  9728. extra: 437 / 415,
  9729. bottom: 0.1
  9730. }
  9731. },
  9732. feral: {
  9733. height: math.unit(3.9, "feet"),
  9734. weight: math.unit(250, "lb"),
  9735. name: "Feral",
  9736. image: {
  9737. source: "./media/characters/tene/feral.svg",
  9738. extra: 717 / 458,
  9739. bottom: 0.179
  9740. }
  9741. },
  9742. },
  9743. [
  9744. {
  9745. name: "Normal",
  9746. height: math.unit(6, "feet")
  9747. },
  9748. {
  9749. name: "Macro",
  9750. height: math.unit(300, "feet"),
  9751. default: true
  9752. },
  9753. {
  9754. name: "Megamacro",
  9755. height: math.unit(5, "miles")
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9761. {
  9762. side: {
  9763. height: math.unit(6, "feet"),
  9764. name: "Side",
  9765. image: {
  9766. source: "./media/characters/evander/side.svg",
  9767. extra: 877 / 477
  9768. }
  9769. },
  9770. },
  9771. [
  9772. {
  9773. name: "Normal",
  9774. height: math.unit(0.83, "meters"),
  9775. default: true
  9776. },
  9777. ]
  9778. ))
  9779. characterMakers.push(() => makeCharacter(
  9780. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9781. {
  9782. front: {
  9783. height: math.unit(12, "feet"),
  9784. weight: math.unit(1000, "lb"),
  9785. name: "Front",
  9786. image: {
  9787. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9788. extra: 1762 / 1611
  9789. }
  9790. },
  9791. back: {
  9792. height: math.unit(12, "feet"),
  9793. weight: math.unit(1000, "lb"),
  9794. name: "Back",
  9795. image: {
  9796. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9797. extra: 1762 / 1611
  9798. }
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Normal",
  9804. height: math.unit(12, "feet"),
  9805. default: true
  9806. },
  9807. {
  9808. name: "Kaiju",
  9809. height: math.unit(150, "feet")
  9810. },
  9811. ]
  9812. ))
  9813. characterMakers.push(() => makeCharacter(
  9814. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9815. {
  9816. front: {
  9817. height: math.unit(6, "feet"),
  9818. weight: math.unit(150, "lb"),
  9819. name: "Front",
  9820. image: {
  9821. source: "./media/characters/zero-alurus/front.svg"
  9822. }
  9823. },
  9824. back: {
  9825. height: math.unit(6, "feet"),
  9826. weight: math.unit(150, "lb"),
  9827. name: "Back",
  9828. image: {
  9829. source: "./media/characters/zero-alurus/back.svg"
  9830. }
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Normal",
  9836. height: math.unit(5 + 10 / 12, "feet")
  9837. },
  9838. {
  9839. name: "Macro",
  9840. height: math.unit(60, "feet"),
  9841. default: true
  9842. },
  9843. {
  9844. name: "Macro+",
  9845. height: math.unit(450, "feet")
  9846. },
  9847. ]
  9848. ))
  9849. characterMakers.push(() => makeCharacter(
  9850. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9851. {
  9852. front: {
  9853. height: math.unit(6, "feet"),
  9854. weight: math.unit(200, "lb"),
  9855. name: "Front",
  9856. image: {
  9857. source: "./media/characters/mega-shi/front.svg",
  9858. extra: 1279 / 1250,
  9859. bottom: 0.02
  9860. }
  9861. },
  9862. back: {
  9863. height: math.unit(6, "feet"),
  9864. weight: math.unit(200, "lb"),
  9865. name: "Back",
  9866. image: {
  9867. source: "./media/characters/mega-shi/back.svg",
  9868. extra: 1279 / 1250,
  9869. bottom: 0.02
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Micro",
  9876. height: math.unit(16 + 6 / 12, "feet")
  9877. },
  9878. {
  9879. name: "Third Dimension",
  9880. height: math.unit(40, "meters")
  9881. },
  9882. {
  9883. name: "Normal",
  9884. height: math.unit(660, "feet"),
  9885. default: true
  9886. },
  9887. {
  9888. name: "Megamacro",
  9889. height: math.unit(10, "miles")
  9890. },
  9891. {
  9892. name: "Planetary Launch",
  9893. height: math.unit(500, "miles")
  9894. },
  9895. {
  9896. name: "Interstellar",
  9897. height: math.unit(1e9, "miles")
  9898. },
  9899. {
  9900. name: "Leaving the Universe",
  9901. height: math.unit(1, "gigaparsec")
  9902. },
  9903. {
  9904. name: "Travelling Universes",
  9905. height: math.unit(30e15, "parsecs")
  9906. },
  9907. ]
  9908. ))
  9909. characterMakers.push(() => makeCharacter(
  9910. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9911. {
  9912. front: {
  9913. height: math.unit(6, "feet"),
  9914. weight: math.unit(150, "lb"),
  9915. name: "Front",
  9916. image: {
  9917. source: "./media/characters/odyssey/front.svg",
  9918. extra: 1782 / 1582,
  9919. bottom: 0.01
  9920. }
  9921. },
  9922. side: {
  9923. height: math.unit(5.7, "feet"),
  9924. weight: math.unit(140, "lb"),
  9925. name: "Side",
  9926. image: {
  9927. source: "./media/characters/odyssey/side.svg",
  9928. extra: 6462 / 5700
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Normal",
  9935. height: math.unit(5 + 4 / 12, "feet")
  9936. },
  9937. {
  9938. name: "Macro",
  9939. height: math.unit(1, "km")
  9940. },
  9941. {
  9942. name: "Megamacro",
  9943. height: math.unit(3000, "km")
  9944. },
  9945. {
  9946. name: "Gigamacro",
  9947. height: math.unit(1, "AU"),
  9948. default: true
  9949. },
  9950. {
  9951. name: "Omniversal",
  9952. height: math.unit(100e14, "lightyears")
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9958. {
  9959. front: {
  9960. height: math.unit(6, "feet"),
  9961. weight: math.unit(300, "lb"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/mekuto/front.svg",
  9965. extra: 921 / 832,
  9966. bottom: 0.03
  9967. }
  9968. },
  9969. hand: {
  9970. height: math.unit(6 / 10.24, "feet"),
  9971. name: "Hand",
  9972. image: {
  9973. source: "./media/characters/mekuto/hand.svg"
  9974. }
  9975. },
  9976. foot: {
  9977. height: math.unit(6 / 5.05, "feet"),
  9978. name: "Foot",
  9979. image: {
  9980. source: "./media/characters/mekuto/foot.svg"
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Minimicro",
  9987. height: math.unit(0.2, "inches")
  9988. },
  9989. {
  9990. name: "Micro",
  9991. height: math.unit(1.5, "inches")
  9992. },
  9993. {
  9994. name: "Normal",
  9995. height: math.unit(5 + 11 / 12, "feet"),
  9996. default: true
  9997. },
  9998. {
  9999. name: "Minimacro",
  10000. height: math.unit(17 + 9 / 12, "feet")
  10001. },
  10002. {
  10003. name: "Macro",
  10004. height: math.unit(177.5, "feet")
  10005. },
  10006. {
  10007. name: "Megamacro",
  10008. height: math.unit(152, "miles")
  10009. },
  10010. ]
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10014. {
  10015. front: {
  10016. height: math.unit(6.5, "inches"),
  10017. weight: math.unit(13, "oz"),
  10018. name: "Front",
  10019. image: {
  10020. source: "./media/characters/dafydd-tomos/front.svg",
  10021. extra: 2990 / 2603,
  10022. bottom: 0.03
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Micro",
  10029. height: math.unit(6.5, "inches"),
  10030. default: true
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(6, "feet"),
  10039. weight: math.unit(150, "lb"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/splinter/front.svg",
  10043. extra: 2990 / 2882,
  10044. bottom: 0.04
  10045. }
  10046. },
  10047. back: {
  10048. height: math.unit(6, "feet"),
  10049. weight: math.unit(150, "lb"),
  10050. name: "Back",
  10051. image: {
  10052. source: "./media/characters/splinter/back.svg",
  10053. extra: 2990 / 2882,
  10054. bottom: 0.04
  10055. }
  10056. },
  10057. },
  10058. [
  10059. {
  10060. name: "Normal",
  10061. height: math.unit(6, "feet")
  10062. },
  10063. {
  10064. name: "Macro",
  10065. height: math.unit(230, "meters"),
  10066. default: true
  10067. },
  10068. ]
  10069. ))
  10070. characterMakers.push(() => makeCharacter(
  10071. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10072. {
  10073. front: {
  10074. height: math.unit(4 + 10 / 12, "feet"),
  10075. weight: math.unit(480, "lb"),
  10076. name: "Front",
  10077. image: {
  10078. source: "./media/characters/snow-gabumon/front.svg",
  10079. extra: 1140 / 963,
  10080. bottom: 0.058
  10081. }
  10082. },
  10083. back: {
  10084. height: math.unit(4 + 10 / 12, "feet"),
  10085. weight: math.unit(480, "lb"),
  10086. name: "Back",
  10087. image: {
  10088. source: "./media/characters/snow-gabumon/back.svg",
  10089. extra: 1115 / 962,
  10090. bottom: 0.041
  10091. }
  10092. },
  10093. frontUndresed: {
  10094. height: math.unit(4 + 10 / 12, "feet"),
  10095. weight: math.unit(480, "lb"),
  10096. name: "Front (Undressed)",
  10097. image: {
  10098. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10099. extra: 1061 / 960,
  10100. bottom: 0.045
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Micro",
  10107. height: math.unit(1, "inch")
  10108. },
  10109. {
  10110. name: "Normal",
  10111. height: math.unit(4 + 10 / 12, "feet"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Macro",
  10116. height: math.unit(200, "feet")
  10117. },
  10118. {
  10119. name: "Megamacro",
  10120. height: math.unit(120, "miles")
  10121. },
  10122. {
  10123. name: "Gigamacro",
  10124. height: math.unit(9800, "miles")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(1.7, "meters"),
  10133. weight: math.unit(140, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/moody/front.svg",
  10137. extra: 3226 / 3007,
  10138. bottom: 0.087
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Micro",
  10145. height: math.unit(1, "mm")
  10146. },
  10147. {
  10148. name: "Normal",
  10149. height: math.unit(1.7, "meters"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Macro",
  10154. height: math.unit(80, "meters")
  10155. },
  10156. {
  10157. name: "Macro+",
  10158. height: math.unit(500, "meters")
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(150, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/zyas/front.svg",
  10171. extra: 1180 / 1120,
  10172. bottom: 0.045
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(10, "feet"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Macro",
  10184. height: math.unit(500, "feet")
  10185. },
  10186. {
  10187. name: "Megamacro",
  10188. height: math.unit(5, "miles")
  10189. },
  10190. {
  10191. name: "Teramacro",
  10192. height: math.unit(150000, "miles")
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(6, "feet"),
  10201. weight: math.unit(150, "lb"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/cuon/front.svg",
  10205. extra: 1390 / 1320,
  10206. bottom: 0.008
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Micro",
  10213. height: math.unit(3, "inches")
  10214. },
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(18 + 9 / 12, "feet"),
  10218. default: true
  10219. },
  10220. {
  10221. name: "Macro",
  10222. height: math.unit(360, "feet")
  10223. },
  10224. {
  10225. name: "Megamacro",
  10226. height: math.unit(360, "miles")
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(2.4, "meters"),
  10235. weight: math.unit(70, "kg"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/nyanuxk/front.svg",
  10239. extra: 1172 / 1084,
  10240. bottom: 0.065
  10241. }
  10242. },
  10243. side: {
  10244. height: math.unit(2.4, "meters"),
  10245. weight: math.unit(70, "kg"),
  10246. name: "Side",
  10247. image: {
  10248. source: "./media/characters/nyanuxk/side.svg",
  10249. extra: 1190 / 1132,
  10250. bottom: 0.007
  10251. }
  10252. },
  10253. back: {
  10254. height: math.unit(2.4, "meters"),
  10255. weight: math.unit(70, "kg"),
  10256. name: "Back",
  10257. image: {
  10258. source: "./media/characters/nyanuxk/back.svg",
  10259. extra: 1200 / 1141,
  10260. bottom: 0.015
  10261. }
  10262. },
  10263. foot: {
  10264. height: math.unit(0.52, "meters"),
  10265. name: "Foot",
  10266. image: {
  10267. source: "./media/characters/nyanuxk/foot.svg"
  10268. }
  10269. },
  10270. },
  10271. [
  10272. {
  10273. name: "Micro",
  10274. height: math.unit(2, "cm")
  10275. },
  10276. {
  10277. name: "Normal",
  10278. height: math.unit(2.4, "meters"),
  10279. default: true
  10280. },
  10281. {
  10282. name: "Smaller Macro",
  10283. height: math.unit(120, "meters")
  10284. },
  10285. {
  10286. name: "Bigger Macro",
  10287. height: math.unit(1.2, "km")
  10288. },
  10289. {
  10290. name: "Megamacro",
  10291. height: math.unit(15, "kilometers")
  10292. },
  10293. {
  10294. name: "Gigamacro",
  10295. height: math.unit(2000, "km")
  10296. },
  10297. {
  10298. name: "Teramacro",
  10299. height: math.unit(500000, "km")
  10300. },
  10301. ]
  10302. ))
  10303. characterMakers.push(() => makeCharacter(
  10304. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10305. {
  10306. side: {
  10307. height: math.unit(6, "feet"),
  10308. name: "Side",
  10309. image: {
  10310. source: "./media/characters/ailbhe/side.svg",
  10311. extra: 757 / 464,
  10312. bottom: 0.041
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(1.07, "meters"),
  10320. default: true
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(120, "kg"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/zevulfius/front.svg",
  10333. extra: 965 / 903
  10334. }
  10335. },
  10336. side: {
  10337. height: math.unit(6, "feet"),
  10338. weight: math.unit(120, "kg"),
  10339. name: "Side",
  10340. image: {
  10341. source: "./media/characters/zevulfius/side.svg",
  10342. extra: 939 / 900
  10343. }
  10344. },
  10345. back: {
  10346. height: math.unit(6, "feet"),
  10347. weight: math.unit(120, "kg"),
  10348. name: "Back",
  10349. image: {
  10350. source: "./media/characters/zevulfius/back.svg",
  10351. extra: 918 / 854,
  10352. bottom: 0.005
  10353. }
  10354. },
  10355. foot: {
  10356. height: math.unit(6 / 3.72, "feet"),
  10357. name: "Foot",
  10358. image: {
  10359. source: "./media/characters/zevulfius/foot.svg"
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(750, "meters")
  10367. },
  10368. {
  10369. name: "Megamacro",
  10370. height: math.unit(20, "km"),
  10371. default: true
  10372. },
  10373. {
  10374. name: "Gigamacro",
  10375. height: math.unit(2000, "km")
  10376. },
  10377. {
  10378. name: "Teramacro",
  10379. height: math.unit(250000, "km")
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(100, "feet"),
  10388. weight: math.unit(350, "kg"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/rikes/front.svg",
  10392. extra: 1565 / 1483,
  10393. bottom: 0.017
  10394. }
  10395. },
  10396. },
  10397. [
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(100, "feet"),
  10401. default: true
  10402. },
  10403. ]
  10404. ))
  10405. characterMakers.push(() => makeCharacter(
  10406. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10407. {
  10408. anthro: {
  10409. height: math.unit(8, "feet"),
  10410. weight: math.unit(120, "kg"),
  10411. name: "Anthro",
  10412. image: {
  10413. source: "./media/characters/adam-silver-mane/anthro.svg",
  10414. extra: 5743 / 5339,
  10415. bottom: 0.07
  10416. }
  10417. },
  10418. taur: {
  10419. height: math.unit(16, "feet"),
  10420. weight: math.unit(1500, "kg"),
  10421. name: "Taur",
  10422. image: {
  10423. source: "./media/characters/adam-silver-mane/taur.svg",
  10424. extra: 1713 / 1571,
  10425. bottom: 0.01
  10426. }
  10427. },
  10428. },
  10429. [
  10430. {
  10431. name: "Normal",
  10432. height: math.unit(8, "feet")
  10433. },
  10434. {
  10435. name: "Minimacro",
  10436. height: math.unit(80, "feet")
  10437. },
  10438. {
  10439. name: "Macro",
  10440. height: math.unit(800, "feet"),
  10441. default: true
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(8000, "feet")
  10446. },
  10447. {
  10448. name: "Gigamacro",
  10449. height: math.unit(800, "miles")
  10450. },
  10451. {
  10452. name: "Teramacro",
  10453. height: math.unit(80000, "miles")
  10454. },
  10455. {
  10456. name: "Celestial",
  10457. height: math.unit(8e6, "miles")
  10458. },
  10459. {
  10460. name: "Star Dragon",
  10461. height: math.unit(800000, "parsecs")
  10462. },
  10463. {
  10464. name: "Godly",
  10465. height: math.unit(800, "teraparsecs")
  10466. },
  10467. ]
  10468. ))
  10469. characterMakers.push(() => makeCharacter(
  10470. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10471. {
  10472. front: {
  10473. height: math.unit(6, "feet"),
  10474. weight: math.unit(150, "lb"),
  10475. name: "Front",
  10476. image: {
  10477. source: "./media/characters/ky'owin/front.svg",
  10478. extra: 3888 / 3068,
  10479. bottom: 0.015
  10480. }
  10481. },
  10482. },
  10483. [
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(6 + 8 / 12, "feet")
  10487. },
  10488. {
  10489. name: "Large",
  10490. height: math.unit(68, "feet")
  10491. },
  10492. {
  10493. name: "Macro",
  10494. height: math.unit(132, "feet")
  10495. },
  10496. {
  10497. name: "Macro+",
  10498. height: math.unit(340, "feet")
  10499. },
  10500. {
  10501. name: "Macro++",
  10502. height: math.unit(680, "feet"),
  10503. default: true
  10504. },
  10505. {
  10506. name: "Megamacro",
  10507. height: math.unit(1, "mile")
  10508. },
  10509. {
  10510. name: "Megamacro+",
  10511. height: math.unit(10, "miles")
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10517. {
  10518. front: {
  10519. height: math.unit(4, "feet"),
  10520. weight: math.unit(50, "lb"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/mal/front.svg",
  10524. extra: 785 / 724,
  10525. bottom: 0.07
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Micro",
  10532. height: math.unit(4, "inches")
  10533. },
  10534. {
  10535. name: "Normal",
  10536. height: math.unit(4, "feet"),
  10537. default: true
  10538. },
  10539. {
  10540. name: "Macro",
  10541. height: math.unit(200, "feet")
  10542. },
  10543. ]
  10544. ))
  10545. characterMakers.push(() => makeCharacter(
  10546. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10547. {
  10548. front: {
  10549. height: math.unit(6, "feet"),
  10550. weight: math.unit(150, "lb"),
  10551. name: "Front",
  10552. image: {
  10553. source: "./media/characters/jordan-deware/front.svg",
  10554. extra: 1191 / 1012
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Nano",
  10561. height: math.unit(0.01, "mm")
  10562. },
  10563. {
  10564. name: "Minimicro",
  10565. height: math.unit(1, "mm")
  10566. },
  10567. {
  10568. name: "Micro",
  10569. height: math.unit(0.5, "inches")
  10570. },
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(4, "feet"),
  10574. default: true
  10575. },
  10576. {
  10577. name: "Minimacro",
  10578. height: math.unit(40, "meters")
  10579. },
  10580. {
  10581. name: "Small Macro",
  10582. height: math.unit(400, "meters")
  10583. },
  10584. {
  10585. name: "Macro",
  10586. height: math.unit(4, "miles")
  10587. },
  10588. {
  10589. name: "Megamacro",
  10590. height: math.unit(40, "miles")
  10591. },
  10592. {
  10593. name: "Megamacro+",
  10594. height: math.unit(400, "miles")
  10595. },
  10596. {
  10597. name: "Gigamacro",
  10598. height: math.unit(400000, "miles")
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10604. {
  10605. side: {
  10606. height: math.unit(6, "feet"),
  10607. weight: math.unit(150, "lb"),
  10608. name: "Side",
  10609. image: {
  10610. source: "./media/characters/kimiko/side.svg",
  10611. extra: 600 / 358
  10612. }
  10613. },
  10614. },
  10615. [
  10616. {
  10617. name: "Normal",
  10618. height: math.unit(15, "feet"),
  10619. default: true
  10620. },
  10621. {
  10622. name: "Macro",
  10623. height: math.unit(220, "feet")
  10624. },
  10625. {
  10626. name: "Macro+",
  10627. height: math.unit(1450, "feet")
  10628. },
  10629. {
  10630. name: "Megamacro",
  10631. height: math.unit(11500, "feet")
  10632. },
  10633. {
  10634. name: "Gigamacro",
  10635. height: math.unit(9500, "miles")
  10636. },
  10637. {
  10638. name: "Teramacro",
  10639. height: math.unit(2208005005, "miles")
  10640. },
  10641. {
  10642. name: "Examacro",
  10643. height: math.unit(2750, "parsecs")
  10644. },
  10645. {
  10646. name: "Zettamacro",
  10647. height: math.unit(101500, "parsecs")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(70, "kg"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/andrew-sleepy/front.svg"
  10660. }
  10661. },
  10662. side: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(70, "kg"),
  10665. name: "Side",
  10666. image: {
  10667. source: "./media/characters/andrew-sleepy/side.svg"
  10668. }
  10669. },
  10670. },
  10671. [
  10672. {
  10673. name: "Micro",
  10674. height: math.unit(1, "mm"),
  10675. default: true
  10676. },
  10677. ]
  10678. ))
  10679. characterMakers.push(() => makeCharacter(
  10680. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10681. {
  10682. front: {
  10683. height: math.unit(6, "feet"),
  10684. weight: math.unit(150, "lb"),
  10685. name: "Front",
  10686. image: {
  10687. source: "./media/characters/judio/front.svg",
  10688. extra: 1258 / 1110
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(5 + 6 / 12, "feet")
  10696. },
  10697. {
  10698. name: "Macro",
  10699. height: math.unit(1000, "feet"),
  10700. default: true
  10701. },
  10702. {
  10703. name: "Megamacro",
  10704. height: math.unit(10, "miles")
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10710. {
  10711. front: {
  10712. height: math.unit(6, "feet"),
  10713. weight: math.unit(68, "kg"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/nomaxice/front.svg",
  10717. extra: 1498 / 1073,
  10718. bottom: 0.075
  10719. }
  10720. },
  10721. foot: {
  10722. height: math.unit(1.1, "feet"),
  10723. name: "Foot",
  10724. image: {
  10725. source: "./media/characters/nomaxice/foot.svg"
  10726. }
  10727. },
  10728. },
  10729. [
  10730. {
  10731. name: "Micro",
  10732. height: math.unit(8, "cm")
  10733. },
  10734. {
  10735. name: "Norm",
  10736. height: math.unit(1.82, "m")
  10737. },
  10738. {
  10739. name: "Norm+",
  10740. height: math.unit(8.8, "feet")
  10741. },
  10742. {
  10743. name: "Big",
  10744. height: math.unit(8, "meters"),
  10745. default: true
  10746. },
  10747. {
  10748. name: "Macro",
  10749. height: math.unit(18, "meters")
  10750. },
  10751. {
  10752. name: "Macro+",
  10753. height: math.unit(88, "meters")
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10759. {
  10760. front: {
  10761. height: math.unit(12, "feet"),
  10762. weight: math.unit(1.5, "tons"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/dydros/front.svg",
  10766. extra: 863 / 800,
  10767. bottom: 0.015
  10768. }
  10769. },
  10770. back: {
  10771. height: math.unit(12, "feet"),
  10772. weight: math.unit(1.5, "tons"),
  10773. name: "Back",
  10774. image: {
  10775. source: "./media/characters/dydros/back.svg",
  10776. extra: 900 / 843,
  10777. bottom: 0.005
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(12, "feet"),
  10785. default: true
  10786. },
  10787. ]
  10788. ))
  10789. characterMakers.push(() => makeCharacter(
  10790. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10791. {
  10792. front: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(100, "kg"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/riggi/front.svg",
  10798. extra: 5787 / 5303
  10799. }
  10800. },
  10801. hyper: {
  10802. height: math.unit(6 * 5 / 3, "feet"),
  10803. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10804. name: "Hyper",
  10805. image: {
  10806. source: "./media/characters/riggi/hyper.svg",
  10807. extra: 3595 / 3485
  10808. }
  10809. },
  10810. },
  10811. [
  10812. {
  10813. name: "Small Macro",
  10814. height: math.unit(50, "feet")
  10815. },
  10816. {
  10817. name: "Default",
  10818. height: math.unit(200, "feet"),
  10819. default: true
  10820. },
  10821. {
  10822. name: "Loom",
  10823. height: math.unit(10000, "feet")
  10824. },
  10825. {
  10826. name: "Cruising Altitude",
  10827. height: math.unit(30000, "feet")
  10828. },
  10829. {
  10830. name: "Megamacro",
  10831. height: math.unit(100, "miles")
  10832. },
  10833. {
  10834. name: "Continent Sized",
  10835. height: math.unit(2800, "miles")
  10836. },
  10837. {
  10838. name: "Earth Sized",
  10839. height: math.unit(8000, "miles")
  10840. },
  10841. ]
  10842. ))
  10843. characterMakers.push(() => makeCharacter(
  10844. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10845. {
  10846. front: {
  10847. height: math.unit(6, "feet"),
  10848. weight: math.unit(250, "lb"),
  10849. name: "Front",
  10850. image: {
  10851. source: "./media/characters/alexi/front.svg",
  10852. extra: 3483 / 3291,
  10853. bottom: 0.04
  10854. }
  10855. },
  10856. back: {
  10857. height: math.unit(6, "feet"),
  10858. weight: math.unit(250, "lb"),
  10859. name: "Back",
  10860. image: {
  10861. source: "./media/characters/alexi/back.svg",
  10862. extra: 3533 / 3356,
  10863. bottom: 0.021
  10864. }
  10865. },
  10866. frontTransforming: {
  10867. height: math.unit(8.58, "feet"),
  10868. weight: math.unit(1300, "lb"),
  10869. name: "Transforming",
  10870. image: {
  10871. source: "./media/characters/alexi/front-transforming.svg",
  10872. extra: 437 / 409,
  10873. bottom: 19 / 458.66
  10874. }
  10875. },
  10876. frontTransformed: {
  10877. height: math.unit(12.5, "feet"),
  10878. weight: math.unit(4000, "lb"),
  10879. name: "Transformed",
  10880. image: {
  10881. source: "./media/characters/alexi/front-transformed.svg",
  10882. extra: 639 / 614,
  10883. bottom: 30.55 / 671
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(14, "feet"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Minimacro",
  10895. height: math.unit(30, "meters")
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(500, "meters")
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(9000, "km")
  10904. },
  10905. {
  10906. name: "Teramacro",
  10907. height: math.unit(384000, "km")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(6, "feet"),
  10916. weight: math.unit(150, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/kayroo/front.svg",
  10920. extra: 1153 / 1038,
  10921. bottom: 0.06
  10922. }
  10923. },
  10924. foot: {
  10925. height: math.unit(6, "feet"),
  10926. weight: math.unit(150, "lb"),
  10927. name: "Foot",
  10928. image: {
  10929. source: "./media/characters/kayroo/foot.svg"
  10930. }
  10931. },
  10932. },
  10933. [
  10934. {
  10935. name: "Normal",
  10936. height: math.unit(8, "feet"),
  10937. default: true
  10938. },
  10939. {
  10940. name: "Minimacro",
  10941. height: math.unit(250, "feet")
  10942. },
  10943. {
  10944. name: "Macro",
  10945. height: math.unit(2800, "feet")
  10946. },
  10947. {
  10948. name: "Megamacro",
  10949. height: math.unit(5200, "feet")
  10950. },
  10951. {
  10952. name: "Gigamacro",
  10953. height: math.unit(27000, "feet")
  10954. },
  10955. {
  10956. name: "Omega",
  10957. height: math.unit(45000, "feet")
  10958. },
  10959. ]
  10960. ))
  10961. characterMakers.push(() => makeCharacter(
  10962. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10963. {
  10964. front: {
  10965. height: math.unit(18, "feet"),
  10966. weight: math.unit(5800, "lb"),
  10967. name: "Front",
  10968. image: {
  10969. source: "./media/characters/rhys/front.svg",
  10970. extra: 3386 / 3090,
  10971. bottom: 0.07
  10972. }
  10973. },
  10974. },
  10975. [
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(18, "feet"),
  10979. default: true
  10980. },
  10981. {
  10982. name: "Working Size",
  10983. height: math.unit(200, "feet")
  10984. },
  10985. {
  10986. name: "Demolition Size",
  10987. height: math.unit(2000, "feet")
  10988. },
  10989. {
  10990. name: "Maximum Licensed Size",
  10991. height: math.unit(5, "miles")
  10992. },
  10993. {
  10994. name: "Maximum Observed Size",
  10995. height: math.unit(10, "yottameters")
  10996. },
  10997. ]
  10998. ))
  10999. characterMakers.push(() => makeCharacter(
  11000. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11001. {
  11002. front: {
  11003. height: math.unit(6, "feet"),
  11004. weight: math.unit(250, "lb"),
  11005. name: "Front",
  11006. image: {
  11007. source: "./media/characters/toto/front.svg",
  11008. extra: 527 / 479,
  11009. bottom: 0.05
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Micro",
  11016. height: math.unit(3, "feet")
  11017. },
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(10, "feet")
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(150, "feet"),
  11025. default: true
  11026. },
  11027. {
  11028. name: "Megamacro",
  11029. height: math.unit(1200, "feet")
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "King", species: ["lion"], tags: ["anthro"] },
  11035. {
  11036. back: {
  11037. height: math.unit(6, "feet"),
  11038. weight: math.unit(150, "lb"),
  11039. name: "Back",
  11040. image: {
  11041. source: "./media/characters/king/back.svg"
  11042. }
  11043. },
  11044. },
  11045. [
  11046. {
  11047. name: "Micro",
  11048. height: math.unit(2, "inches")
  11049. },
  11050. {
  11051. name: "Normal",
  11052. height: math.unit(8, "feet")
  11053. },
  11054. {
  11055. name: "Macro",
  11056. height: math.unit(200, "feet"),
  11057. default: true
  11058. },
  11059. {
  11060. name: "Megamacro",
  11061. height: math.unit(50, "miles")
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11067. {
  11068. anthro: {
  11069. height: math.unit(6 + 5 / 12, "feet"),
  11070. weight: math.unit(280, "lb"),
  11071. name: "Anthro",
  11072. image: {
  11073. source: "./media/characters/cordite/anthro.svg",
  11074. extra: 1986 / 1905,
  11075. bottom: 0.025
  11076. }
  11077. },
  11078. feral: {
  11079. height: math.unit(2, "feet"),
  11080. weight: math.unit(90, "lb"),
  11081. name: "Feral",
  11082. image: {
  11083. source: "./media/characters/cordite/feral.svg",
  11084. extra: 1260 / 755,
  11085. bottom: 0.05
  11086. }
  11087. },
  11088. },
  11089. [
  11090. {
  11091. name: "Normal",
  11092. height: math.unit(6 + 5 / 12, "feet"),
  11093. default: true
  11094. },
  11095. ]
  11096. ))
  11097. characterMakers.push(() => makeCharacter(
  11098. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11099. {
  11100. front: {
  11101. height: math.unit(6, "feet"),
  11102. weight: math.unit(150, "lb"),
  11103. name: "Front",
  11104. image: {
  11105. source: "./media/characters/pianostrong/front.svg",
  11106. extra: 6577 / 6254,
  11107. bottom: 0.02
  11108. }
  11109. },
  11110. side: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(150, "lb"),
  11113. name: "Side",
  11114. image: {
  11115. source: "./media/characters/pianostrong/side.svg",
  11116. extra: 6106 / 5730
  11117. }
  11118. },
  11119. back: {
  11120. height: math.unit(6, "feet"),
  11121. weight: math.unit(150, "lb"),
  11122. name: "Back",
  11123. image: {
  11124. source: "./media/characters/pianostrong/back.svg",
  11125. extra: 6085 / 5733,
  11126. bottom: 0.01
  11127. }
  11128. },
  11129. },
  11130. [
  11131. {
  11132. name: "Macro",
  11133. height: math.unit(100, "feet")
  11134. },
  11135. {
  11136. name: "Macro+",
  11137. height: math.unit(300, "feet"),
  11138. default: true
  11139. },
  11140. {
  11141. name: "Macro++",
  11142. height: math.unit(1000, "feet")
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(6, "feet"),
  11151. weight: math.unit(150, "lb"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/kona/front.svg",
  11155. extra: 2960 / 2629,
  11156. bottom: 0.005
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(11 + 8 / 12, "feet")
  11164. },
  11165. {
  11166. name: "Macro",
  11167. height: math.unit(850, "feet"),
  11168. default: true
  11169. },
  11170. {
  11171. name: "Macro+",
  11172. height: math.unit(1.5, "km"),
  11173. default: true
  11174. },
  11175. {
  11176. name: "Megamacro",
  11177. height: math.unit(80, "miles")
  11178. },
  11179. {
  11180. name: "Gigamacro",
  11181. height: math.unit(3500, "miles")
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11187. {
  11188. side: {
  11189. height: math.unit(1.9, "meters"),
  11190. weight: math.unit(326, "kg"),
  11191. name: "Side",
  11192. image: {
  11193. source: "./media/characters/levi/side.svg",
  11194. extra: 1704 / 1334,
  11195. bottom: 0.02
  11196. }
  11197. },
  11198. },
  11199. [
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(1.9, "meters"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Macro",
  11207. height: math.unit(20, "meters")
  11208. },
  11209. {
  11210. name: "Macro+",
  11211. height: math.unit(200, "meters")
  11212. },
  11213. {
  11214. name: "Megamacro",
  11215. height: math.unit(2, "km")
  11216. },
  11217. {
  11218. name: "Megamacro+",
  11219. height: math.unit(20, "km")
  11220. },
  11221. {
  11222. name: "Gigamacro",
  11223. height: math.unit(2500, "km")
  11224. },
  11225. {
  11226. name: "Gigamacro+",
  11227. height: math.unit(120000, "km")
  11228. },
  11229. {
  11230. name: "Teramacro",
  11231. height: math.unit(7.77e6, "km")
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11237. {
  11238. front: {
  11239. height: math.unit(6 + 4/12, "feet"),
  11240. weight: math.unit(190, "lb"),
  11241. name: "Front",
  11242. image: {
  11243. source: "./media/characters/bmc/front.svg",
  11244. extra: 1626/1472,
  11245. bottom: 79/1705
  11246. }
  11247. },
  11248. back: {
  11249. height: math.unit(6 + 4/12, "feet"),
  11250. weight: math.unit(190, "lb"),
  11251. name: "Back",
  11252. image: {
  11253. source: "./media/characters/bmc/back.svg",
  11254. extra: 1640/1479,
  11255. bottom: 45/1685
  11256. }
  11257. },
  11258. frontArmor: {
  11259. height: math.unit(6 + 4/12, "feet"),
  11260. weight: math.unit(190, "lb"),
  11261. name: "Front-armor",
  11262. image: {
  11263. source: "./media/characters/bmc/front-armor.svg",
  11264. extra: 1538/1468,
  11265. bottom: 79/1617
  11266. }
  11267. },
  11268. },
  11269. [
  11270. {
  11271. name: "Human-sized",
  11272. height: math.unit(6 + 4 / 12, "feet")
  11273. },
  11274. {
  11275. name: "Interactive Size",
  11276. height: math.unit(25, "feet")
  11277. },
  11278. {
  11279. name: "Small",
  11280. height: math.unit(250, "feet")
  11281. },
  11282. {
  11283. name: "Normal",
  11284. height: math.unit(1250, "feet"),
  11285. default: true
  11286. },
  11287. {
  11288. name: "Good Day",
  11289. height: math.unit(88, "miles")
  11290. },
  11291. {
  11292. name: "Largest Measured Size",
  11293. height: math.unit(105.960, "galaxies")
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11299. {
  11300. front: {
  11301. height: math.unit(20, "feet"),
  11302. weight: math.unit(2016, "kg"),
  11303. name: "Front",
  11304. image: {
  11305. source: "./media/characters/sven-the-kaiju/front.svg",
  11306. extra: 1277/1250,
  11307. bottom: 35/1312
  11308. }
  11309. },
  11310. mouth: {
  11311. height: math.unit(1.85, "feet"),
  11312. name: "Mouth",
  11313. image: {
  11314. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Fairy",
  11321. height: math.unit(6, "inches")
  11322. },
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(20, "feet"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Rampage",
  11330. height: math.unit(200, "feet")
  11331. },
  11332. {
  11333. name: "Archfey Forest Guardian",
  11334. height: math.unit(1, "mile")
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(4, "meters"),
  11343. weight: math.unit(2, "tons"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/marik/front.svg",
  11347. extra: 1057 / 1003,
  11348. bottom: 0.08
  11349. }
  11350. },
  11351. },
  11352. [
  11353. {
  11354. name: "Normal",
  11355. height: math.unit(4, "meters"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Macro",
  11360. height: math.unit(20, "meters")
  11361. },
  11362. {
  11363. name: "Megamacro",
  11364. height: math.unit(50, "km")
  11365. },
  11366. {
  11367. name: "Gigamacro",
  11368. height: math.unit(100, "km")
  11369. },
  11370. {
  11371. name: "Alpha Macro",
  11372. height: math.unit(7.88e7, "yottameters")
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11378. {
  11379. front: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(110, "lb"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/mel/front.svg",
  11385. extra: 736 / 617,
  11386. bottom: 0.017
  11387. }
  11388. },
  11389. },
  11390. [
  11391. {
  11392. name: "Pico",
  11393. height: math.unit(3, "pm")
  11394. },
  11395. {
  11396. name: "Nano",
  11397. height: math.unit(3, "nm")
  11398. },
  11399. {
  11400. name: "Micro",
  11401. height: math.unit(0.3, "mm"),
  11402. default: true
  11403. },
  11404. {
  11405. name: "Micro+",
  11406. height: math.unit(3, "mm")
  11407. },
  11408. {
  11409. name: "Normal",
  11410. height: math.unit(5 + 10.5 / 12, "feet")
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11416. {
  11417. kaiju: {
  11418. height: math.unit(1.75, "meters"),
  11419. weight: math.unit(55, "kg"),
  11420. name: "Kaiju",
  11421. image: {
  11422. source: "./media/characters/lykonous/kaiju.svg",
  11423. extra: 1055 / 946,
  11424. bottom: 0.135
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Normal",
  11431. height: math.unit(2.5, "meters"),
  11432. default: true
  11433. },
  11434. {
  11435. name: "Kaiju Dragon",
  11436. height: math.unit(60, "meters")
  11437. },
  11438. {
  11439. name: "Mega Kaiju",
  11440. height: math.unit(120, "km")
  11441. },
  11442. {
  11443. name: "Giga Kaiju",
  11444. height: math.unit(200, "megameters")
  11445. },
  11446. {
  11447. name: "Terra Kaiju",
  11448. height: math.unit(400, "gigameters")
  11449. },
  11450. {
  11451. name: "Kaiju Dragon God",
  11452. height: math.unit(13000, "exaparsecs")
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11458. {
  11459. front: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(150, "lb"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/blü/front.svg",
  11465. extra: 1883 / 1564,
  11466. bottom: 0.031
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(13, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Big Boi",
  11478. height: math.unit(150, "meters")
  11479. },
  11480. {
  11481. name: "Mini Stomper",
  11482. height: math.unit(300, "meters")
  11483. },
  11484. {
  11485. name: "Macro",
  11486. height: math.unit(1000, "meters")
  11487. },
  11488. {
  11489. name: "Megamacro",
  11490. height: math.unit(11000, "meters")
  11491. },
  11492. {
  11493. name: "Gigamacro",
  11494. height: math.unit(11000, "km")
  11495. },
  11496. {
  11497. name: "Teramacro",
  11498. height: math.unit(420000, "km")
  11499. },
  11500. {
  11501. name: "Examacro",
  11502. height: math.unit(120, "parsecs")
  11503. },
  11504. {
  11505. name: "God Tho",
  11506. height: math.unit(98000000000, "parsecs")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11512. {
  11513. taurFront: {
  11514. height: math.unit(6, "feet"),
  11515. weight: math.unit(200, "lb"),
  11516. name: "Taur (Front)",
  11517. image: {
  11518. source: "./media/characters/scales/taur-front.svg",
  11519. extra: 1,
  11520. bottom: 0.05
  11521. }
  11522. },
  11523. taurBack: {
  11524. height: math.unit(6, "feet"),
  11525. weight: math.unit(200, "lb"),
  11526. name: "Taur (Back)",
  11527. image: {
  11528. source: "./media/characters/scales/taur-back.svg",
  11529. extra: 1,
  11530. bottom: 0.08
  11531. }
  11532. },
  11533. anthro: {
  11534. height: math.unit(6 * 7 / 12, "feet"),
  11535. weight: math.unit(100, "lb"),
  11536. name: "Anthro",
  11537. image: {
  11538. source: "./media/characters/scales/anthro.svg",
  11539. extra: 1,
  11540. bottom: 0.06
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(12, "feet"),
  11548. default: true
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(6, "feet"),
  11557. weight: math.unit(150, "lb"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/koragos/front.svg",
  11561. extra: 841 / 794,
  11562. bottom: 0.035
  11563. }
  11564. },
  11565. back: {
  11566. height: math.unit(6, "feet"),
  11567. weight: math.unit(150, "lb"),
  11568. name: "Back",
  11569. image: {
  11570. source: "./media/characters/koragos/back.svg",
  11571. extra: 841 / 810,
  11572. bottom: 0.022
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(6 + 11 / 12, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Macro",
  11584. height: math.unit(490, "feet")
  11585. },
  11586. {
  11587. name: "Megamacro",
  11588. height: math.unit(10, "miles")
  11589. },
  11590. {
  11591. name: "Gigamacro",
  11592. height: math.unit(50, "miles")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(6, "feet"),
  11601. weight: math.unit(250, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/xylrem/front.svg",
  11605. extra: 3323 / 3050,
  11606. bottom: 0.065
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Micro",
  11613. height: math.unit(4, "feet")
  11614. },
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(16, "feet"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Macro",
  11622. height: math.unit(2720, "feet")
  11623. },
  11624. {
  11625. name: "Megamacro",
  11626. height: math.unit(25000, "miles")
  11627. },
  11628. ]
  11629. ))
  11630. characterMakers.push(() => makeCharacter(
  11631. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11632. {
  11633. front: {
  11634. height: math.unit(8, "feet"),
  11635. weight: math.unit(250, "kg"),
  11636. name: "Front",
  11637. image: {
  11638. source: "./media/characters/ikideru/front.svg",
  11639. extra: 930 / 870,
  11640. bottom: 0.087
  11641. }
  11642. },
  11643. back: {
  11644. height: math.unit(8, "feet"),
  11645. weight: math.unit(250, "kg"),
  11646. name: "Back",
  11647. image: {
  11648. source: "./media/characters/ikideru/back.svg",
  11649. extra: 919 / 852,
  11650. bottom: 0.055
  11651. }
  11652. },
  11653. },
  11654. [
  11655. {
  11656. name: "Rare",
  11657. height: math.unit(8, "feet"),
  11658. default: true
  11659. },
  11660. {
  11661. name: "Playful Loom",
  11662. height: math.unit(80, "feet")
  11663. },
  11664. {
  11665. name: "City Leaner",
  11666. height: math.unit(230, "feet")
  11667. },
  11668. {
  11669. name: "Megamacro",
  11670. height: math.unit(2500, "feet")
  11671. },
  11672. {
  11673. name: "Gigamacro",
  11674. height: math.unit(26400, "feet")
  11675. },
  11676. {
  11677. name: "Tectonic Shifter",
  11678. height: math.unit(1.7, "megameters")
  11679. },
  11680. {
  11681. name: "Planet Carer",
  11682. height: math.unit(21, "megameters")
  11683. },
  11684. {
  11685. name: "God",
  11686. height: math.unit(11157.22, "parsecs")
  11687. },
  11688. ]
  11689. ))
  11690. characterMakers.push(() => makeCharacter(
  11691. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11692. {
  11693. front: {
  11694. height: math.unit(6, "feet"),
  11695. weight: math.unit(120, "lb"),
  11696. name: "Front",
  11697. image: {
  11698. source: "./media/characters/neo/front.svg"
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Micro",
  11705. height: math.unit(2, "inches"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Human Size",
  11710. height: math.unit(5 + 8 / 12, "feet")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(13 + 10 / 12, "feet"),
  11719. weight: math.unit(5320, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/chauncey-chantz/front.svg",
  11723. extra: 1587 / 1435,
  11724. bottom: 0.02
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(13 + 10 / 12, "feet"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Macro",
  11736. height: math.unit(45, "feet")
  11737. },
  11738. {
  11739. name: "Megamacro",
  11740. height: math.unit(250, "miles")
  11741. },
  11742. {
  11743. name: "Planetary",
  11744. height: math.unit(10000, "miles")
  11745. },
  11746. {
  11747. name: "Galactic",
  11748. height: math.unit(40000, "parsecs")
  11749. },
  11750. {
  11751. name: "Universal",
  11752. height: math.unit(1, "yottameter")
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11758. {
  11759. front: {
  11760. height: math.unit(6, "feet"),
  11761. weight: math.unit(150, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/epifox/front.svg",
  11765. extra: 1,
  11766. bottom: 0.075
  11767. }
  11768. },
  11769. },
  11770. [
  11771. {
  11772. name: "Micro",
  11773. height: math.unit(6, "inches")
  11774. },
  11775. {
  11776. name: "Normal",
  11777. height: math.unit(12, "feet"),
  11778. default: true
  11779. },
  11780. {
  11781. name: "Macro",
  11782. height: math.unit(3810, "feet")
  11783. },
  11784. {
  11785. name: "Megamacro",
  11786. height: math.unit(500, "miles")
  11787. },
  11788. ]
  11789. ))
  11790. characterMakers.push(() => makeCharacter(
  11791. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11792. {
  11793. front: {
  11794. height: math.unit(1.8796, "m"),
  11795. weight: math.unit(230, "lb"),
  11796. name: "Front",
  11797. image: {
  11798. source: "./media/characters/colin-t/front.svg",
  11799. extra: 1272 / 1193,
  11800. bottom: 0.07
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Micro",
  11807. height: math.unit(0.571, "meters")
  11808. },
  11809. {
  11810. name: "Normal",
  11811. height: math.unit(1.8796, "meters"),
  11812. default: true
  11813. },
  11814. {
  11815. name: "Tall",
  11816. height: math.unit(4, "meters")
  11817. },
  11818. {
  11819. name: "Macro",
  11820. height: math.unit(67.241, "meters")
  11821. },
  11822. {
  11823. name: "Megamacro",
  11824. height: math.unit(371.856, "meters")
  11825. },
  11826. {
  11827. name: "Planetary",
  11828. height: math.unit(12631.5689, "km")
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(1.85, "meters"),
  11837. weight: math.unit(80, "kg"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/matvei/front.svg",
  11841. extra: 614 / 594,
  11842. bottom: 0.01
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Normal",
  11849. height: math.unit(1.85, "meters"),
  11850. default: true
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11856. {
  11857. front: {
  11858. height: math.unit(5 + 9 / 12, "feet"),
  11859. weight: math.unit(70, "lb"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/quincy/front.svg",
  11863. extra: 3041 / 2751
  11864. }
  11865. },
  11866. back: {
  11867. height: math.unit(5 + 9 / 12, "feet"),
  11868. weight: math.unit(70, "lb"),
  11869. name: "Back",
  11870. image: {
  11871. source: "./media/characters/quincy/back.svg",
  11872. extra: 3041 / 2751
  11873. }
  11874. },
  11875. flying: {
  11876. height: math.unit(5 + 4 / 12, "feet"),
  11877. weight: math.unit(70, "lb"),
  11878. name: "Flying",
  11879. image: {
  11880. source: "./media/characters/quincy/flying.svg",
  11881. extra: 1044 / 930
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Micro",
  11888. height: math.unit(3, "cm")
  11889. },
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(5 + 9 / 12, "feet")
  11893. },
  11894. {
  11895. name: "Macro",
  11896. height: math.unit(200, "meters"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Megamacro",
  11901. height: math.unit(1000, "meters")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(3 + 11/12, "feet"),
  11910. weight: math.unit(50, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/vanrel/front.svg",
  11914. extra: 1104/949,
  11915. bottom: 52/1156
  11916. }
  11917. },
  11918. back: {
  11919. height: math.unit(3 + 11/12, "feet"),
  11920. weight: math.unit(50, "lb"),
  11921. name: "Back",
  11922. image: {
  11923. source: "./media/characters/vanrel/back.svg",
  11924. extra: 1119/976,
  11925. bottom: 37/1156
  11926. }
  11927. },
  11928. tome: {
  11929. height: math.unit(1.35, "feet"),
  11930. weight: math.unit(10, "lb"),
  11931. name: "Vanrel's Tome",
  11932. rename: true,
  11933. image: {
  11934. source: "./media/characters/vanrel/tome.svg"
  11935. }
  11936. },
  11937. beans: {
  11938. height: math.unit(0.89, "feet"),
  11939. name: "Beans",
  11940. image: {
  11941. source: "./media/characters/vanrel/beans.svg"
  11942. }
  11943. },
  11944. },
  11945. [
  11946. {
  11947. name: "Normal",
  11948. height: math.unit(3 + 11/12, "feet"),
  11949. default: true
  11950. },
  11951. ]
  11952. ))
  11953. characterMakers.push(() => makeCharacter(
  11954. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11955. {
  11956. front: {
  11957. height: math.unit(7 + 5 / 12, "feet"),
  11958. name: "Front",
  11959. image: {
  11960. source: "./media/characters/kuiper-vanrel/front.svg",
  11961. extra: 1219/1169,
  11962. bottom: 69/1288
  11963. }
  11964. },
  11965. back: {
  11966. height: math.unit(7 + 5 / 12, "feet"),
  11967. name: "Back",
  11968. image: {
  11969. source: "./media/characters/kuiper-vanrel/back.svg",
  11970. extra: 1236/1193,
  11971. bottom: 27/1263
  11972. }
  11973. },
  11974. foot: {
  11975. height: math.unit(0.55, "meters"),
  11976. name: "Foot",
  11977. image: {
  11978. source: "./media/characters/kuiper-vanrel/foot.svg",
  11979. }
  11980. },
  11981. battle: {
  11982. height: math.unit(6.824, "feet"),
  11983. name: "Battle",
  11984. image: {
  11985. source: "./media/characters/kuiper-vanrel/battle.svg",
  11986. extra: 1466 / 1327,
  11987. bottom: 29 / 1492.5
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Normal",
  11994. height: math.unit(7 + 5 / 12, "feet"),
  11995. default: true
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(8 + 5 / 12, "feet"),
  12004. name: "Front",
  12005. image: {
  12006. source: "./media/characters/keset-vanrel/front.svg",
  12007. extra: 1231/1148,
  12008. bottom: 82/1313
  12009. }
  12010. },
  12011. back: {
  12012. height: math.unit(8 + 5 / 12, "feet"),
  12013. name: "Back",
  12014. image: {
  12015. source: "./media/characters/keset-vanrel/back.svg",
  12016. extra: 1240/1174,
  12017. bottom: 33/1273
  12018. }
  12019. },
  12020. hand: {
  12021. height: math.unit(0.6, "meters"),
  12022. name: "Hand",
  12023. image: {
  12024. source: "./media/characters/keset-vanrel/hand.svg"
  12025. }
  12026. },
  12027. foot: {
  12028. height: math.unit(0.94978, "meters"),
  12029. name: "Foot",
  12030. image: {
  12031. source: "./media/characters/keset-vanrel/foot.svg"
  12032. }
  12033. },
  12034. battle: {
  12035. height: math.unit(7.408, "feet"),
  12036. name: "Battle",
  12037. image: {
  12038. source: "./media/characters/keset-vanrel/battle.svg",
  12039. extra: 1890 / 1386,
  12040. bottom: 73.28 / 1970
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Normal",
  12047. height: math.unit(8 + 5 / 12, "feet"),
  12048. default: true
  12049. },
  12050. ]
  12051. ))
  12052. characterMakers.push(() => makeCharacter(
  12053. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12054. {
  12055. front: {
  12056. height: math.unit(6, "feet"),
  12057. weight: math.unit(150, "lb"),
  12058. name: "Front",
  12059. image: {
  12060. source: "./media/characters/neos/front.svg",
  12061. extra: 1696 / 992,
  12062. bottom: 0.14
  12063. }
  12064. },
  12065. },
  12066. [
  12067. {
  12068. name: "Normal",
  12069. height: math.unit(54, "cm"),
  12070. default: true
  12071. },
  12072. {
  12073. name: "Macro",
  12074. height: math.unit(100, "m")
  12075. },
  12076. {
  12077. name: "Megamacro",
  12078. height: math.unit(10, "km")
  12079. },
  12080. {
  12081. name: "Megamacro+",
  12082. height: math.unit(100, "km")
  12083. },
  12084. {
  12085. name: "Gigamacro",
  12086. height: math.unit(100, "Mm")
  12087. },
  12088. {
  12089. name: "Teramacro",
  12090. height: math.unit(100, "Gm")
  12091. },
  12092. {
  12093. name: "Examacro",
  12094. height: math.unit(100, "Em")
  12095. },
  12096. {
  12097. name: "Godly",
  12098. height: math.unit(10000, "Ym")
  12099. },
  12100. {
  12101. name: "Beyond Godly",
  12102. height: math.unit(25, "multiverses")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12108. {
  12109. feminine: {
  12110. height: math.unit(5, "feet"),
  12111. weight: math.unit(100, "lb"),
  12112. name: "Feminine",
  12113. image: {
  12114. source: "./media/characters/sammy-mouse/feminine.svg",
  12115. extra: 2526 / 2425,
  12116. bottom: 0.123
  12117. }
  12118. },
  12119. masculine: {
  12120. height: math.unit(5, "feet"),
  12121. weight: math.unit(100, "lb"),
  12122. name: "Masculine",
  12123. image: {
  12124. source: "./media/characters/sammy-mouse/masculine.svg",
  12125. extra: 2526 / 2425,
  12126. bottom: 0.123
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Micro",
  12133. height: math.unit(5, "inches")
  12134. },
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(5, "feet"),
  12138. default: true
  12139. },
  12140. {
  12141. name: "Macro",
  12142. height: math.unit(60, "feet")
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(4, "feet"),
  12151. weight: math.unit(50, "lb"),
  12152. name: "Front",
  12153. image: {
  12154. source: "./media/characters/kole/front.svg",
  12155. extra: 1423 / 1303,
  12156. bottom: 0.025
  12157. }
  12158. },
  12159. back: {
  12160. height: math.unit(4, "feet"),
  12161. weight: math.unit(50, "lb"),
  12162. name: "Back",
  12163. image: {
  12164. source: "./media/characters/kole/back.svg",
  12165. extra: 1426 / 1280,
  12166. bottom: 0.02
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(4, "feet"),
  12174. default: true
  12175. },
  12176. ]
  12177. ))
  12178. characterMakers.push(() => makeCharacter(
  12179. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12180. {
  12181. front: {
  12182. height: math.unit(2.5, "feet"),
  12183. weight: math.unit(32, "lb"),
  12184. name: "Front",
  12185. image: {
  12186. source: "./media/characters/rufran/front.svg",
  12187. extra: 1313/885,
  12188. bottom: 94/1407
  12189. }
  12190. },
  12191. side: {
  12192. height: math.unit(2.5, "feet"),
  12193. weight: math.unit(32, "lb"),
  12194. name: "Side",
  12195. image: {
  12196. source: "./media/characters/rufran/side.svg",
  12197. extra: 1109/852,
  12198. bottom: 118/1227
  12199. }
  12200. },
  12201. back: {
  12202. height: math.unit(2.5, "feet"),
  12203. weight: math.unit(32, "lb"),
  12204. name: "Back",
  12205. image: {
  12206. source: "./media/characters/rufran/back.svg",
  12207. extra: 1280/878,
  12208. bottom: 131/1411
  12209. }
  12210. },
  12211. mouth: {
  12212. height: math.unit(1.13, "feet"),
  12213. name: "Mouth",
  12214. image: {
  12215. source: "./media/characters/rufran/mouth.svg"
  12216. }
  12217. },
  12218. foot: {
  12219. height: math.unit(1.33, "feet"),
  12220. name: "Foot",
  12221. image: {
  12222. source: "./media/characters/rufran/foot.svg"
  12223. }
  12224. },
  12225. koboldFront: {
  12226. height: math.unit(2 + 6 / 12, "feet"),
  12227. weight: math.unit(20, "lb"),
  12228. name: "Front (Kobold)",
  12229. image: {
  12230. source: "./media/characters/rufran/kobold-front.svg",
  12231. extra: 2041 / 1839,
  12232. bottom: 0.055
  12233. }
  12234. },
  12235. koboldBack: {
  12236. height: math.unit(2 + 6 / 12, "feet"),
  12237. weight: math.unit(20, "lb"),
  12238. name: "Back (Kobold)",
  12239. image: {
  12240. source: "./media/characters/rufran/kobold-back.svg",
  12241. extra: 2054 / 1839,
  12242. bottom: 0.01
  12243. }
  12244. },
  12245. koboldHand: {
  12246. height: math.unit(0.2166, "meters"),
  12247. name: "Hand (Kobold)",
  12248. image: {
  12249. source: "./media/characters/rufran/kobold-hand.svg"
  12250. }
  12251. },
  12252. koboldFoot: {
  12253. height: math.unit(0.185, "meters"),
  12254. name: "Foot (Kobold)",
  12255. image: {
  12256. source: "./media/characters/rufran/kobold-foot.svg"
  12257. }
  12258. },
  12259. },
  12260. [
  12261. {
  12262. name: "Micro",
  12263. height: math.unit(1, "inch")
  12264. },
  12265. {
  12266. name: "Normal",
  12267. height: math.unit(2 + 6 / 12, "feet"),
  12268. default: true
  12269. },
  12270. {
  12271. name: "Big",
  12272. height: math.unit(60, "feet")
  12273. },
  12274. {
  12275. name: "Macro",
  12276. height: math.unit(325, "feet")
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(0.3, "meters"),
  12285. weight: math.unit(3.5, "kg"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/chip/front.svg",
  12289. extra: 748 / 674
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Micro",
  12296. height: math.unit(1, "inch"),
  12297. default: true
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12303. {
  12304. side: {
  12305. height: math.unit(2.3, "meters"),
  12306. weight: math.unit(3500, "lb"),
  12307. name: "Side",
  12308. image: {
  12309. source: "./media/characters/torvid/side.svg",
  12310. extra: 1972 / 722,
  12311. bottom: 0.035
  12312. }
  12313. },
  12314. },
  12315. [
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(2.3, "meters"),
  12319. default: true
  12320. },
  12321. ]
  12322. ))
  12323. characterMakers.push(() => makeCharacter(
  12324. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12325. {
  12326. front: {
  12327. height: math.unit(2, "meters"),
  12328. weight: math.unit(150.5, "kg"),
  12329. name: "Front",
  12330. image: {
  12331. source: "./media/characters/susan/front.svg",
  12332. extra: 693 / 635,
  12333. bottom: 0.05
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(505, "miles"),
  12341. default: true
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(6, "feet"),
  12350. weight: math.unit(150, "lb"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/raindrops/front.svg",
  12354. extra: 2655 / 2461,
  12355. bottom: 49 / 2705
  12356. }
  12357. },
  12358. back: {
  12359. height: math.unit(6, "feet"),
  12360. weight: math.unit(150, "lb"),
  12361. name: "Back",
  12362. image: {
  12363. source: "./media/characters/raindrops/back.svg",
  12364. extra: 2574 / 2400,
  12365. bottom: 65 / 2634
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Micro",
  12372. height: math.unit(6, "inches")
  12373. },
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(6 + 2 / 12, "feet")
  12377. },
  12378. {
  12379. name: "Macro",
  12380. height: math.unit(131, "feet"),
  12381. default: true
  12382. },
  12383. {
  12384. name: "Megamacro",
  12385. height: math.unit(15, "miles")
  12386. },
  12387. {
  12388. name: "Gigamacro",
  12389. height: math.unit(4000, "miles")
  12390. },
  12391. {
  12392. name: "Teramacro",
  12393. height: math.unit(315000, "miles")
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12399. {
  12400. front: {
  12401. height: math.unit(2.794, "meters"),
  12402. weight: math.unit(325, "kg"),
  12403. name: "Front",
  12404. image: {
  12405. source: "./media/characters/tezwa/front.svg",
  12406. extra: 2083 / 1906,
  12407. bottom: 0.031
  12408. }
  12409. },
  12410. foot: {
  12411. height: math.unit(0.687, "meters"),
  12412. name: "Foot",
  12413. image: {
  12414. source: "./media/characters/tezwa/foot.svg"
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Normal",
  12421. height: math.unit(9 + 2 / 12, "feet"),
  12422. default: true
  12423. },
  12424. ]
  12425. ))
  12426. characterMakers.push(() => makeCharacter(
  12427. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12428. {
  12429. front: {
  12430. height: math.unit(58, "feet"),
  12431. weight: math.unit(89000, "lb"),
  12432. name: "Front",
  12433. image: {
  12434. source: "./media/characters/typhus/front.svg",
  12435. extra: 816 / 800,
  12436. bottom: 0.065
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(58, "feet"),
  12444. default: true
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12450. {
  12451. front: {
  12452. height: math.unit(12, "feet"),
  12453. weight: math.unit(6, "tonnes"),
  12454. name: "Front",
  12455. image: {
  12456. source: "./media/characters/lyra-von-wulf/front.svg",
  12457. extra: 1,
  12458. bottom: 0.10
  12459. }
  12460. },
  12461. frontMecha: {
  12462. height: math.unit(12, "feet"),
  12463. weight: math.unit(12, "tonnes"),
  12464. name: "Front (Mecha)",
  12465. image: {
  12466. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12467. extra: 1,
  12468. bottom: 0.042
  12469. }
  12470. },
  12471. maw: {
  12472. height: math.unit(2.2, "feet"),
  12473. name: "Maw",
  12474. image: {
  12475. source: "./media/characters/lyra-von-wulf/maw.svg"
  12476. }
  12477. },
  12478. },
  12479. [
  12480. {
  12481. name: "Normal",
  12482. height: math.unit(12, "feet"),
  12483. default: true
  12484. },
  12485. {
  12486. name: "Classic",
  12487. height: math.unit(50, "feet")
  12488. },
  12489. {
  12490. name: "Macro",
  12491. height: math.unit(500, "feet")
  12492. },
  12493. {
  12494. name: "Megamacro",
  12495. height: math.unit(1, "mile")
  12496. },
  12497. {
  12498. name: "Gigamacro",
  12499. height: math.unit(400, "miles")
  12500. },
  12501. {
  12502. name: "Teramacro",
  12503. height: math.unit(22000, "miles")
  12504. },
  12505. {
  12506. name: "Solarmacro",
  12507. height: math.unit(8600000, "miles")
  12508. },
  12509. {
  12510. name: "Galactic",
  12511. height: math.unit(1057000, "lightyears")
  12512. },
  12513. ]
  12514. ))
  12515. characterMakers.push(() => makeCharacter(
  12516. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12517. {
  12518. front: {
  12519. height: math.unit(6 + 10 / 12, "feet"),
  12520. weight: math.unit(150, "lb"),
  12521. name: "Front",
  12522. image: {
  12523. source: "./media/characters/dixon/front.svg",
  12524. extra: 3361 / 3209,
  12525. bottom: 0.01
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Normal",
  12532. height: math.unit(6 + 10 / 12, "feet"),
  12533. default: true
  12534. },
  12535. {
  12536. name: "Big",
  12537. height: math.unit(12, "meters")
  12538. },
  12539. {
  12540. name: "Macro",
  12541. height: math.unit(500, "meters")
  12542. },
  12543. {
  12544. name: "Megamacro",
  12545. height: math.unit(2, "km")
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(185, "cm"),
  12554. weight: math.unit(68, "kg"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/kauko/front.svg",
  12558. extra: 1455 / 1421,
  12559. bottom: 0.03
  12560. }
  12561. },
  12562. back: {
  12563. height: math.unit(185, "cm"),
  12564. weight: math.unit(68, "kg"),
  12565. name: "Back",
  12566. image: {
  12567. source: "./media/characters/kauko/back.svg",
  12568. extra: 1455 / 1421,
  12569. bottom: 0.004
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Normal",
  12576. height: math.unit(185, "cm"),
  12577. default: true
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12583. {
  12584. front: {
  12585. height: math.unit(6, "feet"),
  12586. weight: math.unit(150, "kg"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/varg/front.svg",
  12590. extra: 1108 / 1018,
  12591. bottom: 0.0375
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(5, "meters")
  12599. },
  12600. {
  12601. name: "Macro",
  12602. height: math.unit(200, "meters")
  12603. },
  12604. {
  12605. name: "Megamacro",
  12606. height: math.unit(20, "kilometers")
  12607. },
  12608. {
  12609. name: "True Size",
  12610. height: math.unit(211, "km"),
  12611. default: true
  12612. },
  12613. {
  12614. name: "Gigamacro",
  12615. height: math.unit(1000, "km")
  12616. },
  12617. {
  12618. name: "Gigamacro+",
  12619. height: math.unit(8000, "km")
  12620. },
  12621. {
  12622. name: "Teramacro",
  12623. height: math.unit(1000000, "km")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(7 + 7 / 12, "feet"),
  12632. weight: math.unit(267, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/dayza/front.svg",
  12636. extra: 1262 / 1200,
  12637. bottom: 0.035
  12638. }
  12639. },
  12640. side: {
  12641. height: math.unit(7 + 7 / 12, "feet"),
  12642. weight: math.unit(267, "lb"),
  12643. name: "Side",
  12644. image: {
  12645. source: "./media/characters/dayza/side.svg",
  12646. extra: 1295 / 1245,
  12647. bottom: 0.05
  12648. }
  12649. },
  12650. back: {
  12651. height: math.unit(7 + 7 / 12, "feet"),
  12652. weight: math.unit(267, "lb"),
  12653. name: "Back",
  12654. image: {
  12655. source: "./media/characters/dayza/back.svg",
  12656. extra: 1241 / 1170
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Normal",
  12663. height: math.unit(7 + 7 / 12, "feet"),
  12664. default: true
  12665. },
  12666. {
  12667. name: "Macro",
  12668. height: math.unit(155, "feet")
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(6 + 5 / 12, "feet"),
  12677. weight: math.unit(160, "lb"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/xanthos/front.svg",
  12681. extra: 1,
  12682. bottom: 0.04
  12683. }
  12684. },
  12685. back: {
  12686. height: math.unit(6 + 5 / 12, "feet"),
  12687. weight: math.unit(160, "lb"),
  12688. name: "Back",
  12689. image: {
  12690. source: "./media/characters/xanthos/back.svg",
  12691. extra: 1,
  12692. bottom: 0.03
  12693. }
  12694. },
  12695. hand: {
  12696. height: math.unit(0.928, "feet"),
  12697. name: "Hand",
  12698. image: {
  12699. source: "./media/characters/xanthos/hand.svg"
  12700. }
  12701. },
  12702. foot: {
  12703. height: math.unit(1.286, "feet"),
  12704. name: "Foot",
  12705. image: {
  12706. source: "./media/characters/xanthos/foot.svg"
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Normal",
  12713. height: math.unit(6 + 5 / 12, "feet"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Normal+",
  12718. height: math.unit(6, "meters")
  12719. },
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(40, "feet")
  12723. },
  12724. {
  12725. name: "Macro+",
  12726. height: math.unit(200, "meters")
  12727. },
  12728. {
  12729. name: "Megamacro",
  12730. height: math.unit(20, "km")
  12731. },
  12732. {
  12733. name: "Megamacro+",
  12734. height: math.unit(100, "km")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(6 + 3 / 12, "feet"),
  12743. weight: math.unit(215, "lb"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/grynn/front.svg",
  12747. extra: 4627 / 4209,
  12748. bottom: 0.047
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Micro",
  12755. height: math.unit(6, "inches")
  12756. },
  12757. {
  12758. name: "Normal",
  12759. height: math.unit(6 + 3 / 12, "feet"),
  12760. default: true
  12761. },
  12762. {
  12763. name: "Big",
  12764. height: math.unit(104, "feet")
  12765. },
  12766. {
  12767. name: "Macro",
  12768. height: math.unit(944, "feet")
  12769. },
  12770. {
  12771. name: "Macro+",
  12772. height: math.unit(9480, "feet")
  12773. },
  12774. {
  12775. name: "Megamacro",
  12776. height: math.unit(78752, "feet")
  12777. },
  12778. {
  12779. name: "Megamacro+",
  12780. height: math.unit(630128, "feet")
  12781. },
  12782. {
  12783. name: "Megamacro++",
  12784. height: math.unit(3150695, "feet")
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12790. {
  12791. front: {
  12792. height: math.unit(7 + 5 / 12, "feet"),
  12793. weight: math.unit(450, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/mocha-aura/front.svg",
  12797. extra: 1907 / 1817,
  12798. bottom: 0.04
  12799. }
  12800. },
  12801. back: {
  12802. height: math.unit(7 + 5 / 12, "feet"),
  12803. weight: math.unit(450, "lb"),
  12804. name: "Back",
  12805. image: {
  12806. source: "./media/characters/mocha-aura/back.svg",
  12807. extra: 1900 / 1825,
  12808. bottom: 0.045
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Nano",
  12815. height: math.unit(1, "nm")
  12816. },
  12817. {
  12818. name: "Megamicro",
  12819. height: math.unit(1, "mm")
  12820. },
  12821. {
  12822. name: "Micro",
  12823. height: math.unit(3, "inches")
  12824. },
  12825. {
  12826. name: "Normal",
  12827. height: math.unit(7 + 5 / 12, "feet"),
  12828. default: true
  12829. },
  12830. {
  12831. name: "Macro",
  12832. height: math.unit(30, "feet")
  12833. },
  12834. {
  12835. name: "Megamacro",
  12836. height: math.unit(3500, "feet")
  12837. },
  12838. {
  12839. name: "Teramacro",
  12840. height: math.unit(500000, "miles")
  12841. },
  12842. {
  12843. name: "Petamacro",
  12844. height: math.unit(50000000000000000, "parsecs")
  12845. },
  12846. ]
  12847. ))
  12848. characterMakers.push(() => makeCharacter(
  12849. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12850. {
  12851. front: {
  12852. height: math.unit(6, "feet"),
  12853. weight: math.unit(150, "lb"),
  12854. name: "Front",
  12855. image: {
  12856. source: "./media/characters/ilisha-devya/front.svg",
  12857. extra: 1,
  12858. bottom: 0.175
  12859. }
  12860. },
  12861. back: {
  12862. height: math.unit(6, "feet"),
  12863. weight: math.unit(150, "lb"),
  12864. name: "Back",
  12865. image: {
  12866. source: "./media/characters/ilisha-devya/back.svg",
  12867. extra: 1,
  12868. bottom: 0.015
  12869. }
  12870. },
  12871. },
  12872. [
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(500, "feet"),
  12876. default: true
  12877. },
  12878. {
  12879. name: "Megamacro",
  12880. height: math.unit(10, "miles")
  12881. },
  12882. {
  12883. name: "Gigamacro",
  12884. height: math.unit(100000, "miles")
  12885. },
  12886. {
  12887. name: "Examacro",
  12888. height: math.unit(1e9, "lightyears")
  12889. },
  12890. {
  12891. name: "Omniversal",
  12892. height: math.unit(1e33, "lightyears")
  12893. },
  12894. {
  12895. name: "Beyond Infinite",
  12896. height: math.unit(1e100, "lightyears")
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12902. {
  12903. Side: {
  12904. height: math.unit(6, "feet"),
  12905. weight: math.unit(150, "lb"),
  12906. name: "Side",
  12907. image: {
  12908. source: "./media/characters/mira/side.svg",
  12909. extra: 900 / 799,
  12910. bottom: 0.02
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Human Size",
  12917. height: math.unit(6, "feet")
  12918. },
  12919. {
  12920. name: "Macro",
  12921. height: math.unit(100, "feet"),
  12922. default: true
  12923. },
  12924. {
  12925. name: "Megamacro",
  12926. height: math.unit(10, "miles")
  12927. },
  12928. {
  12929. name: "Gigamacro",
  12930. height: math.unit(25000, "miles")
  12931. },
  12932. {
  12933. name: "Teramacro",
  12934. height: math.unit(300, "AU")
  12935. },
  12936. {
  12937. name: "Full Size",
  12938. height: math.unit(4.5e10, "lightyears")
  12939. },
  12940. ]
  12941. ))
  12942. characterMakers.push(() => makeCharacter(
  12943. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12944. {
  12945. front: {
  12946. height: math.unit(6, "feet"),
  12947. weight: math.unit(150, "lb"),
  12948. name: "Front",
  12949. image: {
  12950. source: "./media/characters/holly/front.svg",
  12951. extra: 639 / 606
  12952. }
  12953. },
  12954. back: {
  12955. height: math.unit(6, "feet"),
  12956. weight: math.unit(150, "lb"),
  12957. name: "Back",
  12958. image: {
  12959. source: "./media/characters/holly/back.svg",
  12960. extra: 623 / 598
  12961. }
  12962. },
  12963. frontWorking: {
  12964. height: math.unit(6, "feet"),
  12965. weight: math.unit(150, "lb"),
  12966. name: "Front (Working)",
  12967. image: {
  12968. source: "./media/characters/holly/front-working.svg",
  12969. extra: 607 / 577,
  12970. bottom: 0.048
  12971. }
  12972. },
  12973. },
  12974. [
  12975. {
  12976. name: "Normal",
  12977. height: math.unit(12 + 3 / 12, "feet"),
  12978. default: true
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12984. {
  12985. front: {
  12986. height: math.unit(6, "feet"),
  12987. weight: math.unit(150, "lb"),
  12988. name: "Front",
  12989. image: {
  12990. source: "./media/characters/porter/front.svg",
  12991. extra: 1,
  12992. bottom: 0.01
  12993. }
  12994. },
  12995. frontRobes: {
  12996. height: math.unit(6, "feet"),
  12997. weight: math.unit(150, "lb"),
  12998. name: "Front (Robes)",
  12999. image: {
  13000. source: "./media/characters/porter/front-robes.svg",
  13001. extra: 1.01,
  13002. bottom: 0.01
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(11 + 9 / 12, "feet"),
  13010. default: true
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13016. {
  13017. legendary: {
  13018. height: math.unit(6, "feet"),
  13019. weight: math.unit(150, "lb"),
  13020. name: "Legendary",
  13021. image: {
  13022. source: "./media/characters/lucy/legendary.svg",
  13023. extra: 1355 / 1100,
  13024. bottom: 0.045
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Legendary",
  13031. height: math.unit(86882 * 2, "miles"),
  13032. default: true
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(6, "feet"),
  13041. weight: math.unit(150, "lb"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/drusilla/front.svg",
  13045. extra: 678 / 635,
  13046. bottom: 0.03
  13047. }
  13048. },
  13049. back: {
  13050. height: math.unit(6, "feet"),
  13051. weight: math.unit(150, "lb"),
  13052. name: "Back",
  13053. image: {
  13054. source: "./media/characters/drusilla/back.svg",
  13055. extra: 678 / 635,
  13056. bottom: 0.005
  13057. }
  13058. },
  13059. },
  13060. [
  13061. {
  13062. name: "Macro",
  13063. height: math.unit(100, "feet")
  13064. },
  13065. {
  13066. name: "Canon Height",
  13067. height: math.unit(2000, "feet"),
  13068. default: true
  13069. },
  13070. ]
  13071. ))
  13072. characterMakers.push(() => makeCharacter(
  13073. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13074. {
  13075. front: {
  13076. height: math.unit(6, "feet"),
  13077. weight: math.unit(180, "lb"),
  13078. name: "Front",
  13079. image: {
  13080. source: "./media/characters/renard-thatch/front.svg",
  13081. extra: 2411 / 2275,
  13082. bottom: 0.01
  13083. }
  13084. },
  13085. frontPosing: {
  13086. height: math.unit(6, "feet"),
  13087. weight: math.unit(180, "lb"),
  13088. name: "Front (Posing)",
  13089. image: {
  13090. source: "./media/characters/renard-thatch/front-posing.svg",
  13091. extra: 2381 / 2261,
  13092. bottom: 0.01
  13093. }
  13094. },
  13095. back: {
  13096. height: math.unit(6, "feet"),
  13097. weight: math.unit(180, "lb"),
  13098. name: "Back",
  13099. image: {
  13100. source: "./media/characters/renard-thatch/back.svg",
  13101. extra: 2428 / 2288
  13102. }
  13103. },
  13104. },
  13105. [
  13106. {
  13107. name: "Micro",
  13108. height: math.unit(3, "inches")
  13109. },
  13110. {
  13111. name: "Default",
  13112. height: math.unit(6, "feet"),
  13113. default: true
  13114. },
  13115. {
  13116. name: "Macro",
  13117. height: math.unit(75, "feet")
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(1450, "feet"),
  13126. weight: math.unit(1.21e6, "tons"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/sekvra/front.svg",
  13130. extra: 1,
  13131. bottom: 0.03
  13132. }
  13133. },
  13134. frontClothed: {
  13135. height: math.unit(1450, "feet"),
  13136. weight: math.unit(1.21e6, "tons"),
  13137. name: "Front (Clothed)",
  13138. image: {
  13139. source: "./media/characters/sekvra/front-clothed.svg",
  13140. extra: 1,
  13141. bottom: 0.03
  13142. }
  13143. },
  13144. side: {
  13145. height: math.unit(1450, "feet"),
  13146. weight: math.unit(1.21e6, "tons"),
  13147. name: "Side",
  13148. image: {
  13149. source: "./media/characters/sekvra/side.svg",
  13150. extra: 1,
  13151. bottom: 0.025
  13152. }
  13153. },
  13154. back: {
  13155. height: math.unit(1450, "feet"),
  13156. weight: math.unit(1.21e6, "tons"),
  13157. name: "Back",
  13158. image: {
  13159. source: "./media/characters/sekvra/back.svg",
  13160. extra: 1,
  13161. bottom: 0.005
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Macro",
  13168. height: math.unit(1450, "feet"),
  13169. default: true
  13170. },
  13171. {
  13172. name: "Megamacro",
  13173. height: math.unit(15000, "feet")
  13174. },
  13175. ]
  13176. ))
  13177. characterMakers.push(() => makeCharacter(
  13178. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13179. {
  13180. front: {
  13181. height: math.unit(6, "feet"),
  13182. weight: math.unit(150, "lb"),
  13183. name: "Front",
  13184. image: {
  13185. source: "./media/characters/carmine/front.svg",
  13186. extra: 1,
  13187. bottom: 0.035
  13188. }
  13189. },
  13190. frontArmor: {
  13191. height: math.unit(6, "feet"),
  13192. weight: math.unit(150, "lb"),
  13193. name: "Front (Armor)",
  13194. image: {
  13195. source: "./media/characters/carmine/front-armor.svg",
  13196. extra: 1,
  13197. bottom: 0.035
  13198. }
  13199. },
  13200. },
  13201. [
  13202. {
  13203. name: "Large",
  13204. height: math.unit(1, "mile")
  13205. },
  13206. {
  13207. name: "Huge",
  13208. height: math.unit(40, "miles"),
  13209. default: true
  13210. },
  13211. {
  13212. name: "Colossal",
  13213. height: math.unit(2500, "miles")
  13214. },
  13215. ]
  13216. ))
  13217. characterMakers.push(() => makeCharacter(
  13218. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13219. {
  13220. front: {
  13221. height: math.unit(6, "feet"),
  13222. weight: math.unit(150, "lb"),
  13223. name: "Front",
  13224. image: {
  13225. source: "./media/characters/elyssia/front.svg",
  13226. extra: 2201 / 2035,
  13227. bottom: 0.05
  13228. }
  13229. },
  13230. frontClothed: {
  13231. height: math.unit(6, "feet"),
  13232. weight: math.unit(150, "lb"),
  13233. name: "Front (Clothed)",
  13234. image: {
  13235. source: "./media/characters/elyssia/front-clothed.svg",
  13236. extra: 2201 / 2035,
  13237. bottom: 0.05
  13238. }
  13239. },
  13240. back: {
  13241. height: math.unit(6, "feet"),
  13242. weight: math.unit(150, "lb"),
  13243. name: "Back",
  13244. image: {
  13245. source: "./media/characters/elyssia/back.svg",
  13246. extra: 2201 / 2035,
  13247. bottom: 0.013
  13248. }
  13249. },
  13250. },
  13251. [
  13252. {
  13253. name: "Smaller",
  13254. height: math.unit(150, "feet")
  13255. },
  13256. {
  13257. name: "Standard",
  13258. height: math.unit(1400, "feet"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Distracted",
  13263. height: math.unit(15000, "feet")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(7 + 4 / 12, "feet"),
  13272. weight: math.unit(500, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/geno-maxwell/front.svg",
  13276. extra: 2207 / 2040,
  13277. bottom: 0.015
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Micro",
  13284. height: math.unit(3, "inches")
  13285. },
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(7 + 4 / 12, "feet"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Macro",
  13293. height: math.unit(220, "feet")
  13294. },
  13295. {
  13296. name: "Megamacro",
  13297. height: math.unit(11, "miles")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13303. {
  13304. front: {
  13305. height: math.unit(7 + 4 / 12, "feet"),
  13306. weight: math.unit(500, "lb"),
  13307. name: "Front",
  13308. image: {
  13309. source: "./media/characters/regena-maxwell/front.svg",
  13310. extra: 3115 / 2770,
  13311. bottom: 0.02
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Normal",
  13318. height: math.unit(7 + 4 / 12, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(220, "feet")
  13324. },
  13325. {
  13326. name: "Megamacro",
  13327. height: math.unit(11, "miles")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13333. {
  13334. front: {
  13335. height: math.unit(6, "feet"),
  13336. weight: math.unit(150, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13340. extra: 860 / 690,
  13341. bottom: 0.03
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(1.7, "meters"),
  13349. default: true
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(6, "feet"),
  13358. weight: math.unit(150, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/quilly/front.svg",
  13362. extra: 890 / 776
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Gigamacro",
  13369. height: math.unit(404090, "miles"),
  13370. default: true
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(7 + 8 / 12, "feet"),
  13379. weight: math.unit(350, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/tempest/front.svg",
  13383. extra: 1175 / 1086,
  13384. bottom: 0.02
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(7 + 8 / 12, "feet"),
  13392. default: true
  13393. },
  13394. ]
  13395. ))
  13396. characterMakers.push(() => makeCharacter(
  13397. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13398. {
  13399. side: {
  13400. height: math.unit(4 + 5 / 12, "feet"),
  13401. weight: math.unit(80, "lb"),
  13402. name: "Side",
  13403. image: {
  13404. source: "./media/characters/rodger/side.svg",
  13405. extra: 1235 / 1118
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Micro",
  13412. height: math.unit(1, "inch")
  13413. },
  13414. {
  13415. name: "Normal",
  13416. height: math.unit(4 + 5 / 12, "feet"),
  13417. default: true
  13418. },
  13419. {
  13420. name: "Macro",
  13421. height: math.unit(120, "feet")
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/danyel/front.svg",
  13434. extra: 1185 / 1123,
  13435. bottom: 0.05
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Shrunken",
  13442. height: math.unit(0.5, "mm")
  13443. },
  13444. {
  13445. name: "Micro",
  13446. height: math.unit(1, "mm"),
  13447. default: true
  13448. },
  13449. {
  13450. name: "Upsized",
  13451. height: math.unit(5 + 5 / 12, "feet")
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13457. {
  13458. front: {
  13459. height: math.unit(5 + 6 / 12, "feet"),
  13460. weight: math.unit(200, "lb"),
  13461. name: "Front",
  13462. image: {
  13463. source: "./media/characters/vivian-bijoux/front.svg",
  13464. extra: 1,
  13465. bottom: 0.072
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Normal",
  13472. height: math.unit(5 + 6 / 12, "feet"),
  13473. default: true
  13474. },
  13475. {
  13476. name: "Bad Dream",
  13477. height: math.unit(500, "feet")
  13478. },
  13479. {
  13480. name: "Nightmare",
  13481. height: math.unit(500, "miles")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(6 + 1 / 12, "feet"),
  13490. weight: math.unit(260, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/zeta/front.svg",
  13494. extra: 1968 / 1889,
  13495. bottom: 0.06
  13496. }
  13497. },
  13498. back: {
  13499. height: math.unit(6 + 1 / 12, "feet"),
  13500. weight: math.unit(260, "lb"),
  13501. name: "Back",
  13502. image: {
  13503. source: "./media/characters/zeta/back.svg",
  13504. extra: 1944 / 1858,
  13505. bottom: 0.03
  13506. }
  13507. },
  13508. hand: {
  13509. height: math.unit(1.112, "feet"),
  13510. name: "Hand",
  13511. image: {
  13512. source: "./media/characters/zeta/hand.svg"
  13513. }
  13514. },
  13515. foot: {
  13516. height: math.unit(1.48, "feet"),
  13517. name: "Foot",
  13518. image: {
  13519. source: "./media/characters/zeta/foot.svg"
  13520. }
  13521. },
  13522. },
  13523. [
  13524. {
  13525. name: "Micro",
  13526. height: math.unit(6, "inches")
  13527. },
  13528. {
  13529. name: "Normal",
  13530. height: math.unit(6 + 1 / 12, "feet"),
  13531. default: true
  13532. },
  13533. {
  13534. name: "Macro",
  13535. height: math.unit(20, "feet")
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(6, "feet"),
  13544. weight: math.unit(150, "lb"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/jamie-larsen/front.svg",
  13548. extra: 962 / 933,
  13549. bottom: 0.02
  13550. }
  13551. },
  13552. back: {
  13553. height: math.unit(6, "feet"),
  13554. weight: math.unit(150, "lb"),
  13555. name: "Back",
  13556. image: {
  13557. source: "./media/characters/jamie-larsen/back.svg",
  13558. extra: 997 / 946
  13559. }
  13560. },
  13561. },
  13562. [
  13563. {
  13564. name: "Macro",
  13565. height: math.unit(28 + 7 / 12, "feet"),
  13566. default: true
  13567. },
  13568. {
  13569. name: "Macro+",
  13570. height: math.unit(180, "feet")
  13571. },
  13572. {
  13573. name: "Megamacro",
  13574. height: math.unit(10, "miles")
  13575. },
  13576. {
  13577. name: "Gigamacro",
  13578. height: math.unit(200000, "miles")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(120, "lb"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/vance/front.svg",
  13591. extra: 1980 / 1890,
  13592. bottom: 0.09
  13593. }
  13594. },
  13595. back: {
  13596. height: math.unit(6, "feet"),
  13597. weight: math.unit(120, "lb"),
  13598. name: "Back",
  13599. image: {
  13600. source: "./media/characters/vance/back.svg",
  13601. extra: 2081 / 1994,
  13602. bottom: 0.014
  13603. }
  13604. },
  13605. hand: {
  13606. height: math.unit(0.88, "feet"),
  13607. name: "Hand",
  13608. image: {
  13609. source: "./media/characters/vance/hand.svg"
  13610. }
  13611. },
  13612. foot: {
  13613. height: math.unit(0.64, "feet"),
  13614. name: "Foot",
  13615. image: {
  13616. source: "./media/characters/vance/foot.svg"
  13617. }
  13618. },
  13619. },
  13620. [
  13621. {
  13622. name: "Small",
  13623. height: math.unit(90, "feet"),
  13624. default: true
  13625. },
  13626. {
  13627. name: "Macro",
  13628. height: math.unit(100, "meters")
  13629. },
  13630. {
  13631. name: "Megamacro",
  13632. height: math.unit(15, "miles")
  13633. },
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13638. {
  13639. front: {
  13640. height: math.unit(6, "feet"),
  13641. weight: math.unit(180, "lb"),
  13642. name: "Front",
  13643. image: {
  13644. source: "./media/characters/xochitl/front.svg",
  13645. extra: 2297 / 2261,
  13646. bottom: 0.065
  13647. }
  13648. },
  13649. back: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(180, "lb"),
  13652. name: "Back",
  13653. image: {
  13654. source: "./media/characters/xochitl/back.svg",
  13655. extra: 2386 / 2354,
  13656. bottom: 0.01
  13657. }
  13658. },
  13659. foot: {
  13660. height: math.unit(6 / 5 * 1.15, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Foot",
  13663. image: {
  13664. source: "./media/characters/xochitl/foot.svg"
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Macro",
  13671. height: math.unit(80, "feet")
  13672. },
  13673. {
  13674. name: "Macro+",
  13675. height: math.unit(400, "feet"),
  13676. default: true
  13677. },
  13678. {
  13679. name: "Gigamacro",
  13680. height: math.unit(80000, "miles")
  13681. },
  13682. {
  13683. name: "Gigamacro+",
  13684. height: math.unit(400000, "miles")
  13685. },
  13686. {
  13687. name: "Teramacro",
  13688. height: math.unit(300, "AU")
  13689. },
  13690. ]
  13691. ))
  13692. characterMakers.push(() => makeCharacter(
  13693. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13694. {
  13695. front: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front",
  13699. image: {
  13700. source: "./media/characters/vincent/front.svg",
  13701. extra: 1130 / 1080,
  13702. bottom: 0.055
  13703. }
  13704. },
  13705. beak: {
  13706. height: math.unit(6 * 0.1, "feet"),
  13707. name: "Beak",
  13708. image: {
  13709. source: "./media/characters/vincent/beak.svg"
  13710. }
  13711. },
  13712. hand: {
  13713. height: math.unit(6 * 0.85, "feet"),
  13714. weight: math.unit(150, "lb"),
  13715. name: "Hand",
  13716. image: {
  13717. source: "./media/characters/vincent/hand.svg"
  13718. }
  13719. },
  13720. foot: {
  13721. height: math.unit(6 * 0.19, "feet"),
  13722. weight: math.unit(150, "lb"),
  13723. name: "Foot",
  13724. image: {
  13725. source: "./media/characters/vincent/foot.svg"
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Base",
  13732. height: math.unit(6 + 5 / 12, "feet"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(300, "feet")
  13738. },
  13739. {
  13740. name: "Megamacro",
  13741. height: math.unit(2, "miles")
  13742. },
  13743. {
  13744. name: "Gigamacro",
  13745. height: math.unit(1000, "miles")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(2, "meters"),
  13754. weight: math.unit(500, "kg"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/coatl/front.svg",
  13758. extra: 3948 / 3500,
  13759. bottom: 0.082
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Normal",
  13766. height: math.unit(4, "meters")
  13767. },
  13768. {
  13769. name: "Macro",
  13770. height: math.unit(100, "meters"),
  13771. default: true
  13772. },
  13773. {
  13774. name: "Macro+",
  13775. height: math.unit(300, "meters")
  13776. },
  13777. {
  13778. name: "Megamacro",
  13779. height: math.unit(3, "gigameters")
  13780. },
  13781. {
  13782. name: "Megamacro+",
  13783. height: math.unit(300, "terameters")
  13784. },
  13785. {
  13786. name: "Megamacro++",
  13787. height: math.unit(3, "lightyears")
  13788. },
  13789. ]
  13790. ))
  13791. characterMakers.push(() => makeCharacter(
  13792. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13793. {
  13794. front: {
  13795. height: math.unit(6, "feet"),
  13796. weight: math.unit(50, "kg"),
  13797. name: "front",
  13798. image: {
  13799. source: "./media/characters/shiroryu/front.svg",
  13800. extra: 1990 / 1935
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Mortal Mingling",
  13807. height: math.unit(3, "meters")
  13808. },
  13809. {
  13810. name: "Kaiju-ish",
  13811. height: math.unit(250, "meters")
  13812. },
  13813. {
  13814. name: "Somewhat Godly",
  13815. height: math.unit(400, "km"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Planetary",
  13820. height: math.unit(300, "megameters")
  13821. },
  13822. {
  13823. name: "Galaxy-dwarfing",
  13824. height: math.unit(450, "kiloparsecs")
  13825. },
  13826. {
  13827. name: "Universe Eater",
  13828. height: math.unit(150, "gigaparsecs")
  13829. },
  13830. {
  13831. name: "Almost Immeasurable",
  13832. height: math.unit(1.3e266, "yottaparsecs")
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(150, "lb"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/umeko/front.svg",
  13845. extra: 1,
  13846. bottom: 0.019
  13847. }
  13848. },
  13849. frontArmored: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Front (Armored)",
  13853. image: {
  13854. source: "./media/characters/umeko/front-armored.svg",
  13855. extra: 1,
  13856. bottom: 0.021
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Macro",
  13863. height: math.unit(220, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Guardian Dragon",
  13868. height: math.unit(50, "miles")
  13869. },
  13870. {
  13871. name: "Cosmic",
  13872. height: math.unit(800000, "miles")
  13873. },
  13874. ]
  13875. ))
  13876. characterMakers.push(() => makeCharacter(
  13877. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13878. {
  13879. front: {
  13880. height: math.unit(6, "feet"),
  13881. weight: math.unit(150, "lb"),
  13882. name: "Front",
  13883. image: {
  13884. source: "./media/characters/cassidy/front.svg",
  13885. extra: 1,
  13886. bottom: 0.043
  13887. }
  13888. },
  13889. },
  13890. [
  13891. {
  13892. name: "Canon Height",
  13893. height: math.unit(120, "feet"),
  13894. default: true
  13895. },
  13896. {
  13897. name: "Macro+",
  13898. height: math.unit(400, "feet")
  13899. },
  13900. {
  13901. name: "Macro++",
  13902. height: math.unit(4000, "feet")
  13903. },
  13904. {
  13905. name: "Megamacro",
  13906. height: math.unit(3, "miles")
  13907. },
  13908. ]
  13909. ))
  13910. characterMakers.push(() => makeCharacter(
  13911. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13912. {
  13913. front: {
  13914. height: math.unit(6, "feet"),
  13915. weight: math.unit(150, "lb"),
  13916. name: "Front",
  13917. image: {
  13918. source: "./media/characters/isaac/front.svg",
  13919. extra: 896 / 815,
  13920. bottom: 0.11
  13921. }
  13922. },
  13923. },
  13924. [
  13925. {
  13926. name: "Human Size",
  13927. height: math.unit(8, "feet"),
  13928. default: true
  13929. },
  13930. {
  13931. name: "Macro",
  13932. height: math.unit(400, "feet")
  13933. },
  13934. {
  13935. name: "Megamacro",
  13936. height: math.unit(50, "miles")
  13937. },
  13938. {
  13939. name: "Canon Height",
  13940. height: math.unit(200, "AU")
  13941. },
  13942. ]
  13943. ))
  13944. characterMakers.push(() => makeCharacter(
  13945. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13946. {
  13947. front: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(72, "kg"),
  13950. name: "Front",
  13951. image: {
  13952. source: "./media/characters/sleekit/front.svg",
  13953. extra: 4693 / 4487,
  13954. bottom: 0.012
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Minimum Height",
  13961. height: math.unit(10, "meters")
  13962. },
  13963. {
  13964. name: "Smaller",
  13965. height: math.unit(25, "meters")
  13966. },
  13967. {
  13968. name: "Larger",
  13969. height: math.unit(38, "meters"),
  13970. default: true
  13971. },
  13972. {
  13973. name: "Maximum height",
  13974. height: math.unit(100, "meters")
  13975. },
  13976. ]
  13977. ))
  13978. characterMakers.push(() => makeCharacter(
  13979. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13980. {
  13981. front: {
  13982. height: math.unit(6, "feet"),
  13983. weight: math.unit(150, "lb"),
  13984. name: "Front",
  13985. image: {
  13986. source: "./media/characters/nillia/front.svg",
  13987. extra: 2195 / 2037,
  13988. bottom: 0.005
  13989. }
  13990. },
  13991. back: {
  13992. height: math.unit(6, "feet"),
  13993. weight: math.unit(150, "lb"),
  13994. name: "Back",
  13995. image: {
  13996. source: "./media/characters/nillia/back.svg",
  13997. extra: 2195 / 2037,
  13998. bottom: 0.005
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Canon Height",
  14005. height: math.unit(489, "feet"),
  14006. default: true
  14007. }
  14008. ]
  14009. ))
  14010. characterMakers.push(() => makeCharacter(
  14011. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14012. {
  14013. front: {
  14014. height: math.unit(6, "feet"),
  14015. weight: math.unit(150, "lb"),
  14016. name: "Front",
  14017. image: {
  14018. source: "./media/characters/mesmyriza/front.svg",
  14019. extra: 2067 / 1784,
  14020. bottom: 0.035
  14021. }
  14022. },
  14023. foot: {
  14024. height: math.unit(6 / (250 / 35), "feet"),
  14025. name: "Foot",
  14026. image: {
  14027. source: "./media/characters/mesmyriza/foot.svg"
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Macro",
  14034. height: math.unit(457, "meters"),
  14035. default: true
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(8, "megameters")
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(6, "feet"),
  14048. weight: math.unit(250, "lb"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/saudade/front.svg",
  14052. extra: 1172 / 1139,
  14053. bottom: 0.035
  14054. }
  14055. },
  14056. },
  14057. [
  14058. {
  14059. name: "Micro",
  14060. height: math.unit(3, "inches")
  14061. },
  14062. {
  14063. name: "Normal",
  14064. height: math.unit(6, "feet"),
  14065. default: true
  14066. },
  14067. {
  14068. name: "Macro",
  14069. height: math.unit(50, "feet")
  14070. },
  14071. {
  14072. name: "Megamacro",
  14073. height: math.unit(2800, "feet")
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(5 + 4 / 12, "feet"),
  14082. weight: math.unit(100, "lb"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/keireer/front.svg",
  14086. extra: 716 / 666,
  14087. bottom: 0.05
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(5 + 4 / 12, "feet"),
  14095. default: true
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(6, "feet"),
  14104. weight: math.unit(90, "kg"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/mirja/front.svg",
  14108. extra: 1789 / 1683,
  14109. bottom: 0.05
  14110. }
  14111. },
  14112. frontDressed: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(90, "lb"),
  14115. name: "Front (Dressed)",
  14116. image: {
  14117. source: "./media/characters/mirja/front-dressed.svg",
  14118. extra: 1789 / 1683,
  14119. bottom: 0.05
  14120. }
  14121. },
  14122. back: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(90, "lb"),
  14125. name: "Back",
  14126. image: {
  14127. source: "./media/characters/mirja/back.svg",
  14128. extra: 953 / 917,
  14129. bottom: 0.017
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "\"Incognito\"",
  14136. height: math.unit(3, "meters")
  14137. },
  14138. {
  14139. name: "Strolling Size",
  14140. height: math.unit(15, "km")
  14141. },
  14142. {
  14143. name: "Larger Strolling Size",
  14144. height: math.unit(400, "km")
  14145. },
  14146. {
  14147. name: "Preferred Size",
  14148. height: math.unit(5000, "km")
  14149. },
  14150. {
  14151. name: "True Size",
  14152. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14153. default: true
  14154. },
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(15, "feet"),
  14162. weight: math.unit(880, "kg"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/nightraver/front.svg",
  14166. extra: 2444 / 2160,
  14167. bottom: 0.027
  14168. }
  14169. },
  14170. back: {
  14171. height: math.unit(15, "feet"),
  14172. weight: math.unit(880, "kg"),
  14173. name: "Back",
  14174. image: {
  14175. source: "./media/characters/nightraver/back.svg",
  14176. extra: 2309 / 2180,
  14177. bottom: 0.005
  14178. }
  14179. },
  14180. sole: {
  14181. height: math.unit(2.878, "feet"),
  14182. name: "Sole",
  14183. image: {
  14184. source: "./media/characters/nightraver/sole.svg"
  14185. }
  14186. },
  14187. foot: {
  14188. height: math.unit(2.285, "feet"),
  14189. name: "Foot",
  14190. image: {
  14191. source: "./media/characters/nightraver/foot.svg"
  14192. }
  14193. },
  14194. maw: {
  14195. height: math.unit(2.67, "feet"),
  14196. name: "Maw",
  14197. image: {
  14198. source: "./media/characters/nightraver/maw.svg"
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Micro",
  14205. height: math.unit(1, "cm")
  14206. },
  14207. {
  14208. name: "Normal",
  14209. height: math.unit(15, "feet"),
  14210. default: true
  14211. },
  14212. {
  14213. name: "Macro",
  14214. height: math.unit(300, "feet")
  14215. },
  14216. {
  14217. name: "Megamacro",
  14218. height: math.unit(300, "miles")
  14219. },
  14220. {
  14221. name: "Gigamacro",
  14222. height: math.unit(10000, "miles")
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14228. {
  14229. side: {
  14230. height: math.unit(2, "inches"),
  14231. weight: math.unit(5, "grams"),
  14232. name: "Side",
  14233. image: {
  14234. source: "./media/characters/arc/side.svg"
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Micro",
  14241. height: math.unit(2, "inches"),
  14242. default: true
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(1.1938, "meters"),
  14251. weight: math.unit(54, "kg"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/nebula-shahar/front.svg",
  14255. extra: 1642 / 1436,
  14256. bottom: 0.06
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Megamicro",
  14263. height: math.unit(0.3, "mm")
  14264. },
  14265. {
  14266. name: "Micro",
  14267. height: math.unit(3, "cm")
  14268. },
  14269. {
  14270. name: "Normal",
  14271. height: math.unit(138, "cm"),
  14272. default: true
  14273. },
  14274. {
  14275. name: "Macro",
  14276. height: math.unit(30, "m")
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(5.24, "feet"),
  14285. weight: math.unit(150, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/shayla/front.svg",
  14289. extra: 1512 / 1414,
  14290. bottom: 0.01
  14291. }
  14292. },
  14293. back: {
  14294. height: math.unit(5.24, "feet"),
  14295. weight: math.unit(150, "lb"),
  14296. name: "Back",
  14297. image: {
  14298. source: "./media/characters/shayla/back.svg",
  14299. extra: 1512 / 1414
  14300. }
  14301. },
  14302. hand: {
  14303. height: math.unit(0.7781496062992126, "feet"),
  14304. name: "Hand",
  14305. image: {
  14306. source: "./media/characters/shayla/hand.svg"
  14307. }
  14308. },
  14309. foot: {
  14310. height: math.unit(1.4206036745406823, "feet"),
  14311. name: "Foot",
  14312. image: {
  14313. source: "./media/characters/shayla/foot.svg"
  14314. }
  14315. },
  14316. },
  14317. [
  14318. {
  14319. name: "Micro",
  14320. height: math.unit(0.32, "feet")
  14321. },
  14322. {
  14323. name: "Normal",
  14324. height: math.unit(5.24, "feet"),
  14325. default: true
  14326. },
  14327. {
  14328. name: "Macro",
  14329. height: math.unit(492.12, "feet")
  14330. },
  14331. {
  14332. name: "Megamacro",
  14333. height: math.unit(186.41, "miles")
  14334. },
  14335. ]
  14336. ))
  14337. characterMakers.push(() => makeCharacter(
  14338. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14339. {
  14340. front: {
  14341. height: math.unit(2.2, "m"),
  14342. weight: math.unit(120, "kg"),
  14343. name: "Front",
  14344. image: {
  14345. source: "./media/characters/pia-jr/front.svg",
  14346. extra: 1000 / 970,
  14347. bottom: 0.035
  14348. }
  14349. },
  14350. hand: {
  14351. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14352. name: "Hand",
  14353. image: {
  14354. source: "./media/characters/pia-jr/hand.svg"
  14355. }
  14356. },
  14357. paw: {
  14358. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14359. name: "Paw",
  14360. image: {
  14361. source: "./media/characters/pia-jr/paw.svg"
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Micro",
  14368. height: math.unit(1.2, "cm")
  14369. },
  14370. {
  14371. name: "Normal",
  14372. height: math.unit(2.2, "m"),
  14373. default: true
  14374. },
  14375. {
  14376. name: "Macro",
  14377. height: math.unit(180, "m")
  14378. },
  14379. {
  14380. name: "Megamacro",
  14381. height: math.unit(420, "km")
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(2, "m"),
  14390. weight: math.unit(115, "kg"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/pia-sr/front.svg",
  14394. extra: 760 / 730,
  14395. bottom: 0.015
  14396. }
  14397. },
  14398. back: {
  14399. height: math.unit(2, "m"),
  14400. weight: math.unit(115, "kg"),
  14401. name: "Back",
  14402. image: {
  14403. source: "./media/characters/pia-sr/back.svg",
  14404. extra: 760 / 730,
  14405. bottom: 0.01
  14406. }
  14407. },
  14408. hand: {
  14409. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14410. name: "Hand",
  14411. image: {
  14412. source: "./media/characters/pia-sr/hand.svg"
  14413. }
  14414. },
  14415. foot: {
  14416. height: math.unit(1.83, "feet"),
  14417. name: "Foot",
  14418. image: {
  14419. source: "./media/characters/pia-sr/foot.svg"
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "Micro",
  14426. height: math.unit(88, "mm")
  14427. },
  14428. {
  14429. name: "Normal",
  14430. height: math.unit(2, "m"),
  14431. default: true
  14432. },
  14433. {
  14434. name: "Macro",
  14435. height: math.unit(200, "m")
  14436. },
  14437. {
  14438. name: "Megamacro",
  14439. height: math.unit(420, "km")
  14440. },
  14441. ]
  14442. ))
  14443. characterMakers.push(() => makeCharacter(
  14444. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14445. {
  14446. front: {
  14447. height: math.unit(8 + 2 / 12, "feet"),
  14448. weight: math.unit(300, "lb"),
  14449. name: "Front",
  14450. image: {
  14451. source: "./media/characters/kibibyte/front.svg",
  14452. extra: 2221 / 2098,
  14453. bottom: 0.04
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Normal",
  14460. height: math.unit(8 + 2 / 12, "feet"),
  14461. default: true
  14462. },
  14463. {
  14464. name: "Socialable Macro",
  14465. height: math.unit(50, "feet")
  14466. },
  14467. {
  14468. name: "Macro",
  14469. height: math.unit(300, "feet")
  14470. },
  14471. {
  14472. name: "Megamacro",
  14473. height: math.unit(500, "miles")
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(6, "feet"),
  14482. weight: math.unit(150, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/felix/front.svg",
  14486. extra: 762 / 722,
  14487. bottom: 0.02
  14488. }
  14489. },
  14490. frontClothed: {
  14491. height: math.unit(6, "feet"),
  14492. weight: math.unit(150, "lb"),
  14493. name: "Front (Clothed)",
  14494. image: {
  14495. source: "./media/characters/felix/front-clothed.svg",
  14496. extra: 762 / 722,
  14497. bottom: 0.02
  14498. }
  14499. },
  14500. },
  14501. [
  14502. {
  14503. name: "Normal",
  14504. height: math.unit(6 + 8 / 12, "feet"),
  14505. default: true
  14506. },
  14507. {
  14508. name: "Macro",
  14509. height: math.unit(2600, "feet")
  14510. },
  14511. {
  14512. name: "Megamacro",
  14513. height: math.unit(450, "miles")
  14514. },
  14515. ]
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14519. {
  14520. front: {
  14521. height: math.unit(6 + 1 / 12, "feet"),
  14522. weight: math.unit(250, "lb"),
  14523. name: "Front",
  14524. image: {
  14525. source: "./media/characters/tobo/front.svg",
  14526. extra: 608 / 586,
  14527. bottom: 0.023
  14528. }
  14529. },
  14530. back: {
  14531. height: math.unit(6 + 1 / 12, "feet"),
  14532. weight: math.unit(250, "lb"),
  14533. name: "Back",
  14534. image: {
  14535. source: "./media/characters/tobo/back.svg",
  14536. extra: 608 / 586
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Nano",
  14543. height: math.unit(2, "nm")
  14544. },
  14545. {
  14546. name: "Megamicro",
  14547. height: math.unit(0.1, "mm")
  14548. },
  14549. {
  14550. name: "Micro",
  14551. height: math.unit(1, "inch"),
  14552. default: true
  14553. },
  14554. {
  14555. name: "Human-sized",
  14556. height: math.unit(6 + 1 / 12, "feet")
  14557. },
  14558. {
  14559. name: "Macro",
  14560. height: math.unit(250, "feet")
  14561. },
  14562. {
  14563. name: "Megamacro",
  14564. height: math.unit(75, "miles")
  14565. },
  14566. {
  14567. name: "Texas-sized",
  14568. height: math.unit(750, "miles")
  14569. },
  14570. {
  14571. name: "Teramacro",
  14572. height: math.unit(50000, "miles")
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14578. {
  14579. front: {
  14580. height: math.unit(6, "feet"),
  14581. weight: math.unit(269, "lb"),
  14582. name: "Front",
  14583. image: {
  14584. source: "./media/characters/danny-kapowsky/front.svg",
  14585. extra: 766 / 736,
  14586. bottom: 0.044
  14587. }
  14588. },
  14589. back: {
  14590. height: math.unit(6, "feet"),
  14591. weight: math.unit(269, "lb"),
  14592. name: "Back",
  14593. image: {
  14594. source: "./media/characters/danny-kapowsky/back.svg",
  14595. extra: 797 / 760,
  14596. bottom: 0.025
  14597. }
  14598. },
  14599. },
  14600. [
  14601. {
  14602. name: "Macro",
  14603. height: math.unit(150, "feet"),
  14604. default: true
  14605. },
  14606. {
  14607. name: "Macro+",
  14608. height: math.unit(200, "feet")
  14609. },
  14610. {
  14611. name: "Macro++",
  14612. height: math.unit(300, "feet")
  14613. },
  14614. {
  14615. name: "Macro+++",
  14616. height: math.unit(400, "feet")
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14622. {
  14623. side: {
  14624. height: math.unit(6, "feet"),
  14625. weight: math.unit(170, "lb"),
  14626. name: "Side",
  14627. image: {
  14628. source: "./media/characters/finn/side.svg",
  14629. extra: 1953 / 1807,
  14630. bottom: 0.057
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Megamacro",
  14637. height: math.unit(14445, "feet"),
  14638. default: true
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(5 + 6 / 12, "feet"),
  14647. weight: math.unit(125, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/roy/front.svg",
  14651. extra: 1,
  14652. bottom: 0.11
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Micro",
  14659. height: math.unit(3, "inches"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Normal",
  14664. height: math.unit(5 + 6 / 12, "feet")
  14665. },
  14666. {
  14667. name: "Lesser Macro",
  14668. height: math.unit(60, "feet")
  14669. },
  14670. {
  14671. name: "Greater Macro",
  14672. height: math.unit(120, "feet")
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(6, "feet"),
  14681. weight: math.unit(100, "lb"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/aevsivs/front.svg",
  14685. extra: 1,
  14686. bottom: 0.03
  14687. }
  14688. },
  14689. back: {
  14690. height: math.unit(6, "feet"),
  14691. weight: math.unit(100, "lb"),
  14692. name: "Back",
  14693. image: {
  14694. source: "./media/characters/aevsivs/back.svg"
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Micro",
  14701. height: math.unit(2, "inches"),
  14702. default: true
  14703. },
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(5, "feet")
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(5 + 7 / 12, "feet"),
  14715. weight: math.unit(159, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/hildegard/front.svg",
  14719. extra: 289 / 269,
  14720. bottom: 7.63 / 297.8
  14721. }
  14722. },
  14723. back: {
  14724. height: math.unit(5 + 7 / 12, "feet"),
  14725. weight: math.unit(159, "lb"),
  14726. name: "Back",
  14727. image: {
  14728. source: "./media/characters/hildegard/back.svg",
  14729. extra: 280 / 260,
  14730. bottom: 2.3 / 282
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(5 + 7 / 12, "feet"),
  14738. default: true
  14739. },
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14744. {
  14745. bernard: {
  14746. height: math.unit(2 + 7 / 12, "feet"),
  14747. weight: math.unit(66, "lb"),
  14748. name: "Bernard",
  14749. rename: true,
  14750. image: {
  14751. source: "./media/characters/bernard-wilder/bernard.svg",
  14752. extra: 192 / 128,
  14753. bottom: 0.05
  14754. }
  14755. },
  14756. wilder: {
  14757. height: math.unit(5 + 8 / 12, "feet"),
  14758. weight: math.unit(143, "lb"),
  14759. name: "Wilder",
  14760. rename: true,
  14761. image: {
  14762. source: "./media/characters/bernard-wilder/wilder.svg",
  14763. extra: 361 / 312,
  14764. bottom: 0.02
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(2 + 7 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14778. {
  14779. anthro: {
  14780. height: math.unit(6 + 1 / 12, "feet"),
  14781. weight: math.unit(155, "lb"),
  14782. name: "Anthro",
  14783. image: {
  14784. source: "./media/characters/hearth/anthro.svg",
  14785. extra: 260 / 250,
  14786. bottom: 0.02
  14787. }
  14788. },
  14789. feral: {
  14790. height: math.unit(3.78, "feet"),
  14791. weight: math.unit(35, "kg"),
  14792. name: "Feral",
  14793. image: {
  14794. source: "./media/characters/hearth/feral.svg",
  14795. extra: 153 / 135,
  14796. bottom: 0.03
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(6 + 1 / 12, "feet"),
  14804. default: true
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14810. {
  14811. front: {
  14812. height: math.unit(6, "feet"),
  14813. weight: math.unit(182, "lb"),
  14814. name: "Front",
  14815. image: {
  14816. source: "./media/characters/ingrid/front.svg",
  14817. extra: 294 / 268,
  14818. bottom: 0.027
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(6, "feet"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14832. {
  14833. eevee: {
  14834. height: math.unit(2 + 10 / 12, "feet"),
  14835. weight: math.unit(86, "lb"),
  14836. name: "Malgam",
  14837. image: {
  14838. source: "./media/characters/malgam/eevee.svg",
  14839. extra: 218 / 180,
  14840. bottom: 0.2
  14841. }
  14842. },
  14843. sylveon: {
  14844. height: math.unit(4, "feet"),
  14845. weight: math.unit(101, "lb"),
  14846. name: "Future Malgam",
  14847. rename: true,
  14848. image: {
  14849. source: "./media/characters/malgam/sylveon.svg",
  14850. extra: 371 / 325,
  14851. bottom: 0.015
  14852. }
  14853. },
  14854. gigantamax: {
  14855. height: math.unit(50, "feet"),
  14856. name: "Gigantamax Malgam",
  14857. rename: true,
  14858. image: {
  14859. source: "./media/characters/malgam/gigantamax.svg"
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(2 + 10 / 12, "feet"),
  14867. default: true
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(5 + 11 / 12, "feet"),
  14876. weight: math.unit(188, "lb"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/fleur/front.svg",
  14880. extra: 309 / 283,
  14881. bottom: 0.007
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(5 + 11 / 12, "feet"),
  14889. default: true
  14890. },
  14891. ]
  14892. ))
  14893. characterMakers.push(() => makeCharacter(
  14894. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14895. {
  14896. front: {
  14897. height: math.unit(5 + 4 / 12, "feet"),
  14898. weight: math.unit(122, "lb"),
  14899. name: "Front",
  14900. image: {
  14901. source: "./media/characters/jude/front.svg",
  14902. extra: 288 / 273,
  14903. bottom: 0.03
  14904. }
  14905. },
  14906. },
  14907. [
  14908. {
  14909. name: "Normal",
  14910. height: math.unit(5 + 4 / 12, "feet"),
  14911. default: true
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(5 + 11 / 12, "feet"),
  14920. weight: math.unit(190, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/seara/front.svg",
  14924. extra: 1,
  14925. bottom: 0.05
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Normal",
  14932. height: math.unit(5 + 11 / 12, "feet"),
  14933. default: true
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14939. {
  14940. front: {
  14941. height: math.unit(16 + 5 / 12, "feet"),
  14942. weight: math.unit(524, "lb"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/caspian/front.svg",
  14946. extra: 1,
  14947. bottom: 0.04
  14948. }
  14949. },
  14950. },
  14951. [
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(16 + 5 / 12, "feet"),
  14955. default: true
  14956. },
  14957. ]
  14958. ))
  14959. characterMakers.push(() => makeCharacter(
  14960. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14961. {
  14962. front: {
  14963. height: math.unit(5 + 7 / 12, "feet"),
  14964. weight: math.unit(170, "lb"),
  14965. name: "Front",
  14966. image: {
  14967. source: "./media/characters/mika/front.svg",
  14968. extra: 1,
  14969. bottom: 0.016
  14970. }
  14971. },
  14972. },
  14973. [
  14974. {
  14975. name: "Normal",
  14976. height: math.unit(5 + 7 / 12, "feet"),
  14977. default: true
  14978. },
  14979. ]
  14980. ))
  14981. characterMakers.push(() => makeCharacter(
  14982. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14983. {
  14984. front: {
  14985. height: math.unit(6 + 2 / 12, "feet"),
  14986. weight: math.unit(268, "lb"),
  14987. name: "Front",
  14988. image: {
  14989. source: "./media/characters/sol/front.svg",
  14990. extra: 247 / 231,
  14991. bottom: 0.05
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Normal",
  14998. height: math.unit(6 + 2 / 12, "feet"),
  14999. default: true
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15005. {
  15006. buizel: {
  15007. height: math.unit(2 + 5 / 12, "feet"),
  15008. weight: math.unit(87, "lb"),
  15009. name: "Buizel",
  15010. image: {
  15011. source: "./media/characters/umiko/buizel.svg",
  15012. extra: 172 / 157,
  15013. bottom: 0.01
  15014. }
  15015. },
  15016. floatzel: {
  15017. height: math.unit(5 + 9 / 12, "feet"),
  15018. weight: math.unit(250, "lb"),
  15019. name: "Floatzel",
  15020. image: {
  15021. source: "./media/characters/umiko/floatzel.svg",
  15022. extra: 262 / 248
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(2 + 5 / 12, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(6 + 2 / 12, "feet"),
  15039. weight: math.unit(146, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/iliac/front.svg",
  15043. extra: 389 / 365,
  15044. bottom: 0.035
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(6 + 2 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(6, "feet"),
  15061. weight: math.unit(170, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/topaz/front.svg",
  15065. extra: 317 / 303,
  15066. bottom: 0.055
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(6, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(5 + 11 / 12, "feet"),
  15083. weight: math.unit(144, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/gabriel/front.svg",
  15087. extra: 285 / 262,
  15088. bottom: 0.004
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(5 + 11 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15102. {
  15103. side: {
  15104. height: math.unit(6 + 5 / 12, "feet"),
  15105. weight: math.unit(300, "lb"),
  15106. name: "Side",
  15107. image: {
  15108. source: "./media/characters/tempest-suicune/side.svg",
  15109. extra: 195 / 154,
  15110. bottom: 0.04
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(6 + 5 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(7 + 2 / 12, "feet"),
  15127. weight: math.unit(322, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/vulcan/front.svg",
  15131. extra: 154 / 147,
  15132. bottom: 0.04
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(7 + 2 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(5 + 10 / 12, "feet"),
  15149. weight: math.unit(264, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/gault/front.svg",
  15153. extra: 161 / 140,
  15154. bottom: 0.028
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(5 + 10 / 12, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(6, "feet"),
  15171. weight: math.unit(150, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/shard/front.svg",
  15175. extra: 273 / 238,
  15176. bottom: 0.02
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(3 + 6 / 12, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(5 + 11 / 12, "feet"),
  15193. weight: math.unit(146, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/ashe/front.svg",
  15197. extra: 400 / 373,
  15198. bottom: 0.01
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(5 + 11 / 12, "feet"),
  15206. default: true
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15212. {
  15213. front: {
  15214. height: math.unit(5 + 5 / 12, "feet"),
  15215. weight: math.unit(135, "lb"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/beatrix/front.svg",
  15219. extra: 392 / 379,
  15220. bottom: 0.01
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(6, "feet"),
  15228. default: true
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15234. {
  15235. front: {
  15236. height: math.unit(6, "feet"),
  15237. weight: math.unit(150, "lb"),
  15238. name: "Front",
  15239. image: {
  15240. source: "./media/characters/ignatius/front.svg",
  15241. extra: 245 / 222,
  15242. bottom: 0.01
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Normal",
  15249. height: math.unit(5 + 5 / 12, "feet"),
  15250. default: true
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15256. {
  15257. front: {
  15258. height: math.unit(6 + 2 / 12, "feet"),
  15259. weight: math.unit(138, "lb"),
  15260. name: "Front",
  15261. image: {
  15262. source: "./media/characters/mei-li/front.svg",
  15263. extra: 237 / 229,
  15264. bottom: 0.03
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(6 + 2 / 12, "feet"),
  15272. default: true
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15278. {
  15279. front: {
  15280. height: math.unit(2 + 4 / 12, "feet"),
  15281. weight: math.unit(62, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/puru/front.svg",
  15285. extra: 206 / 149,
  15286. bottom: 0.06
  15287. }
  15288. },
  15289. },
  15290. [
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(2 + 4 / 12, "feet"),
  15294. default: true
  15295. },
  15296. ]
  15297. ))
  15298. characterMakers.push(() => makeCharacter(
  15299. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15300. {
  15301. anthro: {
  15302. height: math.unit(5 + 8/12, "feet"),
  15303. weight: math.unit(200, "lb"),
  15304. energyNeed: math.unit(2000, "kcal"),
  15305. name: "Anthro",
  15306. image: {
  15307. source: "./media/characters/kee/anthro.svg",
  15308. extra: 3251/3184,
  15309. bottom: 250/3501
  15310. }
  15311. },
  15312. taur: {
  15313. height: math.unit(11, "feet"),
  15314. weight: math.unit(500, "lb"),
  15315. energyNeed: math.unit(5000, "kcal"),
  15316. name: "Taur",
  15317. image: {
  15318. source: "./media/characters/kee/taur.svg",
  15319. extra: 1362/1320,
  15320. bottom: 83/1445
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(5 + 8/12, "feet"),
  15328. default: true
  15329. },
  15330. {
  15331. name: "Macro",
  15332. height: math.unit(35, "feet")
  15333. },
  15334. ]
  15335. ))
  15336. characterMakers.push(() => makeCharacter(
  15337. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15338. {
  15339. anthro: {
  15340. height: math.unit(7, "feet"),
  15341. weight: math.unit(190, "lb"),
  15342. name: "Anthro",
  15343. image: {
  15344. source: "./media/characters/cobalt-dracha/anthro.svg",
  15345. extra: 231 / 225,
  15346. bottom: 0.04
  15347. }
  15348. },
  15349. feral: {
  15350. height: math.unit(9 + 7 / 12, "feet"),
  15351. weight: math.unit(294, "lb"),
  15352. name: "Feral",
  15353. image: {
  15354. source: "./media/characters/cobalt-dracha/feral.svg",
  15355. extra: 692 / 633,
  15356. bottom: 0.05
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(7, "feet"),
  15364. default: true
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15370. {
  15371. fallen: {
  15372. height: math.unit(11 + 8 / 12, "feet"),
  15373. weight: math.unit(485, "lb"),
  15374. name: "Java (Fallen)",
  15375. rename: true,
  15376. image: {
  15377. source: "./media/characters/java/fallen.svg",
  15378. extra: 226 / 208,
  15379. bottom: 0.005
  15380. }
  15381. },
  15382. godkin: {
  15383. height: math.unit(10 + 6 / 12, "feet"),
  15384. weight: math.unit(328, "lb"),
  15385. name: "Java (Godkin)",
  15386. rename: true,
  15387. image: {
  15388. source: "./media/characters/java/godkin.svg",
  15389. extra: 270 / 262,
  15390. bottom: 0.02
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Normal",
  15397. height: math.unit(11 + 8 / 12, "feet"),
  15398. default: true
  15399. },
  15400. ]
  15401. ))
  15402. characterMakers.push(() => makeCharacter(
  15403. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15404. {
  15405. front: {
  15406. height: math.unit(7 + 8 / 12, "feet"),
  15407. weight: math.unit(320, "lb"),
  15408. name: "Front",
  15409. image: {
  15410. source: "./media/characters/skoll/front.svg",
  15411. extra: 232 / 220,
  15412. bottom: 0.02
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(7 + 8 / 12, "feet"),
  15420. default: true
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(5 + 9 / 12, "feet"),
  15429. weight: math.unit(170, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/purna/front.svg",
  15433. extra: 239 / 229,
  15434. bottom: 0.01
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Normal",
  15441. height: math.unit(5 + 9 / 12, "feet"),
  15442. default: true
  15443. },
  15444. ]
  15445. ))
  15446. characterMakers.push(() => makeCharacter(
  15447. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15448. {
  15449. front: {
  15450. height: math.unit(5 + 9 / 12, "feet"),
  15451. weight: math.unit(142, "lb"),
  15452. name: "Front",
  15453. image: {
  15454. source: "./media/characters/kuva/front.svg",
  15455. extra: 281 / 271,
  15456. bottom: 0.006
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(5 + 9 / 12, "feet"),
  15464. default: true
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15470. {
  15471. anthro: {
  15472. height: math.unit(9 + 2 / 12, "feet"),
  15473. weight: math.unit(270, "lb"),
  15474. name: "Anthro",
  15475. image: {
  15476. source: "./media/characters/embra/anthro.svg",
  15477. extra: 200 / 187,
  15478. bottom: 0.02
  15479. }
  15480. },
  15481. feral: {
  15482. height: math.unit(18 + 8 / 12, "feet"),
  15483. weight: math.unit(576, "lb"),
  15484. name: "Feral",
  15485. image: {
  15486. source: "./media/characters/embra/feral.svg",
  15487. extra: 152 / 137,
  15488. bottom: 0.037
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(9 + 2 / 12, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15502. {
  15503. anthro: {
  15504. height: math.unit(10 + 9 / 12, "feet"),
  15505. weight: math.unit(224, "lb"),
  15506. name: "Anthro",
  15507. image: {
  15508. source: "./media/characters/grottos/anthro.svg",
  15509. extra: 350 / 332,
  15510. bottom: 0.045
  15511. }
  15512. },
  15513. feral: {
  15514. height: math.unit(20 + 7 / 12, "feet"),
  15515. weight: math.unit(629, "lb"),
  15516. name: "Feral",
  15517. image: {
  15518. source: "./media/characters/grottos/feral.svg",
  15519. extra: 207 / 190,
  15520. bottom: 0.05
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Normal",
  15527. height: math.unit(10 + 9 / 12, "feet"),
  15528. default: true
  15529. },
  15530. ]
  15531. ))
  15532. characterMakers.push(() => makeCharacter(
  15533. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15534. {
  15535. anthro: {
  15536. height: math.unit(9 + 6 / 12, "feet"),
  15537. weight: math.unit(298, "lb"),
  15538. name: "Anthro",
  15539. image: {
  15540. source: "./media/characters/frifna/anthro.svg",
  15541. extra: 282 / 269,
  15542. bottom: 0.015
  15543. }
  15544. },
  15545. feral: {
  15546. height: math.unit(16 + 2 / 12, "feet"),
  15547. weight: math.unit(624, "lb"),
  15548. name: "Feral",
  15549. image: {
  15550. source: "./media/characters/frifna/feral.svg"
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(9 + 6 / 12, "feet"),
  15558. default: true
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(6 + 2 / 12, "feet"),
  15567. weight: math.unit(168, "lb"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/elise/front.svg",
  15571. extra: 276 / 271
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(6 + 2 / 12, "feet"),
  15579. default: true
  15580. },
  15581. ]
  15582. ))
  15583. characterMakers.push(() => makeCharacter(
  15584. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15585. {
  15586. front: {
  15587. height: math.unit(5 + 10 / 12, "feet"),
  15588. weight: math.unit(210, "lb"),
  15589. name: "Front",
  15590. image: {
  15591. source: "./media/characters/glade/front.svg",
  15592. extra: 258 / 247,
  15593. bottom: 0.008
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(5 + 10 / 12, "feet"),
  15601. default: true
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(5 + 10 / 12, "feet"),
  15610. weight: math.unit(129, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/rina/front.svg",
  15614. extra: 266 / 255,
  15615. bottom: 0.005
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Normal",
  15622. height: math.unit(5 + 10 / 12, "feet"),
  15623. default: true
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(6 + 1 / 12, "feet"),
  15632. weight: math.unit(192, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/veronica/front.svg",
  15636. extra: 319 / 309,
  15637. bottom: 0.005
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(6 + 1 / 12, "feet"),
  15645. default: true
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(9 + 3 / 12, "feet"),
  15654. weight: math.unit(1100, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/braxton/front.svg",
  15658. extra: 1057 / 984,
  15659. bottom: 0.05
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(9 + 3 / 12, "feet")
  15667. },
  15668. {
  15669. name: "Giant",
  15670. height: math.unit(300, "feet"),
  15671. default: true
  15672. },
  15673. {
  15674. name: "Macro",
  15675. height: math.unit(700, "feet")
  15676. },
  15677. {
  15678. name: "Megamacro",
  15679. height: math.unit(6000, "feet")
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(6 + 7 / 12, "feet"),
  15688. weight: math.unit(150, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/blue-feyonics/front.svg",
  15692. extra: 1403 / 1306,
  15693. bottom: 0.047
  15694. }
  15695. },
  15696. },
  15697. [
  15698. {
  15699. name: "Normal",
  15700. height: math.unit(6 + 7 / 12, "feet"),
  15701. default: true
  15702. },
  15703. ]
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15707. {
  15708. front: {
  15709. height: math.unit(1.8, "meters"),
  15710. weight: math.unit(60, "kg"),
  15711. name: "Front",
  15712. image: {
  15713. source: "./media/characters/maxwell/front.svg",
  15714. extra: 2060 / 1873
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Micro",
  15721. height: math.unit(1, "mm")
  15722. },
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(1.8, "meter"),
  15726. default: true
  15727. },
  15728. {
  15729. name: "Macro",
  15730. height: math.unit(30, "meters")
  15731. },
  15732. {
  15733. name: "Megamacro",
  15734. height: math.unit(10, "km")
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(6, "feet"),
  15743. weight: math.unit(150, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/jack/front.svg",
  15747. extra: 1754 / 1640,
  15748. bottom: 0.01
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(80000, "feet"),
  15756. default: true
  15757. },
  15758. {
  15759. name: "Max size",
  15760. height: math.unit(10, "lightyears")
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15766. {
  15767. urban: {
  15768. height: math.unit(5, "feet"),
  15769. weight: math.unit(240, "lb"),
  15770. name: "Urban",
  15771. image: {
  15772. source: "./media/characters/cafat/urban.svg",
  15773. extra: 1223/1126,
  15774. bottom: 205/1428
  15775. }
  15776. },
  15777. summer: {
  15778. height: math.unit(5, "feet"),
  15779. weight: math.unit(240, "lb"),
  15780. name: "Summer",
  15781. image: {
  15782. source: "./media/characters/cafat/summer.svg",
  15783. extra: 1223/1126,
  15784. bottom: 205/1428
  15785. }
  15786. },
  15787. winter: {
  15788. height: math.unit(5, "feet"),
  15789. weight: math.unit(240, "lb"),
  15790. name: "Winter",
  15791. image: {
  15792. source: "./media/characters/cafat/winter.svg",
  15793. extra: 1223/1126,
  15794. bottom: 205/1428
  15795. }
  15796. },
  15797. lingerie: {
  15798. height: math.unit(5, "feet"),
  15799. weight: math.unit(240, "lb"),
  15800. name: "Lingerie",
  15801. image: {
  15802. source: "./media/characters/cafat/lingerie.svg",
  15803. extra: 1223/1126,
  15804. bottom: 205/1428
  15805. }
  15806. },
  15807. upright: {
  15808. height: math.unit(6.3, "feet"),
  15809. weight: math.unit(240, "lb"),
  15810. name: "Upright",
  15811. image: {
  15812. source: "./media/characters/cafat/upright.svg",
  15813. bottom: 0.01
  15814. }
  15815. },
  15816. uprightFull: {
  15817. height: math.unit(6.3, "feet"),
  15818. weight: math.unit(240, "lb"),
  15819. name: "Upright (Full)",
  15820. image: {
  15821. source: "./media/characters/cafat/upright-full.svg",
  15822. bottom: 0.01
  15823. }
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Small",
  15829. height: math.unit(5, "feet"),
  15830. default: true
  15831. },
  15832. {
  15833. name: "Large",
  15834. height: math.unit(13, "feet")
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15840. {
  15841. front: {
  15842. height: math.unit(6, "feet"),
  15843. weight: math.unit(150, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/verin-raharra/front.svg",
  15847. extra: 5019 / 4835,
  15848. bottom: 0.023
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(7 + 5 / 12, "feet"),
  15856. default: true
  15857. },
  15858. {
  15859. name: "Upsized",
  15860. height: math.unit(20, "feet")
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(7, "feet"),
  15869. weight: math.unit(230, "lb"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/nakata/front.svg",
  15873. extra: 1.005,
  15874. bottom: 0.01
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(7, "feet"),
  15882. default: true
  15883. },
  15884. {
  15885. name: "Big",
  15886. height: math.unit(14, "feet")
  15887. },
  15888. {
  15889. name: "Macro",
  15890. height: math.unit(400, "feet")
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(4.91, "feet"),
  15899. weight: math.unit(100, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/lily/front.svg",
  15903. extra: 1585 / 1415,
  15904. bottom: 0.02
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(4.91, "feet"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15918. {
  15919. laying: {
  15920. height: math.unit(4 + 4 / 12, "feet"),
  15921. weight: math.unit(600, "lb"),
  15922. name: "Laying",
  15923. image: {
  15924. source: "./media/characters/sheila/laying.svg",
  15925. extra: 1333 / 1265,
  15926. bottom: 0.16
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(4 + 4 / 12, "feet"),
  15934. default: true
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(6, "feet"),
  15943. weight: math.unit(190, "lb"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/sax/front.svg",
  15947. extra: 1187 / 973,
  15948. bottom: 0.042
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Micro",
  15955. height: math.unit(4, "inches"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(6, "feet"),
  15965. weight: math.unit(150, "lb"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/pandora/front.svg",
  15969. extra: 2720 / 2556,
  15970. bottom: 0.015
  15971. }
  15972. },
  15973. back: {
  15974. height: math.unit(6, "feet"),
  15975. weight: math.unit(150, "lb"),
  15976. name: "Back",
  15977. image: {
  15978. source: "./media/characters/pandora/back.svg",
  15979. extra: 2720 / 2556,
  15980. bottom: 0.01
  15981. }
  15982. },
  15983. beans: {
  15984. height: math.unit(6 / 8, "feet"),
  15985. name: "Beans",
  15986. image: {
  15987. source: "./media/characters/pandora/beans.svg"
  15988. }
  15989. },
  15990. collar: {
  15991. height: math.unit(0.31, "feet"),
  15992. name: "Collar",
  15993. image: {
  15994. source: "./media/characters/pandora/collar.svg"
  15995. }
  15996. },
  15997. skirt: {
  15998. height: math.unit(6, "feet"),
  15999. weight: math.unit(150, "lb"),
  16000. name: "Skirt",
  16001. image: {
  16002. source: "./media/characters/pandora/skirt.svg",
  16003. extra: 1622 / 1525,
  16004. bottom: 0.015
  16005. }
  16006. },
  16007. hoodie: {
  16008. height: math.unit(6, "feet"),
  16009. weight: math.unit(150, "lb"),
  16010. name: "Hoodie",
  16011. image: {
  16012. source: "./media/characters/pandora/hoodie.svg",
  16013. extra: 1622 / 1525,
  16014. bottom: 0.015
  16015. }
  16016. },
  16017. casual: {
  16018. height: math.unit(6, "feet"),
  16019. weight: math.unit(150, "lb"),
  16020. name: "Casual",
  16021. image: {
  16022. source: "./media/characters/pandora/casual.svg",
  16023. extra: 1622 / 1525,
  16024. bottom: 0.015
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(6, "feet")
  16032. },
  16033. {
  16034. name: "Big Steppy",
  16035. height: math.unit(1, "km"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Galactic Steppy",
  16040. height: math.unit(2, "gigameters")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16046. {
  16047. side: {
  16048. height: math.unit(10, "feet"),
  16049. weight: math.unit(800, "kg"),
  16050. name: "Side",
  16051. image: {
  16052. source: "./media/characters/venio-darcony/side.svg",
  16053. extra: 1373 / 1003,
  16054. bottom: 0.037
  16055. }
  16056. },
  16057. front: {
  16058. height: math.unit(19, "feet"),
  16059. weight: math.unit(800, "kg"),
  16060. name: "Front",
  16061. image: {
  16062. source: "./media/characters/venio-darcony/front.svg"
  16063. }
  16064. },
  16065. back: {
  16066. height: math.unit(19, "feet"),
  16067. weight: math.unit(800, "kg"),
  16068. name: "Back",
  16069. image: {
  16070. source: "./media/characters/venio-darcony/back.svg"
  16071. }
  16072. },
  16073. sideNsfw: {
  16074. height: math.unit(10, "feet"),
  16075. weight: math.unit(800, "kg"),
  16076. name: "Side (NSFW)",
  16077. image: {
  16078. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16079. extra: 1373 / 1003,
  16080. bottom: 0.037
  16081. }
  16082. },
  16083. frontNsfw: {
  16084. height: math.unit(19, "feet"),
  16085. weight: math.unit(800, "kg"),
  16086. name: "Front (NSFW)",
  16087. image: {
  16088. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16089. }
  16090. },
  16091. backNsfw: {
  16092. height: math.unit(19, "feet"),
  16093. weight: math.unit(800, "kg"),
  16094. name: "Back (NSFW)",
  16095. image: {
  16096. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16097. }
  16098. },
  16099. sideArmored: {
  16100. height: math.unit(10, "feet"),
  16101. weight: math.unit(800, "kg"),
  16102. name: "Side (Armored)",
  16103. image: {
  16104. source: "./media/characters/venio-darcony/side-armored.svg",
  16105. extra: 1373 / 1003,
  16106. bottom: 0.037
  16107. }
  16108. },
  16109. frontArmored: {
  16110. height: math.unit(19, "feet"),
  16111. weight: math.unit(900, "kg"),
  16112. name: "Front (Armored)",
  16113. image: {
  16114. source: "./media/characters/venio-darcony/front-armored.svg"
  16115. }
  16116. },
  16117. backArmored: {
  16118. height: math.unit(19, "feet"),
  16119. weight: math.unit(900, "kg"),
  16120. name: "Back (Armored)",
  16121. image: {
  16122. source: "./media/characters/venio-darcony/back-armored.svg"
  16123. }
  16124. },
  16125. sword: {
  16126. height: math.unit(10, "feet"),
  16127. weight: math.unit(50, "lb"),
  16128. name: "Sword",
  16129. image: {
  16130. source: "./media/characters/venio-darcony/sword.svg"
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Normal",
  16137. height: math.unit(10, "feet")
  16138. },
  16139. {
  16140. name: "Macro",
  16141. height: math.unit(130, "feet"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Macro+",
  16146. height: math.unit(240, "feet")
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(6, "feet"),
  16155. weight: math.unit(150, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/veski/front.svg",
  16159. extra: 1299 / 1225,
  16160. bottom: 0.04
  16161. }
  16162. },
  16163. back: {
  16164. height: math.unit(6, "feet"),
  16165. weight: math.unit(150, "lb"),
  16166. name: "Back",
  16167. image: {
  16168. source: "./media/characters/veski/back.svg",
  16169. extra: 1299 / 1225,
  16170. bottom: 0.008
  16171. }
  16172. },
  16173. maw: {
  16174. height: math.unit(1.5 * 1.21, "feet"),
  16175. name: "Maw",
  16176. image: {
  16177. source: "./media/characters/veski/maw.svg"
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Macro",
  16184. height: math.unit(2, "km"),
  16185. default: true
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16191. {
  16192. front: {
  16193. height: math.unit(5 + 7 / 12, "feet"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/isabelle/front.svg",
  16197. extra: 2130 / 1976,
  16198. bottom: 0.05
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Supermicro",
  16205. height: math.unit(10, "micrometers")
  16206. },
  16207. {
  16208. name: "Micro",
  16209. height: math.unit(1, "inch")
  16210. },
  16211. {
  16212. name: "Tiny",
  16213. height: math.unit(5, "inches")
  16214. },
  16215. {
  16216. name: "Standard",
  16217. height: math.unit(5 + 7 / 12, "inches")
  16218. },
  16219. {
  16220. name: "Macro",
  16221. height: math.unit(80, "meters"),
  16222. default: true
  16223. },
  16224. {
  16225. name: "Megamacro",
  16226. height: math.unit(250, "meters")
  16227. },
  16228. {
  16229. name: "Gigamacro",
  16230. height: math.unit(5, "km")
  16231. },
  16232. {
  16233. name: "Cosmic",
  16234. height: math.unit(2.5e6, "miles")
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16240. {
  16241. front: {
  16242. height: math.unit(6, "feet"),
  16243. weight: math.unit(150, "lb"),
  16244. name: "Front",
  16245. image: {
  16246. source: "./media/characters/hanzo/front.svg",
  16247. extra: 374 / 344,
  16248. bottom: 0.02
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Normal",
  16255. height: math.unit(8, "feet"),
  16256. default: true
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(7, "feet"),
  16265. weight: math.unit(130, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/anna/front.svg",
  16269. extra: 169 / 145,
  16270. bottom: 0.06
  16271. }
  16272. },
  16273. full: {
  16274. height: math.unit(4.96, "feet"),
  16275. weight: math.unit(220, "lb"),
  16276. name: "Full",
  16277. image: {
  16278. source: "./media/characters/anna/full.svg",
  16279. extra: 138 / 114,
  16280. bottom: 0.15
  16281. }
  16282. },
  16283. tongue: {
  16284. height: math.unit(2.53, "feet"),
  16285. name: "Tongue",
  16286. image: {
  16287. source: "./media/characters/anna/tongue.svg"
  16288. }
  16289. },
  16290. },
  16291. [
  16292. {
  16293. name: "Normal",
  16294. height: math.unit(7, "feet"),
  16295. default: true
  16296. },
  16297. ]
  16298. ))
  16299. characterMakers.push(() => makeCharacter(
  16300. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16301. {
  16302. front: {
  16303. height: math.unit(7, "feet"),
  16304. weight: math.unit(150, "lb"),
  16305. name: "Front",
  16306. image: {
  16307. source: "./media/characters/ian-corvid/front.svg",
  16308. extra: 150 / 142,
  16309. bottom: 0.02
  16310. }
  16311. },
  16312. back: {
  16313. height: math.unit(7, "feet"),
  16314. weight: math.unit(150, "lb"),
  16315. name: "Back",
  16316. image: {
  16317. source: "./media/characters/ian-corvid/back.svg",
  16318. extra: 150 / 143,
  16319. bottom: 0.01
  16320. }
  16321. },
  16322. stomping: {
  16323. height: math.unit(7, "feet"),
  16324. weight: math.unit(150, "lb"),
  16325. name: "Stomping",
  16326. image: {
  16327. source: "./media/characters/ian-corvid/stomping.svg",
  16328. extra: 76 / 72
  16329. }
  16330. },
  16331. sitting: {
  16332. height: math.unit(7 / 1.8, "feet"),
  16333. weight: math.unit(150, "lb"),
  16334. name: "Sitting",
  16335. image: {
  16336. source: "./media/characters/ian-corvid/sitting.svg",
  16337. extra: 1400 / 1269,
  16338. bottom: 0.15
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Tiny Microw",
  16345. height: math.unit(1, "inch")
  16346. },
  16347. {
  16348. name: "Microw",
  16349. height: math.unit(6, "inches")
  16350. },
  16351. {
  16352. name: "Crow",
  16353. height: math.unit(7 + 1 / 12, "feet"),
  16354. default: true
  16355. },
  16356. {
  16357. name: "Macrow",
  16358. height: math.unit(176, "feet")
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16364. {
  16365. front: {
  16366. height: math.unit(5 + 7 / 12, "feet"),
  16367. weight: math.unit(147, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/natalie-kellon/front.svg",
  16371. extra: 1214 / 1141,
  16372. bottom: 0.02
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Micro",
  16379. height: math.unit(1 / 16, "inch")
  16380. },
  16381. {
  16382. name: "Tiny",
  16383. height: math.unit(4, "inches")
  16384. },
  16385. {
  16386. name: "Normal",
  16387. height: math.unit(5 + 7 / 12, "feet"),
  16388. default: true
  16389. },
  16390. {
  16391. name: "Amazon",
  16392. height: math.unit(12, "feet")
  16393. },
  16394. {
  16395. name: "Giantess",
  16396. height: math.unit(160, "meters")
  16397. },
  16398. {
  16399. name: "Titaness",
  16400. height: math.unit(800, "meters")
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16406. {
  16407. front: {
  16408. height: math.unit(6, "feet"),
  16409. weight: math.unit(150, "lb"),
  16410. name: "Front",
  16411. image: {
  16412. source: "./media/characters/alluria/front.svg",
  16413. extra: 806 / 738,
  16414. bottom: 0.01
  16415. }
  16416. },
  16417. side: {
  16418. height: math.unit(6, "feet"),
  16419. weight: math.unit(150, "lb"),
  16420. name: "Side",
  16421. image: {
  16422. source: "./media/characters/alluria/side.svg",
  16423. extra: 800 / 750,
  16424. }
  16425. },
  16426. back: {
  16427. height: math.unit(6, "feet"),
  16428. weight: math.unit(150, "lb"),
  16429. name: "Back",
  16430. image: {
  16431. source: "./media/characters/alluria/back.svg",
  16432. extra: 806 / 738,
  16433. }
  16434. },
  16435. frontMaid: {
  16436. height: math.unit(6, "feet"),
  16437. weight: math.unit(150, "lb"),
  16438. name: "Front (Maid)",
  16439. image: {
  16440. source: "./media/characters/alluria/front-maid.svg",
  16441. extra: 806 / 738,
  16442. bottom: 0.01
  16443. }
  16444. },
  16445. sideMaid: {
  16446. height: math.unit(6, "feet"),
  16447. weight: math.unit(150, "lb"),
  16448. name: "Side (Maid)",
  16449. image: {
  16450. source: "./media/characters/alluria/side-maid.svg",
  16451. extra: 800 / 750,
  16452. bottom: 0.005
  16453. }
  16454. },
  16455. backMaid: {
  16456. height: math.unit(6, "feet"),
  16457. weight: math.unit(150, "lb"),
  16458. name: "Back (Maid)",
  16459. image: {
  16460. source: "./media/characters/alluria/back-maid.svg",
  16461. extra: 806 / 738,
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Micro",
  16468. height: math.unit(6, "inches"),
  16469. default: true
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16475. {
  16476. front: {
  16477. height: math.unit(6, "feet"),
  16478. weight: math.unit(150, "lb"),
  16479. name: "Front",
  16480. image: {
  16481. source: "./media/characters/kyle/front.svg",
  16482. extra: 1069 / 962,
  16483. bottom: 77.228 / 1727.45
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Macro",
  16490. height: math.unit(150, "feet"),
  16491. default: true
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16497. {
  16498. front: {
  16499. height: math.unit(6, "feet"),
  16500. weight: math.unit(300, "lb"),
  16501. name: "Front",
  16502. image: {
  16503. source: "./media/characters/duncan/front.svg",
  16504. extra: 1650 / 1482,
  16505. bottom: 0.05
  16506. }
  16507. },
  16508. },
  16509. [
  16510. {
  16511. name: "Macro",
  16512. height: math.unit(100, "feet"),
  16513. default: true
  16514. },
  16515. ]
  16516. ))
  16517. characterMakers.push(() => makeCharacter(
  16518. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16519. {
  16520. front: {
  16521. height: math.unit(5 + 4 / 12, "feet"),
  16522. weight: math.unit(220, "lb"),
  16523. name: "Front",
  16524. image: {
  16525. source: "./media/characters/memory/front.svg",
  16526. extra: 3641 / 3545,
  16527. bottom: 0.03
  16528. }
  16529. },
  16530. back: {
  16531. height: math.unit(5 + 4 / 12, "feet"),
  16532. weight: math.unit(220, "lb"),
  16533. name: "Back",
  16534. image: {
  16535. source: "./media/characters/memory/back.svg",
  16536. extra: 3641 / 3545,
  16537. bottom: 0.025
  16538. }
  16539. },
  16540. frontSkirt: {
  16541. height: math.unit(5 + 4 / 12, "feet"),
  16542. weight: math.unit(220, "lb"),
  16543. name: "Front (Skirt)",
  16544. image: {
  16545. source: "./media/characters/memory/front-skirt.svg",
  16546. extra: 3641 / 3545,
  16547. bottom: 0.03
  16548. }
  16549. },
  16550. frontDress: {
  16551. height: math.unit(5 + 4 / 12, "feet"),
  16552. weight: math.unit(220, "lb"),
  16553. name: "Front (Dress)",
  16554. image: {
  16555. source: "./media/characters/memory/front-dress.svg",
  16556. extra: 3641 / 3545,
  16557. bottom: 0.03
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Micro",
  16564. height: math.unit(6, "inches"),
  16565. default: true
  16566. },
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(5 + 4 / 12, "feet")
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16575. {
  16576. front: {
  16577. height: math.unit(4 + 11 / 12, "feet"),
  16578. weight: math.unit(100, "lb"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/luno/front.svg",
  16582. extra: 1535 / 1487,
  16583. bottom: 0.03
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Micro",
  16590. height: math.unit(3, "inches")
  16591. },
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(4 + 11 / 12, "feet"),
  16595. default: true
  16596. },
  16597. {
  16598. name: "Macro",
  16599. height: math.unit(300, "feet")
  16600. },
  16601. {
  16602. name: "Megamacro",
  16603. height: math.unit(700, "miles")
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16609. {
  16610. front: {
  16611. height: math.unit(6 + 2 / 12, "feet"),
  16612. weight: math.unit(170, "lb"),
  16613. name: "Front",
  16614. image: {
  16615. source: "./media/characters/jamesy/front.svg",
  16616. extra: 440 / 382,
  16617. bottom: 0.005
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Micro",
  16624. height: math.unit(3, "inches")
  16625. },
  16626. {
  16627. name: "Normal",
  16628. height: math.unit(6 + 2 / 12, "feet"),
  16629. default: true
  16630. },
  16631. {
  16632. name: "Macro",
  16633. height: math.unit(300, "feet")
  16634. },
  16635. {
  16636. name: "Megamacro",
  16637. height: math.unit(700, "miles")
  16638. },
  16639. ]
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16643. {
  16644. front: {
  16645. height: math.unit(6, "feet"),
  16646. weight: math.unit(160, "lb"),
  16647. name: "Front",
  16648. image: {
  16649. source: "./media/characters/mark/front.svg",
  16650. extra: 3300 / 3100,
  16651. bottom: 136.42 / 3440.47
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Macro",
  16658. height: math.unit(120, "meters")
  16659. },
  16660. {
  16661. name: "Bigger Macro",
  16662. height: math.unit(350, "meters")
  16663. },
  16664. {
  16665. name: "Megamacro",
  16666. height: math.unit(8, "km"),
  16667. default: true
  16668. },
  16669. {
  16670. name: "Continental",
  16671. height: math.unit(4550, "km")
  16672. },
  16673. {
  16674. name: "Planetary",
  16675. height: math.unit(65000, "km")
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(6, "feet"),
  16684. weight: math.unit(400, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/mac/front.svg",
  16688. extra: 1048 / 987.7,
  16689. bottom: 60 / 1107.6,
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Macro",
  16696. height: math.unit(500, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(5 + 2 / 12, "feet"),
  16706. weight: math.unit(190, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/bari/front.svg",
  16710. extra: 3156 / 2880,
  16711. bottom: 0.03
  16712. }
  16713. },
  16714. back: {
  16715. height: math.unit(5 + 2 / 12, "feet"),
  16716. weight: math.unit(190, "lb"),
  16717. name: "Back",
  16718. image: {
  16719. source: "./media/characters/bari/back.svg",
  16720. extra: 3260 / 2834,
  16721. bottom: 0.025
  16722. }
  16723. },
  16724. frontPlush: {
  16725. height: math.unit(5 + 2 / 12, "feet"),
  16726. weight: math.unit(190, "lb"),
  16727. name: "Front (Plush)",
  16728. image: {
  16729. source: "./media/characters/bari/front-plush.svg",
  16730. extra: 1112 / 1061,
  16731. bottom: 0.002
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Micro",
  16738. height: math.unit(3, "inches")
  16739. },
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(5 + 2 / 12, "feet"),
  16743. default: true
  16744. },
  16745. {
  16746. name: "Macro",
  16747. height: math.unit(20, "feet")
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(6 + 1 / 12, "feet"),
  16756. weight: math.unit(275, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/hunter-misha-raven/front.svg"
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Mortal",
  16766. height: math.unit(6 + 1 / 12, "feet")
  16767. },
  16768. {
  16769. name: "Divine",
  16770. height: math.unit(1.12134e34, "parsecs"),
  16771. default: true
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(6 + 3 / 12, "feet"),
  16780. weight: math.unit(220, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/max-calore/front.svg",
  16784. extra: 1700 / 1648,
  16785. bottom: 0.01
  16786. }
  16787. },
  16788. back: {
  16789. height: math.unit(6 + 3 / 12, "feet"),
  16790. weight: math.unit(220, "lb"),
  16791. name: "Back",
  16792. image: {
  16793. source: "./media/characters/max-calore/back.svg",
  16794. extra: 1700 / 1648,
  16795. bottom: 0.01
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(6 + 3 / 12, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16809. {
  16810. side: {
  16811. height: math.unit(2 + 8 / 12, "feet"),
  16812. weight: math.unit(99, "lb"),
  16813. name: "Side",
  16814. image: {
  16815. source: "./media/characters/aspen/side.svg",
  16816. extra: 152 / 138,
  16817. bottom: 0.032
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(2 + 8 / 12, "feet"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16831. {
  16832. side: {
  16833. height: math.unit(3 + 2 / 12, "feet"),
  16834. weight: math.unit(224, "lb"),
  16835. name: "Side",
  16836. image: {
  16837. source: "./media/characters/sheila-feral-wolf/side.svg",
  16838. extra: 179 / 166,
  16839. bottom: 0.03
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(3 + 2 / 12, "feet"),
  16847. default: true
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16853. {
  16854. side: {
  16855. height: math.unit(1 + 9 / 12, "feet"),
  16856. weight: math.unit(38, "lb"),
  16857. name: "Side",
  16858. image: {
  16859. source: "./media/characters/michelle/side.svg",
  16860. extra: 147 / 136.7,
  16861. bottom: 0.03
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(1 + 9 / 12, "feet"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(1 + 1 / 12, "feet"),
  16878. weight: math.unit(18, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/nino/front.svg"
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(1 + 1 / 12, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(1, "feet"),
  16898. weight: math.unit(16, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/viola/front.svg"
  16902. }
  16903. },
  16904. },
  16905. [
  16906. {
  16907. name: "Normal",
  16908. height: math.unit(1, "feet"),
  16909. default: true
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16915. {
  16916. front: {
  16917. height: math.unit(6 + 5 / 12, "feet"),
  16918. weight: math.unit(580, "lb"),
  16919. name: "Front",
  16920. image: {
  16921. source: "./media/characters/atlas/front.svg",
  16922. extra: 298.5 / 290,
  16923. bottom: 0.015
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(6 + 5 / 12, "feet"),
  16931. default: true
  16932. },
  16933. ]
  16934. ))
  16935. characterMakers.push(() => makeCharacter(
  16936. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16937. {
  16938. side: {
  16939. height: math.unit(1 + 10 / 12, "feet"),
  16940. weight: math.unit(25, "lb"),
  16941. name: "Side",
  16942. image: {
  16943. source: "./media/characters/davy/side.svg",
  16944. extra: 200 / 170,
  16945. bottom: 0.01
  16946. }
  16947. },
  16948. },
  16949. [
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(1 + 10 / 12, "feet"),
  16953. default: true
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16959. {
  16960. side: {
  16961. height: math.unit(4 + 8 / 12, "feet"),
  16962. weight: math.unit(166, "lb"),
  16963. name: "Side",
  16964. image: {
  16965. source: "./media/characters/fiona/side.svg",
  16966. extra: 232 / 220,
  16967. bottom: 0.03
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Normal",
  16974. height: math.unit(4 + 8 / 12, "feet"),
  16975. default: true
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16981. {
  16982. front: {
  16983. height: math.unit(2, "feet"),
  16984. weight: math.unit(62, "lb"),
  16985. name: "Front",
  16986. image: {
  16987. source: "./media/characters/lyla/front.svg",
  16988. bottom: 0.1
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(2, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17002. {
  17003. side: {
  17004. height: math.unit(1.8, "feet"),
  17005. weight: math.unit(44, "lb"),
  17006. name: "Side",
  17007. image: {
  17008. source: "./media/characters/perseus/side.svg",
  17009. bottom: 0.21
  17010. }
  17011. },
  17012. },
  17013. [
  17014. {
  17015. name: "Normal",
  17016. height: math.unit(1.8, "feet"),
  17017. default: true
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17023. {
  17024. side: {
  17025. height: math.unit(4 + 2 / 12, "feet"),
  17026. weight: math.unit(20, "lb"),
  17027. name: "Side",
  17028. image: {
  17029. source: "./media/characters/remus/side.svg"
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(4 + 2 / 12, "feet"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17043. {
  17044. front: {
  17045. height: math.unit(4 + 11 / 12, "feet"),
  17046. weight: math.unit(114, "lb"),
  17047. name: "Front",
  17048. image: {
  17049. source: "./media/characters/raf/front.svg",
  17050. bottom: 20.5 / 1863
  17051. }
  17052. },
  17053. side: {
  17054. height: math.unit(4 + 11 / 12, "feet"),
  17055. weight: math.unit(114, "lb"),
  17056. name: "Side",
  17057. image: {
  17058. source: "./media/characters/raf/side.svg",
  17059. bottom: 22 / 1822
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Micro",
  17066. height: math.unit(2, "inches")
  17067. },
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(4 + 11 / 12, "feet"),
  17071. default: true
  17072. },
  17073. {
  17074. name: "Macro",
  17075. height: math.unit(70, "feet")
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(1.5, "meters"),
  17084. weight: math.unit(68, "kg"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/liam-einarr/front.svg",
  17088. extra: 2822 / 2666
  17089. }
  17090. },
  17091. back: {
  17092. height: math.unit(1.5, "meters"),
  17093. weight: math.unit(68, "kg"),
  17094. name: "Back",
  17095. image: {
  17096. source: "./media/characters/liam-einarr/back.svg",
  17097. extra: 2822 / 2666,
  17098. bottom: 0.015
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(1.5, "meters"),
  17106. default: true
  17107. },
  17108. {
  17109. name: "Macro",
  17110. height: math.unit(150, "meters")
  17111. },
  17112. {
  17113. name: "Megamacro",
  17114. height: math.unit(35, "km")
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17120. {
  17121. front: {
  17122. height: math.unit(6, "feet"),
  17123. weight: math.unit(75, "kg"),
  17124. name: "Front",
  17125. image: {
  17126. source: "./media/characters/linda/front.svg",
  17127. extra: 930 / 874,
  17128. bottom: 0.004
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(6, "feet"),
  17136. default: true
  17137. },
  17138. ]
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17142. {
  17143. front: {
  17144. height: math.unit(6 + 8 / 12, "feet"),
  17145. weight: math.unit(220, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/caylex/front.svg",
  17149. extra: 821 / 772,
  17150. bottom: 0.07
  17151. }
  17152. },
  17153. back: {
  17154. height: math.unit(6 + 8 / 12, "feet"),
  17155. weight: math.unit(220, "lb"),
  17156. name: "Back",
  17157. image: {
  17158. source: "./media/characters/caylex/back.svg",
  17159. extra: 821 / 772,
  17160. bottom: 0.022
  17161. }
  17162. },
  17163. hand: {
  17164. height: math.unit(1.25, "feet"),
  17165. name: "Hand",
  17166. image: {
  17167. source: "./media/characters/caylex/hand.svg"
  17168. }
  17169. },
  17170. foot: {
  17171. height: math.unit(1.6, "feet"),
  17172. name: "Foot",
  17173. image: {
  17174. source: "./media/characters/caylex/foot.svg"
  17175. }
  17176. },
  17177. armored: {
  17178. height: math.unit(6 + 8 / 12, "feet"),
  17179. weight: math.unit(250, "lb"),
  17180. name: "Armored",
  17181. image: {
  17182. source: "./media/characters/caylex/armored.svg",
  17183. extra: 1420 / 1310,
  17184. bottom: 0.045
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(6 + 8 / 12, "feet"),
  17192. default: true
  17193. },
  17194. {
  17195. name: "Normal+",
  17196. height: math.unit(12, "feet")
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17202. {
  17203. front: {
  17204. height: math.unit(7 + 6 / 12, "feet"),
  17205. weight: math.unit(288, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/alana/front.svg",
  17209. extra: 679 / 653,
  17210. bottom: 22.5 / 701
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(7 + 6 / 12, "feet")
  17218. },
  17219. {
  17220. name: "Large",
  17221. height: math.unit(50, "feet")
  17222. },
  17223. {
  17224. name: "Macro",
  17225. height: math.unit(100, "feet"),
  17226. default: true
  17227. },
  17228. {
  17229. name: "Macro+",
  17230. height: math.unit(200, "feet")
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17236. {
  17237. front: {
  17238. height: math.unit(6 + 1 / 12, "feet"),
  17239. weight: math.unit(210, "lb"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/hasani/front.svg",
  17243. extra: 244 / 232,
  17244. bottom: 0.01
  17245. }
  17246. },
  17247. back: {
  17248. height: math.unit(6 + 1 / 12, "feet"),
  17249. weight: math.unit(210, "lb"),
  17250. name: "Back",
  17251. image: {
  17252. source: "./media/characters/hasani/back.svg",
  17253. extra: 244 / 232,
  17254. bottom: 0.01
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(6 + 1 / 12, "feet")
  17262. },
  17263. {
  17264. name: "Macro",
  17265. height: math.unit(175, "feet"),
  17266. default: true
  17267. },
  17268. ]
  17269. ))
  17270. characterMakers.push(() => makeCharacter(
  17271. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17272. {
  17273. front: {
  17274. height: math.unit(1.82, "meters"),
  17275. weight: math.unit(140, "lb"),
  17276. name: "Front",
  17277. image: {
  17278. source: "./media/characters/nita/front.svg",
  17279. extra: 2473 / 2363,
  17280. bottom: 0.01
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Normal",
  17287. height: math.unit(1.82, "m")
  17288. },
  17289. {
  17290. name: "Macro",
  17291. height: math.unit(300, "m")
  17292. },
  17293. {
  17294. name: "Mistake Canon",
  17295. height: math.unit(0.5, "miles"),
  17296. default: true
  17297. },
  17298. {
  17299. name: "Big Mistake",
  17300. height: math.unit(13, "miles")
  17301. },
  17302. {
  17303. name: "Playing God",
  17304. height: math.unit(2450, "miles")
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17310. {
  17311. front: {
  17312. height: math.unit(4, "feet"),
  17313. weight: math.unit(120, "lb"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/shiriko/front.svg",
  17317. extra: 970/934,
  17318. bottom: 5/975
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(4, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17332. {
  17333. front: {
  17334. height: math.unit(6, "feet"),
  17335. name: "front",
  17336. image: {
  17337. source: "./media/characters/deja/front.svg",
  17338. extra: 926 / 840,
  17339. bottom: 0.07
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Planck Length",
  17346. height: math.unit(1.6e-35, "meters")
  17347. },
  17348. {
  17349. name: "Normal",
  17350. height: math.unit(30.48, "meters"),
  17351. default: true
  17352. },
  17353. {
  17354. name: "Universal",
  17355. height: math.unit(8.8e26, "meters")
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17361. {
  17362. side: {
  17363. height: math.unit(8, "feet"),
  17364. weight: math.unit(6300, "lb"),
  17365. name: "Side",
  17366. image: {
  17367. source: "./media/characters/anima/side.svg",
  17368. bottom: 0.035
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(8, "feet"),
  17376. default: true
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17382. {
  17383. front: {
  17384. height: math.unit(8, "feet"),
  17385. weight: math.unit(350, "lb"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/bianca/front.svg",
  17389. extra: 234 / 225,
  17390. bottom: 0.03
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Normal",
  17397. height: math.unit(8, "feet"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17404. {
  17405. front: {
  17406. height: math.unit(6, "feet"),
  17407. weight: math.unit(150, "lb"),
  17408. name: "Front",
  17409. image: {
  17410. source: "./media/characters/adinia/front.svg",
  17411. extra: 1845 / 1672,
  17412. bottom: 0.02
  17413. }
  17414. },
  17415. back: {
  17416. height: math.unit(6, "feet"),
  17417. weight: math.unit(150, "lb"),
  17418. name: "Back",
  17419. image: {
  17420. source: "./media/characters/adinia/back.svg",
  17421. extra: 1845 / 1672,
  17422. bottom: 0.002
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Normal",
  17429. height: math.unit(11 + 5 / 12, "feet"),
  17430. default: true
  17431. },
  17432. ]
  17433. ))
  17434. characterMakers.push(() => makeCharacter(
  17435. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17436. {
  17437. front: {
  17438. height: math.unit(3, "meters"),
  17439. weight: math.unit(200, "kg"),
  17440. name: "Front",
  17441. image: {
  17442. source: "./media/characters/lykasa/front.svg",
  17443. extra: 1076 / 976,
  17444. bottom: 0.06
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(3, "meters")
  17452. },
  17453. {
  17454. name: "Kaiju",
  17455. height: math.unit(120, "meters"),
  17456. default: true
  17457. },
  17458. {
  17459. name: "Mega Kaiju",
  17460. height: math.unit(240, "km")
  17461. },
  17462. {
  17463. name: "Giga Kaiju",
  17464. height: math.unit(400, "megameters")
  17465. },
  17466. {
  17467. name: "Tera Kaiju",
  17468. height: math.unit(800, "gigameters")
  17469. },
  17470. {
  17471. name: "Kaiju Dragon Goddess",
  17472. height: math.unit(26, "zettaparsecs")
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17478. {
  17479. side: {
  17480. height: math.unit(283 / 124 * 6, "feet"),
  17481. weight: math.unit(35000, "lb"),
  17482. name: "Side",
  17483. image: {
  17484. source: "./media/characters/malfaren/side.svg",
  17485. extra: 2500 / 1010,
  17486. bottom: 0.01
  17487. }
  17488. },
  17489. front: {
  17490. height: math.unit(22.36, "feet"),
  17491. weight: math.unit(35000, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/malfaren/front.svg",
  17495. extra: 1631 / 1476,
  17496. bottom: 0.01
  17497. }
  17498. },
  17499. maw: {
  17500. height: math.unit(6.9, "feet"),
  17501. name: "Maw",
  17502. image: {
  17503. source: "./media/characters/malfaren/maw.svg"
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Big",
  17510. height: math.unit(283 / 162 * 6, "feet"),
  17511. },
  17512. {
  17513. name: "Bigger",
  17514. height: math.unit(283 / 124 * 6, "feet")
  17515. },
  17516. {
  17517. name: "Massive",
  17518. height: math.unit(283 / 92 * 6, "feet"),
  17519. default: true
  17520. },
  17521. {
  17522. name: "👀💦",
  17523. height: math.unit(283 / 73 * 6, "feet"),
  17524. },
  17525. ]
  17526. ))
  17527. characterMakers.push(() => makeCharacter(
  17528. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17529. {
  17530. front: {
  17531. height: math.unit(1.7, "m"),
  17532. weight: math.unit(70, "kg"),
  17533. name: "Front",
  17534. image: {
  17535. source: "./media/characters/kernel/front.svg",
  17536. extra: 222 / 210,
  17537. bottom: 0.007
  17538. }
  17539. },
  17540. },
  17541. [
  17542. {
  17543. name: "Nano",
  17544. height: math.unit(17, "micrometers")
  17545. },
  17546. {
  17547. name: "Micro",
  17548. height: math.unit(1.7, "mm")
  17549. },
  17550. {
  17551. name: "Small",
  17552. height: math.unit(1.7, "cm")
  17553. },
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(1.7, "m"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(1.75, "meters"),
  17566. weight: math.unit(65, "kg"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/jayne-folest/front.svg",
  17570. extra: 2115 / 2007,
  17571. bottom: 0.02
  17572. }
  17573. },
  17574. back: {
  17575. height: math.unit(1.75, "meters"),
  17576. weight: math.unit(65, "kg"),
  17577. name: "Back",
  17578. image: {
  17579. source: "./media/characters/jayne-folest/back.svg",
  17580. extra: 2115 / 2007,
  17581. bottom: 0.005
  17582. }
  17583. },
  17584. frontClothed: {
  17585. height: math.unit(1.75, "meters"),
  17586. weight: math.unit(65, "kg"),
  17587. name: "Front (Clothed)",
  17588. image: {
  17589. source: "./media/characters/jayne-folest/front-clothed.svg",
  17590. extra: 2115 / 2007,
  17591. bottom: 0.035
  17592. }
  17593. },
  17594. hand: {
  17595. height: math.unit(1 / 1.260, "feet"),
  17596. name: "Hand",
  17597. image: {
  17598. source: "./media/characters/jayne-folest/hand.svg"
  17599. }
  17600. },
  17601. foot: {
  17602. height: math.unit(1 / 0.918, "feet"),
  17603. name: "Foot",
  17604. image: {
  17605. source: "./media/characters/jayne-folest/foot.svg"
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Micro",
  17612. height: math.unit(4, "cm")
  17613. },
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(1.75, "meters")
  17617. },
  17618. {
  17619. name: "Macro",
  17620. height: math.unit(47.5, "meters"),
  17621. default: true
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(180, "cm"),
  17630. weight: math.unit(70, "kg"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/algier/front.svg",
  17634. extra: 596 / 572,
  17635. bottom: 0.04
  17636. }
  17637. },
  17638. back: {
  17639. height: math.unit(180, "cm"),
  17640. weight: math.unit(70, "kg"),
  17641. name: "Back",
  17642. image: {
  17643. source: "./media/characters/algier/back.svg",
  17644. extra: 596 / 572,
  17645. bottom: 0.025
  17646. }
  17647. },
  17648. frontdressed: {
  17649. height: math.unit(180, "cm"),
  17650. weight: math.unit(150, "kg"),
  17651. name: "Front-dressed",
  17652. image: {
  17653. source: "./media/characters/algier/front-dressed.svg",
  17654. extra: 596 / 572,
  17655. bottom: 0.038
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Micro",
  17662. height: math.unit(5, "cm")
  17663. },
  17664. {
  17665. name: "Normal",
  17666. height: math.unit(180, "cm"),
  17667. default: true
  17668. },
  17669. {
  17670. name: "Macro",
  17671. height: math.unit(64, "m")
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17677. {
  17678. upright: {
  17679. height: math.unit(7, "feet"),
  17680. weight: math.unit(300, "lb"),
  17681. name: "Upright",
  17682. image: {
  17683. source: "./media/characters/pretzel/upright.svg",
  17684. extra: 534 / 522,
  17685. bottom: 0.065
  17686. }
  17687. },
  17688. sprawling: {
  17689. height: math.unit(3.75, "feet"),
  17690. weight: math.unit(300, "lb"),
  17691. name: "Sprawling",
  17692. image: {
  17693. source: "./media/characters/pretzel/sprawling.svg",
  17694. extra: 314 / 281,
  17695. bottom: 0.1
  17696. }
  17697. },
  17698. tongue: {
  17699. height: math.unit(2, "feet"),
  17700. name: "Tongue",
  17701. image: {
  17702. source: "./media/characters/pretzel/tongue.svg"
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Normal",
  17709. height: math.unit(7, "feet"),
  17710. default: true
  17711. },
  17712. {
  17713. name: "Oversized",
  17714. height: math.unit(15, "feet")
  17715. },
  17716. {
  17717. name: "Huge",
  17718. height: math.unit(30, "feet")
  17719. },
  17720. {
  17721. name: "Macro",
  17722. height: math.unit(250, "feet")
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17728. {
  17729. sideFront: {
  17730. height: math.unit(5 + 2 / 12, "feet"),
  17731. weight: math.unit(120, "lb"),
  17732. name: "Front Side",
  17733. image: {
  17734. source: "./media/characters/roxi/side-front.svg",
  17735. extra: 2924 / 2717,
  17736. bottom: 0.08
  17737. }
  17738. },
  17739. sideBack: {
  17740. height: math.unit(5 + 2 / 12, "feet"),
  17741. weight: math.unit(120, "lb"),
  17742. name: "Back Side",
  17743. image: {
  17744. source: "./media/characters/roxi/side-back.svg",
  17745. extra: 2904 / 2693,
  17746. bottom: 0.06
  17747. }
  17748. },
  17749. front: {
  17750. height: math.unit(5 + 2 / 12, "feet"),
  17751. weight: math.unit(120, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/roxi/front.svg",
  17755. extra: 2028 / 1907,
  17756. bottom: 0.01
  17757. }
  17758. },
  17759. frontAlt: {
  17760. height: math.unit(5 + 2 / 12, "feet"),
  17761. weight: math.unit(120, "lb"),
  17762. name: "Front (Alt)",
  17763. image: {
  17764. source: "./media/characters/roxi/front-alt.svg",
  17765. extra: 1828 / 1798,
  17766. bottom: 0.01
  17767. }
  17768. },
  17769. sitting: {
  17770. height: math.unit(2.8, "feet"),
  17771. weight: math.unit(120, "lb"),
  17772. name: "Sitting",
  17773. image: {
  17774. source: "./media/characters/roxi/sitting.svg",
  17775. extra: 2660 / 2462,
  17776. bottom: 0.1
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(5 + 2 / 12, "feet"),
  17784. default: true
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17790. {
  17791. side: {
  17792. height: math.unit(55, "feet"),
  17793. weight: math.unit(153, "tons"),
  17794. name: "Side",
  17795. image: {
  17796. source: "./media/characters/shadow/side.svg",
  17797. extra: 701 / 628,
  17798. bottom: 0.02
  17799. }
  17800. },
  17801. flying: {
  17802. height: math.unit(145, "feet"),
  17803. weight: math.unit(153, "tons"),
  17804. name: "Flying",
  17805. image: {
  17806. source: "./media/characters/shadow/flying.svg"
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(55, "feet"),
  17814. default: true
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17820. {
  17821. front: {
  17822. height: math.unit(6, "feet"),
  17823. weight: math.unit(200, "lb"),
  17824. name: "Front",
  17825. image: {
  17826. source: "./media/characters/marcie/front.svg",
  17827. extra: 960 / 876,
  17828. bottom: 58 / 1017.87
  17829. }
  17830. },
  17831. },
  17832. [
  17833. {
  17834. name: "Macro",
  17835. height: math.unit(1, "mile"),
  17836. default: true
  17837. },
  17838. ]
  17839. ))
  17840. characterMakers.push(() => makeCharacter(
  17841. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17842. {
  17843. front: {
  17844. height: math.unit(7, "feet"),
  17845. weight: math.unit(200, "lb"),
  17846. name: "Front",
  17847. image: {
  17848. source: "./media/characters/kachina/front.svg",
  17849. extra: 1290.68 / 1119,
  17850. bottom: 36.5 / 1327.18
  17851. }
  17852. },
  17853. },
  17854. [
  17855. {
  17856. name: "Normal",
  17857. height: math.unit(7, "feet"),
  17858. default: true
  17859. },
  17860. ]
  17861. ))
  17862. characterMakers.push(() => makeCharacter(
  17863. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17864. {
  17865. looking: {
  17866. height: math.unit(2, "meters"),
  17867. weight: math.unit(300, "kg"),
  17868. name: "Looking",
  17869. image: {
  17870. source: "./media/characters/kash/looking.svg",
  17871. extra: 474 / 344,
  17872. bottom: 0.03
  17873. }
  17874. },
  17875. side: {
  17876. height: math.unit(2, "meters"),
  17877. weight: math.unit(300, "kg"),
  17878. name: "Side",
  17879. image: {
  17880. source: "./media/characters/kash/side.svg",
  17881. extra: 302 / 251,
  17882. bottom: 0.03
  17883. }
  17884. },
  17885. front: {
  17886. height: math.unit(2, "meters"),
  17887. weight: math.unit(300, "kg"),
  17888. name: "Front",
  17889. image: {
  17890. source: "./media/characters/kash/front.svg",
  17891. extra: 495 / 360,
  17892. bottom: 0.015
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(2, "meters"),
  17900. default: true
  17901. },
  17902. {
  17903. name: "Big",
  17904. height: math.unit(3, "meters")
  17905. },
  17906. {
  17907. name: "Large",
  17908. height: math.unit(5, "meters")
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17914. {
  17915. feeding: {
  17916. height: math.unit(6.7, "feet"),
  17917. weight: math.unit(350, "lb"),
  17918. name: "Feeding",
  17919. image: {
  17920. source: "./media/characters/lalim/feeding.svg",
  17921. }
  17922. },
  17923. },
  17924. [
  17925. {
  17926. name: "Normal",
  17927. height: math.unit(6.7, "feet"),
  17928. default: true
  17929. },
  17930. ]
  17931. ))
  17932. characterMakers.push(() => makeCharacter(
  17933. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17934. {
  17935. front: {
  17936. height: math.unit(9.5, "feet"),
  17937. weight: math.unit(600, "lb"),
  17938. name: "Front",
  17939. image: {
  17940. source: "./media/characters/de'vout/front.svg",
  17941. extra: 1443 / 1328,
  17942. bottom: 0.025
  17943. }
  17944. },
  17945. back: {
  17946. height: math.unit(9.5, "feet"),
  17947. weight: math.unit(600, "lb"),
  17948. name: "Back",
  17949. image: {
  17950. source: "./media/characters/de'vout/back.svg",
  17951. extra: 1443 / 1328
  17952. }
  17953. },
  17954. frontDressed: {
  17955. height: math.unit(9.5, "feet"),
  17956. weight: math.unit(600, "lb"),
  17957. name: "Front (Dressed",
  17958. image: {
  17959. source: "./media/characters/de'vout/front-dressed.svg",
  17960. extra: 1443 / 1328,
  17961. bottom: 0.025
  17962. }
  17963. },
  17964. backDressed: {
  17965. height: math.unit(9.5, "feet"),
  17966. weight: math.unit(600, "lb"),
  17967. name: "Back (Dressed",
  17968. image: {
  17969. source: "./media/characters/de'vout/back-dressed.svg",
  17970. extra: 1443 / 1328
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Normal",
  17977. height: math.unit(9.5, "feet"),
  17978. default: true
  17979. },
  17980. ]
  17981. ))
  17982. characterMakers.push(() => makeCharacter(
  17983. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17984. {
  17985. front: {
  17986. height: math.unit(8, "feet"),
  17987. weight: math.unit(225, "lb"),
  17988. name: "Front",
  17989. image: {
  17990. source: "./media/characters/talana/front.svg",
  17991. extra: 1410 / 1300,
  17992. bottom: 0.015
  17993. }
  17994. },
  17995. frontDressed: {
  17996. height: math.unit(8, "feet"),
  17997. weight: math.unit(225, "lb"),
  17998. name: "Front (Dressed",
  17999. image: {
  18000. source: "./media/characters/talana/front-dressed.svg",
  18001. extra: 1410 / 1300,
  18002. bottom: 0.015
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Normal",
  18009. height: math.unit(8, "feet"),
  18010. default: true
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18016. {
  18017. side: {
  18018. height: math.unit(7.2, "feet"),
  18019. weight: math.unit(150, "lb"),
  18020. name: "Side",
  18021. image: {
  18022. source: "./media/characters/xeauvok/side.svg",
  18023. extra: 1975 / 1523,
  18024. bottom: 0.07
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(7.2, "feet"),
  18032. default: true
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18038. {
  18039. side: {
  18040. height: math.unit(10, "feet"),
  18041. weight: math.unit(900, "kg"),
  18042. name: "Side",
  18043. image: {
  18044. source: "./media/characters/zara/side.svg",
  18045. extra: 504 / 498
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(10, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18059. {
  18060. side: {
  18061. height: math.unit(6, "feet"),
  18062. weight: math.unit(150, "lb"),
  18063. name: "Side",
  18064. image: {
  18065. source: "./media/characters/richard-dragon/side.svg",
  18066. extra: 845 / 340,
  18067. bottom: 0.017
  18068. }
  18069. },
  18070. maw: {
  18071. height: math.unit(2.97, "feet"),
  18072. name: "Maw",
  18073. image: {
  18074. source: "./media/characters/richard-dragon/maw.svg"
  18075. }
  18076. },
  18077. },
  18078. [
  18079. ]
  18080. ))
  18081. characterMakers.push(() => makeCharacter(
  18082. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18083. {
  18084. front: {
  18085. height: math.unit(4, "feet"),
  18086. weight: math.unit(100, "lb"),
  18087. name: "Front",
  18088. image: {
  18089. source: "./media/characters/richard-smeargle/front.svg",
  18090. extra: 2952 / 2820,
  18091. bottom: 0.028
  18092. }
  18093. },
  18094. },
  18095. [
  18096. {
  18097. name: "Normal",
  18098. height: math.unit(4, "feet"),
  18099. default: true
  18100. },
  18101. {
  18102. name: "Dynamax",
  18103. height: math.unit(20, "meters")
  18104. },
  18105. ]
  18106. ))
  18107. characterMakers.push(() => makeCharacter(
  18108. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18109. {
  18110. front: {
  18111. height: math.unit(6, "feet"),
  18112. weight: math.unit(110, "lb"),
  18113. name: "Front",
  18114. image: {
  18115. source: "./media/characters/klay/front.svg",
  18116. extra: 962 / 883,
  18117. bottom: 0.04
  18118. }
  18119. },
  18120. back: {
  18121. height: math.unit(6, "feet"),
  18122. weight: math.unit(110, "lb"),
  18123. name: "Back",
  18124. image: {
  18125. source: "./media/characters/klay/back.svg",
  18126. extra: 962 / 883
  18127. }
  18128. },
  18129. beans: {
  18130. height: math.unit(1.15, "feet"),
  18131. name: "Beans",
  18132. image: {
  18133. source: "./media/characters/klay/beans.svg"
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Micro",
  18140. height: math.unit(6, "inches")
  18141. },
  18142. {
  18143. name: "Mini",
  18144. height: math.unit(3, "feet")
  18145. },
  18146. {
  18147. name: "Normal",
  18148. height: math.unit(6, "feet"),
  18149. default: true
  18150. },
  18151. {
  18152. name: "Big",
  18153. height: math.unit(25, "feet")
  18154. },
  18155. {
  18156. name: "Macro",
  18157. height: math.unit(100, "feet")
  18158. },
  18159. {
  18160. name: "Megamacro",
  18161. height: math.unit(400, "feet")
  18162. },
  18163. ]
  18164. ))
  18165. characterMakers.push(() => makeCharacter(
  18166. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18167. {
  18168. front: {
  18169. height: math.unit(6, "feet"),
  18170. weight: math.unit(160, "lb"),
  18171. name: "Front",
  18172. image: {
  18173. source: "./media/characters/marcus/front.svg",
  18174. extra: 734 / 676,
  18175. bottom: 0.03
  18176. }
  18177. },
  18178. },
  18179. [
  18180. {
  18181. name: "Little",
  18182. height: math.unit(6, "feet")
  18183. },
  18184. {
  18185. name: "Normal",
  18186. height: math.unit(110, "feet"),
  18187. default: true
  18188. },
  18189. {
  18190. name: "Macro",
  18191. height: math.unit(250, "feet")
  18192. },
  18193. {
  18194. name: "Megamacro",
  18195. height: math.unit(1000, "feet")
  18196. },
  18197. ]
  18198. ))
  18199. characterMakers.push(() => makeCharacter(
  18200. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18201. {
  18202. front: {
  18203. height: math.unit(7, "feet"),
  18204. weight: math.unit(275, "lb"),
  18205. name: "Front",
  18206. image: {
  18207. source: "./media/characters/claude-delroute/front.svg",
  18208. extra: 230 / 214,
  18209. bottom: 0.007
  18210. }
  18211. },
  18212. side: {
  18213. height: math.unit(7, "feet"),
  18214. weight: math.unit(275, "lb"),
  18215. name: "Side",
  18216. image: {
  18217. source: "./media/characters/claude-delroute/side.svg",
  18218. extra: 222 / 214,
  18219. bottom: 0.01
  18220. }
  18221. },
  18222. back: {
  18223. height: math.unit(7, "feet"),
  18224. weight: math.unit(275, "lb"),
  18225. name: "Back",
  18226. image: {
  18227. source: "./media/characters/claude-delroute/back.svg",
  18228. extra: 230 / 214,
  18229. bottom: 0.015
  18230. }
  18231. },
  18232. maw: {
  18233. height: math.unit(0.6407, "meters"),
  18234. name: "Maw",
  18235. image: {
  18236. source: "./media/characters/claude-delroute/maw.svg"
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Normal",
  18243. height: math.unit(7, "feet"),
  18244. default: true
  18245. },
  18246. {
  18247. name: "Lorge",
  18248. height: math.unit(20, "feet")
  18249. },
  18250. ]
  18251. ))
  18252. characterMakers.push(() => makeCharacter(
  18253. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18254. {
  18255. front: {
  18256. height: math.unit(8 + 4 / 12, "feet"),
  18257. weight: math.unit(600, "lb"),
  18258. name: "Front",
  18259. image: {
  18260. source: "./media/characters/dragonien/front.svg",
  18261. extra: 100 / 94,
  18262. bottom: 3.3 / 103.3445
  18263. }
  18264. },
  18265. back: {
  18266. height: math.unit(8 + 4 / 12, "feet"),
  18267. weight: math.unit(600, "lb"),
  18268. name: "Back",
  18269. image: {
  18270. source: "./media/characters/dragonien/back.svg",
  18271. extra: 776 / 746,
  18272. bottom: 6.4 / 782.0616
  18273. }
  18274. },
  18275. foot: {
  18276. height: math.unit(1.54, "feet"),
  18277. name: "Foot",
  18278. image: {
  18279. source: "./media/characters/dragonien/foot.svg",
  18280. }
  18281. },
  18282. },
  18283. [
  18284. {
  18285. name: "Normal",
  18286. height: math.unit(8 + 4 / 12, "feet"),
  18287. default: true
  18288. },
  18289. {
  18290. name: "Macro",
  18291. height: math.unit(200, "feet")
  18292. },
  18293. {
  18294. name: "Megamacro",
  18295. height: math.unit(1, "mile")
  18296. },
  18297. {
  18298. name: "Gigamacro",
  18299. height: math.unit(1000, "miles")
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(5 + 2 / 12, "feet"),
  18308. weight: math.unit(110, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/desta/front.svg",
  18312. extra: 767 / 726,
  18313. bottom: 11.7 / 779
  18314. }
  18315. },
  18316. back: {
  18317. height: math.unit(5 + 2 / 12, "feet"),
  18318. weight: math.unit(110, "lb"),
  18319. name: "Back",
  18320. image: {
  18321. source: "./media/characters/desta/back.svg",
  18322. extra: 777 / 728,
  18323. bottom: 6 / 784
  18324. }
  18325. },
  18326. frontAlt: {
  18327. height: math.unit(5 + 2 / 12, "feet"),
  18328. weight: math.unit(110, "lb"),
  18329. name: "Front",
  18330. image: {
  18331. source: "./media/characters/desta/front-alt.svg",
  18332. extra: 1482 / 1417
  18333. }
  18334. },
  18335. side: {
  18336. height: math.unit(5 + 2 / 12, "feet"),
  18337. weight: math.unit(110, "lb"),
  18338. name: "Side",
  18339. image: {
  18340. source: "./media/characters/desta/side.svg",
  18341. extra: 2579 / 2491,
  18342. bottom: 0.053
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Micro",
  18349. height: math.unit(6, "inches")
  18350. },
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(5 + 2 / 12, "feet"),
  18354. default: true
  18355. },
  18356. {
  18357. name: "Macro",
  18358. height: math.unit(62, "feet")
  18359. },
  18360. {
  18361. name: "Megamacro",
  18362. height: math.unit(1800, "feet")
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18368. {
  18369. front: {
  18370. height: math.unit(10, "feet"),
  18371. weight: math.unit(700, "lb"),
  18372. name: "Front",
  18373. image: {
  18374. source: "./media/characters/storm-alystar/front.svg",
  18375. extra: 2112 / 1898,
  18376. bottom: 0.034
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Micro",
  18383. height: math.unit(3.5, "inches")
  18384. },
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(10, "feet"),
  18388. default: true
  18389. },
  18390. {
  18391. name: "Macro",
  18392. height: math.unit(400, "feet")
  18393. },
  18394. {
  18395. name: "Deific",
  18396. height: math.unit(60, "miles")
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18402. {
  18403. front: {
  18404. height: math.unit(2.35, "meters"),
  18405. weight: math.unit(119, "kg"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/ilia/front.svg",
  18409. extra: 1285 / 1255,
  18410. bottom: 0.06
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(2.35, "meters")
  18418. },
  18419. {
  18420. name: "Macro",
  18421. height: math.unit(140, "meters"),
  18422. default: true
  18423. },
  18424. {
  18425. name: "Megamacro",
  18426. height: math.unit(100, "miles")
  18427. },
  18428. ]
  18429. ))
  18430. characterMakers.push(() => makeCharacter(
  18431. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18432. {
  18433. front: {
  18434. height: math.unit(6 + 5 / 12, "feet"),
  18435. weight: math.unit(190, "lb"),
  18436. name: "Front",
  18437. image: {
  18438. source: "./media/characters/kingdead/front.svg",
  18439. extra: 1228 / 1177
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Micro",
  18446. height: math.unit(7, "inches")
  18447. },
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(6 + 5 / 12, "feet")
  18451. },
  18452. {
  18453. name: "Macro",
  18454. height: math.unit(150, "feet"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Megamacro",
  18459. height: math.unit(200, "miles")
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18465. {
  18466. front: {
  18467. height: math.unit(8, "feet"),
  18468. weight: math.unit(600, "lb"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/kyrehx/front.svg",
  18472. extra: 1195 / 1095,
  18473. bottom: 0.034
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Micro",
  18480. height: math.unit(2, "inches")
  18481. },
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(8, "feet"),
  18485. default: true
  18486. },
  18487. {
  18488. name: "Macro",
  18489. height: math.unit(255, "feet")
  18490. },
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18495. {
  18496. front: {
  18497. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18498. weight: math.unit(184, "lb"),
  18499. name: "Front",
  18500. image: {
  18501. source: "./media/characters/xang/front.svg",
  18502. extra: 845 / 755
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18510. default: true
  18511. },
  18512. {
  18513. name: "Macro",
  18514. height: math.unit(0.935 * 146, "feet")
  18515. },
  18516. {
  18517. name: "Megamacro",
  18518. height: math.unit(0.935 * 3, "miles")
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18524. {
  18525. frontDressed: {
  18526. height: math.unit(5 + 7 / 12, "feet"),
  18527. weight: math.unit(140, "lb"),
  18528. name: "Front (Dressed)",
  18529. image: {
  18530. source: "./media/characters/doc-weardno/front-dressed.svg",
  18531. extra: 263 / 234
  18532. }
  18533. },
  18534. backDressed: {
  18535. height: math.unit(5 + 7 / 12, "feet"),
  18536. weight: math.unit(140, "lb"),
  18537. name: "Back (Dressed)",
  18538. image: {
  18539. source: "./media/characters/doc-weardno/back-dressed.svg",
  18540. extra: 266 / 238
  18541. }
  18542. },
  18543. front: {
  18544. height: math.unit(5 + 7 / 12, "feet"),
  18545. weight: math.unit(140, "lb"),
  18546. name: "Front",
  18547. image: {
  18548. source: "./media/characters/doc-weardno/front.svg",
  18549. extra: 254 / 233
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Micro",
  18556. height: math.unit(3, "inches")
  18557. },
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(5 + 7 / 12, "feet"),
  18561. default: true
  18562. },
  18563. {
  18564. name: "Macro",
  18565. height: math.unit(25, "feet")
  18566. },
  18567. {
  18568. name: "Megamacro",
  18569. height: math.unit(2, "miles")
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(6 + 2 / 12, "feet"),
  18578. weight: math.unit(153, "lb"),
  18579. name: "Front",
  18580. image: {
  18581. source: "./media/characters/seth-whilst/front.svg",
  18582. bottom: 0.07
  18583. }
  18584. },
  18585. },
  18586. [
  18587. {
  18588. name: "Micro",
  18589. height: math.unit(5, "inches")
  18590. },
  18591. {
  18592. name: "Normal",
  18593. height: math.unit(6 + 2 / 12, "feet"),
  18594. default: true
  18595. },
  18596. ]
  18597. ))
  18598. characterMakers.push(() => makeCharacter(
  18599. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18600. {
  18601. front: {
  18602. height: math.unit(3, "inches"),
  18603. weight: math.unit(8, "grams"),
  18604. name: "Front",
  18605. image: {
  18606. source: "./media/characters/pocket-jabari/front.svg",
  18607. extra: 1024 / 974,
  18608. bottom: 0.039
  18609. }
  18610. },
  18611. },
  18612. [
  18613. {
  18614. name: "Minimicro",
  18615. height: math.unit(8, "mm")
  18616. },
  18617. {
  18618. name: "Micro",
  18619. height: math.unit(3, "inches"),
  18620. default: true
  18621. },
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(3, "feet")
  18625. },
  18626. ]
  18627. ))
  18628. characterMakers.push(() => makeCharacter(
  18629. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18630. {
  18631. front: {
  18632. height: math.unit(15, "feet"),
  18633. weight: math.unit(3280, "lb"),
  18634. name: "Front",
  18635. image: {
  18636. source: "./media/characters/sapphy/front.svg",
  18637. extra: 671 / 577,
  18638. bottom: 0.085
  18639. }
  18640. },
  18641. back: {
  18642. height: math.unit(15, "feet"),
  18643. weight: math.unit(3280, "lb"),
  18644. name: "Back",
  18645. image: {
  18646. source: "./media/characters/sapphy/back.svg",
  18647. extra: 631 / 607,
  18648. bottom: 0.045
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(15, "feet")
  18656. },
  18657. {
  18658. name: "Casual Macro",
  18659. height: math.unit(120, "feet")
  18660. },
  18661. {
  18662. name: "Macro",
  18663. height: math.unit(2150, "feet"),
  18664. default: true
  18665. },
  18666. {
  18667. name: "Megamacro",
  18668. height: math.unit(8, "miles")
  18669. },
  18670. {
  18671. name: "Galaxy Mom",
  18672. height: math.unit(6, "megalightyears")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18678. {
  18679. front: {
  18680. height: math.unit(6, "feet"),
  18681. weight: math.unit(170, "lb"),
  18682. name: "Front",
  18683. image: {
  18684. source: "./media/characters/kiro/front.svg",
  18685. extra: 1064 / 1012,
  18686. bottom: 0.052
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Micro",
  18693. height: math.unit(6, "inches")
  18694. },
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(6, "feet"),
  18698. default: true
  18699. },
  18700. {
  18701. name: "Macro",
  18702. height: math.unit(72, "feet")
  18703. },
  18704. ]
  18705. ))
  18706. characterMakers.push(() => makeCharacter(
  18707. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18708. {
  18709. front: {
  18710. height: math.unit(5 + 9 / 12, "feet"),
  18711. weight: math.unit(175, "lb"),
  18712. name: "Front",
  18713. image: {
  18714. source: "./media/characters/irishfox/front.svg",
  18715. extra: 1912 / 1680,
  18716. bottom: 0.02
  18717. }
  18718. },
  18719. },
  18720. [
  18721. {
  18722. name: "Nano",
  18723. height: math.unit(1, "mm")
  18724. },
  18725. {
  18726. name: "Micro",
  18727. height: math.unit(2, "inches")
  18728. },
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(5 + 9 / 12, "feet"),
  18732. default: true
  18733. },
  18734. {
  18735. name: "Macro",
  18736. height: math.unit(45, "feet")
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(6 + 1 / 12, "feet"),
  18745. weight: math.unit(75, "lb"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/aronai-sieyes/front.svg",
  18749. extra: 1556 / 1480,
  18750. bottom: 0.015
  18751. }
  18752. },
  18753. side: {
  18754. height: math.unit(6 + 1 / 12, "feet"),
  18755. weight: math.unit(75, "lb"),
  18756. name: "Side",
  18757. image: {
  18758. source: "./media/characters/aronai-sieyes/side.svg",
  18759. extra: 1433 / 1390,
  18760. bottom: 0.0393
  18761. }
  18762. },
  18763. back: {
  18764. height: math.unit(6 + 1 / 12, "feet"),
  18765. weight: math.unit(75, "lb"),
  18766. name: "Back",
  18767. image: {
  18768. source: "./media/characters/aronai-sieyes/back.svg",
  18769. extra: 1544 / 1494,
  18770. bottom: 0.02
  18771. }
  18772. },
  18773. frontClothed: {
  18774. height: math.unit(6 + 1 / 12, "feet"),
  18775. weight: math.unit(75, "lb"),
  18776. name: "Front (Clothed)",
  18777. image: {
  18778. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18779. extra: 1582 / 1527
  18780. }
  18781. },
  18782. feral: {
  18783. height: math.unit(18, "feet"),
  18784. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18785. name: "Feral",
  18786. image: {
  18787. source: "./media/characters/aronai-sieyes/feral.svg",
  18788. extra: 1530 / 1240,
  18789. bottom: 0.035
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Micro",
  18796. height: math.unit(2, "inches")
  18797. },
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(6 + 1 / 12, "feet"),
  18801. default: true
  18802. }
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18807. {
  18808. front: {
  18809. height: math.unit(12, "feet"),
  18810. weight: math.unit(410, "kg"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/xuna/front.svg",
  18814. extra: 2184 / 1980
  18815. }
  18816. },
  18817. side: {
  18818. height: math.unit(12, "feet"),
  18819. weight: math.unit(410, "kg"),
  18820. name: "Side",
  18821. image: {
  18822. source: "./media/characters/xuna/side.svg",
  18823. extra: 2184 / 1980
  18824. }
  18825. },
  18826. back: {
  18827. height: math.unit(12, "feet"),
  18828. weight: math.unit(410, "kg"),
  18829. name: "Back",
  18830. image: {
  18831. source: "./media/characters/xuna/back.svg",
  18832. extra: 2184 / 1980
  18833. }
  18834. },
  18835. },
  18836. [
  18837. {
  18838. name: "Nano glow",
  18839. height: math.unit(10, "nm")
  18840. },
  18841. {
  18842. name: "Micro floof",
  18843. height: math.unit(0.3, "m")
  18844. },
  18845. {
  18846. name: "Huggable softy boi",
  18847. height: math.unit(3.6576, "m"),
  18848. default: true
  18849. },
  18850. {
  18851. name: "Admirable floof",
  18852. height: math.unit(80, "meters")
  18853. },
  18854. {
  18855. name: "Gentle macro",
  18856. height: math.unit(300, "meters")
  18857. },
  18858. {
  18859. name: "Very careful floof",
  18860. height: math.unit(3200, "meters")
  18861. },
  18862. {
  18863. name: "The mega floof",
  18864. height: math.unit(36000, "meters")
  18865. },
  18866. {
  18867. name: "Giga-fur-Wicker",
  18868. height: math.unit(4800000, "meters")
  18869. },
  18870. {
  18871. name: "Licky world",
  18872. height: math.unit(20000000, "meters")
  18873. },
  18874. {
  18875. name: "Floofy cyan sun",
  18876. height: math.unit(1500000000, "meters")
  18877. },
  18878. {
  18879. name: "Milky Wicker",
  18880. height: math.unit(1000000000000000000000, "meters")
  18881. },
  18882. {
  18883. name: "The observing Wicker",
  18884. height: math.unit(999999999999999999999999999, "meters")
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(5 + 9 / 12, "feet"),
  18893. weight: math.unit(150, "lb"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/arokha-sieyes/front.svg",
  18897. extra: 1425 / 1284,
  18898. bottom: 0.05
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(5 + 9 / 12, "feet")
  18906. },
  18907. {
  18908. name: "Macro",
  18909. height: math.unit(30, "meters"),
  18910. default: true
  18911. },
  18912. ]
  18913. ))
  18914. characterMakers.push(() => makeCharacter(
  18915. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18916. {
  18917. front: {
  18918. height: math.unit(6, "feet"),
  18919. weight: math.unit(180, "lb"),
  18920. name: "Front",
  18921. image: {
  18922. source: "./media/characters/arokh-sieyes/front.svg",
  18923. extra: 1830 / 1769,
  18924. bottom: 0.01
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(6, "feet")
  18932. },
  18933. {
  18934. name: "Macro",
  18935. height: math.unit(30, "meters"),
  18936. default: true
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18942. {
  18943. side: {
  18944. height: math.unit(13 + 1 / 12, "feet"),
  18945. weight: math.unit(8.5, "tonnes"),
  18946. name: "Side",
  18947. image: {
  18948. source: "./media/characters/goldeneye/side.svg",
  18949. extra: 1182 / 778,
  18950. bottom: 0.067
  18951. }
  18952. },
  18953. paw: {
  18954. height: math.unit(3.4, "feet"),
  18955. name: "Paw",
  18956. image: {
  18957. source: "./media/characters/goldeneye/paw.svg"
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(13 + 1 / 12, "feet"),
  18965. default: true
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18971. {
  18972. front: {
  18973. height: math.unit(6 + 1 / 12, "feet"),
  18974. weight: math.unit(210, "lb"),
  18975. name: "Front",
  18976. image: {
  18977. source: "./media/characters/leonardo-lycheborne/front.svg",
  18978. extra: 390 / 365,
  18979. bottom: 0.032
  18980. }
  18981. },
  18982. side: {
  18983. height: math.unit(6 + 1 / 12, "feet"),
  18984. weight: math.unit(210, "lb"),
  18985. name: "Side",
  18986. image: {
  18987. source: "./media/characters/leonardo-lycheborne/side.svg",
  18988. extra: 390 / 365,
  18989. bottom: 0.005
  18990. }
  18991. },
  18992. back: {
  18993. height: math.unit(6 + 1 / 12, "feet"),
  18994. weight: math.unit(210, "lb"),
  18995. name: "Back",
  18996. image: {
  18997. source: "./media/characters/leonardo-lycheborne/back.svg",
  18998. extra: 392 / 366,
  18999. bottom: 0.01
  19000. }
  19001. },
  19002. hand: {
  19003. height: math.unit(1.08, "feet"),
  19004. name: "Hand",
  19005. image: {
  19006. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19007. }
  19008. },
  19009. foot: {
  19010. height: math.unit(1.32, "feet"),
  19011. name: "Foot",
  19012. image: {
  19013. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19014. }
  19015. },
  19016. were: {
  19017. height: math.unit(20, "feet"),
  19018. weight: math.unit(7800, "lb"),
  19019. name: "Were",
  19020. image: {
  19021. source: "./media/characters/leonardo-lycheborne/were.svg",
  19022. extra: 308 / 294,
  19023. bottom: 0.048
  19024. }
  19025. },
  19026. feral: {
  19027. height: math.unit(7.5, "feet"),
  19028. weight: math.unit(600, "lb"),
  19029. name: "Feral",
  19030. image: {
  19031. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19032. extra: 210 / 186,
  19033. bottom: 0.108
  19034. }
  19035. },
  19036. taur: {
  19037. height: math.unit(11, "feet"),
  19038. weight: math.unit(3300, "lb"),
  19039. name: "Taur",
  19040. image: {
  19041. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19042. extra: 320 / 303,
  19043. bottom: 0.025
  19044. }
  19045. },
  19046. barghest: {
  19047. height: math.unit(11, "feet"),
  19048. weight: math.unit(1300, "lb"),
  19049. name: "Barghest",
  19050. image: {
  19051. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19052. extra: 323 / 302,
  19053. bottom: 0.027
  19054. }
  19055. },
  19056. dick: {
  19057. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19058. name: "Dick",
  19059. image: {
  19060. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19061. }
  19062. },
  19063. dickWere: {
  19064. height: math.unit((20) / 3.8, "feet"),
  19065. name: "Dick (Were)",
  19066. image: {
  19067. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(6 + 1 / 12, "feet"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19081. {
  19082. front: {
  19083. height: math.unit(10, "feet"),
  19084. weight: math.unit(350, "lb"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/jet/front.svg",
  19088. extra: 2050 / 1980,
  19089. bottom: 0.013
  19090. }
  19091. },
  19092. back: {
  19093. height: math.unit(10, "feet"),
  19094. weight: math.unit(350, "lb"),
  19095. name: "Back",
  19096. image: {
  19097. source: "./media/characters/jet/back.svg",
  19098. extra: 2050 / 1980,
  19099. bottom: 0.013
  19100. }
  19101. },
  19102. },
  19103. [
  19104. {
  19105. name: "Micro",
  19106. height: math.unit(6, "inches")
  19107. },
  19108. {
  19109. name: "Normal",
  19110. height: math.unit(10, "feet"),
  19111. default: true
  19112. },
  19113. {
  19114. name: "Macro",
  19115. height: math.unit(100, "feet")
  19116. },
  19117. ]
  19118. ))
  19119. characterMakers.push(() => makeCharacter(
  19120. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19121. {
  19122. front: {
  19123. height: math.unit(15, "feet"),
  19124. weight: math.unit(2800, "lb"),
  19125. name: "Front",
  19126. image: {
  19127. source: "./media/characters/tanarath/front.svg",
  19128. extra: 2392 / 2220,
  19129. bottom: 0.03
  19130. }
  19131. },
  19132. back: {
  19133. height: math.unit(15, "feet"),
  19134. weight: math.unit(2800, "lb"),
  19135. name: "Back",
  19136. image: {
  19137. source: "./media/characters/tanarath/back.svg",
  19138. extra: 2392 / 2220,
  19139. bottom: 0.03
  19140. }
  19141. },
  19142. },
  19143. [
  19144. {
  19145. name: "Normal",
  19146. height: math.unit(15, "feet"),
  19147. default: true
  19148. },
  19149. ]
  19150. ))
  19151. characterMakers.push(() => makeCharacter(
  19152. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19153. {
  19154. front: {
  19155. height: math.unit(7 + 1 / 12, "feet"),
  19156. weight: math.unit(175, "lb"),
  19157. name: "Front",
  19158. image: {
  19159. source: "./media/characters/patty-cattybatty/front.svg",
  19160. extra: 908 / 874,
  19161. bottom: 0.025
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Micro",
  19168. height: math.unit(1, "inch")
  19169. },
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(7 + 1 / 12, "feet")
  19173. },
  19174. {
  19175. name: "Mini Macro",
  19176. height: math.unit(155, "feet")
  19177. },
  19178. {
  19179. name: "Macro",
  19180. height: math.unit(1077, "feet")
  19181. },
  19182. {
  19183. name: "Mega Macro",
  19184. height: math.unit(47650, "feet"),
  19185. default: true
  19186. },
  19187. {
  19188. name: "Giga Macro",
  19189. height: math.unit(440, "miles")
  19190. },
  19191. {
  19192. name: "Tera Macro",
  19193. height: math.unit(8700, "miles")
  19194. },
  19195. {
  19196. name: "Planetary Macro",
  19197. height: math.unit(32700, "miles")
  19198. },
  19199. {
  19200. name: "Solar Macro",
  19201. height: math.unit(550000, "miles")
  19202. },
  19203. {
  19204. name: "Celestial Macro",
  19205. height: math.unit(2.5, "AU")
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(4 + 5 / 12, "feet"),
  19214. weight: math.unit(90, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/cappu/front.svg",
  19218. extra: 1247 / 1152,
  19219. bottom: 0.012
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Normal",
  19226. height: math.unit(4 + 5 / 12, "feet"),
  19227. default: true
  19228. },
  19229. ]
  19230. ))
  19231. characterMakers.push(() => makeCharacter(
  19232. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19233. {
  19234. frontDressed: {
  19235. height: math.unit(70, "cm"),
  19236. weight: math.unit(6, "kg"),
  19237. name: "Front (Dressed)",
  19238. image: {
  19239. source: "./media/characters/sebi/front-dressed.svg",
  19240. extra: 713.5 / 686.5,
  19241. bottom: 0.003
  19242. }
  19243. },
  19244. front: {
  19245. height: math.unit(70, "cm"),
  19246. weight: math.unit(5, "kg"),
  19247. name: "Front",
  19248. image: {
  19249. source: "./media/characters/sebi/front.svg",
  19250. extra: 713.5 / 686.5,
  19251. bottom: 0.003
  19252. }
  19253. }
  19254. },
  19255. [
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(70, "cm"),
  19259. default: true
  19260. },
  19261. {
  19262. name: "Macro",
  19263. height: math.unit(8, "meters")
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19269. {
  19270. front: {
  19271. height: math.unit(6, "feet"),
  19272. weight: math.unit(150, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/typhek/front.svg",
  19276. extra: 1948 / 1929,
  19277. bottom: 0.025
  19278. }
  19279. },
  19280. side: {
  19281. height: math.unit(6, "feet"),
  19282. weight: math.unit(150, "lb"),
  19283. name: "Side",
  19284. image: {
  19285. source: "./media/characters/typhek/side.svg",
  19286. extra: 2034 / 2010,
  19287. bottom: 0.003
  19288. }
  19289. },
  19290. back: {
  19291. height: math.unit(6, "feet"),
  19292. weight: math.unit(150, "lb"),
  19293. name: "Back",
  19294. image: {
  19295. source: "./media/characters/typhek/back.svg",
  19296. extra: 2005 / 1978,
  19297. bottom: 0.004
  19298. }
  19299. },
  19300. palm: {
  19301. height: math.unit(1.2, "feet"),
  19302. name: "Palm",
  19303. image: {
  19304. source: "./media/characters/typhek/palm.svg"
  19305. }
  19306. },
  19307. fist: {
  19308. height: math.unit(1.1, "feet"),
  19309. name: "Fist",
  19310. image: {
  19311. source: "./media/characters/typhek/fist.svg"
  19312. }
  19313. },
  19314. foot: {
  19315. height: math.unit(1.57, "feet"),
  19316. name: "Foot",
  19317. image: {
  19318. source: "./media/characters/typhek/foot.svg"
  19319. }
  19320. },
  19321. sole: {
  19322. height: math.unit(2.05, "feet"),
  19323. name: "Sole",
  19324. image: {
  19325. source: "./media/characters/typhek/sole.svg"
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Macro",
  19332. height: math.unit(40, "stories"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Megamacro",
  19337. height: math.unit(1, "mile")
  19338. },
  19339. {
  19340. name: "Gigamacro",
  19341. height: math.unit(4000, "solarradii")
  19342. },
  19343. {
  19344. name: "Universal",
  19345. height: math.unit(1.1, "universes")
  19346. }
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19351. {
  19352. side: {
  19353. height: math.unit(5 + 7 / 12, "feet"),
  19354. weight: math.unit(150, "lb"),
  19355. name: "Side",
  19356. image: {
  19357. source: "./media/characters/kassy/side.svg",
  19358. extra: 1280 / 1225,
  19359. bottom: 0.002
  19360. }
  19361. },
  19362. front: {
  19363. height: math.unit(5 + 7 / 12, "feet"),
  19364. weight: math.unit(150, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/kassy/front.svg",
  19368. extra: 1280 / 1225,
  19369. bottom: 0.025
  19370. }
  19371. },
  19372. back: {
  19373. height: math.unit(5 + 7 / 12, "feet"),
  19374. weight: math.unit(150, "lb"),
  19375. name: "Back",
  19376. image: {
  19377. source: "./media/characters/kassy/back.svg",
  19378. extra: 1280 / 1225,
  19379. bottom: 0.002
  19380. }
  19381. },
  19382. foot: {
  19383. height: math.unit(1.266, "feet"),
  19384. name: "Foot",
  19385. image: {
  19386. source: "./media/characters/kassy/foot.svg"
  19387. }
  19388. },
  19389. },
  19390. [
  19391. {
  19392. name: "Normal",
  19393. height: math.unit(5 + 7 / 12, "feet")
  19394. },
  19395. {
  19396. name: "Macro",
  19397. height: math.unit(137, "feet"),
  19398. default: true
  19399. },
  19400. {
  19401. name: "Megamacro",
  19402. height: math.unit(1, "mile")
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19408. {
  19409. front: {
  19410. height: math.unit(6 + 1 / 12, "feet"),
  19411. weight: math.unit(200, "lb"),
  19412. name: "Front",
  19413. image: {
  19414. source: "./media/characters/neil/front.svg",
  19415. extra: 1326 / 1250,
  19416. bottom: 0.023
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(6 + 1 / 12, "feet"),
  19424. default: true
  19425. },
  19426. {
  19427. name: "Macro",
  19428. height: math.unit(200, "feet")
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19434. {
  19435. front: {
  19436. height: math.unit(5 + 9 / 12, "feet"),
  19437. weight: math.unit(190, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/atticus/front.svg",
  19441. extra: 2934 / 2785,
  19442. bottom: 0.025
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(5 + 9 / 12, "feet"),
  19450. default: true
  19451. },
  19452. {
  19453. name: "Macro",
  19454. height: math.unit(180, "feet")
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19460. {
  19461. side: {
  19462. height: math.unit(9, "feet"),
  19463. weight: math.unit(650, "lb"),
  19464. name: "Side",
  19465. image: {
  19466. source: "./media/characters/milo/side.svg",
  19467. extra: 2644 / 2310,
  19468. bottom: 0.032
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(9, "feet"),
  19476. default: true
  19477. },
  19478. {
  19479. name: "Macro",
  19480. height: math.unit(300, "feet")
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19486. {
  19487. side: {
  19488. height: math.unit(8, "meters"),
  19489. weight: math.unit(90000, "kg"),
  19490. name: "Side",
  19491. image: {
  19492. source: "./media/characters/ijzer/side.svg",
  19493. extra: 2756 / 1600,
  19494. bottom: 0.01
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Small",
  19501. height: math.unit(3, "meters")
  19502. },
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(8, "meters"),
  19506. default: true
  19507. },
  19508. {
  19509. name: "Normal+",
  19510. height: math.unit(10, "meters")
  19511. },
  19512. {
  19513. name: "Bigger",
  19514. height: math.unit(24, "meters")
  19515. },
  19516. {
  19517. name: "Huge",
  19518. height: math.unit(80, "meters")
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(6 + 2 / 12, "feet"),
  19527. weight: math.unit(153, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/luca-cervicum/front.svg",
  19531. extra: 370 / 327,
  19532. bottom: 0.015
  19533. }
  19534. },
  19535. back: {
  19536. height: math.unit(6 + 2 / 12, "feet"),
  19537. weight: math.unit(153, "lb"),
  19538. name: "Back",
  19539. image: {
  19540. source: "./media/characters/luca-cervicum/back.svg",
  19541. extra: 367 / 333,
  19542. bottom: 0.005
  19543. }
  19544. },
  19545. frontGear: {
  19546. height: math.unit(6 + 2 / 12, "feet"),
  19547. weight: math.unit(173, "lb"),
  19548. name: "Front (Gear)",
  19549. image: {
  19550. source: "./media/characters/luca-cervicum/front-gear.svg",
  19551. extra: 377 / 333,
  19552. bottom: 0.006
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(6 + 2 / 12, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(6 + 1 / 12, "feet"),
  19569. weight: math.unit(304, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/oliver/front.svg",
  19573. extra: 157 / 143,
  19574. bottom: 0.08
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(6 + 1 / 12, "feet"),
  19582. default: true
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(5 + 7 / 12, "feet"),
  19591. weight: math.unit(140, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/shane/front.svg",
  19595. extra: 304 / 289,
  19596. bottom: 0.005
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(5 + 7 / 12, "feet"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(5 + 9 / 12, "feet"),
  19613. weight: math.unit(178, "lb"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/shin/front.svg",
  19617. extra: 159 / 151,
  19618. bottom: 0.015
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(5 + 9 / 12, "feet"),
  19626. default: true
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19632. {
  19633. front: {
  19634. height: math.unit(5 + 10 / 12, "feet"),
  19635. weight: math.unit(168, "lb"),
  19636. name: "Front",
  19637. image: {
  19638. source: "./media/characters/xerxes/front.svg",
  19639. extra: 282 / 260,
  19640. bottom: 0.045
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(5 + 10 / 12, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(6 + 7 / 12, "feet"),
  19657. weight: math.unit(208, "lb"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/chaska/front.svg",
  19661. extra: 332 / 319,
  19662. bottom: 0.015
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(6 + 7 / 12, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(5 + 8 / 12, "feet"),
  19679. weight: math.unit(208, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/enuk/front.svg",
  19683. extra: 437 / 406,
  19684. bottom: 0.02
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(5 + 8 / 12, "feet"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(5 + 10 / 12, "feet"),
  19701. weight: math.unit(252, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/bruun/front.svg",
  19705. extra: 197 / 187,
  19706. bottom: 0.012
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(5 + 10 / 12, "feet"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19720. {
  19721. front: {
  19722. height: math.unit(6 + 10 / 12, "feet"),
  19723. weight: math.unit(255, "lb"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/alexeev/front.svg",
  19727. extra: 213 / 200,
  19728. bottom: 0.05
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Normal",
  19735. height: math.unit(6 + 10 / 12, "feet"),
  19736. default: true
  19737. },
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19742. {
  19743. front: {
  19744. height: math.unit(2 + 8 / 12, "feet"),
  19745. weight: math.unit(22, "lb"),
  19746. name: "Front",
  19747. image: {
  19748. source: "./media/characters/evelyn/front.svg",
  19749. extra: 208 / 180
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(2 + 8 / 12, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(5 + 9 / 12, "feet"),
  19766. weight: math.unit(139, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/inca/front.svg",
  19770. extra: 294 / 291,
  19771. bottom: 0.03
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Normal",
  19778. height: math.unit(5 + 9 / 12, "feet"),
  19779. default: true
  19780. },
  19781. ]
  19782. ))
  19783. characterMakers.push(() => makeCharacter(
  19784. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19785. {
  19786. front: {
  19787. height: math.unit(5 + 1 / 12, "feet"),
  19788. weight: math.unit(84, "lb"),
  19789. name: "Front",
  19790. image: {
  19791. source: "./media/characters/magdalene/front.svg",
  19792. extra: 293 / 273
  19793. }
  19794. },
  19795. },
  19796. [
  19797. {
  19798. name: "Normal",
  19799. height: math.unit(5 + 1 / 12, "feet"),
  19800. default: true
  19801. },
  19802. ]
  19803. ))
  19804. characterMakers.push(() => makeCharacter(
  19805. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19806. {
  19807. front: {
  19808. height: math.unit(6 + 3 / 12, "feet"),
  19809. weight: math.unit(185, "lb"),
  19810. name: "Front",
  19811. image: {
  19812. source: "./media/characters/mera/front.svg",
  19813. extra: 291 / 277,
  19814. bottom: 0.03
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(6 + 3 / 12, "feet"),
  19822. default: true
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19828. {
  19829. front: {
  19830. height: math.unit(6 + 7 / 12, "feet"),
  19831. weight: math.unit(160, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/ceres/front.svg",
  19835. extra: 1023 / 950,
  19836. bottom: 0.027
  19837. }
  19838. },
  19839. back: {
  19840. height: math.unit(6 + 7 / 12, "feet"),
  19841. weight: math.unit(160, "lb"),
  19842. name: "Back",
  19843. image: {
  19844. source: "./media/characters/ceres/back.svg",
  19845. extra: 1023 / 950
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(6 + 7 / 12, "feet"),
  19853. default: true
  19854. },
  19855. ]
  19856. ))
  19857. characterMakers.push(() => makeCharacter(
  19858. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19859. {
  19860. front: {
  19861. height: math.unit(5 + 10 / 12, "feet"),
  19862. weight: math.unit(150, "lb"),
  19863. name: "Front",
  19864. image: {
  19865. source: "./media/characters/kris/front.svg",
  19866. extra: 885 / 803,
  19867. bottom: 0.03
  19868. }
  19869. },
  19870. },
  19871. [
  19872. {
  19873. name: "Normal",
  19874. height: math.unit(5 + 10 / 12, "feet"),
  19875. default: true
  19876. },
  19877. ]
  19878. ))
  19879. characterMakers.push(() => makeCharacter(
  19880. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19881. {
  19882. front: {
  19883. height: math.unit(7, "feet"),
  19884. weight: math.unit(120, "kg"),
  19885. name: "Front",
  19886. image: {
  19887. source: "./media/characters/taluthus/front.svg",
  19888. extra: 903 / 833,
  19889. bottom: 0.015
  19890. }
  19891. },
  19892. },
  19893. [
  19894. {
  19895. name: "Normal",
  19896. height: math.unit(7, "feet"),
  19897. default: true
  19898. },
  19899. {
  19900. name: "Macro",
  19901. height: math.unit(300, "feet")
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19907. {
  19908. front: {
  19909. height: math.unit(5 + 9 / 12, "feet"),
  19910. weight: math.unit(145, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/dawn/front.svg",
  19914. extra: 2094 / 2016,
  19915. bottom: 0.025
  19916. }
  19917. },
  19918. back: {
  19919. height: math.unit(5 + 9 / 12, "feet"),
  19920. weight: math.unit(160, "lb"),
  19921. name: "Back",
  19922. image: {
  19923. source: "./media/characters/dawn/back.svg",
  19924. extra: 2112 / 2080,
  19925. bottom: 0.005
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Normal",
  19932. height: math.unit(6 + 7 / 12, "feet"),
  19933. default: true
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19939. {
  19940. anthro: {
  19941. height: math.unit(8 + 3 / 12, "feet"),
  19942. weight: math.unit(450, "lb"),
  19943. name: "Anthro",
  19944. image: {
  19945. source: "./media/characters/arador/anthro.svg",
  19946. extra: 1835 / 1718,
  19947. bottom: 0.025
  19948. }
  19949. },
  19950. feral: {
  19951. height: math.unit(4, "feet"),
  19952. weight: math.unit(200, "lb"),
  19953. name: "Feral",
  19954. image: {
  19955. source: "./media/characters/arador/feral.svg",
  19956. extra: 1683 / 1514,
  19957. bottom: 0.07
  19958. }
  19959. },
  19960. },
  19961. [
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(8 + 3 / 12, "feet")
  19965. },
  19966. {
  19967. name: "Macro",
  19968. height: math.unit(82.5, "feet"),
  19969. default: true
  19970. },
  19971. ]
  19972. ))
  19973. characterMakers.push(() => makeCharacter(
  19974. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19975. {
  19976. front: {
  19977. height: math.unit(5 + 10 / 12, "feet"),
  19978. weight: math.unit(125, "lb"),
  19979. name: "Front",
  19980. image: {
  19981. source: "./media/characters/dharsi/front.svg",
  19982. extra: 716 / 630,
  19983. bottom: 0.035
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Nano",
  19990. height: math.unit(100, "nm")
  19991. },
  19992. {
  19993. name: "Micro",
  19994. height: math.unit(2, "inches")
  19995. },
  19996. {
  19997. name: "Normal",
  19998. height: math.unit(5 + 10 / 12, "feet"),
  19999. default: true
  20000. },
  20001. {
  20002. name: "Macro",
  20003. height: math.unit(1000, "feet")
  20004. },
  20005. {
  20006. name: "Megamacro",
  20007. height: math.unit(10, "miles")
  20008. },
  20009. {
  20010. name: "Gigamacro",
  20011. height: math.unit(3000, "miles")
  20012. },
  20013. {
  20014. name: "Teramacro",
  20015. height: math.unit(500000, "miles")
  20016. },
  20017. {
  20018. name: "Teramacro+",
  20019. height: math.unit(30, "galaxies")
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20025. {
  20026. front: {
  20027. height: math.unit(6, "feet"),
  20028. weight: math.unit(150, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/deathy/front.svg",
  20032. extra: 1552 / 1463,
  20033. bottom: 0.025
  20034. }
  20035. },
  20036. side: {
  20037. height: math.unit(6, "feet"),
  20038. weight: math.unit(150, "lb"),
  20039. name: "Side",
  20040. image: {
  20041. source: "./media/characters/deathy/side.svg",
  20042. extra: 1604 / 1455,
  20043. bottom: 0.025
  20044. }
  20045. },
  20046. back: {
  20047. height: math.unit(6, "feet"),
  20048. weight: math.unit(150, "lb"),
  20049. name: "Back",
  20050. image: {
  20051. source: "./media/characters/deathy/back.svg",
  20052. extra: 1580 / 1463,
  20053. bottom: 0.005
  20054. }
  20055. },
  20056. },
  20057. [
  20058. {
  20059. name: "Micro",
  20060. height: math.unit(5, "millimeters")
  20061. },
  20062. {
  20063. name: "Normal",
  20064. height: math.unit(6 + 5 / 12, "feet"),
  20065. default: true
  20066. },
  20067. ]
  20068. ))
  20069. characterMakers.push(() => makeCharacter(
  20070. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20071. {
  20072. front: {
  20073. height: math.unit(16, "feet"),
  20074. weight: math.unit(4000, "lb"),
  20075. name: "Front",
  20076. image: {
  20077. source: "./media/characters/juniper/front.svg",
  20078. bottom: 0.04
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(16, "feet"),
  20086. default: true
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(6, "feet"),
  20095. weight: math.unit(150, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/hipster/front.svg",
  20099. extra: 1312 / 1209,
  20100. bottom: 0.025
  20101. }
  20102. },
  20103. back: {
  20104. height: math.unit(6, "feet"),
  20105. weight: math.unit(150, "lb"),
  20106. name: "Back",
  20107. image: {
  20108. source: "./media/characters/hipster/back.svg",
  20109. extra: 1281 / 1196,
  20110. bottom: 0.01
  20111. }
  20112. },
  20113. },
  20114. [
  20115. {
  20116. name: "Micro",
  20117. height: math.unit(1, "mm")
  20118. },
  20119. {
  20120. name: "Normal",
  20121. height: math.unit(4, "inches"),
  20122. default: true
  20123. },
  20124. {
  20125. name: "Macro",
  20126. height: math.unit(500, "feet")
  20127. },
  20128. {
  20129. name: "Megamacro",
  20130. height: math.unit(1000, "miles")
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(6, "feet"),
  20139. weight: math.unit(150, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/tendirmuldr/front.svg",
  20143. extra: 1878 / 1772,
  20144. bottom: 0.015
  20145. }
  20146. },
  20147. },
  20148. [
  20149. {
  20150. name: "Megamacro",
  20151. height: math.unit(1500, "miles"),
  20152. default: true
  20153. },
  20154. ]
  20155. ))
  20156. characterMakers.push(() => makeCharacter(
  20157. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20158. {
  20159. front: {
  20160. height: math.unit(14, "feet"),
  20161. weight: math.unit(12000, "lb"),
  20162. name: "Front",
  20163. image: {
  20164. source: "./media/characters/mort/front.svg",
  20165. extra: 365 / 318,
  20166. bottom: 0.01
  20167. }
  20168. },
  20169. side: {
  20170. height: math.unit(14, "feet"),
  20171. weight: math.unit(12000, "lb"),
  20172. name: "Side",
  20173. image: {
  20174. source: "./media/characters/mort/side.svg",
  20175. extra: 365 / 318,
  20176. bottom: 0.052
  20177. },
  20178. default: true
  20179. },
  20180. back: {
  20181. height: math.unit(14, "feet"),
  20182. weight: math.unit(12000, "lb"),
  20183. name: "Back",
  20184. image: {
  20185. source: "./media/characters/mort/back.svg",
  20186. extra: 371 / 332,
  20187. bottom: 0.18
  20188. }
  20189. },
  20190. },
  20191. [
  20192. {
  20193. name: "Normal",
  20194. height: math.unit(14, "feet"),
  20195. default: true
  20196. },
  20197. ]
  20198. ))
  20199. characterMakers.push(() => makeCharacter(
  20200. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20201. {
  20202. front: {
  20203. height: math.unit(8, "feet"),
  20204. weight: math.unit(1, "ton"),
  20205. name: "Front",
  20206. image: {
  20207. source: "./media/characters/lycoa/front.svg",
  20208. extra: 1875 / 1789,
  20209. bottom: 0.022
  20210. }
  20211. },
  20212. back: {
  20213. height: math.unit(8, "feet"),
  20214. weight: math.unit(1, "ton"),
  20215. name: "Back",
  20216. image: {
  20217. source: "./media/characters/lycoa/back.svg",
  20218. extra: 1835 / 1781,
  20219. bottom: 0.03
  20220. }
  20221. },
  20222. head: {
  20223. height: math.unit(2.1, "feet"),
  20224. name: "Head",
  20225. image: {
  20226. source: "./media/characters/lycoa/head.svg"
  20227. }
  20228. },
  20229. tailmaw: {
  20230. height: math.unit(1.9, "feet"),
  20231. name: "Tailmaw",
  20232. image: {
  20233. source: "./media/characters/lycoa/tailmaw.svg"
  20234. }
  20235. },
  20236. tentacles: {
  20237. height: math.unit(2.1, "feet"),
  20238. name: "Tentacles",
  20239. image: {
  20240. source: "./media/characters/lycoa/tentacles.svg"
  20241. }
  20242. },
  20243. dick: {
  20244. height: math.unit(1.73, "feet"),
  20245. name: "Dick",
  20246. image: {
  20247. source: "./media/characters/lycoa/dick.svg"
  20248. }
  20249. },
  20250. },
  20251. [
  20252. {
  20253. name: "Normal",
  20254. height: math.unit(8, "feet"),
  20255. default: true
  20256. },
  20257. {
  20258. name: "Macro",
  20259. height: math.unit(30, "feet")
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20265. {
  20266. front: {
  20267. height: math.unit(4 + 2 / 12, "feet"),
  20268. weight: math.unit(70, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/naldara/front.svg",
  20272. extra: 841 / 720,
  20273. bottom: 0.04
  20274. }
  20275. },
  20276. naga: {
  20277. height: math.unit(23, "feet"),
  20278. weight: math.unit(15000, "kg"),
  20279. name: "Naga",
  20280. image: {
  20281. source: "./media/characters/naldara/naga.svg",
  20282. extra: 3290 / 2959,
  20283. bottom: 124 / 3432
  20284. }
  20285. },
  20286. },
  20287. [
  20288. {
  20289. name: "Normal",
  20290. height: math.unit(4 + 2 / 12, "feet"),
  20291. default: true
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20297. {
  20298. front: {
  20299. height: math.unit(13 + 7 / 12, "feet"),
  20300. weight: math.unit(1500, "lb"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/briar/front.svg",
  20304. extra: 626 / 596,
  20305. bottom: 0.08
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(13 + 7 / 12, "feet"),
  20313. default: true
  20314. },
  20315. ]
  20316. ))
  20317. characterMakers.push(() => makeCharacter(
  20318. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20319. {
  20320. side: {
  20321. height: math.unit(10, "feet"),
  20322. weight: math.unit(500, "lb"),
  20323. name: "Side",
  20324. image: {
  20325. source: "./media/characters/vanguard/side.svg",
  20326. extra: 502 / 425,
  20327. bottom: 0.087
  20328. }
  20329. },
  20330. },
  20331. [
  20332. {
  20333. name: "Normal",
  20334. height: math.unit(10, "feet"),
  20335. default: true
  20336. },
  20337. ]
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20341. {
  20342. front: {
  20343. height: math.unit(7.5, "feet"),
  20344. weight: math.unit(2, "lb"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/artemis/front.svg",
  20348. extra: 1192 / 1075,
  20349. bottom: 0.07
  20350. }
  20351. },
  20352. frontNsfw: {
  20353. height: math.unit(7.5, "feet"),
  20354. weight: math.unit(2, "lb"),
  20355. name: "Front (NSFW)",
  20356. image: {
  20357. source: "./media/characters/artemis/front-nsfw.svg",
  20358. extra: 1192 / 1075,
  20359. bottom: 0.07
  20360. }
  20361. },
  20362. frontNsfwer: {
  20363. height: math.unit(7.5, "feet"),
  20364. weight: math.unit(2, "lb"),
  20365. name: "Front (NSFW-er)",
  20366. image: {
  20367. source: "./media/characters/artemis/front-nsfwer.svg",
  20368. extra: 1192 / 1075,
  20369. bottom: 0.07
  20370. }
  20371. },
  20372. side: {
  20373. height: math.unit(7.5, "feet"),
  20374. weight: math.unit(2, "lb"),
  20375. name: "Side",
  20376. image: {
  20377. source: "./media/characters/artemis/side.svg",
  20378. extra: 1192 / 1075,
  20379. bottom: 0.07
  20380. }
  20381. },
  20382. sideNsfw: {
  20383. height: math.unit(7.5, "feet"),
  20384. weight: math.unit(2, "lb"),
  20385. name: "Side (NSFW)",
  20386. image: {
  20387. source: "./media/characters/artemis/side-nsfw.svg",
  20388. extra: 1192 / 1075,
  20389. bottom: 0.07
  20390. }
  20391. },
  20392. sideNsfwer: {
  20393. height: math.unit(7.5, "feet"),
  20394. weight: math.unit(2, "lb"),
  20395. name: "Side (NSFW-er)",
  20396. image: {
  20397. source: "./media/characters/artemis/side-nsfwer.svg",
  20398. extra: 1192 / 1075,
  20399. bottom: 0.07
  20400. }
  20401. },
  20402. maw: {
  20403. height: math.unit(1.1, "feet"),
  20404. name: "Maw",
  20405. image: {
  20406. source: "./media/characters/artemis/maw.svg"
  20407. }
  20408. },
  20409. stomach: {
  20410. height: math.unit(0.95, "feet"),
  20411. name: "Stomach",
  20412. image: {
  20413. source: "./media/characters/artemis/stomach.svg"
  20414. }
  20415. },
  20416. dickCanine: {
  20417. height: math.unit(1, "feet"),
  20418. name: "Dick (Canine)",
  20419. image: {
  20420. source: "./media/characters/artemis/dick-canine.svg"
  20421. }
  20422. },
  20423. dickEquine: {
  20424. height: math.unit(0.85, "feet"),
  20425. name: "Dick (Equine)",
  20426. image: {
  20427. source: "./media/characters/artemis/dick-equine.svg"
  20428. }
  20429. },
  20430. dickExotic: {
  20431. height: math.unit(0.85, "feet"),
  20432. name: "Dick (Exotic)",
  20433. image: {
  20434. source: "./media/characters/artemis/dick-exotic.svg"
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(7.5, "feet"),
  20442. default: true
  20443. },
  20444. {
  20445. name: "Enlarged",
  20446. height: math.unit(12, "feet")
  20447. },
  20448. ]
  20449. ))
  20450. characterMakers.push(() => makeCharacter(
  20451. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20452. {
  20453. front: {
  20454. height: math.unit(5 + 3 / 12, "feet"),
  20455. weight: math.unit(160, "lb"),
  20456. name: "Front",
  20457. image: {
  20458. source: "./media/characters/kira/front.svg",
  20459. extra: 906 / 786,
  20460. bottom: 0.01
  20461. }
  20462. },
  20463. back: {
  20464. height: math.unit(5 + 3 / 12, "feet"),
  20465. weight: math.unit(160, "lb"),
  20466. name: "Back",
  20467. image: {
  20468. source: "./media/characters/kira/back.svg",
  20469. extra: 882 / 757,
  20470. bottom: 0.005
  20471. }
  20472. },
  20473. frontDressed: {
  20474. height: math.unit(5 + 3 / 12, "feet"),
  20475. weight: math.unit(160, "lb"),
  20476. name: "Front (Dressed)",
  20477. image: {
  20478. source: "./media/characters/kira/front-dressed.svg",
  20479. extra: 906 / 786,
  20480. bottom: 0.01
  20481. }
  20482. },
  20483. beans: {
  20484. height: math.unit(0.92, "feet"),
  20485. name: "Beans",
  20486. image: {
  20487. source: "./media/characters/kira/beans.svg"
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Normal",
  20494. height: math.unit(5 + 3 / 12, "feet"),
  20495. default: true
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20501. {
  20502. front: {
  20503. height: math.unit(5 + 4 / 12, "feet"),
  20504. weight: math.unit(145, "lb"),
  20505. name: "Front",
  20506. image: {
  20507. source: "./media/characters/scramble/front.svg",
  20508. extra: 763 / 727,
  20509. bottom: 0.05
  20510. }
  20511. },
  20512. back: {
  20513. height: math.unit(5 + 4 / 12, "feet"),
  20514. weight: math.unit(145, "lb"),
  20515. name: "Back",
  20516. image: {
  20517. source: "./media/characters/scramble/back.svg",
  20518. extra: 826 / 737,
  20519. bottom: 0.002
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(5 + 4 / 12, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20533. {
  20534. side: {
  20535. height: math.unit(6 + 2 / 12, "feet"),
  20536. weight: math.unit(190, "lb"),
  20537. name: "Side",
  20538. image: {
  20539. source: "./media/characters/biscuit/side.svg",
  20540. extra: 858 / 791,
  20541. bottom: 0.044
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(6 + 2 / 12, "feet"),
  20549. default: true
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20555. {
  20556. front: {
  20557. height: math.unit(5 + 2 / 12, "feet"),
  20558. weight: math.unit(120, "lb"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/poffin/front.svg",
  20562. extra: 786 / 680,
  20563. bottom: 0.005
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(5 + 2 / 12, "feet"),
  20571. default: true
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20577. {
  20578. front: {
  20579. height: math.unit(6 + 3 / 12, "feet"),
  20580. weight: math.unit(519, "lb"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/dhari/front.svg",
  20584. extra: 1048 / 946,
  20585. bottom: 0.015
  20586. }
  20587. },
  20588. back: {
  20589. height: math.unit(6 + 3 / 12, "feet"),
  20590. weight: math.unit(519, "lb"),
  20591. name: "Back",
  20592. image: {
  20593. source: "./media/characters/dhari/back.svg",
  20594. extra: 1048 / 931,
  20595. bottom: 0.005
  20596. }
  20597. },
  20598. frontDressed: {
  20599. height: math.unit(6 + 3 / 12, "feet"),
  20600. weight: math.unit(519, "lb"),
  20601. name: "Front (Dressed)",
  20602. image: {
  20603. source: "./media/characters/dhari/front-dressed.svg",
  20604. extra: 1713 / 1546,
  20605. bottom: 0.02
  20606. }
  20607. },
  20608. backDressed: {
  20609. height: math.unit(6 + 3 / 12, "feet"),
  20610. weight: math.unit(519, "lb"),
  20611. name: "Back (Dressed)",
  20612. image: {
  20613. source: "./media/characters/dhari/back-dressed.svg",
  20614. extra: 1699 / 1537,
  20615. bottom: 0.01
  20616. }
  20617. },
  20618. maw: {
  20619. height: math.unit(0.95, "feet"),
  20620. name: "Maw",
  20621. image: {
  20622. source: "./media/characters/dhari/maw.svg"
  20623. }
  20624. },
  20625. wereFront: {
  20626. height: math.unit(12 + 8 / 12, "feet"),
  20627. weight: math.unit(4000, "lb"),
  20628. name: "Front (Were)",
  20629. image: {
  20630. source: "./media/characters/dhari/were-front.svg",
  20631. extra: 1065 / 969,
  20632. bottom: 0.015
  20633. }
  20634. },
  20635. wereBack: {
  20636. height: math.unit(12 + 8 / 12, "feet"),
  20637. weight: math.unit(4000, "lb"),
  20638. name: "Back (Were)",
  20639. image: {
  20640. source: "./media/characters/dhari/were-back.svg",
  20641. extra: 1065 / 969,
  20642. bottom: 0.012
  20643. }
  20644. },
  20645. wereMaw: {
  20646. height: math.unit(0.625, "meters"),
  20647. name: "Maw (Were)",
  20648. image: {
  20649. source: "./media/characters/dhari/were-maw.svg"
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(6 + 3 / 12, "feet"),
  20657. default: true
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20663. {
  20664. anthro: {
  20665. height: math.unit(5 + 7 / 12, "feet"),
  20666. weight: math.unit(175, "lb"),
  20667. name: "Anthro",
  20668. image: {
  20669. source: "./media/characters/rena-dyne/anthro.svg",
  20670. extra: 1849 / 1785,
  20671. bottom: 0.005
  20672. }
  20673. },
  20674. taur: {
  20675. height: math.unit(15 + 6 / 12, "feet"),
  20676. weight: math.unit(8000, "lb"),
  20677. name: "Taur",
  20678. image: {
  20679. source: "./media/characters/rena-dyne/taur.svg",
  20680. extra: 2315 / 2234,
  20681. bottom: 0.033
  20682. }
  20683. },
  20684. },
  20685. [
  20686. {
  20687. name: "Normal",
  20688. height: math.unit(5 + 7 / 12, "feet"),
  20689. default: true
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(8, "feet"),
  20698. weight: math.unit(600, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/weremeep/front.svg",
  20702. extra: 967 / 862,
  20703. bottom: 0.01
  20704. }
  20705. },
  20706. },
  20707. [
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(8, "feet"),
  20711. default: true
  20712. },
  20713. {
  20714. name: "Lorg",
  20715. height: math.unit(12, "feet")
  20716. },
  20717. {
  20718. name: "Oh Lawd She Comin'",
  20719. height: math.unit(20, "feet")
  20720. },
  20721. ]
  20722. ))
  20723. characterMakers.push(() => makeCharacter(
  20724. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20725. {
  20726. front: {
  20727. height: math.unit(4, "feet"),
  20728. weight: math.unit(90, "lb"),
  20729. name: "Front",
  20730. image: {
  20731. source: "./media/characters/reza/front.svg",
  20732. extra: 1183 / 1111,
  20733. bottom: 0.017
  20734. }
  20735. },
  20736. back: {
  20737. height: math.unit(4, "feet"),
  20738. weight: math.unit(90, "lb"),
  20739. name: "Back",
  20740. image: {
  20741. source: "./media/characters/reza/back.svg",
  20742. extra: 1183 / 1111,
  20743. bottom: 0.01
  20744. }
  20745. },
  20746. drake: {
  20747. height: math.unit(30, "feet"),
  20748. weight: math.unit(246960, "lb"),
  20749. name: "Drake",
  20750. image: {
  20751. source: "./media/characters/reza/drake.svg",
  20752. extra: 2350 / 2024,
  20753. bottom: 60.7 / 2403
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(4, "feet"),
  20761. default: true
  20762. },
  20763. ]
  20764. ))
  20765. characterMakers.push(() => makeCharacter(
  20766. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20767. {
  20768. side: {
  20769. height: math.unit(15, "feet"),
  20770. weight: math.unit(14, "tons"),
  20771. name: "Side",
  20772. image: {
  20773. source: "./media/characters/athea/side.svg",
  20774. extra: 960 / 540,
  20775. bottom: 0.003
  20776. }
  20777. },
  20778. sitting: {
  20779. height: math.unit(6 * 2.85, "feet"),
  20780. weight: math.unit(14, "tons"),
  20781. name: "Sitting",
  20782. image: {
  20783. source: "./media/characters/athea/sitting.svg",
  20784. extra: 621 / 581,
  20785. bottom: 0.075
  20786. }
  20787. },
  20788. maw: {
  20789. height: math.unit(7.59498031496063, "feet"),
  20790. name: "Maw",
  20791. image: {
  20792. source: "./media/characters/athea/maw.svg"
  20793. }
  20794. },
  20795. },
  20796. [
  20797. {
  20798. name: "Lap Cat",
  20799. height: math.unit(2.5, "feet")
  20800. },
  20801. {
  20802. name: "Minimacro",
  20803. height: math.unit(15, "feet"),
  20804. default: true
  20805. },
  20806. {
  20807. name: "Macro",
  20808. height: math.unit(120, "feet")
  20809. },
  20810. {
  20811. name: "Macro+",
  20812. height: math.unit(640, "feet")
  20813. },
  20814. {
  20815. name: "Colossus",
  20816. height: math.unit(2.2, "miles")
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20822. {
  20823. front: {
  20824. height: math.unit(8 + 8 / 12, "feet"),
  20825. weight: math.unit(130, "kg"),
  20826. name: "Front",
  20827. image: {
  20828. source: "./media/characters/seroko/front.svg",
  20829. extra: 1385 / 1280,
  20830. bottom: 0.025
  20831. }
  20832. },
  20833. back: {
  20834. height: math.unit(8 + 8 / 12, "feet"),
  20835. weight: math.unit(130, "kg"),
  20836. name: "Back",
  20837. image: {
  20838. source: "./media/characters/seroko/back.svg",
  20839. extra: 1369 / 1238,
  20840. bottom: 0.018
  20841. }
  20842. },
  20843. frontDressed: {
  20844. height: math.unit(8 + 8 / 12, "feet"),
  20845. weight: math.unit(130, "kg"),
  20846. name: "Front (Dressed)",
  20847. image: {
  20848. source: "./media/characters/seroko/front-dressed.svg",
  20849. extra: 1366 / 1275,
  20850. bottom: 0.03
  20851. }
  20852. },
  20853. },
  20854. [
  20855. {
  20856. name: "Normal",
  20857. height: math.unit(8 + 8 / 12, "feet"),
  20858. default: true
  20859. },
  20860. ]
  20861. ))
  20862. characterMakers.push(() => makeCharacter(
  20863. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20864. {
  20865. front: {
  20866. height: math.unit(5.5, "feet"),
  20867. weight: math.unit(160, "lb"),
  20868. name: "Front",
  20869. image: {
  20870. source: "./media/characters/quatzi/front.svg",
  20871. extra: 2346 / 2242,
  20872. bottom: 0.015
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(5.5, "feet"),
  20880. default: true
  20881. },
  20882. {
  20883. name: "Big",
  20884. height: math.unit(7.7, "feet")
  20885. },
  20886. ]
  20887. ))
  20888. characterMakers.push(() => makeCharacter(
  20889. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20890. {
  20891. front: {
  20892. height: math.unit(5 + 11 / 12, "feet"),
  20893. weight: math.unit(180, "lb"),
  20894. name: "Front",
  20895. image: {
  20896. source: "./media/characters/sen/front.svg",
  20897. extra: 1321 / 1254,
  20898. bottom: 0.015
  20899. }
  20900. },
  20901. side: {
  20902. height: math.unit(5 + 11 / 12, "feet"),
  20903. weight: math.unit(180, "lb"),
  20904. name: "Side",
  20905. image: {
  20906. source: "./media/characters/sen/side.svg",
  20907. extra: 1321 / 1254,
  20908. bottom: 0.007
  20909. }
  20910. },
  20911. back: {
  20912. height: math.unit(5 + 11 / 12, "feet"),
  20913. weight: math.unit(180, "lb"),
  20914. name: "Back",
  20915. image: {
  20916. source: "./media/characters/sen/back.svg",
  20917. extra: 1321 / 1254
  20918. }
  20919. },
  20920. },
  20921. [
  20922. {
  20923. name: "Normal",
  20924. height: math.unit(5 + 11 / 12, "feet"),
  20925. default: true
  20926. },
  20927. ]
  20928. ))
  20929. characterMakers.push(() => makeCharacter(
  20930. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20931. {
  20932. front: {
  20933. height: math.unit(166.6, "cm"),
  20934. weight: math.unit(66.6, "kg"),
  20935. name: "Front",
  20936. image: {
  20937. source: "./media/characters/fruity/front.svg",
  20938. extra: 1510 / 1386,
  20939. bottom: 0.04
  20940. }
  20941. },
  20942. back: {
  20943. height: math.unit(166.6, "cm"),
  20944. weight: math.unit(66.6, "lb"),
  20945. name: "Back",
  20946. image: {
  20947. source: "./media/characters/fruity/back.svg",
  20948. extra: 1563 / 1435,
  20949. bottom: 0.005
  20950. }
  20951. },
  20952. },
  20953. [
  20954. {
  20955. name: "Normal",
  20956. height: math.unit(166.6, "cm"),
  20957. default: true
  20958. },
  20959. {
  20960. name: "Demonic",
  20961. height: math.unit(166.6, "feet")
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20967. {
  20968. side: {
  20969. height: math.unit(10, "feet"),
  20970. weight: math.unit(500, "lb"),
  20971. name: "Side",
  20972. image: {
  20973. source: "./media/characters/zost/side.svg",
  20974. extra: 966 / 880,
  20975. bottom: 0.075
  20976. }
  20977. },
  20978. mawFront: {
  20979. height: math.unit(1.08, "meters"),
  20980. name: "Maw (Front)",
  20981. image: {
  20982. source: "./media/characters/zost/maw-front.svg"
  20983. }
  20984. },
  20985. mawSide: {
  20986. height: math.unit(2.66, "feet"),
  20987. name: "Maw (Side)",
  20988. image: {
  20989. source: "./media/characters/zost/maw-side.svg"
  20990. }
  20991. },
  20992. },
  20993. [
  20994. {
  20995. name: "Normal",
  20996. height: math.unit(10, "feet"),
  20997. default: true
  20998. },
  20999. ]
  21000. ))
  21001. characterMakers.push(() => makeCharacter(
  21002. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21003. {
  21004. front: {
  21005. height: math.unit(5 + 4 / 12, "feet"),
  21006. weight: math.unit(120, "lb"),
  21007. name: "Front",
  21008. image: {
  21009. source: "./media/characters/luci/front.svg",
  21010. extra: 1985 / 1884,
  21011. bottom: 0.04
  21012. }
  21013. },
  21014. back: {
  21015. height: math.unit(5 + 4 / 12, "feet"),
  21016. weight: math.unit(120, "lb"),
  21017. name: "Back",
  21018. image: {
  21019. source: "./media/characters/luci/back.svg",
  21020. extra: 1892 / 1791,
  21021. bottom: 0.002
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(5 + 4 / 12, "feet"),
  21029. default: true
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21035. {
  21036. front: {
  21037. height: math.unit(1500, "feet"),
  21038. weight: math.unit(3.8e6, "tons"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/2th/front.svg",
  21042. extra: 3489 / 3350,
  21043. bottom: 0.1
  21044. }
  21045. },
  21046. foot: {
  21047. height: math.unit(461, "feet"),
  21048. name: "Foot",
  21049. image: {
  21050. source: "./media/characters/2th/foot.svg"
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "\"Micro\"",
  21057. height: math.unit(15 + 7 / 12, "feet")
  21058. },
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(1500, "feet"),
  21062. default: true
  21063. },
  21064. {
  21065. name: "Macro",
  21066. height: math.unit(5000, "feet")
  21067. },
  21068. {
  21069. name: "Megamacro",
  21070. height: math.unit(15, "miles")
  21071. },
  21072. {
  21073. name: "Gigamacro",
  21074. height: math.unit(4000, "miles")
  21075. },
  21076. {
  21077. name: "Galactic",
  21078. height: math.unit(50, "AU")
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21084. {
  21085. front: {
  21086. height: math.unit(5 + 6 / 12, "feet"),
  21087. weight: math.unit(220, "lb"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/amethyst/front.svg",
  21091. extra: 2078 / 2040,
  21092. bottom: 0.045
  21093. }
  21094. },
  21095. back: {
  21096. height: math.unit(5 + 6 / 12, "feet"),
  21097. weight: math.unit(220, "lb"),
  21098. name: "Back",
  21099. image: {
  21100. source: "./media/characters/amethyst/back.svg",
  21101. extra: 2021 / 1989,
  21102. bottom: 0.02
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(5 + 6 / 12, "feet"),
  21110. default: true
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21116. {
  21117. front: {
  21118. height: math.unit(4 + 11 / 12, "feet"),
  21119. weight: math.unit(120, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/yumi-akiyama/front.svg",
  21123. extra: 1327 / 1235,
  21124. bottom: 0.02
  21125. }
  21126. },
  21127. back: {
  21128. height: math.unit(4 + 11 / 12, "feet"),
  21129. weight: math.unit(120, "lb"),
  21130. name: "Back",
  21131. image: {
  21132. source: "./media/characters/yumi-akiyama/back.svg",
  21133. extra: 1287 / 1245,
  21134. bottom: 0.002
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Galactic",
  21141. height: math.unit(50, "galaxies"),
  21142. default: true
  21143. },
  21144. {
  21145. name: "Universal",
  21146. height: math.unit(100, "universes")
  21147. },
  21148. ]
  21149. ))
  21150. characterMakers.push(() => makeCharacter(
  21151. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21152. {
  21153. front: {
  21154. height: math.unit(8, "feet"),
  21155. weight: math.unit(500, "lb"),
  21156. name: "Front",
  21157. image: {
  21158. source: "./media/characters/rifter-yrmori/front.svg",
  21159. extra: 1180 / 1125,
  21160. bottom: 0.02
  21161. }
  21162. },
  21163. back: {
  21164. height: math.unit(8, "feet"),
  21165. weight: math.unit(500, "lb"),
  21166. name: "Back",
  21167. image: {
  21168. source: "./media/characters/rifter-yrmori/back.svg",
  21169. extra: 1190 / 1145,
  21170. bottom: 0.001
  21171. }
  21172. },
  21173. wings: {
  21174. height: math.unit(7.75, "feet"),
  21175. weight: math.unit(500, "lb"),
  21176. name: "Wings",
  21177. image: {
  21178. source: "./media/characters/rifter-yrmori/wings.svg",
  21179. extra: 1357 / 1285
  21180. }
  21181. },
  21182. maw: {
  21183. height: math.unit(0.8, "feet"),
  21184. name: "Maw",
  21185. image: {
  21186. source: "./media/characters/rifter-yrmori/maw.svg"
  21187. }
  21188. },
  21189. mawfront: {
  21190. height: math.unit(1.45, "feet"),
  21191. name: "Maw (Front)",
  21192. image: {
  21193. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21194. }
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(8, "feet"),
  21201. default: true
  21202. },
  21203. {
  21204. name: "Macro",
  21205. height: math.unit(42, "meters")
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21211. {
  21212. were: {
  21213. height: math.unit(25 + 6 / 12, "feet"),
  21214. weight: math.unit(10000, "lb"),
  21215. name: "Were",
  21216. image: {
  21217. source: "./media/characters/tahajin/were.svg",
  21218. extra: 801 / 770,
  21219. bottom: 0.042
  21220. }
  21221. },
  21222. aquatic: {
  21223. height: math.unit(6 + 4 / 12, "feet"),
  21224. weight: math.unit(160, "lb"),
  21225. name: "Aquatic",
  21226. image: {
  21227. source: "./media/characters/tahajin/aquatic.svg",
  21228. extra: 572 / 542,
  21229. bottom: 0.04
  21230. }
  21231. },
  21232. chow: {
  21233. height: math.unit(8 + 11 / 12, "feet"),
  21234. weight: math.unit(450, "lb"),
  21235. name: "Chow",
  21236. image: {
  21237. source: "./media/characters/tahajin/chow.svg",
  21238. extra: 660 / 640,
  21239. bottom: 0.015
  21240. }
  21241. },
  21242. demiNaga: {
  21243. height: math.unit(6 + 8 / 12, "feet"),
  21244. weight: math.unit(300, "lb"),
  21245. name: "Demi Naga",
  21246. image: {
  21247. source: "./media/characters/tahajin/demi-naga.svg",
  21248. extra: 643 / 615,
  21249. bottom: 0.1
  21250. }
  21251. },
  21252. data: {
  21253. height: math.unit(5, "inches"),
  21254. weight: math.unit(0.1, "lb"),
  21255. name: "Data",
  21256. image: {
  21257. source: "./media/characters/tahajin/data.svg"
  21258. }
  21259. },
  21260. fluu: {
  21261. height: math.unit(5 + 7 / 12, "feet"),
  21262. weight: math.unit(140, "lb"),
  21263. name: "Fluu",
  21264. image: {
  21265. source: "./media/characters/tahajin/fluu.svg",
  21266. extra: 628 / 592,
  21267. bottom: 0.02
  21268. }
  21269. },
  21270. starWarrior: {
  21271. height: math.unit(4 + 5 / 12, "feet"),
  21272. weight: math.unit(50, "lb"),
  21273. name: "Star Warrior",
  21274. image: {
  21275. source: "./media/characters/tahajin/star-warrior.svg"
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(25 + 6 / 12, "feet"),
  21283. default: true
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21289. {
  21290. front: {
  21291. height: math.unit(8, "feet"),
  21292. weight: math.unit(350, "lb"),
  21293. name: "Front",
  21294. image: {
  21295. source: "./media/characters/gabira/front.svg",
  21296. extra: 608 / 580,
  21297. bottom: 0.03
  21298. }
  21299. },
  21300. back: {
  21301. height: math.unit(8, "feet"),
  21302. weight: math.unit(350, "lb"),
  21303. name: "Back",
  21304. image: {
  21305. source: "./media/characters/gabira/back.svg",
  21306. extra: 608 / 580,
  21307. bottom: 0.03
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(8, "feet"),
  21315. default: true
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21321. {
  21322. front: {
  21323. height: math.unit(5 + 3 / 12, "feet"),
  21324. weight: math.unit(137, "lb"),
  21325. name: "Front",
  21326. image: {
  21327. source: "./media/characters/sasha-katraine/front.svg",
  21328. bottom: 0.045
  21329. }
  21330. },
  21331. },
  21332. [
  21333. {
  21334. name: "Micro",
  21335. height: math.unit(5, "inches")
  21336. },
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(5 + 3 / 12, "feet"),
  21340. default: true
  21341. },
  21342. ]
  21343. ))
  21344. characterMakers.push(() => makeCharacter(
  21345. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21346. {
  21347. side: {
  21348. height: math.unit(4, "inches"),
  21349. weight: math.unit(200, "grams"),
  21350. name: "Side",
  21351. image: {
  21352. source: "./media/characters/der/side.svg",
  21353. extra: 719 / 400,
  21354. bottom: 30.6 / 749.9187
  21355. }
  21356. },
  21357. },
  21358. [
  21359. {
  21360. name: "Micro",
  21361. height: math.unit(4, "inches"),
  21362. default: true
  21363. },
  21364. ]
  21365. ))
  21366. characterMakers.push(() => makeCharacter(
  21367. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21368. {
  21369. side: {
  21370. height: math.unit(30, "meters"),
  21371. weight: math.unit(700, "tonnes"),
  21372. name: "Side",
  21373. image: {
  21374. source: "./media/characters/fixerdragon/side.svg",
  21375. extra: (1293.0514 - 116.03) / 1106.86,
  21376. bottom: 116.03 / 1293.0514
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Planck",
  21383. height: math.unit(1.6e-35, "meters")
  21384. },
  21385. {
  21386. name: "Micro",
  21387. height: math.unit(0.4, "meters")
  21388. },
  21389. {
  21390. name: "Normal",
  21391. height: math.unit(30, "meters"),
  21392. default: true
  21393. },
  21394. {
  21395. name: "Megamacro",
  21396. height: math.unit(1.2, "megameters")
  21397. },
  21398. {
  21399. name: "Teramacro",
  21400. height: math.unit(130, "terameters")
  21401. },
  21402. {
  21403. name: "Yottamacro",
  21404. height: math.unit(6200, "yottameters")
  21405. },
  21406. ]
  21407. ));
  21408. characterMakers.push(() => makeCharacter(
  21409. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21410. {
  21411. front: {
  21412. height: math.unit(8, "feet"),
  21413. weight: math.unit(250, "lb"),
  21414. name: "Front",
  21415. image: {
  21416. source: "./media/characters/kite/front.svg",
  21417. extra: 2796 / 2659,
  21418. bottom: 0.002
  21419. }
  21420. },
  21421. },
  21422. [
  21423. {
  21424. name: "Normal",
  21425. height: math.unit(8, "feet"),
  21426. default: true
  21427. },
  21428. {
  21429. name: "Macro",
  21430. height: math.unit(360, "feet")
  21431. },
  21432. {
  21433. name: "Megamacro",
  21434. height: math.unit(1500, "feet")
  21435. },
  21436. ]
  21437. ))
  21438. characterMakers.push(() => makeCharacter(
  21439. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21440. {
  21441. front: {
  21442. height: math.unit(5 + 10 / 12, "feet"),
  21443. weight: math.unit(150, "lb"),
  21444. name: "Front",
  21445. image: {
  21446. source: "./media/characters/poojawa-vynar/front.svg",
  21447. extra: (1506.1547 - 55) / 1356.6,
  21448. bottom: 55 / 1506.1547
  21449. }
  21450. },
  21451. frontTailless: {
  21452. height: math.unit(5 + 10 / 12, "feet"),
  21453. weight: math.unit(150, "lb"),
  21454. name: "Front (Tailless)",
  21455. image: {
  21456. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21457. extra: (1506.1547 - 55) / 1356.6,
  21458. bottom: 55 / 1506.1547
  21459. }
  21460. },
  21461. },
  21462. [
  21463. {
  21464. name: "Normal",
  21465. height: math.unit(5 + 10 / 12, "feet"),
  21466. default: true
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21472. {
  21473. front: {
  21474. height: math.unit(293, "meters"),
  21475. weight: math.unit(70400, "tons"),
  21476. name: "Front",
  21477. image: {
  21478. source: "./media/characters/violette/front.svg",
  21479. extra: 1227 / 1180,
  21480. bottom: 0.005
  21481. }
  21482. },
  21483. back: {
  21484. height: math.unit(293, "meters"),
  21485. weight: math.unit(70400, "tons"),
  21486. name: "Back",
  21487. image: {
  21488. source: "./media/characters/violette/back.svg",
  21489. extra: 1227 / 1180,
  21490. bottom: 0.005
  21491. }
  21492. },
  21493. },
  21494. [
  21495. {
  21496. name: "Macro",
  21497. height: math.unit(293, "meters"),
  21498. default: true
  21499. },
  21500. ]
  21501. ))
  21502. characterMakers.push(() => makeCharacter(
  21503. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21504. {
  21505. front: {
  21506. height: math.unit(1050, "feet"),
  21507. weight: math.unit(200000, "tons"),
  21508. name: "Front",
  21509. image: {
  21510. source: "./media/characters/alessandra/front.svg",
  21511. extra: 960 / 912,
  21512. bottom: 0.06
  21513. }
  21514. },
  21515. },
  21516. [
  21517. {
  21518. name: "Macro",
  21519. height: math.unit(1050, "feet")
  21520. },
  21521. {
  21522. name: "Macro+",
  21523. height: math.unit(900, "meters"),
  21524. default: true
  21525. },
  21526. ]
  21527. ))
  21528. characterMakers.push(() => makeCharacter(
  21529. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21530. {
  21531. front: {
  21532. height: math.unit(5, "feet"),
  21533. weight: math.unit(187, "lb"),
  21534. name: "Front",
  21535. image: {
  21536. source: "./media/characters/person/front.svg",
  21537. extra: 3087 / 2945,
  21538. bottom: 91 / 3181
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Micro",
  21545. height: math.unit(3, "inches")
  21546. },
  21547. {
  21548. name: "Normal",
  21549. height: math.unit(5, "feet"),
  21550. default: true
  21551. },
  21552. {
  21553. name: "Macro",
  21554. height: math.unit(90, "feet")
  21555. },
  21556. {
  21557. name: "Max Size",
  21558. height: math.unit(280, "feet")
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21564. {
  21565. front: {
  21566. height: math.unit(4.5, "meters"),
  21567. weight: math.unit(3200, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/ty/front.svg",
  21571. extra: 1038 / 960,
  21572. bottom: 31.156 / 1068
  21573. }
  21574. },
  21575. back: {
  21576. height: math.unit(4.5, "meters"),
  21577. weight: math.unit(3200, "lb"),
  21578. name: "Back",
  21579. image: {
  21580. source: "./media/characters/ty/back.svg",
  21581. extra: 1044 / 966,
  21582. bottom: 7.48 / 1049
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Normal",
  21589. height: math.unit(4.5, "meters"),
  21590. default: true
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(5 + 4 / 12, "feet"),
  21599. weight: math.unit(115, "lb"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/rocky/front.svg",
  21603. extra: 1012 / 975,
  21604. bottom: 54 / 1066
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(5 + 4 / 12, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21618. {
  21619. upright: {
  21620. height: math.unit(6, "meters"),
  21621. weight: math.unit(4000, "kg"),
  21622. name: "Upright",
  21623. image: {
  21624. source: "./media/characters/ruin/upright.svg",
  21625. extra: 668 / 661,
  21626. bottom: 42 / 799.8396
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(6, "meters"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(5, "feet"),
  21643. weight: math.unit(106, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/robin/front.svg",
  21647. extra: 862 / 799,
  21648. bottom: 42.4 / 914.8856
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(5, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21662. {
  21663. side: {
  21664. height: math.unit(3, "feet"),
  21665. weight: math.unit(225, "lb"),
  21666. name: "Side",
  21667. image: {
  21668. source: "./media/characters/saian/side.svg",
  21669. extra: 566 / 356,
  21670. bottom: 79.7 / 643
  21671. }
  21672. },
  21673. maw: {
  21674. height: math.unit(2.85, "feet"),
  21675. name: "Maw",
  21676. image: {
  21677. source: "./media/characters/saian/maw.svg"
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Normal",
  21684. height: math.unit(3, "feet"),
  21685. default: true
  21686. },
  21687. ]
  21688. ))
  21689. characterMakers.push(() => makeCharacter(
  21690. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21691. {
  21692. side: {
  21693. height: math.unit(8, "feet"),
  21694. weight: math.unit(300, "lb"),
  21695. name: "Side",
  21696. image: {
  21697. source: "./media/characters/equus-silvermane/side.svg",
  21698. extra: 2176 / 2050,
  21699. bottom: 65.7 / 2245
  21700. }
  21701. },
  21702. front: {
  21703. height: math.unit(8, "feet"),
  21704. weight: math.unit(300, "lb"),
  21705. name: "Front",
  21706. image: {
  21707. source: "./media/characters/equus-silvermane/front.svg",
  21708. extra: 4633 / 4400,
  21709. bottom: 71.3 / 4706.915
  21710. }
  21711. },
  21712. sideStepping: {
  21713. height: math.unit(8, "feet"),
  21714. weight: math.unit(300, "lb"),
  21715. name: "Side (Stepping)",
  21716. image: {
  21717. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21718. extra: 1968 / 1860,
  21719. bottom: 16.4 / 1989
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Normal",
  21726. height: math.unit(8, "feet")
  21727. },
  21728. {
  21729. name: "Minimacro",
  21730. height: math.unit(75, "feet"),
  21731. default: true
  21732. },
  21733. {
  21734. name: "Macro",
  21735. height: math.unit(150, "feet")
  21736. },
  21737. {
  21738. name: "Macro+",
  21739. height: math.unit(1000, "feet")
  21740. },
  21741. {
  21742. name: "Megamacro",
  21743. height: math.unit(1, "mile")
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21749. {
  21750. side: {
  21751. height: math.unit(20, "feet"),
  21752. weight: math.unit(30000, "kg"),
  21753. name: "Side",
  21754. image: {
  21755. source: "./media/characters/windar/side.svg",
  21756. extra: 1491 / 1248,
  21757. bottom: 82.56 / 1568
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(20, "feet"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21771. {
  21772. side: {
  21773. height: math.unit(15.66, "feet"),
  21774. weight: math.unit(150, "lb"),
  21775. name: "Side",
  21776. image: {
  21777. source: "./media/characters/melody/side.svg",
  21778. extra: 1097 / 944,
  21779. bottom: 11.8 / 1109
  21780. }
  21781. },
  21782. sideOutfit: {
  21783. height: math.unit(15.66, "feet"),
  21784. weight: math.unit(150, "lb"),
  21785. name: "Side (Outfit)",
  21786. image: {
  21787. source: "./media/characters/melody/side-outfit.svg",
  21788. extra: 1097 / 944,
  21789. bottom: 11.8 / 1109
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(15.66, "feet"),
  21797. default: true
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21803. {
  21804. front: {
  21805. height: math.unit(8, "feet"),
  21806. weight: math.unit(325, "lb"),
  21807. name: "Front",
  21808. image: {
  21809. source: "./media/characters/windera/front.svg",
  21810. extra: 3180 / 2845,
  21811. bottom: 178 / 3365
  21812. }
  21813. },
  21814. },
  21815. [
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(8, "feet"),
  21819. default: true
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21825. {
  21826. front: {
  21827. height: math.unit(28.75, "feet"),
  21828. weight: math.unit(2000, "kg"),
  21829. name: "Front",
  21830. image: {
  21831. source: "./media/characters/sonear/front.svg",
  21832. extra: 1041.1 / 964.9,
  21833. bottom: 53.7 / 1096.6
  21834. }
  21835. },
  21836. },
  21837. [
  21838. {
  21839. name: "Normal",
  21840. height: math.unit(28.75, "feet"),
  21841. default: true
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21847. {
  21848. side: {
  21849. height: math.unit(25.5, "feet"),
  21850. weight: math.unit(23000, "kg"),
  21851. name: "Side",
  21852. image: {
  21853. source: "./media/characters/kanara/side.svg"
  21854. }
  21855. },
  21856. },
  21857. [
  21858. {
  21859. name: "Normal",
  21860. height: math.unit(25.5, "feet"),
  21861. default: true
  21862. },
  21863. ]
  21864. ))
  21865. characterMakers.push(() => makeCharacter(
  21866. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21867. {
  21868. side: {
  21869. height: math.unit(10, "feet"),
  21870. weight: math.unit(1000, "kg"),
  21871. name: "Side",
  21872. image: {
  21873. source: "./media/characters/ereus/side.svg",
  21874. extra: 1157 / 959,
  21875. bottom: 153 / 1312.5
  21876. }
  21877. },
  21878. },
  21879. [
  21880. {
  21881. name: "Normal",
  21882. height: math.unit(10, "feet"),
  21883. default: true
  21884. },
  21885. ]
  21886. ))
  21887. characterMakers.push(() => makeCharacter(
  21888. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21889. {
  21890. side: {
  21891. height: math.unit(4.5, "feet"),
  21892. weight: math.unit(500, "lb"),
  21893. name: "Side",
  21894. image: {
  21895. source: "./media/characters/e-ter/side.svg",
  21896. extra: 1550 / 1248,
  21897. bottom: 146 / 1694
  21898. }
  21899. },
  21900. },
  21901. [
  21902. {
  21903. name: "Normal",
  21904. height: math.unit(4.5, "feet"),
  21905. default: true
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21911. {
  21912. side: {
  21913. height: math.unit(9.7, "feet"),
  21914. weight: math.unit(4000, "kg"),
  21915. name: "Side",
  21916. image: {
  21917. source: "./media/characters/yamie/side.svg"
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(9.7, "feet"),
  21925. default: true
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21931. {
  21932. front: {
  21933. height: math.unit(50, "feet"),
  21934. weight: math.unit(50000, "kg"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/anders/front.svg",
  21938. extra: 570 / 539,
  21939. bottom: 14.7 / 586.7
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Large",
  21946. height: math.unit(50, "feet")
  21947. },
  21948. {
  21949. name: "Macro",
  21950. height: math.unit(2000, "feet"),
  21951. default: true
  21952. },
  21953. {
  21954. name: "Megamacro",
  21955. height: math.unit(12, "miles")
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21961. {
  21962. front: {
  21963. height: math.unit(7 + 2 / 12, "feet"),
  21964. weight: math.unit(300, "lb"),
  21965. name: "Front",
  21966. image: {
  21967. source: "./media/characters/reban/front.svg",
  21968. extra: 516 / 487,
  21969. bottom: 42.82 / 558.356
  21970. }
  21971. },
  21972. dick: {
  21973. height: math.unit(7 / 5, "feet"),
  21974. name: "Dick",
  21975. image: {
  21976. source: "./media/characters/reban/dick.svg"
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Natural Height",
  21983. height: math.unit(7 + 2 / 12, "feet")
  21984. },
  21985. {
  21986. name: "Macro",
  21987. height: math.unit(500, "feet"),
  21988. default: true
  21989. },
  21990. {
  21991. name: "Canon Height",
  21992. height: math.unit(50, "AU")
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21998. {
  21999. front: {
  22000. height: math.unit(6, "feet"),
  22001. weight: math.unit(150, "lb"),
  22002. name: "Front",
  22003. image: {
  22004. source: "./media/characters/terrance-keayes/front.svg",
  22005. extra: 1.005,
  22006. bottom: 151 / 1615
  22007. }
  22008. },
  22009. side: {
  22010. height: math.unit(6, "feet"),
  22011. weight: math.unit(150, "lb"),
  22012. name: "Side",
  22013. image: {
  22014. source: "./media/characters/terrance-keayes/side.svg",
  22015. extra: 1.005,
  22016. bottom: 129.4 / 1544
  22017. }
  22018. },
  22019. back: {
  22020. height: math.unit(6, "feet"),
  22021. weight: math.unit(150, "lb"),
  22022. name: "Back",
  22023. image: {
  22024. source: "./media/characters/terrance-keayes/back.svg",
  22025. extra: 1.005,
  22026. bottom: 58.4 / 1557.3
  22027. }
  22028. },
  22029. dick: {
  22030. height: math.unit(6 * 0.208, "feet"),
  22031. name: "Dick",
  22032. image: {
  22033. source: "./media/characters/terrance-keayes/dick.svg"
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Canon Height",
  22040. height: math.unit(35, "miles"),
  22041. default: true
  22042. },
  22043. ]
  22044. ))
  22045. characterMakers.push(() => makeCharacter(
  22046. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22047. {
  22048. front: {
  22049. height: math.unit(6, "feet"),
  22050. weight: math.unit(150, "lb"),
  22051. name: "Front",
  22052. image: {
  22053. source: "./media/characters/ofelia/front.svg",
  22054. extra: 546 / 541,
  22055. bottom: 39 / 583
  22056. }
  22057. },
  22058. back: {
  22059. height: math.unit(6, "feet"),
  22060. weight: math.unit(150, "lb"),
  22061. name: "Back",
  22062. image: {
  22063. source: "./media/characters/ofelia/back.svg",
  22064. extra: 564 / 559.5,
  22065. bottom: 8.69 / 573.02
  22066. }
  22067. },
  22068. maw: {
  22069. height: math.unit(1, "feet"),
  22070. name: "Maw",
  22071. image: {
  22072. source: "./media/characters/ofelia/maw.svg"
  22073. }
  22074. },
  22075. foot: {
  22076. height: math.unit(1.949, "feet"),
  22077. name: "Foot",
  22078. image: {
  22079. source: "./media/characters/ofelia/foot.svg"
  22080. }
  22081. },
  22082. },
  22083. [
  22084. {
  22085. name: "Canon Height",
  22086. height: math.unit(2000, "miles"),
  22087. default: true
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22093. {
  22094. front: {
  22095. height: math.unit(6, "feet"),
  22096. weight: math.unit(150, "lb"),
  22097. name: "Front",
  22098. image: {
  22099. source: "./media/characters/samuel/front.svg",
  22100. extra: 265 / 258,
  22101. bottom: 2 / 266.1566
  22102. }
  22103. },
  22104. },
  22105. [
  22106. {
  22107. name: "Macro",
  22108. height: math.unit(100, "feet"),
  22109. default: true
  22110. },
  22111. {
  22112. name: "Full Size",
  22113. height: math.unit(1000, "miles")
  22114. },
  22115. ]
  22116. ))
  22117. characterMakers.push(() => makeCharacter(
  22118. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22119. {
  22120. front: {
  22121. height: math.unit(6, "feet"),
  22122. weight: math.unit(300, "lb"),
  22123. name: "Front",
  22124. image: {
  22125. source: "./media/characters/beishir-kiel/front.svg",
  22126. extra: 569 / 547,
  22127. bottom: 41.9 / 609
  22128. }
  22129. },
  22130. maw: {
  22131. height: math.unit(6 * 0.202, "feet"),
  22132. name: "Maw",
  22133. image: {
  22134. source: "./media/characters/beishir-kiel/maw.svg"
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Macro",
  22141. height: math.unit(300, "feet"),
  22142. default: true
  22143. },
  22144. ]
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22148. {
  22149. front: {
  22150. height: math.unit(5 + 7/12, "feet"),
  22151. weight: math.unit(120, "lb"),
  22152. name: "Front",
  22153. image: {
  22154. source: "./media/characters/logan-grey/front.svg",
  22155. extra: 1836/1738,
  22156. bottom: 108/1944
  22157. }
  22158. },
  22159. back: {
  22160. height: math.unit(5 + 7/12, "feet"),
  22161. weight: math.unit(120, "lb"),
  22162. name: "Back",
  22163. image: {
  22164. source: "./media/characters/logan-grey/back.svg",
  22165. extra: 1880/1794,
  22166. bottom: 24/1904
  22167. }
  22168. },
  22169. frontSfw: {
  22170. height: math.unit(5 + 7/12, "feet"),
  22171. weight: math.unit(120, "lb"),
  22172. name: "Front (SFW)",
  22173. image: {
  22174. source: "./media/characters/logan-grey/front-sfw.svg",
  22175. extra: 1836/1738,
  22176. bottom: 108/1944
  22177. }
  22178. },
  22179. backSfw: {
  22180. height: math.unit(5 + 7/12, "feet"),
  22181. weight: math.unit(120, "lb"),
  22182. name: "Back (SFW)",
  22183. image: {
  22184. source: "./media/characters/logan-grey/back-sfw.svg",
  22185. extra: 1880/1794,
  22186. bottom: 24/1904
  22187. }
  22188. },
  22189. hands: {
  22190. height: math.unit(0.84, "feet"),
  22191. name: "Hands",
  22192. image: {
  22193. source: "./media/characters/logan-grey/hands.svg"
  22194. }
  22195. },
  22196. paws: {
  22197. height: math.unit(0.72, "feet"),
  22198. name: "Paws",
  22199. image: {
  22200. source: "./media/characters/logan-grey/paws.svg"
  22201. }
  22202. },
  22203. cock: {
  22204. height: math.unit(1.45, "feet"),
  22205. name: "Cock",
  22206. image: {
  22207. source: "./media/characters/logan-grey/cock.svg"
  22208. }
  22209. },
  22210. cockAlt: {
  22211. height: math.unit(1.437, "feet"),
  22212. name: "Cock (alt)",
  22213. image: {
  22214. source: "./media/characters/logan-grey/cock-alt.svg"
  22215. }
  22216. },
  22217. },
  22218. [
  22219. {
  22220. name: "Normal",
  22221. height: math.unit(5 + 8 / 12, "feet")
  22222. },
  22223. {
  22224. name: "The 500 Foot Femboy",
  22225. height: math.unit(500, "feet"),
  22226. default: true
  22227. },
  22228. {
  22229. name: "Megmacro",
  22230. height: math.unit(20, "miles")
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22236. {
  22237. front: {
  22238. height: math.unit(8 + 2 / 12, "feet"),
  22239. weight: math.unit(275, "lb"),
  22240. name: "Front",
  22241. image: {
  22242. source: "./media/characters/draganta/front.svg",
  22243. extra: 1177 / 1135,
  22244. bottom: 33.46 / 1212.1
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Normal",
  22251. height: math.unit(8 + 6 / 12, "feet"),
  22252. default: true
  22253. },
  22254. {
  22255. name: "Macro",
  22256. height: math.unit(150, "feet")
  22257. },
  22258. {
  22259. name: "Megamacro",
  22260. height: math.unit(1000, "miles")
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22266. {
  22267. front: {
  22268. height: math.unit(1.72, "m"),
  22269. weight: math.unit(80, "lb"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/voski/front.svg",
  22273. extra: 2076.22 / 2022.4,
  22274. bottom: 102.7 / 2177.3866
  22275. }
  22276. },
  22277. frontNsfw: {
  22278. height: math.unit(1.72, "m"),
  22279. weight: math.unit(80, "lb"),
  22280. name: "Front (NSFW)",
  22281. image: {
  22282. source: "./media/characters/voski/front-nsfw.svg",
  22283. extra: 2076.22 / 2022.4,
  22284. bottom: 102.7 / 2177.3866
  22285. }
  22286. },
  22287. back: {
  22288. height: math.unit(1.72, "m"),
  22289. weight: math.unit(80, "lb"),
  22290. name: "Back",
  22291. image: {
  22292. source: "./media/characters/voski/back.svg",
  22293. extra: 2104 / 2051,
  22294. bottom: 10.45 / 2113.63
  22295. }
  22296. },
  22297. },
  22298. [
  22299. {
  22300. name: "Normal",
  22301. height: math.unit(1.72, "m")
  22302. },
  22303. {
  22304. name: "Macro",
  22305. height: math.unit(55, "m"),
  22306. default: true
  22307. },
  22308. {
  22309. name: "Macro+",
  22310. height: math.unit(300, "m")
  22311. },
  22312. {
  22313. name: "Macro++",
  22314. height: math.unit(700, "m")
  22315. },
  22316. {
  22317. name: "Macro+++",
  22318. height: math.unit(4500, "m")
  22319. },
  22320. {
  22321. name: "Macro++++",
  22322. height: math.unit(45, "km")
  22323. },
  22324. {
  22325. name: "Macro+++++",
  22326. height: math.unit(1220, "km")
  22327. },
  22328. ]
  22329. ))
  22330. characterMakers.push(() => makeCharacter(
  22331. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22332. {
  22333. front: {
  22334. height: math.unit(2.3, "m"),
  22335. weight: math.unit(304, "kg"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/icowom-lee/front.svg",
  22339. extra: 985 / 955,
  22340. bottom: 25.4 / 1012
  22341. }
  22342. },
  22343. fronttentacles: {
  22344. height: math.unit(2.3, "m"),
  22345. weight: math.unit(304, "kg"),
  22346. name: "Front-tentacles",
  22347. image: {
  22348. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22349. extra: 985 / 955,
  22350. bottom: 25.4 / 1012
  22351. }
  22352. },
  22353. back: {
  22354. height: math.unit(2.3, "m"),
  22355. weight: math.unit(304, "kg"),
  22356. name: "Back",
  22357. image: {
  22358. source: "./media/characters/icowom-lee/back.svg",
  22359. extra: 975 / 954,
  22360. bottom: 9.5 / 985
  22361. }
  22362. },
  22363. backtentacles: {
  22364. height: math.unit(2.3, "m"),
  22365. weight: math.unit(304, "kg"),
  22366. name: "Back-tentacles",
  22367. image: {
  22368. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22369. extra: 975 / 954,
  22370. bottom: 9.5 / 985
  22371. }
  22372. },
  22373. frontDressed: {
  22374. height: math.unit(2.3, "m"),
  22375. weight: math.unit(304, "kg"),
  22376. name: "Front (Dressed)",
  22377. image: {
  22378. source: "./media/characters/icowom-lee/front-dressed.svg",
  22379. extra: 3076 / 2933,
  22380. bottom: 51.4 / 3125.1889
  22381. }
  22382. },
  22383. rump: {
  22384. height: math.unit(0.776, "meters"),
  22385. name: "Rump",
  22386. image: {
  22387. source: "./media/characters/icowom-lee/rump.svg"
  22388. }
  22389. },
  22390. genitals: {
  22391. height: math.unit(0.78, "meters"),
  22392. name: "Genitals",
  22393. image: {
  22394. source: "./media/characters/icowom-lee/genitals.svg"
  22395. }
  22396. },
  22397. },
  22398. [
  22399. {
  22400. name: "Normal",
  22401. height: math.unit(2.3, "meters"),
  22402. default: true
  22403. },
  22404. {
  22405. name: "Macro",
  22406. height: math.unit(94, "meters"),
  22407. default: true
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22413. {
  22414. front: {
  22415. height: math.unit(22, "meters"),
  22416. weight: math.unit(21000, "kg"),
  22417. name: "Front",
  22418. image: {
  22419. source: "./media/characters/shock-diamond/front.svg",
  22420. extra: 2204 / 2053,
  22421. bottom: 65 / 2239.47
  22422. }
  22423. },
  22424. frontNude: {
  22425. height: math.unit(22, "meters"),
  22426. weight: math.unit(21000, "kg"),
  22427. name: "Front (Nude)",
  22428. image: {
  22429. source: "./media/characters/shock-diamond/front-nude.svg",
  22430. extra: 2514 / 2285,
  22431. bottom: 13 / 2527.56
  22432. }
  22433. },
  22434. },
  22435. [
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(3, "meters")
  22439. },
  22440. {
  22441. name: "Macro",
  22442. height: math.unit(22, "meters"),
  22443. default: true
  22444. },
  22445. ]
  22446. ))
  22447. characterMakers.push(() => makeCharacter(
  22448. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22449. {
  22450. front: {
  22451. height: math.unit(5 + 4 / 12, "feet"),
  22452. weight: math.unit(120, "lb"),
  22453. name: "Front",
  22454. image: {
  22455. source: "./media/characters/rory/front.svg",
  22456. extra: 1318/1241,
  22457. bottom: 42/1360
  22458. }
  22459. },
  22460. back: {
  22461. height: math.unit(5 + 4 / 12, "feet"),
  22462. weight: math.unit(120, "lb"),
  22463. name: "Back",
  22464. image: {
  22465. source: "./media/characters/rory/back.svg",
  22466. extra: 1318/1241,
  22467. bottom: 42/1360
  22468. }
  22469. },
  22470. butt: {
  22471. height: math.unit(1.74, "feet"),
  22472. name: "Butt",
  22473. image: {
  22474. source: "./media/characters/rory/butt.svg"
  22475. }
  22476. },
  22477. dick: {
  22478. height: math.unit(1.02, "feet"),
  22479. name: "Dick",
  22480. image: {
  22481. source: "./media/characters/rory/dick.svg"
  22482. }
  22483. },
  22484. paws: {
  22485. height: math.unit(1, "feet"),
  22486. name: "Paws",
  22487. image: {
  22488. source: "./media/characters/rory/paws.svg"
  22489. }
  22490. },
  22491. frontAlt: {
  22492. height: math.unit(5 + 4 / 12, "feet"),
  22493. weight: math.unit(120, "lb"),
  22494. name: "Front (Alt)",
  22495. image: {
  22496. source: "./media/characters/rory/front-alt.svg",
  22497. extra: 589 / 556,
  22498. bottom: 45.7 / 635.76
  22499. }
  22500. },
  22501. frontAltNude: {
  22502. height: math.unit(5 + 4 / 12, "feet"),
  22503. weight: math.unit(120, "lb"),
  22504. name: "Front (Alt, Nude)",
  22505. image: {
  22506. source: "./media/characters/rory/front-alt-nude.svg",
  22507. extra: 589 / 556,
  22508. bottom: 45.7 / 635.76
  22509. }
  22510. },
  22511. side: {
  22512. height: math.unit(5 + 4 / 12, "feet"),
  22513. weight: math.unit(120, "lb"),
  22514. name: "Side",
  22515. image: {
  22516. source: "./media/characters/rory/side.svg",
  22517. extra: 597 / 564,
  22518. bottom: 55 / 653
  22519. }
  22520. },
  22521. backAlt: {
  22522. height: math.unit(5 + 4 / 12, "feet"),
  22523. weight: math.unit(120, "lb"),
  22524. name: "Back (Alt)",
  22525. image: {
  22526. source: "./media/characters/rory/back-alt.svg",
  22527. extra: 620 / 585,
  22528. bottom: 8.86 / 630.43
  22529. }
  22530. },
  22531. dickAlt: {
  22532. height: math.unit(0.86, "feet"),
  22533. name: "Dick (Alt)",
  22534. image: {
  22535. source: "./media/characters/rory/dick-alt.svg"
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(5 + 4 / 12, "feet"),
  22543. default: true
  22544. },
  22545. {
  22546. name: "Macro",
  22547. height: math.unit(100, "feet")
  22548. },
  22549. {
  22550. name: "Macro+",
  22551. height: math.unit(140, "feet")
  22552. },
  22553. {
  22554. name: "Macro++",
  22555. height: math.unit(300, "feet")
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22561. {
  22562. front: {
  22563. height: math.unit(5 + 9 / 12, "feet"),
  22564. weight: math.unit(190, "lb"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/sprisk/front.svg",
  22568. extra: 1225 / 1180,
  22569. bottom: 42.7 / 1266.4
  22570. }
  22571. },
  22572. frontNsfw: {
  22573. height: math.unit(5 + 9 / 12, "feet"),
  22574. weight: math.unit(190, "lb"),
  22575. name: "Front (NSFW)",
  22576. image: {
  22577. source: "./media/characters/sprisk/front-nsfw.svg",
  22578. extra: 1225 / 1180,
  22579. bottom: 42.7 / 1266.4
  22580. }
  22581. },
  22582. back: {
  22583. height: math.unit(5 + 9 / 12, "feet"),
  22584. weight: math.unit(190, "lb"),
  22585. name: "Back",
  22586. image: {
  22587. source: "./media/characters/sprisk/back.svg",
  22588. extra: 1247 / 1200,
  22589. bottom: 5.6 / 1253.04
  22590. }
  22591. },
  22592. },
  22593. [
  22594. {
  22595. name: "Tiny",
  22596. height: math.unit(2, "inches")
  22597. },
  22598. {
  22599. name: "Normal",
  22600. height: math.unit(5 + 9 / 12, "feet"),
  22601. default: true
  22602. },
  22603. {
  22604. name: "Mini Macro",
  22605. height: math.unit(18, "feet")
  22606. },
  22607. {
  22608. name: "Macro",
  22609. height: math.unit(100, "feet")
  22610. },
  22611. {
  22612. name: "MACRO",
  22613. height: math.unit(50, "miles")
  22614. },
  22615. {
  22616. name: "M A C R O",
  22617. height: math.unit(300, "miles")
  22618. },
  22619. ]
  22620. ))
  22621. characterMakers.push(() => makeCharacter(
  22622. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22623. {
  22624. side: {
  22625. height: math.unit(15.6, "meters"),
  22626. weight: math.unit(700000, "kg"),
  22627. name: "Side",
  22628. image: {
  22629. source: "./media/characters/bunsen/side.svg",
  22630. extra: 1644 / 358
  22631. }
  22632. },
  22633. foot: {
  22634. height: math.unit(1.611 * 1644 / 358, "meter"),
  22635. name: "Foot",
  22636. image: {
  22637. source: "./media/characters/bunsen/foot.svg"
  22638. }
  22639. },
  22640. },
  22641. [
  22642. {
  22643. name: "Small",
  22644. height: math.unit(10, "feet")
  22645. },
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(15.6, "meters"),
  22649. default: true
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22655. {
  22656. front: {
  22657. height: math.unit(4 + 11 / 12, "feet"),
  22658. weight: math.unit(140, "lb"),
  22659. name: "Front",
  22660. image: {
  22661. source: "./media/characters/sesh/front.svg",
  22662. extra: 3420 / 3231,
  22663. bottom: 72 / 3949.5
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Normal",
  22670. height: math.unit(4 + 11 / 12, "feet")
  22671. },
  22672. {
  22673. name: "Grown",
  22674. height: math.unit(15, "feet"),
  22675. default: true
  22676. },
  22677. {
  22678. name: "Macro",
  22679. height: math.unit(1500, "feet")
  22680. },
  22681. {
  22682. name: "Megamacro",
  22683. height: math.unit(30, "miles")
  22684. },
  22685. {
  22686. name: "Continental",
  22687. height: math.unit(3000, "miles")
  22688. },
  22689. {
  22690. name: "Gravity Mass",
  22691. height: math.unit(300000, "miles")
  22692. },
  22693. {
  22694. name: "Planet Buster",
  22695. height: math.unit(30000000, "miles")
  22696. },
  22697. {
  22698. name: "Big",
  22699. height: math.unit(3000000000, "miles")
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22705. {
  22706. front: {
  22707. height: math.unit(9, "feet"),
  22708. weight: math.unit(350, "lb"),
  22709. name: "Front",
  22710. image: {
  22711. source: "./media/characters/pepper/front.svg",
  22712. extra: 1448 / 1312,
  22713. bottom: 9.4 / 1457.88
  22714. }
  22715. },
  22716. back: {
  22717. height: math.unit(9, "feet"),
  22718. weight: math.unit(350, "lb"),
  22719. name: "Back",
  22720. image: {
  22721. source: "./media/characters/pepper/back.svg",
  22722. extra: 1423 / 1300,
  22723. bottom: 4.6 / 1429
  22724. }
  22725. },
  22726. maw: {
  22727. height: math.unit(0.932, "feet"),
  22728. name: "Maw",
  22729. image: {
  22730. source: "./media/characters/pepper/maw.svg"
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Normal",
  22737. height: math.unit(9, "feet"),
  22738. default: true
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22744. {
  22745. front: {
  22746. height: math.unit(6, "feet"),
  22747. weight: math.unit(150, "lb"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/maelstrom/front.svg",
  22751. extra: 2100 / 1883,
  22752. bottom: 94 / 2196.7
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Less Kaiju",
  22759. height: math.unit(200, "feet")
  22760. },
  22761. {
  22762. name: "Kaiju",
  22763. height: math.unit(400, "feet"),
  22764. default: true
  22765. },
  22766. {
  22767. name: "Kaiju-er",
  22768. height: math.unit(600, "feet")
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(6 + 5 / 12, "feet"),
  22777. weight: math.unit(180, "lb"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/lexir/front.svg",
  22781. extra: 180 / 172,
  22782. bottom: 12 / 192
  22783. }
  22784. },
  22785. back: {
  22786. height: math.unit(6 + 5 / 12, "feet"),
  22787. weight: math.unit(180, "lb"),
  22788. name: "Back",
  22789. image: {
  22790. source: "./media/characters/lexir/back.svg",
  22791. extra: 183.84 / 175.5,
  22792. bottom: 3.1 / 187
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Very Smal",
  22799. height: math.unit(1, "nm")
  22800. },
  22801. {
  22802. name: "Normal",
  22803. height: math.unit(6 + 5 / 12, "feet"),
  22804. default: true
  22805. },
  22806. {
  22807. name: "Macro",
  22808. height: math.unit(1, "mile")
  22809. },
  22810. {
  22811. name: "Megamacro",
  22812. height: math.unit(50, "miles")
  22813. },
  22814. ]
  22815. ))
  22816. characterMakers.push(() => makeCharacter(
  22817. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22818. {
  22819. front: {
  22820. height: math.unit(1.5, "meters"),
  22821. weight: math.unit(100, "lb"),
  22822. name: "Front",
  22823. image: {
  22824. source: "./media/characters/maksio/front.svg",
  22825. extra: 1549 / 1531,
  22826. bottom: 123.7 / 1674.5429
  22827. }
  22828. },
  22829. back: {
  22830. height: math.unit(1.5, "meters"),
  22831. weight: math.unit(100, "lb"),
  22832. name: "Back",
  22833. image: {
  22834. source: "./media/characters/maksio/back.svg",
  22835. extra: 1541 / 1509,
  22836. bottom: 97 / 1639
  22837. }
  22838. },
  22839. hand: {
  22840. height: math.unit(0.621, "feet"),
  22841. name: "Hand",
  22842. image: {
  22843. source: "./media/characters/maksio/hand.svg"
  22844. }
  22845. },
  22846. foot: {
  22847. height: math.unit(1.611, "feet"),
  22848. name: "Foot",
  22849. image: {
  22850. source: "./media/characters/maksio/foot.svg"
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Shrunken",
  22857. height: math.unit(10, "cm")
  22858. },
  22859. {
  22860. name: "Normal",
  22861. height: math.unit(150, "cm"),
  22862. default: true
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22868. {
  22869. front: {
  22870. height: math.unit(100, "feet"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/erza-bear/front.svg",
  22874. extra: 2449 / 2390,
  22875. bottom: 46 / 2494
  22876. }
  22877. },
  22878. back: {
  22879. height: math.unit(100, "feet"),
  22880. name: "Back",
  22881. image: {
  22882. source: "./media/characters/erza-bear/back.svg",
  22883. extra: 2489 / 2430,
  22884. bottom: 85.4 / 2480
  22885. }
  22886. },
  22887. tail: {
  22888. height: math.unit(42, "feet"),
  22889. name: "Tail",
  22890. image: {
  22891. source: "./media/characters/erza-bear/tail.svg"
  22892. }
  22893. },
  22894. tongue: {
  22895. height: math.unit(8, "feet"),
  22896. name: "Tongue",
  22897. image: {
  22898. source: "./media/characters/erza-bear/tongue.svg"
  22899. }
  22900. },
  22901. dick: {
  22902. height: math.unit(10.5, "feet"),
  22903. name: "Dick",
  22904. image: {
  22905. source: "./media/characters/erza-bear/dick.svg"
  22906. }
  22907. },
  22908. dickVertical: {
  22909. height: math.unit(16.9, "feet"),
  22910. name: "Dick (Vertical)",
  22911. image: {
  22912. source: "./media/characters/erza-bear/dick-vertical.svg"
  22913. }
  22914. },
  22915. },
  22916. [
  22917. {
  22918. name: "Macro",
  22919. height: math.unit(100, "feet"),
  22920. default: true
  22921. },
  22922. ]
  22923. ))
  22924. characterMakers.push(() => makeCharacter(
  22925. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22926. {
  22927. front: {
  22928. height: math.unit(172, "cm"),
  22929. weight: math.unit(73, "kg"),
  22930. name: "Front",
  22931. image: {
  22932. source: "./media/characters/violet-flor/front.svg",
  22933. extra: 1530 / 1442,
  22934. bottom: 61.9 / 1588.8
  22935. }
  22936. },
  22937. back: {
  22938. height: math.unit(180, "cm"),
  22939. weight: math.unit(73, "kg"),
  22940. name: "Back",
  22941. image: {
  22942. source: "./media/characters/violet-flor/back.svg",
  22943. extra: 1692 / 1630,
  22944. bottom: 20 / 1712
  22945. }
  22946. },
  22947. },
  22948. [
  22949. {
  22950. name: "Normal",
  22951. height: math.unit(172, "cm"),
  22952. default: true
  22953. },
  22954. ]
  22955. ))
  22956. characterMakers.push(() => makeCharacter(
  22957. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22958. {
  22959. front: {
  22960. height: math.unit(6, "feet"),
  22961. weight: math.unit(220, "lb"),
  22962. name: "Front",
  22963. image: {
  22964. source: "./media/characters/lynn-rhea/front.svg",
  22965. extra: 310 / 273
  22966. }
  22967. },
  22968. back: {
  22969. height: math.unit(6, "feet"),
  22970. weight: math.unit(220, "lb"),
  22971. name: "Back",
  22972. image: {
  22973. source: "./media/characters/lynn-rhea/back.svg",
  22974. extra: 310 / 273
  22975. }
  22976. },
  22977. dicks: {
  22978. height: math.unit(0.9, "feet"),
  22979. name: "Dicks",
  22980. image: {
  22981. source: "./media/characters/lynn-rhea/dicks.svg"
  22982. }
  22983. },
  22984. slit: {
  22985. height: math.unit(0.4, "feet"),
  22986. name: "Slit",
  22987. image: {
  22988. source: "./media/characters/lynn-rhea/slit.svg"
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Micro",
  22995. height: math.unit(1, "inch")
  22996. },
  22997. {
  22998. name: "Macro",
  22999. height: math.unit(60, "feet"),
  23000. default: true
  23001. },
  23002. {
  23003. name: "Megamacro",
  23004. height: math.unit(2, "miles")
  23005. },
  23006. {
  23007. name: "Gigamacro",
  23008. height: math.unit(3, "earths")
  23009. },
  23010. {
  23011. name: "Galactic",
  23012. height: math.unit(0.8, "galaxies")
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23018. {
  23019. front: {
  23020. height: math.unit(1600, "feet"),
  23021. weight: math.unit(85758785169, "kg"),
  23022. name: "Front",
  23023. image: {
  23024. source: "./media/characters/valathos/front.svg",
  23025. extra: 1451 / 1339
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Macro",
  23032. height: math.unit(1600, "feet"),
  23033. default: true
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23039. {
  23040. front: {
  23041. height: math.unit(7 + 5 / 12, "feet"),
  23042. weight: math.unit(300, "lb"),
  23043. name: "Front",
  23044. image: {
  23045. source: "./media/characters/azula/front.svg",
  23046. extra: 3208 / 2880,
  23047. bottom: 80.2 / 3277
  23048. }
  23049. },
  23050. back: {
  23051. height: math.unit(7 + 5 / 12, "feet"),
  23052. weight: math.unit(300, "lb"),
  23053. name: "Back",
  23054. image: {
  23055. source: "./media/characters/azula/back.svg",
  23056. extra: 3169 / 2822,
  23057. bottom: 150.6 / 3321
  23058. }
  23059. },
  23060. },
  23061. [
  23062. {
  23063. name: "Normal",
  23064. height: math.unit(7 + 5 / 12, "feet"),
  23065. default: true
  23066. },
  23067. {
  23068. name: "Big",
  23069. height: math.unit(20, "feet")
  23070. },
  23071. ]
  23072. ))
  23073. characterMakers.push(() => makeCharacter(
  23074. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23075. {
  23076. front: {
  23077. height: math.unit(5 + 1 / 12, "feet"),
  23078. weight: math.unit(110, "lb"),
  23079. name: "Front",
  23080. image: {
  23081. source: "./media/characters/rupert/front.svg",
  23082. extra: 1549 / 1495,
  23083. bottom: 54.2 / 1604.4
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Normal",
  23090. height: math.unit(5 + 1 / 12, "feet"),
  23091. default: true
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23097. {
  23098. front: {
  23099. height: math.unit(8 + 4 / 12, "feet"),
  23100. weight: math.unit(350, "lb"),
  23101. name: "Front",
  23102. image: {
  23103. source: "./media/characters/sheera-castellar/front.svg",
  23104. extra: 1957 / 1894,
  23105. bottom: 26.97 / 1975.017
  23106. }
  23107. },
  23108. side: {
  23109. height: math.unit(8 + 4 / 12, "feet"),
  23110. weight: math.unit(350, "lb"),
  23111. name: "Side",
  23112. image: {
  23113. source: "./media/characters/sheera-castellar/side.svg",
  23114. extra: 1957 / 1894
  23115. }
  23116. },
  23117. back: {
  23118. height: math.unit(8 + 4 / 12, "feet"),
  23119. weight: math.unit(350, "lb"),
  23120. name: "Back",
  23121. image: {
  23122. source: "./media/characters/sheera-castellar/back.svg",
  23123. extra: 1957 / 1894
  23124. }
  23125. },
  23126. angled: {
  23127. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23128. weight: math.unit(350, "lb"),
  23129. name: "Angled",
  23130. image: {
  23131. source: "./media/characters/sheera-castellar/angled.svg",
  23132. extra: 1807 / 1707,
  23133. bottom: 68 / 1875
  23134. }
  23135. },
  23136. genitals: {
  23137. height: math.unit(2.2, "feet"),
  23138. name: "Genitals",
  23139. image: {
  23140. source: "./media/characters/sheera-castellar/genitals.svg"
  23141. }
  23142. },
  23143. taur: {
  23144. height: math.unit(10 + 6/12, "feet"),
  23145. name: "Taur",
  23146. image: {
  23147. source: "./media/characters/sheera-castellar/taur.svg",
  23148. extra: 2017/1909,
  23149. bottom: 185/2202
  23150. }
  23151. },
  23152. },
  23153. [
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(8 + 4 / 12, "feet")
  23157. },
  23158. {
  23159. name: "Macro",
  23160. height: math.unit(150, "feet"),
  23161. default: true
  23162. },
  23163. {
  23164. name: "Macro+",
  23165. height: math.unit(800, "feet")
  23166. },
  23167. ]
  23168. ))
  23169. characterMakers.push(() => makeCharacter(
  23170. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23171. {
  23172. front: {
  23173. height: math.unit(6, "feet"),
  23174. weight: math.unit(150, "lb"),
  23175. name: "Front",
  23176. image: {
  23177. source: "./media/characters/jaipur/front.svg",
  23178. extra: 3860 / 3731,
  23179. bottom: 287 / 4140
  23180. }
  23181. },
  23182. back: {
  23183. height: math.unit(6, "feet"),
  23184. weight: math.unit(150, "lb"),
  23185. name: "Back",
  23186. image: {
  23187. source: "./media/characters/jaipur/back.svg",
  23188. extra: 4060 / 3930,
  23189. bottom: 151 / 4200
  23190. }
  23191. },
  23192. },
  23193. [
  23194. {
  23195. name: "Normal",
  23196. height: math.unit(1.85, "meters"),
  23197. default: true
  23198. },
  23199. {
  23200. name: "Macro",
  23201. height: math.unit(150, "meters")
  23202. },
  23203. {
  23204. name: "Macro+",
  23205. height: math.unit(0.5, "miles")
  23206. },
  23207. {
  23208. name: "Macro++",
  23209. height: math.unit(2.5, "miles")
  23210. },
  23211. {
  23212. name: "Macro+++",
  23213. height: math.unit(12, "miles")
  23214. },
  23215. {
  23216. name: "Macro++++",
  23217. height: math.unit(120, "miles")
  23218. },
  23219. {
  23220. name: "Macro+++++",
  23221. height: math.unit(1200, "miles")
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(6, "feet"),
  23230. weight: math.unit(150, "lb"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/sheila-wolf/front.svg",
  23234. extra: 1931 / 1808,
  23235. bottom: 29.5 / 1960
  23236. }
  23237. },
  23238. dick: {
  23239. height: math.unit(1.464, "feet"),
  23240. name: "Dick",
  23241. image: {
  23242. source: "./media/characters/sheila-wolf/dick.svg"
  23243. }
  23244. },
  23245. muzzle: {
  23246. height: math.unit(0.513, "feet"),
  23247. name: "Muzzle",
  23248. image: {
  23249. source: "./media/characters/sheila-wolf/muzzle.svg"
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Macro",
  23256. height: math.unit(70, "feet"),
  23257. default: true
  23258. },
  23259. ]
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23263. {
  23264. front: {
  23265. height: math.unit(32, "meters"),
  23266. weight: math.unit(300000, "kg"),
  23267. name: "Front",
  23268. image: {
  23269. source: "./media/characters/almor/front.svg",
  23270. extra: 1408 / 1322,
  23271. bottom: 94.6 / 1506.5
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Macro",
  23278. height: math.unit(32, "meters"),
  23279. default: true
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(7, "feet"),
  23288. weight: math.unit(200, "lb"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/silver/front.svg",
  23292. extra: 472.1 / 450.5,
  23293. bottom: 26.5 / 499.424
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Normal",
  23300. height: math.unit(7, "feet"),
  23301. default: true
  23302. },
  23303. {
  23304. name: "Macro",
  23305. height: math.unit(800, "feet")
  23306. },
  23307. {
  23308. name: "Megamacro",
  23309. height: math.unit(250, "miles")
  23310. },
  23311. ]
  23312. ))
  23313. characterMakers.push(() => makeCharacter(
  23314. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23315. {
  23316. front: {
  23317. height: math.unit(6, "feet"),
  23318. weight: math.unit(150, "lb"),
  23319. name: "Front",
  23320. image: {
  23321. source: "./media/characters/pliskin/front.svg",
  23322. extra: 1469 / 1359,
  23323. bottom: 70 / 1540
  23324. }
  23325. },
  23326. },
  23327. [
  23328. {
  23329. name: "Micro",
  23330. height: math.unit(3, "inches")
  23331. },
  23332. {
  23333. name: "Normal",
  23334. height: math.unit(5 + 11 / 12, "feet"),
  23335. default: true
  23336. },
  23337. {
  23338. name: "Macro",
  23339. height: math.unit(120, "feet")
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23345. {
  23346. front: {
  23347. height: math.unit(6, "feet"),
  23348. weight: math.unit(150, "lb"),
  23349. name: "Front",
  23350. image: {
  23351. source: "./media/characters/sammy/front.svg",
  23352. extra: 1193 / 1089,
  23353. bottom: 30.5 / 1226
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Macro",
  23360. height: math.unit(1700, "feet"),
  23361. default: true
  23362. },
  23363. {
  23364. name: "Examacro",
  23365. height: math.unit(2.5e9, "lightyears")
  23366. },
  23367. ]
  23368. ))
  23369. characterMakers.push(() => makeCharacter(
  23370. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23371. {
  23372. front: {
  23373. height: math.unit(21, "meters"),
  23374. weight: math.unit(12, "tonnes"),
  23375. name: "Front",
  23376. image: {
  23377. source: "./media/characters/kuru/front.svg",
  23378. extra: 4301 / 3785,
  23379. bottom: 371.3 / 4691
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Macro",
  23386. height: math.unit(21, "meters"),
  23387. default: true
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23393. {
  23394. front: {
  23395. height: math.unit(23, "meters"),
  23396. weight: math.unit(12.2, "tonnes"),
  23397. name: "Front",
  23398. image: {
  23399. source: "./media/characters/rakka/front.svg",
  23400. extra: 4670 / 4169,
  23401. bottom: 301 / 4968.7
  23402. }
  23403. },
  23404. },
  23405. [
  23406. {
  23407. name: "Macro",
  23408. height: math.unit(23, "meters"),
  23409. default: true
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23415. {
  23416. front: {
  23417. height: math.unit(6, "feet"),
  23418. weight: math.unit(150, "lb"),
  23419. name: "Front",
  23420. image: {
  23421. source: "./media/characters/rhys-feline/front.svg",
  23422. extra: 2488 / 2308,
  23423. bottom: 35.67 / 2519.19
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Really Small",
  23430. height: math.unit(1, "nm")
  23431. },
  23432. {
  23433. name: "Micro",
  23434. height: math.unit(4, "inches")
  23435. },
  23436. {
  23437. name: "Normal",
  23438. height: math.unit(4 + 10 / 12, "feet"),
  23439. default: true
  23440. },
  23441. {
  23442. name: "Macro",
  23443. height: math.unit(100, "feet")
  23444. },
  23445. {
  23446. name: "Megamacto",
  23447. height: math.unit(50, "miles")
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23453. {
  23454. side: {
  23455. height: math.unit(30, "feet"),
  23456. weight: math.unit(35000, "kg"),
  23457. name: "Side",
  23458. image: {
  23459. source: "./media/characters/alydar/side.svg",
  23460. extra: 234 / 222,
  23461. bottom: 6.5 / 241
  23462. }
  23463. },
  23464. front: {
  23465. height: math.unit(30, "feet"),
  23466. weight: math.unit(35000, "kg"),
  23467. name: "Front",
  23468. image: {
  23469. source: "./media/characters/alydar/front.svg",
  23470. extra: 223.37 / 210.2,
  23471. bottom: 22.3 / 246.76
  23472. }
  23473. },
  23474. top: {
  23475. height: math.unit(64.54, "feet"),
  23476. weight: math.unit(35000, "kg"),
  23477. name: "Top",
  23478. image: {
  23479. source: "./media/characters/alydar/top.svg"
  23480. }
  23481. },
  23482. anthro: {
  23483. height: math.unit(30, "feet"),
  23484. weight: math.unit(9000, "kg"),
  23485. name: "Anthro",
  23486. image: {
  23487. source: "./media/characters/alydar/anthro.svg",
  23488. extra: 432 / 421,
  23489. bottom: 7.18 / 440
  23490. }
  23491. },
  23492. maw: {
  23493. height: math.unit(11.693, "feet"),
  23494. name: "Maw",
  23495. image: {
  23496. source: "./media/characters/alydar/maw.svg"
  23497. }
  23498. },
  23499. head: {
  23500. height: math.unit(11.693, "feet"),
  23501. name: "Head",
  23502. image: {
  23503. source: "./media/characters/alydar/head.svg"
  23504. }
  23505. },
  23506. headAlt: {
  23507. height: math.unit(12.861, "feet"),
  23508. name: "Head (Alt)",
  23509. image: {
  23510. source: "./media/characters/alydar/head-alt.svg"
  23511. }
  23512. },
  23513. wing: {
  23514. height: math.unit(20.712, "feet"),
  23515. name: "Wing",
  23516. image: {
  23517. source: "./media/characters/alydar/wing.svg"
  23518. }
  23519. },
  23520. wingFeather: {
  23521. height: math.unit(9.662, "feet"),
  23522. name: "Wing Feather",
  23523. image: {
  23524. source: "./media/characters/alydar/wing-feather.svg"
  23525. }
  23526. },
  23527. countourFeather: {
  23528. height: math.unit(4.154, "feet"),
  23529. name: "Contour Feather",
  23530. image: {
  23531. source: "./media/characters/alydar/contour-feather.svg"
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Diplomatic",
  23538. height: math.unit(13, "feet"),
  23539. default: true
  23540. },
  23541. {
  23542. name: "Small",
  23543. height: math.unit(30, "feet")
  23544. },
  23545. {
  23546. name: "Normal",
  23547. height: math.unit(95, "feet"),
  23548. default: true
  23549. },
  23550. {
  23551. name: "Large",
  23552. height: math.unit(285, "feet")
  23553. },
  23554. {
  23555. name: "Incomprehensible",
  23556. height: math.unit(450, "megameters")
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23562. {
  23563. side: {
  23564. height: math.unit(11, "feet"),
  23565. weight: math.unit(1750, "kg"),
  23566. name: "Side",
  23567. image: {
  23568. source: "./media/characters/selicia/side.svg",
  23569. extra: 440 / 396,
  23570. bottom: 24.8 / 465.979
  23571. }
  23572. },
  23573. maw: {
  23574. height: math.unit(4.665, "feet"),
  23575. name: "Maw",
  23576. image: {
  23577. source: "./media/characters/selicia/maw.svg"
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Normal",
  23584. height: math.unit(11, "feet"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23591. {
  23592. side: {
  23593. height: math.unit(2 + 6 / 12, "feet"),
  23594. weight: math.unit(30, "lb"),
  23595. name: "Side",
  23596. image: {
  23597. source: "./media/characters/layla/side.svg",
  23598. extra: 244 / 188,
  23599. bottom: 18.2 / 262.1
  23600. }
  23601. },
  23602. back: {
  23603. height: math.unit(2 + 6 / 12, "feet"),
  23604. weight: math.unit(30, "lb"),
  23605. name: "Back",
  23606. image: {
  23607. source: "./media/characters/layla/back.svg",
  23608. extra: 308 / 241.5,
  23609. bottom: 8.9 / 316.8
  23610. }
  23611. },
  23612. cumming: {
  23613. height: math.unit(2 + 6 / 12, "feet"),
  23614. weight: math.unit(30, "lb"),
  23615. name: "Cumming",
  23616. image: {
  23617. source: "./media/characters/layla/cumming.svg",
  23618. extra: 342 / 279,
  23619. bottom: 595 / 938
  23620. }
  23621. },
  23622. dickFlaccid: {
  23623. height: math.unit(2.595, "feet"),
  23624. name: "Flaccid Genitals",
  23625. image: {
  23626. source: "./media/characters/layla/dick-flaccid.svg"
  23627. }
  23628. },
  23629. dickErect: {
  23630. height: math.unit(2.359, "feet"),
  23631. name: "Erect Genitals",
  23632. image: {
  23633. source: "./media/characters/layla/dick-erect.svg"
  23634. }
  23635. },
  23636. dragon: {
  23637. height: math.unit(40, "feet"),
  23638. name: "Dragon",
  23639. image: {
  23640. source: "./media/characters/layla/dragon.svg",
  23641. extra: 610/535,
  23642. bottom: 367/977
  23643. }
  23644. },
  23645. taur: {
  23646. height: math.unit(30, "feet"),
  23647. name: "Taur",
  23648. image: {
  23649. source: "./media/characters/layla/taur.svg",
  23650. extra: 1268/1199,
  23651. bottom: 112/1380
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Micro",
  23658. height: math.unit(1, "inch")
  23659. },
  23660. {
  23661. name: "Small",
  23662. height: math.unit(1, "foot")
  23663. },
  23664. {
  23665. name: "Normal",
  23666. height: math.unit(2 + 6 / 12, "feet"),
  23667. default: true
  23668. },
  23669. {
  23670. name: "Macro",
  23671. height: math.unit(200, "feet")
  23672. },
  23673. {
  23674. name: "Megamacro",
  23675. height: math.unit(1000, "miles")
  23676. },
  23677. {
  23678. name: "Planetary",
  23679. height: math.unit(8000, "miles")
  23680. },
  23681. {
  23682. name: "True Layla",
  23683. height: math.unit(200000 * 7, "multiverses")
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23689. {
  23690. back: {
  23691. height: math.unit(10.5, "feet"),
  23692. weight: math.unit(800, "lb"),
  23693. name: "Back",
  23694. image: {
  23695. source: "./media/characters/knox/back.svg",
  23696. extra: 1486 / 1089,
  23697. bottom: 107 / 1601.4
  23698. }
  23699. },
  23700. side: {
  23701. height: math.unit(10.5, "feet"),
  23702. weight: math.unit(800, "lb"),
  23703. name: "Side",
  23704. image: {
  23705. source: "./media/characters/knox/side.svg",
  23706. extra: 244 / 218,
  23707. bottom: 14 / 260
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Compact",
  23714. height: math.unit(10.5, "feet"),
  23715. default: true
  23716. },
  23717. {
  23718. name: "Dynamax",
  23719. height: math.unit(210, "feet")
  23720. },
  23721. {
  23722. name: "Full Macro",
  23723. height: math.unit(850, "feet")
  23724. },
  23725. ]
  23726. ))
  23727. characterMakers.push(() => makeCharacter(
  23728. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23729. {
  23730. front: {
  23731. height: math.unit(28, "feet"),
  23732. weight: math.unit(10500, "lb"),
  23733. name: "Front",
  23734. image: {
  23735. source: "./media/characters/kayda/front.svg",
  23736. extra: 1536 / 1428,
  23737. bottom: 68.7 / 1603
  23738. }
  23739. },
  23740. back: {
  23741. height: math.unit(28, "feet"),
  23742. weight: math.unit(10500, "lb"),
  23743. name: "Back",
  23744. image: {
  23745. source: "./media/characters/kayda/back.svg",
  23746. extra: 1557 / 1464,
  23747. bottom: 39.5 / 1597.49
  23748. }
  23749. },
  23750. dick: {
  23751. height: math.unit(3.858, "feet"),
  23752. name: "Dick",
  23753. image: {
  23754. source: "./media/characters/kayda/dick.svg"
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Macro",
  23761. height: math.unit(28, "feet"),
  23762. default: true
  23763. },
  23764. ]
  23765. ))
  23766. characterMakers.push(() => makeCharacter(
  23767. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23768. {
  23769. front: {
  23770. height: math.unit(10 + 11 / 12, "feet"),
  23771. weight: math.unit(1400, "lb"),
  23772. name: "Front",
  23773. image: {
  23774. source: "./media/characters/brian/front.svg",
  23775. extra: 737 / 692,
  23776. bottom: 55.4 / 785
  23777. }
  23778. },
  23779. },
  23780. [
  23781. {
  23782. name: "Normal",
  23783. height: math.unit(10 + 11 / 12, "feet"),
  23784. default: true
  23785. },
  23786. ]
  23787. ))
  23788. characterMakers.push(() => makeCharacter(
  23789. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23790. {
  23791. front: {
  23792. height: math.unit(5 + 8 / 12, "feet"),
  23793. weight: math.unit(140, "lb"),
  23794. name: "Front",
  23795. image: {
  23796. source: "./media/characters/khemri/front.svg",
  23797. extra: 4780 / 4059,
  23798. bottom: 80.1 / 4859.25
  23799. }
  23800. },
  23801. },
  23802. [
  23803. {
  23804. name: "Micro",
  23805. height: math.unit(6, "inches")
  23806. },
  23807. {
  23808. name: "Normal",
  23809. height: math.unit(5 + 8 / 12, "feet"),
  23810. default: true
  23811. },
  23812. ]
  23813. ))
  23814. characterMakers.push(() => makeCharacter(
  23815. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23816. {
  23817. front: {
  23818. height: math.unit(13, "feet"),
  23819. weight: math.unit(1700, "lb"),
  23820. name: "Front",
  23821. image: {
  23822. source: "./media/characters/felix-braveheart/front.svg",
  23823. extra: 1222 / 1157,
  23824. bottom: 53.2 / 1280
  23825. }
  23826. },
  23827. back: {
  23828. height: math.unit(13, "feet"),
  23829. weight: math.unit(1700, "lb"),
  23830. name: "Back",
  23831. image: {
  23832. source: "./media/characters/felix-braveheart/back.svg",
  23833. extra: 1277 / 1203,
  23834. bottom: 50.2 / 1327
  23835. }
  23836. },
  23837. feral: {
  23838. height: math.unit(6, "feet"),
  23839. weight: math.unit(400, "lb"),
  23840. name: "Feral",
  23841. image: {
  23842. source: "./media/characters/felix-braveheart/feral.svg",
  23843. extra: 682 / 625,
  23844. bottom: 6.9 / 688
  23845. }
  23846. },
  23847. },
  23848. [
  23849. {
  23850. name: "Normal",
  23851. height: math.unit(13, "feet"),
  23852. default: true
  23853. },
  23854. ]
  23855. ))
  23856. characterMakers.push(() => makeCharacter(
  23857. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23858. {
  23859. side: {
  23860. height: math.unit(5 + 11 / 12, "feet"),
  23861. weight: math.unit(1400, "lb"),
  23862. name: "Side",
  23863. image: {
  23864. source: "./media/characters/shadow-blade/side.svg",
  23865. extra: 1726 / 1267,
  23866. bottom: 58.4 / 1785
  23867. }
  23868. },
  23869. },
  23870. [
  23871. {
  23872. name: "Normal",
  23873. height: math.unit(5 + 11 / 12, "feet"),
  23874. default: true
  23875. },
  23876. ]
  23877. ))
  23878. characterMakers.push(() => makeCharacter(
  23879. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23880. {
  23881. front: {
  23882. height: math.unit(1 + 6 / 12, "feet"),
  23883. weight: math.unit(25, "lb"),
  23884. name: "Front",
  23885. image: {
  23886. source: "./media/characters/karla-halldor/front.svg",
  23887. extra: 1459 / 1383,
  23888. bottom: 12 / 1472
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(1 + 6 / 12, "feet"),
  23896. default: true
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23902. {
  23903. front: {
  23904. height: math.unit(6 + 2 / 12, "feet"),
  23905. weight: math.unit(160, "lb"),
  23906. name: "Front",
  23907. image: {
  23908. source: "./media/characters/ariam/front.svg",
  23909. extra: 714 / 617,
  23910. bottom: 23.4 / 737,
  23911. }
  23912. },
  23913. squatting: {
  23914. height: math.unit(4.1, "feet"),
  23915. weight: math.unit(160, "lb"),
  23916. name: "Squatting",
  23917. image: {
  23918. source: "./media/characters/ariam/squatting.svg",
  23919. extra: 2617 / 2112,
  23920. bottom: 61.2 / 2681,
  23921. }
  23922. },
  23923. },
  23924. [
  23925. {
  23926. name: "Normal",
  23927. height: math.unit(6 + 2 / 12, "feet"),
  23928. default: true
  23929. },
  23930. {
  23931. name: "Normal+",
  23932. height: math.unit(4, "meters")
  23933. },
  23934. {
  23935. name: "Macro",
  23936. height: math.unit(50, "meters")
  23937. },
  23938. {
  23939. name: "Macro+",
  23940. height: math.unit(100, "meters")
  23941. },
  23942. {
  23943. name: "Megamacro",
  23944. height: math.unit(20, "km")
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23950. {
  23951. front: {
  23952. height: math.unit(1.67, "meters"),
  23953. weight: math.unit(140, "lb"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23957. extra: 438 / 410,
  23958. bottom: 0.75 / 439
  23959. }
  23960. },
  23961. },
  23962. [
  23963. {
  23964. name: "Shrunken",
  23965. height: math.unit(7.6, "cm")
  23966. },
  23967. {
  23968. name: "Human Scale",
  23969. height: math.unit(1.67, "meters")
  23970. },
  23971. {
  23972. name: "Wolxi Scale",
  23973. height: math.unit(36.7, "meters"),
  23974. default: true
  23975. },
  23976. ]
  23977. ))
  23978. characterMakers.push(() => makeCharacter(
  23979. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23980. {
  23981. front: {
  23982. height: math.unit(1.73, "meters"),
  23983. weight: math.unit(240, "lb"),
  23984. name: "Front",
  23985. image: {
  23986. source: "./media/characters/izue-two-mothers/front.svg",
  23987. extra: 469 / 437,
  23988. bottom: 1.24 / 470.6
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "Shrunken",
  23995. height: math.unit(7.86, "cm")
  23996. },
  23997. {
  23998. name: "Human Scale",
  23999. height: math.unit(1.73, "meters")
  24000. },
  24001. {
  24002. name: "Wolxi Scale",
  24003. height: math.unit(38, "meters"),
  24004. default: true
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24010. {
  24011. front: {
  24012. height: math.unit(1.55, "meters"),
  24013. weight: math.unit(120, "lb"),
  24014. name: "Front",
  24015. image: {
  24016. source: "./media/characters/teeku-love-shack/front.svg",
  24017. extra: 387 / 362,
  24018. bottom: 1.51 / 388
  24019. }
  24020. },
  24021. },
  24022. [
  24023. {
  24024. name: "Shrunken",
  24025. height: math.unit(7, "cm")
  24026. },
  24027. {
  24028. name: "Human Scale",
  24029. height: math.unit(1.55, "meters")
  24030. },
  24031. {
  24032. name: "Wolxi Scale",
  24033. height: math.unit(34.1, "meters"),
  24034. default: true
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24040. {
  24041. front: {
  24042. height: math.unit(1.83, "meters"),
  24043. weight: math.unit(135, "lb"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/dejma-the-red/front.svg",
  24047. extra: 480 / 458,
  24048. bottom: 1.8 / 482
  24049. }
  24050. },
  24051. },
  24052. [
  24053. {
  24054. name: "Shrunken",
  24055. height: math.unit(8.3, "cm")
  24056. },
  24057. {
  24058. name: "Human Scale",
  24059. height: math.unit(1.83, "meters")
  24060. },
  24061. {
  24062. name: "Wolxi Scale",
  24063. height: math.unit(40, "meters"),
  24064. default: true
  24065. },
  24066. ]
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24070. {
  24071. front: {
  24072. height: math.unit(1.78, "meters"),
  24073. weight: math.unit(65, "kg"),
  24074. name: "Front",
  24075. image: {
  24076. source: "./media/characters/aki/front.svg",
  24077. extra: 452 / 415
  24078. }
  24079. },
  24080. frontNsfw: {
  24081. height: math.unit(1.78, "meters"),
  24082. weight: math.unit(65, "kg"),
  24083. name: "Front (NSFW)",
  24084. image: {
  24085. source: "./media/characters/aki/front-nsfw.svg",
  24086. extra: 452 / 415
  24087. }
  24088. },
  24089. back: {
  24090. height: math.unit(1.78, "meters"),
  24091. weight: math.unit(65, "kg"),
  24092. name: "Back",
  24093. image: {
  24094. source: "./media/characters/aki/back.svg",
  24095. extra: 452 / 415
  24096. }
  24097. },
  24098. rump: {
  24099. height: math.unit(2.05, "feet"),
  24100. name: "Rump",
  24101. image: {
  24102. source: "./media/characters/aki/rump.svg"
  24103. }
  24104. },
  24105. dick: {
  24106. height: math.unit(0.95, "feet"),
  24107. name: "Dick",
  24108. image: {
  24109. source: "./media/characters/aki/dick.svg"
  24110. }
  24111. },
  24112. },
  24113. [
  24114. {
  24115. name: "Micro",
  24116. height: math.unit(15, "cm")
  24117. },
  24118. {
  24119. name: "Normal",
  24120. height: math.unit(178, "cm"),
  24121. default: true
  24122. },
  24123. {
  24124. name: "Macro",
  24125. height: math.unit(214, "m")
  24126. },
  24127. {
  24128. name: "Macro+",
  24129. height: math.unit(534, "m")
  24130. },
  24131. ]
  24132. ))
  24133. characterMakers.push(() => makeCharacter(
  24134. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24135. {
  24136. front: {
  24137. height: math.unit(5 + 5 / 12, "feet"),
  24138. weight: math.unit(120, "lb"),
  24139. name: "Front",
  24140. image: {
  24141. source: "./media/characters/ari/front.svg",
  24142. extra: 714.5 / 682,
  24143. bottom: 8 / 722.5
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Normal",
  24150. height: math.unit(5 + 5 / 12, "feet")
  24151. },
  24152. {
  24153. name: "Macro",
  24154. height: math.unit(100, "feet"),
  24155. default: true
  24156. },
  24157. {
  24158. name: "Megamacro",
  24159. height: math.unit(100, "miles")
  24160. },
  24161. {
  24162. name: "Gigamacro",
  24163. height: math.unit(80000, "miles")
  24164. },
  24165. ]
  24166. ))
  24167. characterMakers.push(() => makeCharacter(
  24168. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24169. {
  24170. side: {
  24171. height: math.unit(9, "feet"),
  24172. weight: math.unit(400, "kg"),
  24173. name: "Side",
  24174. image: {
  24175. source: "./media/characters/bolt/side.svg",
  24176. extra: 1126 / 896,
  24177. bottom: 60 / 1187.3,
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Micro",
  24184. height: math.unit(5, "inches")
  24185. },
  24186. {
  24187. name: "Normal",
  24188. height: math.unit(9, "feet"),
  24189. default: true
  24190. },
  24191. {
  24192. name: "Macro",
  24193. height: math.unit(700, "feet")
  24194. },
  24195. {
  24196. name: "Max Size",
  24197. height: math.unit(1.52e22, "yottameters")
  24198. },
  24199. ]
  24200. ))
  24201. characterMakers.push(() => makeCharacter(
  24202. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24203. {
  24204. front: {
  24205. height: math.unit(4.53, "meters"),
  24206. weight: math.unit(3, "tons"),
  24207. name: "Front",
  24208. image: {
  24209. source: "./media/characters/draekon-sylviar/front.svg",
  24210. extra: 1228 / 1068,
  24211. bottom: 41 / 1270
  24212. }
  24213. },
  24214. tail: {
  24215. height: math.unit(1.772, "meter"),
  24216. name: "Tail",
  24217. image: {
  24218. source: "./media/characters/draekon-sylviar/tail.svg"
  24219. }
  24220. },
  24221. head: {
  24222. height: math.unit(1.331, "meter"),
  24223. name: "Head",
  24224. image: {
  24225. source: "./media/characters/draekon-sylviar/head.svg"
  24226. }
  24227. },
  24228. hand: {
  24229. height: math.unit(0.564, "meter"),
  24230. name: "Hand",
  24231. image: {
  24232. source: "./media/characters/draekon-sylviar/hand.svg"
  24233. }
  24234. },
  24235. foot: {
  24236. height: math.unit(0.621, "meter"),
  24237. name: "Foot",
  24238. image: {
  24239. source: "./media/characters/draekon-sylviar/foot.svg",
  24240. bottom: 32 / 324
  24241. }
  24242. },
  24243. dick: {
  24244. height: math.unit(61, "cm"),
  24245. name: "Dick",
  24246. image: {
  24247. source: "./media/characters/draekon-sylviar/dick.svg"
  24248. }
  24249. },
  24250. dickseparated: {
  24251. height: math.unit(61, "cm"),
  24252. name: "Dick-separated",
  24253. image: {
  24254. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Small",
  24261. height: math.unit(4.53 / 2, "meters"),
  24262. default: true
  24263. },
  24264. {
  24265. name: "Normal",
  24266. height: math.unit(4.53, "meters"),
  24267. default: true
  24268. },
  24269. {
  24270. name: "Large",
  24271. height: math.unit(4.53 * 2, "meters"),
  24272. },
  24273. ]
  24274. ))
  24275. characterMakers.push(() => makeCharacter(
  24276. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24277. {
  24278. front: {
  24279. height: math.unit(6 + 2 / 12, "feet"),
  24280. weight: math.unit(180, "lb"),
  24281. name: "Front",
  24282. image: {
  24283. source: "./media/characters/brawler/front.svg",
  24284. extra: 3301 / 3027,
  24285. bottom: 138 / 3439
  24286. }
  24287. },
  24288. },
  24289. [
  24290. {
  24291. name: "Normal",
  24292. height: math.unit(6 + 2 / 12, "feet"),
  24293. default: true
  24294. },
  24295. ]
  24296. ))
  24297. characterMakers.push(() => makeCharacter(
  24298. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24299. {
  24300. front: {
  24301. height: math.unit(11, "feet"),
  24302. weight: math.unit(1000, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/alex/front.svg",
  24306. bottom: 44.5 / 620
  24307. }
  24308. },
  24309. },
  24310. [
  24311. {
  24312. name: "Micro",
  24313. height: math.unit(5, "inches")
  24314. },
  24315. {
  24316. name: "Normal",
  24317. height: math.unit(11, "feet"),
  24318. default: true
  24319. },
  24320. {
  24321. name: "Macro",
  24322. height: math.unit(9.5e9, "feet")
  24323. },
  24324. {
  24325. name: "Max Size",
  24326. height: math.unit(1.4e283, "yottameters")
  24327. },
  24328. ]
  24329. ))
  24330. characterMakers.push(() => makeCharacter(
  24331. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24332. {
  24333. female: {
  24334. height: math.unit(29.9, "m"),
  24335. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24336. name: "Female",
  24337. image: {
  24338. source: "./media/characters/zenari/female.svg",
  24339. extra: 3281.6 / 3217,
  24340. bottom: 72.2 / 3353
  24341. }
  24342. },
  24343. male: {
  24344. height: math.unit(27.7, "m"),
  24345. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24346. name: "Male",
  24347. image: {
  24348. source: "./media/characters/zenari/male.svg",
  24349. extra: 3008 / 2991,
  24350. bottom: 54.6 / 3069
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Macro",
  24357. height: math.unit(29.7, "meters"),
  24358. default: true
  24359. },
  24360. ]
  24361. ))
  24362. characterMakers.push(() => makeCharacter(
  24363. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24364. {
  24365. female: {
  24366. height: math.unit(23.8, "m"),
  24367. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24368. name: "Female",
  24369. image: {
  24370. source: "./media/characters/mactarian/female.svg",
  24371. extra: 2662 / 2569,
  24372. bottom: 73 / 2736
  24373. }
  24374. },
  24375. male: {
  24376. height: math.unit(23.8, "m"),
  24377. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24378. name: "Male",
  24379. image: {
  24380. source: "./media/characters/mactarian/male.svg",
  24381. extra: 2673 / 2600,
  24382. bottom: 76 / 2750
  24383. }
  24384. },
  24385. },
  24386. [
  24387. {
  24388. name: "Macro",
  24389. height: math.unit(23.8, "meters"),
  24390. default: true
  24391. },
  24392. ]
  24393. ))
  24394. characterMakers.push(() => makeCharacter(
  24395. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24396. {
  24397. female: {
  24398. height: math.unit(19.3, "m"),
  24399. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24400. name: "Female",
  24401. image: {
  24402. source: "./media/characters/umok/female.svg",
  24403. extra: 2186 / 2078,
  24404. bottom: 87 / 2277
  24405. }
  24406. },
  24407. male: {
  24408. height: math.unit(19.5, "m"),
  24409. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24410. name: "Male",
  24411. image: {
  24412. source: "./media/characters/umok/male.svg",
  24413. extra: 2233 / 2140,
  24414. bottom: 24.4 / 2258
  24415. }
  24416. },
  24417. },
  24418. [
  24419. {
  24420. name: "Macro",
  24421. height: math.unit(19.3, "meters"),
  24422. default: true
  24423. },
  24424. ]
  24425. ))
  24426. characterMakers.push(() => makeCharacter(
  24427. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24428. {
  24429. female: {
  24430. height: math.unit(26.15, "m"),
  24431. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24432. name: "Female",
  24433. image: {
  24434. source: "./media/characters/joraxian/female.svg",
  24435. extra: 2912 / 2824,
  24436. bottom: 36 / 2956
  24437. }
  24438. },
  24439. male: {
  24440. height: math.unit(25.4, "m"),
  24441. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24442. name: "Male",
  24443. image: {
  24444. source: "./media/characters/joraxian/male.svg",
  24445. extra: 2877 / 2721,
  24446. bottom: 82 / 2967
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Macro",
  24453. height: math.unit(26.15, "meters"),
  24454. default: true
  24455. },
  24456. ]
  24457. ))
  24458. characterMakers.push(() => makeCharacter(
  24459. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24460. {
  24461. female: {
  24462. height: math.unit(21.6, "m"),
  24463. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24464. name: "Female",
  24465. image: {
  24466. source: "./media/characters/sthara/female.svg",
  24467. extra: 2516 / 2347,
  24468. bottom: 21.5 / 2537
  24469. }
  24470. },
  24471. male: {
  24472. height: math.unit(24, "m"),
  24473. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24474. name: "Male",
  24475. image: {
  24476. source: "./media/characters/sthara/male.svg",
  24477. extra: 2732 / 2607,
  24478. bottom: 23 / 2732
  24479. }
  24480. },
  24481. },
  24482. [
  24483. {
  24484. name: "Macro",
  24485. height: math.unit(21.6, "meters"),
  24486. default: true
  24487. },
  24488. ]
  24489. ))
  24490. characterMakers.push(() => makeCharacter(
  24491. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24492. {
  24493. front: {
  24494. height: math.unit(6 + 4 / 12, "feet"),
  24495. weight: math.unit(175, "lb"),
  24496. name: "Front",
  24497. image: {
  24498. source: "./media/characters/luka-bryzant/front.svg",
  24499. extra: 311 / 289,
  24500. bottom: 4 / 315
  24501. }
  24502. },
  24503. back: {
  24504. height: math.unit(6 + 4 / 12, "feet"),
  24505. weight: math.unit(175, "lb"),
  24506. name: "Back",
  24507. image: {
  24508. source: "./media/characters/luka-bryzant/back.svg",
  24509. extra: 311 / 289,
  24510. bottom: 3.8 / 313.7
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Micro",
  24517. height: math.unit(10, "inches")
  24518. },
  24519. {
  24520. name: "Normal",
  24521. height: math.unit(6 + 4 / 12, "feet"),
  24522. default: true
  24523. },
  24524. {
  24525. name: "Large",
  24526. height: math.unit(12, "feet")
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24532. {
  24533. front: {
  24534. height: math.unit(5 + 7 / 12, "feet"),
  24535. weight: math.unit(185, "lb"),
  24536. name: "Front",
  24537. image: {
  24538. source: "./media/characters/aman-aquila/front.svg",
  24539. extra: 1013 / 976,
  24540. bottom: 45.6 / 1057
  24541. }
  24542. },
  24543. side: {
  24544. height: math.unit(5 + 7 / 12, "feet"),
  24545. weight: math.unit(185, "lb"),
  24546. name: "Side",
  24547. image: {
  24548. source: "./media/characters/aman-aquila/side.svg",
  24549. extra: 1054 / 1011,
  24550. bottom: 15 / 1070
  24551. }
  24552. },
  24553. back: {
  24554. height: math.unit(5 + 7 / 12, "feet"),
  24555. weight: math.unit(185, "lb"),
  24556. name: "Back",
  24557. image: {
  24558. source: "./media/characters/aman-aquila/back.svg",
  24559. extra: 1026 / 970,
  24560. bottom: 12 / 1039
  24561. }
  24562. },
  24563. head: {
  24564. height: math.unit(1.211, "feet"),
  24565. name: "Head",
  24566. image: {
  24567. source: "./media/characters/aman-aquila/head.svg",
  24568. }
  24569. },
  24570. },
  24571. [
  24572. {
  24573. name: "Minimicro",
  24574. height: math.unit(0.057, "inches")
  24575. },
  24576. {
  24577. name: "Micro",
  24578. height: math.unit(7, "inches")
  24579. },
  24580. {
  24581. name: "Mini",
  24582. height: math.unit(3 + 7 / 12, "feet")
  24583. },
  24584. {
  24585. name: "Normal",
  24586. height: math.unit(5 + 7 / 12, "feet"),
  24587. default: true
  24588. },
  24589. {
  24590. name: "Macro",
  24591. height: math.unit(157 + 7 / 12, "feet")
  24592. },
  24593. {
  24594. name: "Megamacro",
  24595. height: math.unit(1557 + 7 / 12, "feet")
  24596. },
  24597. {
  24598. name: "Gigamacro",
  24599. height: math.unit(15557 + 7 / 12, "feet")
  24600. },
  24601. ]
  24602. ))
  24603. characterMakers.push(() => makeCharacter(
  24604. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24605. {
  24606. front: {
  24607. height: math.unit(3 + 2 / 12, "inches"),
  24608. weight: math.unit(0.3, "ounces"),
  24609. name: "Front",
  24610. image: {
  24611. source: "./media/characters/hiphae/front.svg",
  24612. extra: 1931 / 1683,
  24613. bottom: 24 / 1955
  24614. }
  24615. },
  24616. },
  24617. [
  24618. {
  24619. name: "Normal",
  24620. height: math.unit(3 + 1 / 2, "inches"),
  24621. default: true
  24622. },
  24623. ]
  24624. ))
  24625. characterMakers.push(() => makeCharacter(
  24626. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24627. {
  24628. front: {
  24629. height: math.unit(5 + 10 / 12, "feet"),
  24630. weight: math.unit(165, "lb"),
  24631. name: "Front",
  24632. image: {
  24633. source: "./media/characters/nicky/front.svg",
  24634. extra: 3144 / 2886,
  24635. bottom: 45.6 / 3192
  24636. }
  24637. },
  24638. back: {
  24639. height: math.unit(5 + 10 / 12, "feet"),
  24640. weight: math.unit(165, "lb"),
  24641. name: "Back",
  24642. image: {
  24643. source: "./media/characters/nicky/back.svg",
  24644. extra: 3055 / 2804,
  24645. bottom: 28.4 / 3087
  24646. }
  24647. },
  24648. frontclothed: {
  24649. height: math.unit(5 + 10 / 12, "feet"),
  24650. weight: math.unit(165, "lb"),
  24651. name: "Front-clothed",
  24652. image: {
  24653. source: "./media/characters/nicky/front-clothed.svg",
  24654. extra: 3184.9 / 2926.9,
  24655. bottom: 86.5 / 3239.9
  24656. }
  24657. },
  24658. foot: {
  24659. height: math.unit(1.16, "feet"),
  24660. name: "Foot",
  24661. image: {
  24662. source: "./media/characters/nicky/foot.svg"
  24663. }
  24664. },
  24665. feet: {
  24666. height: math.unit(1.34, "feet"),
  24667. name: "Feet",
  24668. image: {
  24669. source: "./media/characters/nicky/feet.svg"
  24670. }
  24671. },
  24672. maw: {
  24673. height: math.unit(0.9, "feet"),
  24674. name: "Maw",
  24675. image: {
  24676. source: "./media/characters/nicky/maw.svg"
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Normal",
  24683. height: math.unit(5 + 10 / 12, "feet"),
  24684. default: true
  24685. },
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(60, "feet")
  24689. },
  24690. {
  24691. name: "Megamacro",
  24692. height: math.unit(1, "mile")
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24698. {
  24699. side: {
  24700. height: math.unit(10, "feet"),
  24701. weight: math.unit(600, "lb"),
  24702. name: "Side",
  24703. image: {
  24704. source: "./media/characters/blair/side.svg",
  24705. bottom: 16.6 / 475,
  24706. extra: 458 / 431
  24707. }
  24708. },
  24709. },
  24710. [
  24711. {
  24712. name: "Micro",
  24713. height: math.unit(8, "inches")
  24714. },
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(10, "feet"),
  24718. default: true
  24719. },
  24720. {
  24721. name: "Macro",
  24722. height: math.unit(180, "feet")
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(5 + 4 / 12, "feet"),
  24731. weight: math.unit(125, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/fisher/front.svg",
  24735. extra: 444 / 390,
  24736. bottom: 2 / 444.8
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Micro",
  24743. height: math.unit(4, "inches")
  24744. },
  24745. {
  24746. name: "Normal",
  24747. height: math.unit(5 + 4 / 12, "feet"),
  24748. default: true
  24749. },
  24750. {
  24751. name: "Macro",
  24752. height: math.unit(100, "feet")
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24758. {
  24759. front: {
  24760. height: math.unit(6.71, "feet"),
  24761. weight: math.unit(200, "lb"),
  24762. capacity: math.unit(1000000, "people"),
  24763. name: "Front",
  24764. image: {
  24765. source: "./media/characters/gliss/front.svg",
  24766. extra: 2347 / 2231,
  24767. bottom: 113 / 2462
  24768. }
  24769. },
  24770. hammerspaceSize: {
  24771. height: math.unit(6.71 * 717, "feet"),
  24772. weight: math.unit(200, "lb"),
  24773. capacity: math.unit(1000000, "people"),
  24774. name: "Hammerspace Size",
  24775. image: {
  24776. source: "./media/characters/gliss/front.svg",
  24777. extra: 2347 / 2231,
  24778. bottom: 113 / 2462
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(6.71, "feet"),
  24786. default: true
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24792. {
  24793. side: {
  24794. height: math.unit(1.44, "m"),
  24795. weight: math.unit(80, "kg"),
  24796. name: "Side",
  24797. image: {
  24798. source: "./media/characters/dune-anderson/side.svg",
  24799. bottom: 49 / 1426
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Wolf-sized",
  24806. height: math.unit(1.44, "meters")
  24807. },
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(5.05, "meters"),
  24811. default: true
  24812. },
  24813. {
  24814. name: "Big",
  24815. height: math.unit(14.4, "meters")
  24816. },
  24817. {
  24818. name: "Huge",
  24819. height: math.unit(144, "meters")
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24825. {
  24826. front: {
  24827. height: math.unit(7, "feet"),
  24828. weight: math.unit(425, "lb"),
  24829. name: "Front",
  24830. image: {
  24831. source: "./media/characters/hind/front.svg",
  24832. extra: 2091 / 1860,
  24833. bottom: 129 / 2220
  24834. }
  24835. },
  24836. back: {
  24837. height: math.unit(7, "feet"),
  24838. weight: math.unit(425, "lb"),
  24839. name: "Back",
  24840. image: {
  24841. source: "./media/characters/hind/back.svg",
  24842. extra: 2091 / 1860,
  24843. bottom: 24.6 / 2309
  24844. }
  24845. },
  24846. tail: {
  24847. height: math.unit(2.8, "feet"),
  24848. name: "Tail",
  24849. image: {
  24850. source: "./media/characters/hind/tail.svg"
  24851. }
  24852. },
  24853. head: {
  24854. height: math.unit(2.55, "feet"),
  24855. name: "Head",
  24856. image: {
  24857. source: "./media/characters/hind/head.svg"
  24858. }
  24859. },
  24860. },
  24861. [
  24862. {
  24863. name: "XS",
  24864. height: math.unit(0.7, "feet")
  24865. },
  24866. {
  24867. name: "Normal",
  24868. height: math.unit(7, "feet"),
  24869. default: true
  24870. },
  24871. {
  24872. name: "XL",
  24873. height: math.unit(70, "feet")
  24874. },
  24875. ]
  24876. ))
  24877. characterMakers.push(() => makeCharacter(
  24878. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24879. {
  24880. front: {
  24881. height: math.unit(6, "feet"),
  24882. weight: math.unit(150, "lb"),
  24883. name: "Front",
  24884. image: {
  24885. source: "./media/characters/tharquench-sizestealer/front.svg",
  24886. extra: 2318 / 2063,
  24887. bottom: 93.4 / 2410
  24888. }
  24889. },
  24890. },
  24891. [
  24892. {
  24893. name: "Nano",
  24894. height: math.unit(1, "mm")
  24895. },
  24896. {
  24897. name: "Micro",
  24898. height: math.unit(1, "cm")
  24899. },
  24900. {
  24901. name: "Normal",
  24902. height: math.unit(2.1, "meters"),
  24903. default: true
  24904. },
  24905. ]
  24906. ))
  24907. characterMakers.push(() => makeCharacter(
  24908. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24909. {
  24910. front: {
  24911. height: math.unit(7 + 5 / 12, "feet"),
  24912. weight: math.unit(357, "lb"),
  24913. name: "Front",
  24914. image: {
  24915. source: "./media/characters/solex-draconov/front.svg",
  24916. extra: 1993 / 1865,
  24917. bottom: 117 / 2111
  24918. }
  24919. },
  24920. },
  24921. [
  24922. {
  24923. name: "Natural Height",
  24924. height: math.unit(7 + 5 / 12, "feet"),
  24925. default: true
  24926. },
  24927. {
  24928. name: "Macro",
  24929. height: math.unit(350, "feet")
  24930. },
  24931. {
  24932. name: "Macro+",
  24933. height: math.unit(1000, "feet")
  24934. },
  24935. {
  24936. name: "Megamacro",
  24937. height: math.unit(20, "km")
  24938. },
  24939. {
  24940. name: "Megamacro+",
  24941. height: math.unit(1000, "km")
  24942. },
  24943. {
  24944. name: "Gigamacro",
  24945. height: math.unit(2.5, "Gm")
  24946. },
  24947. {
  24948. name: "Teramacro",
  24949. height: math.unit(15, "Tm")
  24950. },
  24951. {
  24952. name: "Galactic",
  24953. height: math.unit(30, "Zm")
  24954. },
  24955. {
  24956. name: "Universal",
  24957. height: math.unit(21000, "Ym")
  24958. },
  24959. {
  24960. name: "Omniversal",
  24961. height: math.unit(9.861e50, "Ym")
  24962. },
  24963. {
  24964. name: "Existential",
  24965. height: math.unit(1e300, "meters")
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24971. {
  24972. side: {
  24973. height: math.unit(25, "feet"),
  24974. weight: math.unit(90000, "lb"),
  24975. name: "Side",
  24976. image: {
  24977. source: "./media/characters/mandarax/side.svg",
  24978. extra: 614 / 332,
  24979. bottom: 55 / 630
  24980. }
  24981. },
  24982. head: {
  24983. height: math.unit(11.4, "feet"),
  24984. name: "Head",
  24985. image: {
  24986. source: "./media/characters/mandarax/head.svg"
  24987. }
  24988. },
  24989. belly: {
  24990. height: math.unit(33, "feet"),
  24991. name: "Belly",
  24992. capacity: math.unit(500, "people"),
  24993. image: {
  24994. source: "./media/characters/mandarax/belly.svg"
  24995. }
  24996. },
  24997. dick: {
  24998. height: math.unit(8.46, "feet"),
  24999. name: "Dick",
  25000. image: {
  25001. source: "./media/characters/mandarax/dick.svg"
  25002. }
  25003. },
  25004. top: {
  25005. height: math.unit(28, "meters"),
  25006. name: "Top",
  25007. image: {
  25008. source: "./media/characters/mandarax/top.svg"
  25009. }
  25010. },
  25011. },
  25012. [
  25013. {
  25014. name: "Normal",
  25015. height: math.unit(25, "feet"),
  25016. default: true
  25017. },
  25018. ]
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25022. {
  25023. front: {
  25024. height: math.unit(5, "feet"),
  25025. weight: math.unit(90, "lb"),
  25026. name: "Front",
  25027. image: {
  25028. source: "./media/characters/pixil/front.svg",
  25029. extra: 2000 / 1618,
  25030. bottom: 12.3 / 2011
  25031. }
  25032. },
  25033. },
  25034. [
  25035. {
  25036. name: "Normal",
  25037. height: math.unit(5, "feet"),
  25038. default: true
  25039. },
  25040. {
  25041. name: "Megamacro",
  25042. height: math.unit(10, "miles"),
  25043. },
  25044. ]
  25045. ))
  25046. characterMakers.push(() => makeCharacter(
  25047. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25048. {
  25049. front: {
  25050. height: math.unit(7 + 2 / 12, "feet"),
  25051. weight: math.unit(200, "lb"),
  25052. name: "Front",
  25053. image: {
  25054. source: "./media/characters/angel/front.svg",
  25055. extra: 1830 / 1737,
  25056. bottom: 22.6 / 1854,
  25057. }
  25058. },
  25059. },
  25060. [
  25061. {
  25062. name: "Normal",
  25063. height: math.unit(7 + 2 / 12, "feet"),
  25064. default: true
  25065. },
  25066. {
  25067. name: "Macro",
  25068. height: math.unit(1000, "feet")
  25069. },
  25070. {
  25071. name: "Megamacro",
  25072. height: math.unit(2, "miles")
  25073. },
  25074. {
  25075. name: "Gigamacro",
  25076. height: math.unit(20, "earths")
  25077. },
  25078. ]
  25079. ))
  25080. characterMakers.push(() => makeCharacter(
  25081. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25082. {
  25083. front: {
  25084. height: math.unit(5, "feet"),
  25085. weight: math.unit(180, "lb"),
  25086. name: "Front",
  25087. image: {
  25088. source: "./media/characters/mekana/front.svg",
  25089. extra: 1671 / 1605,
  25090. bottom: 3.5 / 1691
  25091. }
  25092. },
  25093. side: {
  25094. height: math.unit(5, "feet"),
  25095. weight: math.unit(180, "lb"),
  25096. name: "Side",
  25097. image: {
  25098. source: "./media/characters/mekana/side.svg",
  25099. extra: 1671 / 1605,
  25100. bottom: 3.5 / 1691
  25101. }
  25102. },
  25103. back: {
  25104. height: math.unit(5, "feet"),
  25105. weight: math.unit(180, "lb"),
  25106. name: "Back",
  25107. image: {
  25108. source: "./media/characters/mekana/back.svg",
  25109. extra: 1671 / 1605,
  25110. bottom: 3.5 / 1691
  25111. }
  25112. },
  25113. },
  25114. [
  25115. {
  25116. name: "Normal",
  25117. height: math.unit(5, "feet"),
  25118. default: true
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25124. {
  25125. front: {
  25126. height: math.unit(4 + 6 / 12, "feet"),
  25127. weight: math.unit(80, "lb"),
  25128. name: "Front",
  25129. image: {
  25130. source: "./media/characters/pixie/front.svg",
  25131. extra: 1924 / 1825,
  25132. bottom: 22.4 / 1946
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(4 + 6 / 12, "feet"),
  25140. default: true
  25141. },
  25142. {
  25143. name: "Macro",
  25144. height: math.unit(40, "feet")
  25145. },
  25146. ]
  25147. ))
  25148. characterMakers.push(() => makeCharacter(
  25149. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25150. {
  25151. front: {
  25152. height: math.unit(2.1, "meters"),
  25153. weight: math.unit(200, "lb"),
  25154. name: "Front",
  25155. image: {
  25156. source: "./media/characters/the-lascivious/front.svg",
  25157. extra: 1 / 0.893,
  25158. bottom: 3.5 / 573.7
  25159. }
  25160. },
  25161. },
  25162. [
  25163. {
  25164. name: "Human Scale",
  25165. height: math.unit(2.1, "meters")
  25166. },
  25167. {
  25168. name: "Wolxi Scale",
  25169. height: math.unit(46.2, "m"),
  25170. default: true
  25171. },
  25172. {
  25173. name: "Boinker of Buildings",
  25174. height: math.unit(10, "km")
  25175. },
  25176. {
  25177. name: "Shagger of Skyscrapers",
  25178. height: math.unit(40, "km")
  25179. },
  25180. {
  25181. name: "Banger of Boroughs",
  25182. height: math.unit(4000, "km")
  25183. },
  25184. {
  25185. name: "Screwer of States",
  25186. height: math.unit(100000, "km")
  25187. },
  25188. {
  25189. name: "Pounder of Planets",
  25190. height: math.unit(2000000, "km")
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(6, "feet"),
  25199. weight: math.unit(150, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/aj/front.svg",
  25203. extra: 2039 / 1562,
  25204. bottom: 40 / 2079
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Normal",
  25211. height: math.unit(11 + 6 / 12, "feet"),
  25212. default: true
  25213. },
  25214. {
  25215. name: "Megamacro",
  25216. height: math.unit(60, "megameters")
  25217. },
  25218. ]
  25219. ))
  25220. characterMakers.push(() => makeCharacter(
  25221. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25222. {
  25223. side: {
  25224. height: math.unit(31 + 8 / 12, "feet"),
  25225. weight: math.unit(75000, "kg"),
  25226. name: "Side",
  25227. image: {
  25228. source: "./media/characters/koros/side.svg",
  25229. extra: 1442 / 1297,
  25230. bottom: 122.7 / 1562
  25231. }
  25232. },
  25233. dicksKingsCrown: {
  25234. height: math.unit(6, "feet"),
  25235. name: "Dicks (King's Crown)",
  25236. image: {
  25237. source: "./media/characters/koros/dicks-kings-crown.svg"
  25238. }
  25239. },
  25240. dicksTailSet: {
  25241. height: math.unit(3, "feet"),
  25242. name: "Dicks (Tail Set)",
  25243. image: {
  25244. source: "./media/characters/koros/dicks-tail-set.svg"
  25245. }
  25246. },
  25247. dickCumming: {
  25248. height: math.unit(7.98, "feet"),
  25249. name: "Dick (Cumming)",
  25250. image: {
  25251. source: "./media/characters/koros/dick-cumming.svg"
  25252. }
  25253. },
  25254. dicksBack: {
  25255. height: math.unit(5.9, "feet"),
  25256. name: "Dicks (Back)",
  25257. image: {
  25258. source: "./media/characters/koros/dicks-back.svg"
  25259. }
  25260. },
  25261. dicksFront: {
  25262. height: math.unit(3.72, "feet"),
  25263. name: "Dicks (Front)",
  25264. image: {
  25265. source: "./media/characters/koros/dicks-front.svg"
  25266. }
  25267. },
  25268. dicksPeeking: {
  25269. height: math.unit(3.0, "feet"),
  25270. name: "Dicks (Peeking)",
  25271. image: {
  25272. source: "./media/characters/koros/dicks-peeking.svg"
  25273. }
  25274. },
  25275. eye: {
  25276. height: math.unit(1.7, "feet"),
  25277. name: "Eye",
  25278. image: {
  25279. source: "./media/characters/koros/eye.svg"
  25280. }
  25281. },
  25282. headFront: {
  25283. height: math.unit(11.69, "feet"),
  25284. name: "Head (Front)",
  25285. image: {
  25286. source: "./media/characters/koros/head-front.svg"
  25287. }
  25288. },
  25289. headSide: {
  25290. height: math.unit(14, "feet"),
  25291. name: "Head (Side)",
  25292. image: {
  25293. source: "./media/characters/koros/head-side.svg"
  25294. }
  25295. },
  25296. leg: {
  25297. height: math.unit(17, "feet"),
  25298. name: "Leg",
  25299. image: {
  25300. source: "./media/characters/koros/leg.svg"
  25301. }
  25302. },
  25303. mawSide: {
  25304. height: math.unit(12.8, "feet"),
  25305. name: "Maw (Side)",
  25306. image: {
  25307. source: "./media/characters/koros/maw-side.svg"
  25308. }
  25309. },
  25310. mawSpitting: {
  25311. height: math.unit(17, "feet"),
  25312. name: "Maw (Spitting)",
  25313. image: {
  25314. source: "./media/characters/koros/maw-spitting.svg"
  25315. }
  25316. },
  25317. slit: {
  25318. height: math.unit(2.8, "feet"),
  25319. name: "Slit",
  25320. image: {
  25321. source: "./media/characters/koros/slit.svg"
  25322. }
  25323. },
  25324. stomach: {
  25325. height: math.unit(6.8, "feet"),
  25326. capacity: math.unit(20, "people"),
  25327. name: "Stomach",
  25328. image: {
  25329. source: "./media/characters/koros/stomach.svg"
  25330. }
  25331. },
  25332. wingspanBottom: {
  25333. height: math.unit(114, "feet"),
  25334. name: "Wingspan (Bottom)",
  25335. image: {
  25336. source: "./media/characters/koros/wingspan-bottom.svg"
  25337. }
  25338. },
  25339. wingspanTop: {
  25340. height: math.unit(104, "feet"),
  25341. name: "Wingspan (Top)",
  25342. image: {
  25343. source: "./media/characters/koros/wingspan-top.svg"
  25344. }
  25345. },
  25346. },
  25347. [
  25348. {
  25349. name: "Normal",
  25350. height: math.unit(31 + 8 / 12, "feet"),
  25351. default: true
  25352. },
  25353. ]
  25354. ))
  25355. characterMakers.push(() => makeCharacter(
  25356. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25357. {
  25358. front: {
  25359. height: math.unit(18 + 5 / 12, "feet"),
  25360. weight: math.unit(3750, "kg"),
  25361. name: "Front",
  25362. image: {
  25363. source: "./media/characters/vexx/front.svg",
  25364. extra: 426 / 396,
  25365. bottom: 31.5 / 458
  25366. }
  25367. },
  25368. maw: {
  25369. height: math.unit(6, "feet"),
  25370. name: "Maw",
  25371. image: {
  25372. source: "./media/characters/vexx/maw.svg"
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Normal",
  25379. height: math.unit(18 + 5 / 12, "feet"),
  25380. default: true
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(17 + 6 / 12, "feet"),
  25389. weight: math.unit(150, "lb"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/baadra/front.svg",
  25393. extra: 3137 / 2890,
  25394. bottom: 168.4 / 3305
  25395. }
  25396. },
  25397. back: {
  25398. height: math.unit(17 + 6 / 12, "feet"),
  25399. weight: math.unit(150, "lb"),
  25400. name: "Back",
  25401. image: {
  25402. source: "./media/characters/baadra/back.svg",
  25403. extra: 3142 / 2890,
  25404. bottom: 220 / 3371
  25405. }
  25406. },
  25407. head: {
  25408. height: math.unit(5.45, "feet"),
  25409. name: "Head",
  25410. image: {
  25411. source: "./media/characters/baadra/head.svg"
  25412. }
  25413. },
  25414. headAngry: {
  25415. height: math.unit(4.95, "feet"),
  25416. name: "Head (Angry)",
  25417. image: {
  25418. source: "./media/characters/baadra/head-angry.svg"
  25419. }
  25420. },
  25421. headOpen: {
  25422. height: math.unit(6, "feet"),
  25423. name: "Head (Open)",
  25424. image: {
  25425. source: "./media/characters/baadra/head-open.svg"
  25426. }
  25427. },
  25428. },
  25429. [
  25430. {
  25431. name: "Normal",
  25432. height: math.unit(17 + 6 / 12, "feet"),
  25433. default: true
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(7 + 3 / 12, "feet"),
  25442. weight: math.unit(180, "lb"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/juri/front.svg",
  25446. extra: 1401 / 1237,
  25447. bottom: 18.5 / 1418
  25448. }
  25449. },
  25450. side: {
  25451. height: math.unit(7 + 3 / 12, "feet"),
  25452. weight: math.unit(180, "lb"),
  25453. name: "Side",
  25454. image: {
  25455. source: "./media/characters/juri/side.svg",
  25456. extra: 1424 / 1242,
  25457. bottom: 18.5 / 1447
  25458. }
  25459. },
  25460. sitting: {
  25461. height: math.unit(6, "feet"),
  25462. weight: math.unit(180, "lb"),
  25463. name: "Sitting",
  25464. image: {
  25465. source: "./media/characters/juri/sitting.svg",
  25466. extra: 1270 / 1143,
  25467. bottom: 100 / 1343
  25468. }
  25469. },
  25470. back: {
  25471. height: math.unit(7 + 3 / 12, "feet"),
  25472. weight: math.unit(180, "lb"),
  25473. name: "Back",
  25474. image: {
  25475. source: "./media/characters/juri/back.svg",
  25476. extra: 1377 / 1240,
  25477. bottom: 23.7 / 1405
  25478. }
  25479. },
  25480. maw: {
  25481. height: math.unit(2.8, "feet"),
  25482. name: "Maw",
  25483. image: {
  25484. source: "./media/characters/juri/maw.svg"
  25485. }
  25486. },
  25487. stomach: {
  25488. height: math.unit(0.89, "feet"),
  25489. capacity: math.unit(4, "liters"),
  25490. name: "Stomach",
  25491. image: {
  25492. source: "./media/characters/juri/stomach.svg"
  25493. }
  25494. },
  25495. },
  25496. [
  25497. {
  25498. name: "Normal",
  25499. height: math.unit(7 + 3 / 12, "feet"),
  25500. default: true
  25501. },
  25502. ]
  25503. ))
  25504. characterMakers.push(() => makeCharacter(
  25505. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25506. {
  25507. fox: {
  25508. height: math.unit(5 + 6 / 12, "feet"),
  25509. weight: math.unit(140, "lb"),
  25510. name: "Fox",
  25511. image: {
  25512. source: "./media/characters/maxene-sita/fox.svg",
  25513. extra: 146 / 138,
  25514. bottom: 2.1 / 148.19
  25515. }
  25516. },
  25517. foxLaying: {
  25518. height: math.unit(1.70, "feet"),
  25519. weight: math.unit(140, "lb"),
  25520. name: "Fox (Laying)",
  25521. image: {
  25522. source: "./media/characters/maxene-sita/fox-laying.svg",
  25523. extra: 910 / 572,
  25524. bottom: 71 / 981
  25525. }
  25526. },
  25527. kitsune: {
  25528. height: math.unit(10, "feet"),
  25529. weight: math.unit(800, "lb"),
  25530. name: "Kitsune",
  25531. image: {
  25532. source: "./media/characters/maxene-sita/kitsune.svg",
  25533. extra: 185 / 176,
  25534. bottom: 4.7 / 189.9
  25535. }
  25536. },
  25537. hellhound: {
  25538. height: math.unit(10, "feet"),
  25539. weight: math.unit(700, "lb"),
  25540. name: "Hellhound",
  25541. image: {
  25542. source: "./media/characters/maxene-sita/hellhound.svg",
  25543. extra: 1600 / 1545,
  25544. bottom: 81 / 1681
  25545. }
  25546. },
  25547. },
  25548. [
  25549. {
  25550. name: "Normal",
  25551. height: math.unit(5 + 6 / 12, "feet"),
  25552. default: true
  25553. },
  25554. ]
  25555. ))
  25556. characterMakers.push(() => makeCharacter(
  25557. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25558. {
  25559. front: {
  25560. height: math.unit(3 + 4 / 12, "feet"),
  25561. weight: math.unit(70, "lb"),
  25562. name: "Front",
  25563. image: {
  25564. source: "./media/characters/maia/front.svg",
  25565. extra: 227 / 219.5,
  25566. bottom: 40 / 267
  25567. }
  25568. },
  25569. back: {
  25570. height: math.unit(3 + 4 / 12, "feet"),
  25571. weight: math.unit(70, "lb"),
  25572. name: "Back",
  25573. image: {
  25574. source: "./media/characters/maia/back.svg",
  25575. extra: 237 / 225
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Normal",
  25582. height: math.unit(3 + 4 / 12, "feet"),
  25583. default: true
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25589. {
  25590. front: {
  25591. height: math.unit(5 + 10 / 12, "feet"),
  25592. weight: math.unit(197, "lb"),
  25593. name: "Front",
  25594. image: {
  25595. source: "./media/characters/jabaro/front.svg",
  25596. extra: 225 / 216,
  25597. bottom: 5.06 / 230
  25598. }
  25599. },
  25600. back: {
  25601. height: math.unit(5 + 10 / 12, "feet"),
  25602. weight: math.unit(197, "lb"),
  25603. name: "Back",
  25604. image: {
  25605. source: "./media/characters/jabaro/back.svg",
  25606. extra: 225 / 219,
  25607. bottom: 1.9 / 227
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(5 + 10 / 12, "feet"),
  25615. default: true
  25616. },
  25617. ]
  25618. ))
  25619. characterMakers.push(() => makeCharacter(
  25620. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25621. {
  25622. front: {
  25623. height: math.unit(5 + 8 / 12, "feet"),
  25624. weight: math.unit(139, "lb"),
  25625. name: "Front",
  25626. image: {
  25627. source: "./media/characters/risa/front.svg",
  25628. extra: 270 / 260,
  25629. bottom: 11.2 / 282
  25630. }
  25631. },
  25632. back: {
  25633. height: math.unit(5 + 8 / 12, "feet"),
  25634. weight: math.unit(139, "lb"),
  25635. name: "Back",
  25636. image: {
  25637. source: "./media/characters/risa/back.svg",
  25638. extra: 264 / 255,
  25639. bottom: 4 / 268
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(5 + 8 / 12, "feet"),
  25647. default: true
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25653. {
  25654. front: {
  25655. height: math.unit(2 + 11 / 12, "feet"),
  25656. weight: math.unit(30, "lb"),
  25657. name: "Front",
  25658. image: {
  25659. source: "./media/characters/weatley/front.svg",
  25660. bottom: 10.7 / 414,
  25661. extra: 403.5 / 362
  25662. }
  25663. },
  25664. back: {
  25665. height: math.unit(2 + 11 / 12, "feet"),
  25666. weight: math.unit(30, "lb"),
  25667. name: "Back",
  25668. image: {
  25669. source: "./media/characters/weatley/back.svg",
  25670. bottom: 10.7 / 414,
  25671. extra: 403.5 / 362
  25672. }
  25673. },
  25674. },
  25675. [
  25676. {
  25677. name: "Normal",
  25678. height: math.unit(2 + 11 / 12, "feet"),
  25679. default: true
  25680. },
  25681. ]
  25682. ))
  25683. characterMakers.push(() => makeCharacter(
  25684. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25685. {
  25686. front: {
  25687. height: math.unit(5 + 2 / 12, "feet"),
  25688. weight: math.unit(50, "kg"),
  25689. name: "Front",
  25690. image: {
  25691. source: "./media/characters/mercury-crescent/front.svg",
  25692. extra: 1088 / 1033,
  25693. bottom: 18.9 / 1109
  25694. }
  25695. },
  25696. },
  25697. [
  25698. {
  25699. name: "Normal",
  25700. height: math.unit(5 + 2 / 12, "feet"),
  25701. default: true
  25702. },
  25703. ]
  25704. ))
  25705. characterMakers.push(() => makeCharacter(
  25706. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25707. {
  25708. front: {
  25709. height: math.unit(2, "feet"),
  25710. weight: math.unit(15, "kg"),
  25711. name: "Front",
  25712. image: {
  25713. source: "./media/characters/diamond-jones/front.svg",
  25714. extra: 727/723,
  25715. bottom: 46/773
  25716. }
  25717. },
  25718. },
  25719. [
  25720. {
  25721. name: "Normal",
  25722. height: math.unit(2, "feet"),
  25723. default: true
  25724. },
  25725. ]
  25726. ))
  25727. characterMakers.push(() => makeCharacter(
  25728. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25729. {
  25730. front: {
  25731. height: math.unit(3, "feet"),
  25732. weight: math.unit(30, "kg"),
  25733. name: "Front",
  25734. image: {
  25735. source: "./media/characters/sweet-bit/front.svg",
  25736. extra: 675 / 567,
  25737. bottom: 27.7 / 703
  25738. }
  25739. },
  25740. },
  25741. [
  25742. {
  25743. name: "Normal",
  25744. height: math.unit(3, "feet"),
  25745. default: true
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25751. {
  25752. side: {
  25753. height: math.unit(9.178, "feet"),
  25754. weight: math.unit(500, "lb"),
  25755. name: "Side",
  25756. image: {
  25757. source: "./media/characters/umbrazen/side.svg",
  25758. extra: 1730 / 1473,
  25759. bottom: 34.6 / 1765
  25760. }
  25761. },
  25762. },
  25763. [
  25764. {
  25765. name: "Normal",
  25766. height: math.unit(9.178, "feet"),
  25767. default: true
  25768. },
  25769. ]
  25770. ))
  25771. characterMakers.push(() => makeCharacter(
  25772. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25773. {
  25774. front: {
  25775. height: math.unit(10, "feet"),
  25776. weight: math.unit(750, "lb"),
  25777. name: "Front",
  25778. image: {
  25779. source: "./media/characters/arlist/front.svg",
  25780. extra: 961 / 778,
  25781. bottom: 6.2 / 986
  25782. }
  25783. },
  25784. },
  25785. [
  25786. {
  25787. name: "Normal",
  25788. height: math.unit(10, "feet"),
  25789. default: true
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(5 + 1 / 12, "feet"),
  25798. weight: math.unit(110, "lb"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/aradel/front.svg",
  25802. extra: 324 / 303,
  25803. bottom: 3.6 / 329.4
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Normal",
  25810. height: math.unit(5 + 1 / 12, "feet"),
  25811. default: true
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25817. {
  25818. front: {
  25819. height: math.unit(3 + 8 / 12, "feet"),
  25820. weight: math.unit(50, "lb"),
  25821. name: "Front",
  25822. image: {
  25823. source: "./media/characters/serryn/front.svg",
  25824. extra: 1792 / 1656,
  25825. bottom: 43.5 / 1840
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Normal",
  25832. height: math.unit(3 + 8 / 12, "feet"),
  25833. default: true
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25839. {
  25840. front: {
  25841. height: math.unit(7 + 10 / 12, "feet"),
  25842. weight: math.unit(255, "lb"),
  25843. name: "Front",
  25844. image: {
  25845. source: "./media/characters/xavier-thyme/front.svg",
  25846. extra: 3733 / 3642,
  25847. bottom: 131 / 3869
  25848. }
  25849. },
  25850. frontRaven: {
  25851. height: math.unit(7 + 10 / 12, "feet"),
  25852. weight: math.unit(255, "lb"),
  25853. name: "Front (Raven)",
  25854. image: {
  25855. source: "./media/characters/xavier-thyme/front-raven.svg",
  25856. extra: 4385 / 3642,
  25857. bottom: 131 / 4517
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(7 + 10 / 12, "feet"),
  25865. default: true
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(1.6, "m"),
  25874. weight: math.unit(50, "kg"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/kiki/front.svg",
  25878. extra: 4682 / 3610,
  25879. bottom: 115 / 4777
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(1.6, "meters"),
  25887. default: true
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25893. {
  25894. front: {
  25895. height: math.unit(50, "m"),
  25896. weight: math.unit(500, "tonnes"),
  25897. name: "Front",
  25898. image: {
  25899. source: "./media/characters/ryoko/front.svg",
  25900. extra: 4632 / 3926,
  25901. bottom: 193 / 4823
  25902. }
  25903. },
  25904. },
  25905. [
  25906. {
  25907. name: "Normal",
  25908. height: math.unit(50, "meters"),
  25909. default: true
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25915. {
  25916. front: {
  25917. height: math.unit(30, "m"),
  25918. weight: math.unit(22, "tonnes"),
  25919. name: "Front",
  25920. image: {
  25921. source: "./media/characters/elio/front.svg",
  25922. extra: 4582 / 3720,
  25923. bottom: 236 / 4828
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Normal",
  25930. height: math.unit(30, "meters"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(6 + 3 / 12, "feet"),
  25940. weight: math.unit(120, "lb"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/azura/front.svg",
  25944. extra: 1149 / 1135,
  25945. bottom: 45 / 1194
  25946. }
  25947. },
  25948. frontClothed: {
  25949. height: math.unit(6 + 3 / 12, "feet"),
  25950. weight: math.unit(120, "lb"),
  25951. name: "Front (Clothed)",
  25952. image: {
  25953. source: "./media/characters/azura/front-clothed.svg",
  25954. extra: 1149 / 1135,
  25955. bottom: 45 / 1194
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Normal",
  25962. height: math.unit(6 + 3 / 12, "feet"),
  25963. default: true
  25964. },
  25965. {
  25966. name: "Macro",
  25967. height: math.unit(20 + 6 / 12, "feet")
  25968. },
  25969. {
  25970. name: "Megamacro",
  25971. height: math.unit(12, "miles")
  25972. },
  25973. {
  25974. name: "Gigamacro",
  25975. height: math.unit(10000, "miles")
  25976. },
  25977. {
  25978. name: "Teramacro",
  25979. height: math.unit(900000, "miles")
  25980. },
  25981. ]
  25982. ))
  25983. characterMakers.push(() => makeCharacter(
  25984. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25985. {
  25986. front: {
  25987. height: math.unit(12, "feet"),
  25988. weight: math.unit(1, "ton"),
  25989. capacity: math.unit(660000, "gallons"),
  25990. name: "Front",
  25991. image: {
  25992. source: "./media/characters/zeus/front.svg",
  25993. extra: 5005 / 4717,
  25994. bottom: 363 / 5388
  25995. }
  25996. },
  25997. },
  25998. [
  25999. {
  26000. name: "Normal",
  26001. height: math.unit(12, "feet")
  26002. },
  26003. {
  26004. name: "Preferred Size",
  26005. height: math.unit(0.5, "miles"),
  26006. default: true
  26007. },
  26008. {
  26009. name: "Giga Horse",
  26010. height: math.unit(300, "miles")
  26011. },
  26012. {
  26013. name: "Riding Planets",
  26014. height: math.unit(30, "megameters")
  26015. },
  26016. {
  26017. name: "Cosmic Giant",
  26018. height: math.unit(3, "zettameters")
  26019. },
  26020. {
  26021. name: "Breeding God",
  26022. height: math.unit(9.92e22, "yottameters")
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26028. {
  26029. side: {
  26030. height: math.unit(9, "feet"),
  26031. weight: math.unit(1500, "kg"),
  26032. name: "Side",
  26033. image: {
  26034. source: "./media/characters/fang/side.svg",
  26035. extra: 924 / 866,
  26036. bottom: 47.5 / 972.3
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Normal",
  26043. height: math.unit(9, "feet"),
  26044. default: true
  26045. },
  26046. {
  26047. name: "Macro",
  26048. height: math.unit(75 + 6 / 12, "feet")
  26049. },
  26050. {
  26051. name: "Teramacro",
  26052. height: math.unit(50000, "miles")
  26053. },
  26054. ]
  26055. ))
  26056. characterMakers.push(() => makeCharacter(
  26057. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26058. {
  26059. front: {
  26060. height: math.unit(10, "feet"),
  26061. weight: math.unit(2, "tons"),
  26062. name: "Front",
  26063. image: {
  26064. source: "./media/characters/rekhit/front.svg",
  26065. extra: 2796 / 2590,
  26066. bottom: 225 / 3022
  26067. }
  26068. },
  26069. },
  26070. [
  26071. {
  26072. name: "Normal",
  26073. height: math.unit(10, "feet"),
  26074. default: true
  26075. },
  26076. {
  26077. name: "Macro",
  26078. height: math.unit(500, "feet")
  26079. },
  26080. ]
  26081. ))
  26082. characterMakers.push(() => makeCharacter(
  26083. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26084. {
  26085. front: {
  26086. height: math.unit(7 + 6.451 / 12, "feet"),
  26087. weight: math.unit(310, "lb"),
  26088. name: "Front",
  26089. image: {
  26090. source: "./media/characters/dahlia-verrick/front.svg",
  26091. extra: 1488 / 1365,
  26092. bottom: 6.2 / 1495
  26093. }
  26094. },
  26095. back: {
  26096. height: math.unit(7 + 6.451 / 12, "feet"),
  26097. weight: math.unit(310, "lb"),
  26098. name: "Back",
  26099. image: {
  26100. source: "./media/characters/dahlia-verrick/back.svg",
  26101. extra: 1472 / 1351,
  26102. bottom: 5.28 / 1477
  26103. }
  26104. },
  26105. frontBusiness: {
  26106. height: math.unit(7 + 6.451 / 12, "feet"),
  26107. weight: math.unit(200, "lb"),
  26108. name: "Front (Business)",
  26109. image: {
  26110. source: "./media/characters/dahlia-verrick/front-business.svg",
  26111. extra: 1478 / 1381,
  26112. bottom: 5.5 / 1484
  26113. }
  26114. },
  26115. frontCasual: {
  26116. height: math.unit(7 + 6.451 / 12, "feet"),
  26117. weight: math.unit(200, "lb"),
  26118. name: "Front (Casual)",
  26119. image: {
  26120. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26121. extra: 1478 / 1381,
  26122. bottom: 5.5 / 1484
  26123. }
  26124. },
  26125. },
  26126. [
  26127. {
  26128. name: "Travel-Sized",
  26129. height: math.unit(7.45, "inches")
  26130. },
  26131. {
  26132. name: "Normal",
  26133. height: math.unit(7 + 6.451 / 12, "feet"),
  26134. default: true
  26135. },
  26136. {
  26137. name: "Hitting the Town",
  26138. height: math.unit(37 + 8 / 12, "feet")
  26139. },
  26140. {
  26141. name: "Stomp in the Suburbs",
  26142. height: math.unit(964 + 9.728 / 12, "feet")
  26143. },
  26144. {
  26145. name: "Sit on the City",
  26146. height: math.unit(61747 + 10.592 / 12, "feet")
  26147. },
  26148. {
  26149. name: "Glomp the Globe",
  26150. height: math.unit(252919327 + 4.832 / 12, "feet")
  26151. },
  26152. ]
  26153. ))
  26154. characterMakers.push(() => makeCharacter(
  26155. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26156. {
  26157. front: {
  26158. height: math.unit(6 + 4 / 12, "feet"),
  26159. weight: math.unit(320, "lb"),
  26160. name: "Front",
  26161. image: {
  26162. source: "./media/characters/balina-mahigan/front.svg",
  26163. extra: 447 / 428,
  26164. bottom: 18 / 466
  26165. }
  26166. },
  26167. back: {
  26168. height: math.unit(6 + 4 / 12, "feet"),
  26169. weight: math.unit(320, "lb"),
  26170. name: "Back",
  26171. image: {
  26172. source: "./media/characters/balina-mahigan/back.svg",
  26173. extra: 445 / 428,
  26174. bottom: 4.07 / 448
  26175. }
  26176. },
  26177. arm: {
  26178. height: math.unit(1.88, "feet"),
  26179. name: "Arm",
  26180. image: {
  26181. source: "./media/characters/balina-mahigan/arm.svg"
  26182. }
  26183. },
  26184. backPort: {
  26185. height: math.unit(0.685, "feet"),
  26186. name: "Back Port",
  26187. image: {
  26188. source: "./media/characters/balina-mahigan/back-port.svg"
  26189. }
  26190. },
  26191. hoofpaw: {
  26192. height: math.unit(1.41, "feet"),
  26193. name: "Hoofpaw",
  26194. image: {
  26195. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26196. }
  26197. },
  26198. leftHandBack: {
  26199. height: math.unit(0.938, "feet"),
  26200. name: "Left Hand (Back)",
  26201. image: {
  26202. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26203. }
  26204. },
  26205. leftHandFront: {
  26206. height: math.unit(0.938, "feet"),
  26207. name: "Left Hand (Front)",
  26208. image: {
  26209. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26210. }
  26211. },
  26212. rightHandBack: {
  26213. height: math.unit(0.95, "feet"),
  26214. name: "Right Hand (Back)",
  26215. image: {
  26216. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26217. }
  26218. },
  26219. rightHandFront: {
  26220. height: math.unit(0.95, "feet"),
  26221. name: "Right Hand (Front)",
  26222. image: {
  26223. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26224. }
  26225. },
  26226. },
  26227. [
  26228. {
  26229. name: "Normal",
  26230. height: math.unit(6 + 4 / 12, "feet"),
  26231. default: true
  26232. },
  26233. ]
  26234. ))
  26235. characterMakers.push(() => makeCharacter(
  26236. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26237. {
  26238. front: {
  26239. height: math.unit(6, "feet"),
  26240. weight: math.unit(320, "lb"),
  26241. name: "Front",
  26242. image: {
  26243. source: "./media/characters/balina-mejeri/front.svg",
  26244. extra: 517 / 488,
  26245. bottom: 44.2 / 561
  26246. }
  26247. },
  26248. },
  26249. [
  26250. {
  26251. name: "Normal",
  26252. height: math.unit(6 + 4 / 12, "feet")
  26253. },
  26254. {
  26255. name: "Business",
  26256. height: math.unit(155, "feet"),
  26257. default: true
  26258. },
  26259. ]
  26260. ))
  26261. characterMakers.push(() => makeCharacter(
  26262. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26263. {
  26264. kneeling: {
  26265. height: math.unit(6 + 4 / 12, "feet"),
  26266. weight: math.unit(300 * 20, "lb"),
  26267. name: "Kneeling",
  26268. image: {
  26269. source: "./media/characters/balbarian/kneeling.svg",
  26270. extra: 922 / 862,
  26271. bottom: 42.4 / 965
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(6 + 4 / 12, "feet")
  26279. },
  26280. {
  26281. name: "Treasured",
  26282. height: math.unit(18 + 9 / 12, "feet"),
  26283. default: true
  26284. },
  26285. {
  26286. name: "Macro",
  26287. height: math.unit(900, "feet")
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(6 + 4 / 12, "feet"),
  26296. weight: math.unit(325, "lb"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/balina-amarini/front.svg",
  26300. extra: 415 / 403,
  26301. bottom: 19 / 433.4
  26302. }
  26303. },
  26304. back: {
  26305. height: math.unit(6 + 4 / 12, "feet"),
  26306. weight: math.unit(325, "lb"),
  26307. name: "Back",
  26308. image: {
  26309. source: "./media/characters/balina-amarini/back.svg",
  26310. extra: 415 / 403,
  26311. bottom: 13.5 / 432
  26312. }
  26313. },
  26314. overdrive: {
  26315. height: math.unit(6 + 4 / 12, "feet"),
  26316. weight: math.unit(400, "lb"),
  26317. name: "Overdrive",
  26318. image: {
  26319. source: "./media/characters/balina-amarini/overdrive.svg",
  26320. extra: 269 / 259,
  26321. bottom: 12 / 282
  26322. }
  26323. },
  26324. },
  26325. [
  26326. {
  26327. name: "Boom",
  26328. height: math.unit(9 + 10 / 12, "feet"),
  26329. default: true
  26330. },
  26331. {
  26332. name: "Macro",
  26333. height: math.unit(280, "feet")
  26334. },
  26335. ]
  26336. ))
  26337. characterMakers.push(() => makeCharacter(
  26338. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26339. {
  26340. goddess: {
  26341. height: math.unit(600, "feet"),
  26342. weight: math.unit(2000000, "tons"),
  26343. name: "Goddess",
  26344. image: {
  26345. source: "./media/characters/lady-kubwa/goddess.svg",
  26346. extra: 1240.5 / 1223,
  26347. bottom: 22 / 1263
  26348. }
  26349. },
  26350. goddesser: {
  26351. height: math.unit(900, "feet"),
  26352. weight: math.unit(20000000, "lb"),
  26353. name: "Goddess-er",
  26354. image: {
  26355. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26356. extra: 899 / 888,
  26357. bottom: 12.6 / 912
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Macro",
  26364. height: math.unit(600, "feet"),
  26365. default: true
  26366. },
  26367. {
  26368. name: "Megamacro",
  26369. height: math.unit(250, "miles")
  26370. },
  26371. ]
  26372. ))
  26373. characterMakers.push(() => makeCharacter(
  26374. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26375. {
  26376. front: {
  26377. height: math.unit(7 + 7 / 12, "feet"),
  26378. weight: math.unit(250, "lb"),
  26379. name: "Front",
  26380. image: {
  26381. source: "./media/characters/tala-grovehorn/front.svg",
  26382. extra: 2636 / 2525,
  26383. bottom: 147 / 2781
  26384. }
  26385. },
  26386. back: {
  26387. height: math.unit(7 + 7 / 12, "feet"),
  26388. weight: math.unit(250, "lb"),
  26389. name: "Back",
  26390. image: {
  26391. source: "./media/characters/tala-grovehorn/back.svg",
  26392. extra: 2635 / 2539,
  26393. bottom: 100 / 2732.8
  26394. }
  26395. },
  26396. mouth: {
  26397. height: math.unit(1.15, "feet"),
  26398. name: "Mouth",
  26399. image: {
  26400. source: "./media/characters/tala-grovehorn/mouth.svg"
  26401. }
  26402. },
  26403. dick: {
  26404. height: math.unit(2.36, "feet"),
  26405. name: "Dick",
  26406. image: {
  26407. source: "./media/characters/tala-grovehorn/dick.svg"
  26408. }
  26409. },
  26410. slit: {
  26411. height: math.unit(0.61, "feet"),
  26412. name: "Slit",
  26413. image: {
  26414. source: "./media/characters/tala-grovehorn/slit.svg"
  26415. }
  26416. },
  26417. },
  26418. [
  26419. ]
  26420. ))
  26421. characterMakers.push(() => makeCharacter(
  26422. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26423. {
  26424. front: {
  26425. height: math.unit(7 + 7 / 12, "feet"),
  26426. weight: math.unit(225, "lb"),
  26427. name: "Front",
  26428. image: {
  26429. source: "./media/characters/epona/front.svg",
  26430. extra: 2445 / 2290,
  26431. bottom: 251 / 2696
  26432. }
  26433. },
  26434. back: {
  26435. height: math.unit(7 + 7 / 12, "feet"),
  26436. weight: math.unit(225, "lb"),
  26437. name: "Back",
  26438. image: {
  26439. source: "./media/characters/epona/back.svg",
  26440. extra: 2546 / 2408,
  26441. bottom: 44 / 2589
  26442. }
  26443. },
  26444. genitals: {
  26445. height: math.unit(1.5, "feet"),
  26446. name: "Genitals",
  26447. image: {
  26448. source: "./media/characters/epona/genitals.svg"
  26449. }
  26450. },
  26451. },
  26452. [
  26453. {
  26454. name: "Normal",
  26455. height: math.unit(7 + 7 / 12, "feet"),
  26456. default: true
  26457. },
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26462. {
  26463. front: {
  26464. height: math.unit(7, "feet"),
  26465. weight: math.unit(518, "lb"),
  26466. name: "Front",
  26467. image: {
  26468. source: "./media/characters/avia-bloodbourn/front.svg",
  26469. extra: 1466 / 1350,
  26470. bottom: 65 / 1527
  26471. }
  26472. },
  26473. },
  26474. [
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26479. {
  26480. front: {
  26481. height: math.unit(9.35, "feet"),
  26482. weight: math.unit(600, "lb"),
  26483. name: "Front",
  26484. image: {
  26485. source: "./media/characters/amera/front.svg",
  26486. extra: 891 / 818,
  26487. bottom: 30 / 922.7
  26488. }
  26489. },
  26490. back: {
  26491. height: math.unit(9.35, "feet"),
  26492. weight: math.unit(600, "lb"),
  26493. name: "Back",
  26494. image: {
  26495. source: "./media/characters/amera/back.svg",
  26496. extra: 876 / 824,
  26497. bottom: 6.8 / 884
  26498. }
  26499. },
  26500. dick: {
  26501. height: math.unit(2.14, "feet"),
  26502. name: "Dick",
  26503. image: {
  26504. source: "./media/characters/amera/dick.svg"
  26505. }
  26506. },
  26507. },
  26508. [
  26509. {
  26510. name: "Normal",
  26511. height: math.unit(9.35, "feet"),
  26512. default: true
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26518. {
  26519. kneeling: {
  26520. height: math.unit(3 + 4 / 12, "feet"),
  26521. weight: math.unit(90, "lb"),
  26522. name: "Kneeling",
  26523. image: {
  26524. source: "./media/characters/rosewen/kneeling.svg",
  26525. extra: 1835 / 1571,
  26526. bottom: 27.7 / 1862
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(3 + 4 / 12, "feet"),
  26534. default: true
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26540. {
  26541. front: {
  26542. height: math.unit(5 + 10 / 12, "feet"),
  26543. weight: math.unit(200, "lb"),
  26544. name: "Front",
  26545. image: {
  26546. source: "./media/characters/sabah/front.svg",
  26547. extra: 849 / 763,
  26548. bottom: 33.9 / 881
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(5 + 10 / 12, "feet"),
  26556. default: true
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26562. {
  26563. front: {
  26564. height: math.unit(3 + 5 / 12, "feet"),
  26565. weight: math.unit(40, "kg"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/purple-flame/front.svg",
  26569. extra: 1577 / 1412,
  26570. bottom: 97 / 1694
  26571. }
  26572. },
  26573. frontDressed: {
  26574. height: math.unit(3 + 5 / 12, "feet"),
  26575. weight: math.unit(40, "kg"),
  26576. name: "Front (Dressed)",
  26577. image: {
  26578. source: "./media/characters/purple-flame/front-dressed.svg",
  26579. extra: 1577 / 1412,
  26580. bottom: 97 / 1694
  26581. }
  26582. },
  26583. headphones: {
  26584. height: math.unit(0.85, "feet"),
  26585. name: "Headphones",
  26586. image: {
  26587. source: "./media/characters/purple-flame/headphones.svg"
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Really Small",
  26594. height: math.unit(5, "cm")
  26595. },
  26596. {
  26597. name: "Micro",
  26598. height: math.unit(1 + 5 / 12, "feet")
  26599. },
  26600. {
  26601. name: "Normal",
  26602. height: math.unit(3 + 5 / 12, "feet"),
  26603. default: true
  26604. },
  26605. {
  26606. name: "Minimacro",
  26607. height: math.unit(125, "feet")
  26608. },
  26609. {
  26610. name: "Macro",
  26611. height: math.unit(0.5, "miles")
  26612. },
  26613. {
  26614. name: "Megamacro",
  26615. height: math.unit(50, "miles")
  26616. },
  26617. {
  26618. name: "Gigantic",
  26619. height: math.unit(750, "miles")
  26620. },
  26621. {
  26622. name: "Planetary",
  26623. height: math.unit(15000, "miles")
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26629. {
  26630. front: {
  26631. height: math.unit(14, "feet"),
  26632. weight: math.unit(959, "lb"),
  26633. name: "Front",
  26634. image: {
  26635. source: "./media/characters/arsenal/front.svg",
  26636. extra: 2357 / 2157,
  26637. bottom: 93 / 2458
  26638. }
  26639. },
  26640. },
  26641. [
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(14, "feet"),
  26645. default: true
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(6, "feet"),
  26654. weight: math.unit(150, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/adira/front.svg",
  26658. extra: 1078 / 1029,
  26659. bottom: 87 / 1166
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Micro",
  26666. height: math.unit(4, "inches"),
  26667. default: true
  26668. },
  26669. {
  26670. name: "Macro",
  26671. height: math.unit(50, "feet")
  26672. },
  26673. ]
  26674. ))
  26675. characterMakers.push(() => makeCharacter(
  26676. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26677. {
  26678. front: {
  26679. height: math.unit(16, "feet"),
  26680. weight: math.unit(1000, "lb"),
  26681. name: "Front",
  26682. image: {
  26683. source: "./media/characters/grim/front.svg",
  26684. extra: 622 / 614,
  26685. bottom: 18.1 / 642
  26686. }
  26687. },
  26688. back: {
  26689. height: math.unit(16, "feet"),
  26690. weight: math.unit(1000, "lb"),
  26691. name: "Back",
  26692. image: {
  26693. source: "./media/characters/grim/back.svg",
  26694. extra: 610.6 / 602,
  26695. bottom: 40.8 / 652
  26696. }
  26697. },
  26698. hunched: {
  26699. height: math.unit(9.75, "feet"),
  26700. weight: math.unit(1000, "lb"),
  26701. name: "Hunched",
  26702. image: {
  26703. source: "./media/characters/grim/hunched.svg",
  26704. extra: 304 / 297,
  26705. bottom: 35.4 / 394
  26706. }
  26707. },
  26708. },
  26709. [
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(16, "feet"),
  26713. default: true
  26714. },
  26715. ]
  26716. ))
  26717. characterMakers.push(() => makeCharacter(
  26718. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26719. {
  26720. front: {
  26721. height: math.unit(2.3, "meters"),
  26722. weight: math.unit(300, "lb"),
  26723. name: "Front",
  26724. image: {
  26725. source: "./media/characters/sinja/front-sfw.svg",
  26726. extra: 1393 / 1294,
  26727. bottom: 70 / 1463
  26728. }
  26729. },
  26730. frontNsfw: {
  26731. height: math.unit(2.3, "meters"),
  26732. weight: math.unit(300, "lb"),
  26733. name: "Front (NSFW)",
  26734. image: {
  26735. source: "./media/characters/sinja/front-nsfw.svg",
  26736. extra: 1393 / 1294,
  26737. bottom: 70 / 1463
  26738. }
  26739. },
  26740. back: {
  26741. height: math.unit(2.3, "meters"),
  26742. weight: math.unit(300, "lb"),
  26743. name: "Back",
  26744. image: {
  26745. source: "./media/characters/sinja/back.svg",
  26746. extra: 1393 / 1294,
  26747. bottom: 70 / 1463
  26748. }
  26749. },
  26750. head: {
  26751. height: math.unit(1.771, "feet"),
  26752. name: "Head",
  26753. image: {
  26754. source: "./media/characters/sinja/head.svg"
  26755. }
  26756. },
  26757. slit: {
  26758. height: math.unit(0.8, "feet"),
  26759. name: "Slit",
  26760. image: {
  26761. source: "./media/characters/sinja/slit.svg"
  26762. }
  26763. },
  26764. },
  26765. [
  26766. {
  26767. name: "Normal",
  26768. height: math.unit(2.3, "meters")
  26769. },
  26770. {
  26771. name: "Macro",
  26772. height: math.unit(91, "meters"),
  26773. default: true
  26774. },
  26775. {
  26776. name: "Megamacro",
  26777. height: math.unit(91440, "meters")
  26778. },
  26779. {
  26780. name: "Gigamacro",
  26781. height: math.unit(60960000, "meters")
  26782. },
  26783. {
  26784. name: "Teramacro",
  26785. height: math.unit(9144000000, "meters")
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26791. {
  26792. front: {
  26793. height: math.unit(1.7, "meters"),
  26794. weight: math.unit(130, "lb"),
  26795. name: "Front",
  26796. image: {
  26797. source: "./media/characters/kyu/front.svg",
  26798. extra: 415 / 395,
  26799. bottom: 5 / 420
  26800. }
  26801. },
  26802. head: {
  26803. height: math.unit(1.75, "feet"),
  26804. name: "Head",
  26805. image: {
  26806. source: "./media/characters/kyu/head.svg"
  26807. }
  26808. },
  26809. foot: {
  26810. height: math.unit(0.81, "feet"),
  26811. name: "Foot",
  26812. image: {
  26813. source: "./media/characters/kyu/foot.svg"
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Normal",
  26820. height: math.unit(1.7, "meters")
  26821. },
  26822. {
  26823. name: "Macro",
  26824. height: math.unit(131, "feet"),
  26825. default: true
  26826. },
  26827. {
  26828. name: "Megamacro",
  26829. height: math.unit(91440, "meters")
  26830. },
  26831. {
  26832. name: "Gigamacro",
  26833. height: math.unit(60960000, "meters")
  26834. },
  26835. {
  26836. name: "Teramacro",
  26837. height: math.unit(9144000000, "meters")
  26838. },
  26839. ]
  26840. ))
  26841. characterMakers.push(() => makeCharacter(
  26842. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26843. {
  26844. front: {
  26845. height: math.unit(7 + 1 / 12, "feet"),
  26846. weight: math.unit(250, "lb"),
  26847. name: "Front",
  26848. image: {
  26849. source: "./media/characters/joey/front.svg",
  26850. extra: 1791 / 1537,
  26851. bottom: 28 / 1816
  26852. }
  26853. },
  26854. },
  26855. [
  26856. {
  26857. name: "Micro",
  26858. height: math.unit(3, "inches")
  26859. },
  26860. {
  26861. name: "Normal",
  26862. height: math.unit(7 + 1 / 12, "feet"),
  26863. default: true
  26864. },
  26865. ]
  26866. ))
  26867. characterMakers.push(() => makeCharacter(
  26868. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26869. {
  26870. front: {
  26871. height: math.unit(165, "cm"),
  26872. weight: math.unit(140, "lb"),
  26873. name: "Front",
  26874. image: {
  26875. source: "./media/characters/sam-evans/front.svg",
  26876. extra: 3417 / 3230,
  26877. bottom: 41.3 / 3417
  26878. }
  26879. },
  26880. frontSixTails: {
  26881. height: math.unit(165, "cm"),
  26882. weight: math.unit(140, "lb"),
  26883. name: "Front-six-tails",
  26884. image: {
  26885. source: "./media/characters/sam-evans/front-six-tails.svg",
  26886. extra: 3417 / 3230,
  26887. bottom: 41.3 / 3417
  26888. }
  26889. },
  26890. back: {
  26891. height: math.unit(165, "cm"),
  26892. weight: math.unit(140, "lb"),
  26893. name: "Back",
  26894. image: {
  26895. source: "./media/characters/sam-evans/back.svg",
  26896. extra: 3227 / 3032,
  26897. bottom: 6.8 / 3234
  26898. }
  26899. },
  26900. face: {
  26901. height: math.unit(0.68, "feet"),
  26902. name: "Face",
  26903. image: {
  26904. source: "./media/characters/sam-evans/face.svg"
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(165, "cm"),
  26912. default: true
  26913. },
  26914. {
  26915. name: "Macro",
  26916. height: math.unit(100, "meters")
  26917. },
  26918. {
  26919. name: "Macro+",
  26920. height: math.unit(800, "meters")
  26921. },
  26922. {
  26923. name: "Macro++",
  26924. height: math.unit(3, "km")
  26925. },
  26926. {
  26927. name: "Macro+++",
  26928. height: math.unit(30, "km")
  26929. },
  26930. ]
  26931. ))
  26932. characterMakers.push(() => makeCharacter(
  26933. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26934. {
  26935. front: {
  26936. height: math.unit(10, "feet"),
  26937. weight: math.unit(750, "lb"),
  26938. name: "Front",
  26939. image: {
  26940. source: "./media/characters/juliet-a/front.svg",
  26941. extra: 1766 / 1720,
  26942. bottom: 43 / 1809
  26943. }
  26944. },
  26945. back: {
  26946. height: math.unit(10, "feet"),
  26947. weight: math.unit(750, "lb"),
  26948. name: "Back",
  26949. image: {
  26950. source: "./media/characters/juliet-a/back.svg",
  26951. extra: 1781 / 1734,
  26952. bottom: 35 / 1810,
  26953. }
  26954. },
  26955. },
  26956. [
  26957. {
  26958. name: "Normal",
  26959. height: math.unit(10, "feet"),
  26960. default: true
  26961. },
  26962. {
  26963. name: "Dragon Form",
  26964. height: math.unit(250, "feet")
  26965. },
  26966. {
  26967. name: "Macro",
  26968. height: math.unit(1000, "feet")
  26969. },
  26970. {
  26971. name: "Megamacro",
  26972. height: math.unit(10000, "feet")
  26973. }
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26978. {
  26979. regular: {
  26980. height: math.unit(7 + 3 / 12, "feet"),
  26981. weight: math.unit(260, "lb"),
  26982. name: "Regular",
  26983. image: {
  26984. source: "./media/characters/wild/regular.svg",
  26985. extra: 97.45 / 92,
  26986. bottom: 6.8 / 104.3
  26987. }
  26988. },
  26989. biggums: {
  26990. height: math.unit(8 + 6 / 12, "feet"),
  26991. weight: math.unit(425, "lb"),
  26992. name: "Biggums",
  26993. image: {
  26994. source: "./media/characters/wild/biggums.svg",
  26995. extra: 97.45 / 92,
  26996. bottom: 7.5 / 132.34
  26997. }
  26998. },
  26999. mawRegular: {
  27000. height: math.unit(1.24, "feet"),
  27001. name: "Maw (Regular)",
  27002. image: {
  27003. source: "./media/characters/wild/maw.svg"
  27004. }
  27005. },
  27006. mawBiggums: {
  27007. height: math.unit(1.47, "feet"),
  27008. name: "Maw (Biggums)",
  27009. image: {
  27010. source: "./media/characters/wild/maw.svg"
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Normal",
  27017. height: math.unit(7 + 3 / 12, "feet"),
  27018. default: true
  27019. },
  27020. ]
  27021. ))
  27022. characterMakers.push(() => makeCharacter(
  27023. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27024. {
  27025. front: {
  27026. height: math.unit(2.5, "meters"),
  27027. weight: math.unit(200, "kg"),
  27028. name: "Front",
  27029. image: {
  27030. source: "./media/characters/vidar/front.svg",
  27031. extra: 2994 / 2795,
  27032. bottom: 56 / 3061
  27033. }
  27034. },
  27035. back: {
  27036. height: math.unit(2.5, "meters"),
  27037. weight: math.unit(200, "kg"),
  27038. name: "Back",
  27039. image: {
  27040. source: "./media/characters/vidar/back.svg",
  27041. extra: 3131 / 2928,
  27042. bottom: 13.5 / 3141.5
  27043. }
  27044. },
  27045. feral: {
  27046. height: math.unit(2.5, "meters"),
  27047. weight: math.unit(2000, "kg"),
  27048. name: "Feral",
  27049. image: {
  27050. source: "./media/characters/vidar/feral.svg",
  27051. extra: 2790 / 1765,
  27052. bottom: 6 / 2796
  27053. }
  27054. },
  27055. },
  27056. [
  27057. {
  27058. name: "Normal",
  27059. height: math.unit(2.5, "meters"),
  27060. default: true
  27061. },
  27062. {
  27063. name: "Macro",
  27064. height: math.unit(100, "meters")
  27065. },
  27066. ]
  27067. ))
  27068. characterMakers.push(() => makeCharacter(
  27069. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27070. {
  27071. front: {
  27072. height: math.unit(5 + 9 / 12, "feet"),
  27073. weight: math.unit(120, "lb"),
  27074. name: "Front",
  27075. image: {
  27076. source: "./media/characters/ash/front.svg",
  27077. extra: 2189 / 1961,
  27078. bottom: 5.2 / 2194
  27079. }
  27080. },
  27081. },
  27082. [
  27083. {
  27084. name: "Normal",
  27085. height: math.unit(5 + 9 / 12, "feet"),
  27086. default: true
  27087. },
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27092. {
  27093. front: {
  27094. height: math.unit(9, "feet"),
  27095. weight: math.unit(10000, "lb"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/gygabite/front.svg",
  27099. bottom: 31.7 / 537.8,
  27100. extra: 505 / 370
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(9, "feet"),
  27108. default: true
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(12, "feet"),
  27117. weight: math.unit(35000, "lb"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/p0tat0/front.svg",
  27121. extra: 1065 / 921,
  27122. bottom: 55.7 / 1121.25
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(12, "feet"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27136. {
  27137. side: {
  27138. height: math.unit(6.5, "feet"),
  27139. weight: math.unit(800, "lb"),
  27140. name: "Side",
  27141. image: {
  27142. source: "./media/characters/dusk/side.svg",
  27143. extra: 615 / 373,
  27144. bottom: 53 / 664
  27145. }
  27146. },
  27147. sitting: {
  27148. height: math.unit(7, "feet"),
  27149. weight: math.unit(800, "lb"),
  27150. name: "Sitting",
  27151. image: {
  27152. source: "./media/characters/dusk/sitting.svg",
  27153. extra: 753 / 425,
  27154. bottom: 33 / 774
  27155. }
  27156. },
  27157. head: {
  27158. height: math.unit(6.1, "feet"),
  27159. name: "Head",
  27160. image: {
  27161. source: "./media/characters/dusk/head.svg"
  27162. }
  27163. },
  27164. },
  27165. [
  27166. {
  27167. name: "Normal",
  27168. height: math.unit(7, "feet"),
  27169. default: true
  27170. },
  27171. ]
  27172. ))
  27173. characterMakers.push(() => makeCharacter(
  27174. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27175. {
  27176. front: {
  27177. height: math.unit(15, "feet"),
  27178. weight: math.unit(7000, "lb"),
  27179. name: "Front",
  27180. image: {
  27181. source: "./media/characters/jay-direwolf/front.svg",
  27182. extra: 1810 / 1732,
  27183. bottom: 66 / 1892
  27184. }
  27185. },
  27186. },
  27187. [
  27188. {
  27189. name: "Normal",
  27190. height: math.unit(15, "feet"),
  27191. default: true
  27192. },
  27193. ]
  27194. ))
  27195. characterMakers.push(() => makeCharacter(
  27196. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27197. {
  27198. front: {
  27199. height: math.unit(4 + 9 / 12, "feet"),
  27200. weight: math.unit(130, "lb"),
  27201. name: "Front",
  27202. image: {
  27203. source: "./media/characters/anchovie/front.svg",
  27204. extra: 382 / 350,
  27205. bottom: 25 / 409
  27206. }
  27207. },
  27208. back: {
  27209. height: math.unit(4 + 9 / 12, "feet"),
  27210. weight: math.unit(130, "lb"),
  27211. name: "Back",
  27212. image: {
  27213. source: "./media/characters/anchovie/back.svg",
  27214. extra: 385 / 352,
  27215. bottom: 16.6 / 402
  27216. }
  27217. },
  27218. frontDressed: {
  27219. height: math.unit(4 + 9 / 12, "feet"),
  27220. weight: math.unit(130, "lb"),
  27221. name: "Front (Dressed)",
  27222. image: {
  27223. source: "./media/characters/anchovie/front-dressed.svg",
  27224. extra: 382 / 350,
  27225. bottom: 25 / 409
  27226. }
  27227. },
  27228. backDressed: {
  27229. height: math.unit(4 + 9 / 12, "feet"),
  27230. weight: math.unit(130, "lb"),
  27231. name: "Back (Dressed)",
  27232. image: {
  27233. source: "./media/characters/anchovie/back-dressed.svg",
  27234. extra: 385 / 352,
  27235. bottom: 16.6 / 402
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Micro",
  27242. height: math.unit(6.4, "inches")
  27243. },
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(4 + 9 / 12, "feet"),
  27247. default: true
  27248. },
  27249. ]
  27250. ))
  27251. characterMakers.push(() => makeCharacter(
  27252. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27253. {
  27254. front: {
  27255. height: math.unit(2, "meters"),
  27256. weight: math.unit(180, "lb"),
  27257. name: "Front",
  27258. image: {
  27259. source: "./media/characters/acidrenamon/front.svg",
  27260. extra: 987 / 890,
  27261. bottom: 22.8 / 1009
  27262. }
  27263. },
  27264. back: {
  27265. height: math.unit(2, "meters"),
  27266. weight: math.unit(180, "lb"),
  27267. name: "Back",
  27268. image: {
  27269. source: "./media/characters/acidrenamon/back.svg",
  27270. extra: 983 / 891,
  27271. bottom: 8.4 / 992
  27272. }
  27273. },
  27274. head: {
  27275. height: math.unit(1.92, "feet"),
  27276. name: "Head",
  27277. image: {
  27278. source: "./media/characters/acidrenamon/head.svg"
  27279. }
  27280. },
  27281. rump: {
  27282. height: math.unit(1.72, "feet"),
  27283. name: "Rump",
  27284. image: {
  27285. source: "./media/characters/acidrenamon/rump.svg"
  27286. }
  27287. },
  27288. tail: {
  27289. height: math.unit(4.2, "feet"),
  27290. name: "Tail",
  27291. image: {
  27292. source: "./media/characters/acidrenamon/tail.svg"
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(2, "meters"),
  27300. default: true
  27301. },
  27302. {
  27303. name: "Minimacro",
  27304. height: math.unit(7, "meters")
  27305. },
  27306. {
  27307. name: "Macro",
  27308. height: math.unit(200, "meters")
  27309. },
  27310. {
  27311. name: "Gigamacro",
  27312. height: math.unit(0.2, "earths")
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(6, "feet"),
  27321. weight: math.unit(150, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/kenzie-lee/front.svg",
  27325. extra: 1525 / 1465,
  27326. bottom: 45 / 1570
  27327. }
  27328. },
  27329. side: {
  27330. height: math.unit(6, "feet"),
  27331. weight: math.unit(150, "lb"),
  27332. name: "Side",
  27333. image: {
  27334. source: "./media/characters/kenzie-lee/side.svg",
  27335. extra: 5505 / 5383,
  27336. bottom: 60 / 5573
  27337. }
  27338. },
  27339. paw: {
  27340. height: math.unit(0.57, "feet"),
  27341. name: "Paw",
  27342. image: {
  27343. source: "./media/characters/kenzie-lee/paw.svg"
  27344. }
  27345. },
  27346. },
  27347. [
  27348. {
  27349. name: "Normal",
  27350. height: math.unit(152, "feet"),
  27351. default: true
  27352. },
  27353. {
  27354. name: "Megamacro",
  27355. height: math.unit(7, "miles")
  27356. },
  27357. {
  27358. name: "Gigamacro",
  27359. height: math.unit(8000, "miles")
  27360. },
  27361. ]
  27362. ))
  27363. characterMakers.push(() => makeCharacter(
  27364. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27365. {
  27366. side: {
  27367. height: math.unit(6, "feet"),
  27368. weight: math.unit(150, "lb"),
  27369. name: "Side",
  27370. image: {
  27371. source: "./media/characters/withers/side.svg",
  27372. extra: 1830 / 1728,
  27373. bottom: 96 / 1927
  27374. }
  27375. },
  27376. front: {
  27377. height: math.unit(6, "feet"),
  27378. weight: math.unit(150, "lb"),
  27379. name: "Front",
  27380. image: {
  27381. source: "./media/characters/withers/front.svg",
  27382. extra: 1514 / 1438,
  27383. bottom: 118 / 1632
  27384. }
  27385. },
  27386. },
  27387. [
  27388. {
  27389. name: "Macro",
  27390. height: math.unit(168, "feet"),
  27391. default: true
  27392. },
  27393. {
  27394. name: "Megamacro",
  27395. height: math.unit(15, "miles")
  27396. }
  27397. ]
  27398. ))
  27399. characterMakers.push(() => makeCharacter(
  27400. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27401. {
  27402. front: {
  27403. height: math.unit(6 + 7 / 12, "feet"),
  27404. weight: math.unit(250, "lb"),
  27405. name: "Front",
  27406. image: {
  27407. source: "./media/characters/nemoskii/front.svg",
  27408. extra: 2270 / 1734,
  27409. bottom: 86 / 2354
  27410. }
  27411. },
  27412. back: {
  27413. height: math.unit(6 + 7 / 12, "feet"),
  27414. weight: math.unit(250, "lb"),
  27415. name: "Back",
  27416. image: {
  27417. source: "./media/characters/nemoskii/back.svg",
  27418. extra: 1845 / 1788,
  27419. bottom: 10.5 / 1852
  27420. }
  27421. },
  27422. head: {
  27423. height: math.unit(1.31, "feet"),
  27424. name: "Head",
  27425. image: {
  27426. source: "./media/characters/nemoskii/head.svg"
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Micro",
  27433. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27434. },
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(6 + 7 / 12, "feet"),
  27438. default: true
  27439. },
  27440. {
  27441. name: "Macro",
  27442. height: math.unit((6 + 7 / 12) * 150, "feet")
  27443. },
  27444. {
  27445. name: "Macro+",
  27446. height: math.unit((6 + 7 / 12) * 500, "feet")
  27447. },
  27448. {
  27449. name: "Megamacro",
  27450. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27451. },
  27452. ]
  27453. ))
  27454. characterMakers.push(() => makeCharacter(
  27455. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27456. {
  27457. front: {
  27458. height: math.unit(1, "mile"),
  27459. weight: math.unit(265261.9, "lb"),
  27460. name: "Front",
  27461. image: {
  27462. source: "./media/characters/shui/front.svg",
  27463. extra: 1633 / 1564,
  27464. bottom: 91.5 / 1726
  27465. }
  27466. },
  27467. },
  27468. [
  27469. {
  27470. name: "Macro",
  27471. height: math.unit(1, "mile"),
  27472. default: true
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27478. {
  27479. front: {
  27480. height: math.unit(12 + 6 / 12, "feet"),
  27481. weight: math.unit(1342, "lb"),
  27482. name: "Front",
  27483. image: {
  27484. source: "./media/characters/arokh-takakura/front.svg",
  27485. extra: 1089 / 1043,
  27486. bottom: 77.4 / 1176.7
  27487. }
  27488. },
  27489. back: {
  27490. height: math.unit(12 + 6 / 12, "feet"),
  27491. weight: math.unit(1342, "lb"),
  27492. name: "Back",
  27493. image: {
  27494. source: "./media/characters/arokh-takakura/back.svg",
  27495. extra: 1046 / 1019,
  27496. bottom: 102 / 1150
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Big",
  27503. height: math.unit(12 + 6 / 12, "feet"),
  27504. default: true
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27510. {
  27511. front: {
  27512. height: math.unit(5 + 6 / 12, "feet"),
  27513. weight: math.unit(150, "lb"),
  27514. name: "Front",
  27515. image: {
  27516. source: "./media/characters/theo/front.svg",
  27517. extra: 1184 / 1131,
  27518. bottom: 7.4 / 1191
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Micro",
  27525. height: math.unit(5, "inches")
  27526. },
  27527. {
  27528. name: "Normal",
  27529. height: math.unit(5 + 6 / 12, "feet"),
  27530. default: true
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(5 + 9 / 12, "feet"),
  27539. weight: math.unit(130, "lb"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/cecelia-swift/front.svg",
  27543. extra: 502 / 484,
  27544. bottom: 23 / 523
  27545. }
  27546. },
  27547. back: {
  27548. height: math.unit(5 + 9 / 12, "feet"),
  27549. weight: math.unit(130, "lb"),
  27550. name: "Back",
  27551. image: {
  27552. source: "./media/characters/cecelia-swift/back.svg",
  27553. extra: 499 / 485,
  27554. bottom: 12 / 511
  27555. }
  27556. },
  27557. head: {
  27558. height: math.unit(0.90, "feet"),
  27559. name: "Head",
  27560. image: {
  27561. source: "./media/characters/cecelia-swift/head.svg"
  27562. }
  27563. },
  27564. rump: {
  27565. height: math.unit(1.75, "feet"),
  27566. name: "Rump",
  27567. image: {
  27568. source: "./media/characters/cecelia-swift/rump.svg"
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Normal",
  27575. height: math.unit(5 + 9 / 12, "feet"),
  27576. default: true
  27577. },
  27578. {
  27579. name: "Big",
  27580. height: math.unit(50, "feet")
  27581. },
  27582. {
  27583. name: "Macro",
  27584. height: math.unit(100, "feet")
  27585. },
  27586. {
  27587. name: "Macro+",
  27588. height: math.unit(500, "feet")
  27589. },
  27590. {
  27591. name: "Macro++",
  27592. height: math.unit(1000, "feet")
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(6, "feet"),
  27601. weight: math.unit(150, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/kaunan/front.svg",
  27605. extra: 2890 / 2523,
  27606. bottom: 49 / 2939
  27607. }
  27608. },
  27609. },
  27610. [
  27611. {
  27612. name: "Macro",
  27613. height: math.unit(150, "feet"),
  27614. default: true
  27615. },
  27616. ]
  27617. ))
  27618. characterMakers.push(() => makeCharacter(
  27619. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27620. {
  27621. front: {
  27622. height: math.unit(175, "cm"),
  27623. weight: math.unit(60, "kg"),
  27624. name: "Front",
  27625. image: {
  27626. source: "./media/characters/fei/front.svg",
  27627. extra: 1873/1723,
  27628. bottom: 53/1926
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Mortal",
  27635. height: math.unit(175, "cm")
  27636. },
  27637. {
  27638. name: "Normal",
  27639. height: math.unit(3500, "m"),
  27640. default: true
  27641. },
  27642. {
  27643. name: "Stroll",
  27644. height: math.unit(17.5, "km")
  27645. },
  27646. {
  27647. name: "Showoff",
  27648. height: math.unit(175, "km")
  27649. },
  27650. ]
  27651. ))
  27652. characterMakers.push(() => makeCharacter(
  27653. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27654. {
  27655. front: {
  27656. height: math.unit(7, "feet"),
  27657. weight: math.unit(1000, "kg"),
  27658. name: "Front",
  27659. image: {
  27660. source: "./media/characters/edrax/front.svg",
  27661. extra: 2838 / 2550,
  27662. bottom: 130 / 2968
  27663. }
  27664. },
  27665. },
  27666. [
  27667. {
  27668. name: "Small",
  27669. height: math.unit(7, "feet")
  27670. },
  27671. {
  27672. name: "Normal",
  27673. height: math.unit(1500, "meters")
  27674. },
  27675. {
  27676. name: "Mega",
  27677. height: math.unit(12000000, "km"),
  27678. default: true
  27679. },
  27680. {
  27681. name: "Megamacro",
  27682. height: math.unit(10600000, "lightyears")
  27683. },
  27684. {
  27685. name: "Hypermacro",
  27686. height: math.unit(256, "yottameters")
  27687. },
  27688. ]
  27689. ))
  27690. characterMakers.push(() => makeCharacter(
  27691. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27692. {
  27693. front: {
  27694. height: math.unit(10, "feet"),
  27695. weight: math.unit(750, "lb"),
  27696. name: "Front",
  27697. image: {
  27698. source: "./media/characters/clove/front.svg",
  27699. extra: 2031 / 1860,
  27700. bottom: 47.8 / 2080
  27701. }
  27702. },
  27703. back: {
  27704. height: math.unit(10, "feet"),
  27705. weight: math.unit(750, "lb"),
  27706. name: "Back",
  27707. image: {
  27708. source: "./media/characters/clove/back.svg",
  27709. extra: 2025 / 1859,
  27710. bottom: 46 / 2071
  27711. }
  27712. },
  27713. },
  27714. [
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(10, "feet"),
  27718. default: true
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(4, "feet"),
  27727. weight: math.unit(50, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/alex-rabbit/front.svg",
  27731. extra: 507 / 458,
  27732. bottom: 18.5 / 527
  27733. }
  27734. },
  27735. back: {
  27736. height: math.unit(4, "feet"),
  27737. weight: math.unit(50, "lb"),
  27738. name: "Back",
  27739. image: {
  27740. source: "./media/characters/alex-rabbit/back.svg",
  27741. extra: 502 / 460,
  27742. bottom: 18.9 / 521
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Normal",
  27749. height: math.unit(4, "feet"),
  27750. default: true
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27756. {
  27757. front: {
  27758. height: math.unit(1 + 3 / 12, "feet"),
  27759. weight: math.unit(80, "lb"),
  27760. name: "Front",
  27761. image: {
  27762. source: "./media/characters/zander-rose/front.svg",
  27763. extra: 916 / 797,
  27764. bottom: 17 / 933
  27765. }
  27766. },
  27767. back: {
  27768. height: math.unit(1 + 3 / 12, "feet"),
  27769. weight: math.unit(80, "lb"),
  27770. name: "Back",
  27771. image: {
  27772. source: "./media/characters/zander-rose/back.svg",
  27773. extra: 903 / 779,
  27774. bottom: 31 / 934
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(1 + 3 / 12, "feet"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27788. {
  27789. anthro: {
  27790. height: math.unit(6, "feet"),
  27791. weight: math.unit(150, "lb"),
  27792. name: "Anthro",
  27793. image: {
  27794. source: "./media/characters/razz/anthro.svg",
  27795. extra: 1437 / 1343,
  27796. bottom: 48 / 1485
  27797. }
  27798. },
  27799. feral: {
  27800. height: math.unit(6, "feet"),
  27801. weight: math.unit(150, "lb"),
  27802. name: "Feral",
  27803. image: {
  27804. source: "./media/characters/razz/feral.svg",
  27805. extra: 2569 / 1385,
  27806. bottom: 95 / 2664
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(6, "feet"),
  27814. default: true
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27820. {
  27821. front: {
  27822. height: math.unit(9 + 4 / 12, "feet"),
  27823. weight: math.unit(500, "lb"),
  27824. name: "Front",
  27825. image: {
  27826. source: "./media/characters/morrigan/front.svg",
  27827. extra: 2707 / 2579,
  27828. bottom: 156 / 2863
  27829. }
  27830. },
  27831. },
  27832. [
  27833. {
  27834. name: "Normal",
  27835. height: math.unit(9 + 4 / 12, "feet"),
  27836. default: true
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27842. {
  27843. front: {
  27844. height: math.unit(5, "stories"),
  27845. weight: math.unit(4000, "lb"),
  27846. name: "Front",
  27847. image: {
  27848. source: "./media/characters/jenene/front.svg",
  27849. extra: 1780 / 1710,
  27850. bottom: 57 / 1837
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(5, "stories"),
  27858. default: true
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27864. {
  27865. taurSfw: {
  27866. height: math.unit(10, "meters"),
  27867. weight: math.unit(17500, "kg"),
  27868. name: "Taur",
  27869. image: {
  27870. source: "./media/characters/faey/taur-sfw.svg",
  27871. extra: 1200 / 968,
  27872. bottom: 41 / 1241
  27873. }
  27874. },
  27875. chestmaw: {
  27876. height: math.unit(2.01, "meters"),
  27877. name: "Chestmaw",
  27878. image: {
  27879. source: "./media/characters/faey/chestmaw.svg"
  27880. }
  27881. },
  27882. foot: {
  27883. height: math.unit(2.43, "meters"),
  27884. name: "Foot",
  27885. image: {
  27886. source: "./media/characters/faey/foot.svg"
  27887. }
  27888. },
  27889. jaws: {
  27890. height: math.unit(1.66, "meters"),
  27891. name: "Jaws",
  27892. image: {
  27893. source: "./media/characters/faey/jaws.svg"
  27894. }
  27895. },
  27896. tongues: {
  27897. height: math.unit(2.01, "meters"),
  27898. name: "Tongues",
  27899. image: {
  27900. source: "./media/characters/faey/tongues.svg"
  27901. }
  27902. },
  27903. },
  27904. [
  27905. {
  27906. name: "Small",
  27907. height: math.unit(10, "meters"),
  27908. default: true
  27909. },
  27910. {
  27911. name: "Big",
  27912. height: math.unit(500000, "km")
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27918. {
  27919. front: {
  27920. height: math.unit(7, "feet"),
  27921. weight: math.unit(275, "lb"),
  27922. name: "Front",
  27923. image: {
  27924. source: "./media/characters/roku/front.svg",
  27925. extra: 903 / 878,
  27926. bottom: 37 / 940
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Normal",
  27933. height: math.unit(7, "feet"),
  27934. default: true
  27935. },
  27936. {
  27937. name: "Macro",
  27938. height: math.unit(500, "feet")
  27939. },
  27940. {
  27941. name: "Megamacro",
  27942. height: math.unit(200, "miles")
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27948. {
  27949. front: {
  27950. height: math.unit(6 + 2 / 12, "feet"),
  27951. weight: math.unit(150, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/lira/front.svg",
  27955. extra: 1727 / 1605,
  27956. bottom: 26 / 1753
  27957. }
  27958. },
  27959. back: {
  27960. height: math.unit(6 + 2 / 12, "feet"),
  27961. weight: math.unit(150, "lb"),
  27962. name: "Back",
  27963. image: {
  27964. source: "./media/characters/lira/back.svg",
  27965. extra: 1713/1621,
  27966. bottom: 20/1733
  27967. }
  27968. },
  27969. hand: {
  27970. height: math.unit(0.75, "feet"),
  27971. name: "Hand",
  27972. image: {
  27973. source: "./media/characters/lira/hand.svg"
  27974. }
  27975. },
  27976. maw: {
  27977. height: math.unit(0.65, "feet"),
  27978. name: "Maw",
  27979. image: {
  27980. source: "./media/characters/lira/maw.svg"
  27981. }
  27982. },
  27983. pawDigi: {
  27984. height: math.unit(1.6, "feet"),
  27985. name: "Paw Digi",
  27986. image: {
  27987. source: "./media/characters/lira/paw-digi.svg"
  27988. }
  27989. },
  27990. pawPlanti: {
  27991. height: math.unit(1.4, "feet"),
  27992. name: "Paw Planti",
  27993. image: {
  27994. source: "./media/characters/lira/paw-planti.svg"
  27995. }
  27996. },
  27997. },
  27998. [
  27999. {
  28000. name: "Normal",
  28001. height: math.unit(6 + 2 / 12, "feet"),
  28002. default: true
  28003. },
  28004. {
  28005. name: "Macro",
  28006. height: math.unit(100, "feet")
  28007. },
  28008. {
  28009. name: "Macro²",
  28010. height: math.unit(1600, "feet")
  28011. },
  28012. {
  28013. name: "Planetary",
  28014. height: math.unit(20, "earths")
  28015. },
  28016. ]
  28017. ))
  28018. characterMakers.push(() => makeCharacter(
  28019. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28020. {
  28021. front: {
  28022. height: math.unit(6, "feet"),
  28023. weight: math.unit(150, "lb"),
  28024. name: "Front",
  28025. image: {
  28026. source: "./media/characters/hadjet/front.svg",
  28027. extra: 1480 / 1346,
  28028. bottom: 26 / 1506
  28029. }
  28030. },
  28031. frontNsfw: {
  28032. height: math.unit(6, "feet"),
  28033. weight: math.unit(150, "lb"),
  28034. name: "Front (NSFW)",
  28035. image: {
  28036. source: "./media/characters/hadjet/front-nsfw.svg",
  28037. extra: 1440 / 1358,
  28038. bottom: 52 / 1492
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Macro",
  28045. height: math.unit(10, "stories"),
  28046. default: true
  28047. },
  28048. {
  28049. name: "Megamacro",
  28050. height: math.unit(1.5, "miles")
  28051. },
  28052. {
  28053. name: "Megamacro+",
  28054. height: math.unit(5, "miles")
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28060. {
  28061. side: {
  28062. height: math.unit(106, "feet"),
  28063. weight: math.unit(500, "tonnes"),
  28064. name: "Side",
  28065. image: {
  28066. source: "./media/characters/kodran/side.svg",
  28067. extra: 553 / 480,
  28068. bottom: 33 / 586
  28069. }
  28070. },
  28071. front: {
  28072. height: math.unit(132, "feet"),
  28073. weight: math.unit(500, "tonnes"),
  28074. name: "Front",
  28075. image: {
  28076. source: "./media/characters/kodran/front.svg",
  28077. extra: 667 / 643,
  28078. bottom: 42 / 709
  28079. }
  28080. },
  28081. flying: {
  28082. height: math.unit(350, "feet"),
  28083. weight: math.unit(500, "tonnes"),
  28084. name: "Flying",
  28085. image: {
  28086. source: "./media/characters/kodran/flying.svg"
  28087. }
  28088. },
  28089. foot: {
  28090. height: math.unit(33, "feet"),
  28091. name: "Foot",
  28092. image: {
  28093. source: "./media/characters/kodran/foot.svg"
  28094. }
  28095. },
  28096. footFront: {
  28097. height: math.unit(19, "feet"),
  28098. name: "Foot (Front)",
  28099. image: {
  28100. source: "./media/characters/kodran/foot-front.svg",
  28101. extra: 261 / 261,
  28102. bottom: 91 / 352
  28103. }
  28104. },
  28105. headFront: {
  28106. height: math.unit(53, "feet"),
  28107. name: "Head (Front)",
  28108. image: {
  28109. source: "./media/characters/kodran/head-front.svg"
  28110. }
  28111. },
  28112. headSide: {
  28113. height: math.unit(65, "feet"),
  28114. name: "Head (Side)",
  28115. image: {
  28116. source: "./media/characters/kodran/head-side.svg"
  28117. }
  28118. },
  28119. throat: {
  28120. height: math.unit(79, "feet"),
  28121. name: "Throat",
  28122. image: {
  28123. source: "./media/characters/kodran/throat.svg"
  28124. }
  28125. },
  28126. },
  28127. [
  28128. {
  28129. name: "Large",
  28130. height: math.unit(106, "feet"),
  28131. default: true
  28132. },
  28133. ]
  28134. ))
  28135. characterMakers.push(() => makeCharacter(
  28136. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28137. {
  28138. side: {
  28139. height: math.unit(11, "feet"),
  28140. weight: math.unit(150, "lb"),
  28141. name: "Side",
  28142. image: {
  28143. source: "./media/characters/pyxaron/side.svg",
  28144. extra: 305 / 195,
  28145. bottom: 17 / 322
  28146. }
  28147. },
  28148. },
  28149. [
  28150. {
  28151. name: "Normal",
  28152. height: math.unit(11, "feet"),
  28153. default: true
  28154. },
  28155. ]
  28156. ))
  28157. characterMakers.push(() => makeCharacter(
  28158. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28159. {
  28160. front: {
  28161. height: math.unit(6, "feet"),
  28162. weight: math.unit(150, "lb"),
  28163. name: "Front",
  28164. image: {
  28165. source: "./media/characters/meep/front.svg",
  28166. extra: 88 / 80,
  28167. bottom: 6 / 94
  28168. }
  28169. },
  28170. },
  28171. [
  28172. {
  28173. name: "Fun Sized",
  28174. height: math.unit(2, "inches"),
  28175. default: true
  28176. },
  28177. {
  28178. name: "Friend Sized",
  28179. height: math.unit(8, "inches")
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(15, "feet"),
  28188. weight: math.unit(2500, "lb"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/holly-rabbit/front.svg",
  28192. extra: 1433 / 1233,
  28193. bottom: 125 / 1558
  28194. }
  28195. },
  28196. dick: {
  28197. height: math.unit(4.6, "feet"),
  28198. name: "Dick",
  28199. image: {
  28200. source: "./media/characters/holly-rabbit/dick.svg"
  28201. }
  28202. },
  28203. },
  28204. [
  28205. {
  28206. name: "Normal",
  28207. height: math.unit(15, "feet"),
  28208. default: true
  28209. },
  28210. {
  28211. name: "Macro",
  28212. height: math.unit(250, "feet")
  28213. },
  28214. {
  28215. name: "Macro+",
  28216. height: math.unit(2500, "feet")
  28217. },
  28218. ]
  28219. ))
  28220. characterMakers.push(() => makeCharacter(
  28221. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28222. {
  28223. front: {
  28224. height: math.unit(3.02, "meters"),
  28225. weight: math.unit(500, "kg"),
  28226. name: "Front",
  28227. image: {
  28228. source: "./media/characters/drena/front.svg",
  28229. extra: 282 / 243,
  28230. bottom: 8 / 290
  28231. }
  28232. },
  28233. side: {
  28234. height: math.unit(3.02, "meters"),
  28235. weight: math.unit(500, "kg"),
  28236. name: "Side",
  28237. image: {
  28238. source: "./media/characters/drena/side.svg",
  28239. extra: 280 / 245,
  28240. bottom: 10 / 290
  28241. }
  28242. },
  28243. back: {
  28244. height: math.unit(3.02, "meters"),
  28245. weight: math.unit(500, "kg"),
  28246. name: "Back",
  28247. image: {
  28248. source: "./media/characters/drena/back.svg",
  28249. extra: 278 / 243,
  28250. bottom: 2 / 280
  28251. }
  28252. },
  28253. foot: {
  28254. height: math.unit(0.75, "meters"),
  28255. name: "Foot",
  28256. image: {
  28257. source: "./media/characters/drena/foot.svg"
  28258. }
  28259. },
  28260. maw: {
  28261. height: math.unit(0.82, "meters"),
  28262. name: "Maw",
  28263. image: {
  28264. source: "./media/characters/drena/maw.svg"
  28265. }
  28266. },
  28267. rump: {
  28268. height: math.unit(0.93, "meters"),
  28269. name: "Rump",
  28270. image: {
  28271. source: "./media/characters/drena/rump.svg"
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(3.02, "meters"),
  28279. default: true
  28280. },
  28281. ]
  28282. ))
  28283. characterMakers.push(() => makeCharacter(
  28284. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28285. {
  28286. front: {
  28287. height: math.unit(6 + 4 / 12, "feet"),
  28288. weight: math.unit(250, "lb"),
  28289. name: "Front",
  28290. image: {
  28291. source: "./media/characters/remmyzilla/front.svg",
  28292. extra: 4033 / 3588,
  28293. bottom: 123 / 4156
  28294. }
  28295. },
  28296. back: {
  28297. height: math.unit(6 + 4 / 12, "feet"),
  28298. weight: math.unit(250, "lb"),
  28299. name: "Back",
  28300. image: {
  28301. source: "./media/characters/remmyzilla/back.svg",
  28302. extra: 2687 / 2555,
  28303. bottom: 48 / 2735
  28304. }
  28305. },
  28306. paw: {
  28307. height: math.unit(1.73, "feet"),
  28308. name: "Paw",
  28309. image: {
  28310. source: "./media/characters/remmyzilla/paw.svg"
  28311. }
  28312. },
  28313. maw: {
  28314. height: math.unit(1.73, "feet"),
  28315. name: "Maw",
  28316. image: {
  28317. source: "./media/characters/remmyzilla/maw.svg"
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(6 + 4 / 12, "feet")
  28325. },
  28326. {
  28327. name: "Minimacro",
  28328. height: math.unit(12 + 8 / 12, "feet")
  28329. },
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(640, "feet"),
  28333. default: true
  28334. },
  28335. {
  28336. name: "Megamacro",
  28337. height: math.unit(6400, "feet")
  28338. },
  28339. {
  28340. name: "Gigamacro",
  28341. height: math.unit(64000, "miles")
  28342. },
  28343. ]
  28344. ))
  28345. characterMakers.push(() => makeCharacter(
  28346. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28347. {
  28348. front: {
  28349. height: math.unit(2.5, "meters"),
  28350. weight: math.unit(300, "lb"),
  28351. name: "Front",
  28352. image: {
  28353. source: "./media/characters/lawrence/front.svg",
  28354. extra: 357 / 335,
  28355. bottom: 30 / 387
  28356. }
  28357. },
  28358. back: {
  28359. height: math.unit(2.5, "meters"),
  28360. weight: math.unit(300, "lb"),
  28361. name: "Back",
  28362. image: {
  28363. source: "./media/characters/lawrence/back.svg",
  28364. extra: 357 / 338,
  28365. bottom: 16 / 373
  28366. }
  28367. },
  28368. head: {
  28369. height: math.unit(0.9, "meter"),
  28370. name: "Head",
  28371. image: {
  28372. source: "./media/characters/lawrence/head.svg"
  28373. }
  28374. },
  28375. maw: {
  28376. height: math.unit(0.7, "meter"),
  28377. name: "Maw",
  28378. image: {
  28379. source: "./media/characters/lawrence/maw.svg"
  28380. }
  28381. },
  28382. footBottom: {
  28383. height: math.unit(0.5, "meter"),
  28384. name: "Foot (Bottom)",
  28385. image: {
  28386. source: "./media/characters/lawrence/foot-bottom.svg"
  28387. }
  28388. },
  28389. footTop: {
  28390. height: math.unit(0.5, "meter"),
  28391. name: "Foot (Top)",
  28392. image: {
  28393. source: "./media/characters/lawrence/foot-top.svg"
  28394. }
  28395. },
  28396. },
  28397. [
  28398. {
  28399. name: "Normal",
  28400. height: math.unit(2.5, "meters"),
  28401. default: true
  28402. },
  28403. {
  28404. name: "Macro",
  28405. height: math.unit(95, "meters")
  28406. },
  28407. {
  28408. name: "Megamacro",
  28409. height: math.unit(150, "km")
  28410. },
  28411. ]
  28412. ))
  28413. characterMakers.push(() => makeCharacter(
  28414. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28415. {
  28416. front: {
  28417. height: math.unit(4.2, "meters"),
  28418. name: "Front",
  28419. image: {
  28420. source: "./media/characters/sydney/front.svg",
  28421. extra: 1323 / 1277,
  28422. bottom: 111 / 1434
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Normal",
  28429. height: math.unit(4.2, "meters"),
  28430. default: true
  28431. },
  28432. ]
  28433. ))
  28434. characterMakers.push(() => makeCharacter(
  28435. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28436. {
  28437. back: {
  28438. height: math.unit(201, "feet"),
  28439. name: "Back",
  28440. image: {
  28441. source: "./media/characters/jessica/back.svg",
  28442. extra: 273 / 259,
  28443. bottom: 7 / 280
  28444. }
  28445. },
  28446. },
  28447. [
  28448. {
  28449. name: "Normal",
  28450. height: math.unit(201, "feet"),
  28451. default: true
  28452. },
  28453. {
  28454. name: "Megamacro",
  28455. height: math.unit(8, "miles")
  28456. },
  28457. ]
  28458. ))
  28459. characterMakers.push(() => makeCharacter(
  28460. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28461. {
  28462. side: {
  28463. height: math.unit(320, "cm"),
  28464. name: "Side",
  28465. image: {
  28466. source: "./media/characters/victoria/side.svg",
  28467. extra: 778 / 346,
  28468. bottom: 56 / 834
  28469. }
  28470. },
  28471. maw: {
  28472. height: math.unit(5.9, "feet"),
  28473. name: "Maw",
  28474. image: {
  28475. source: "./media/characters/victoria/maw.svg"
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(320, "cm"),
  28483. default: true
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28489. {
  28490. front: {
  28491. height: math.unit(5 + 6 / 12, "feet"),
  28492. name: "Front",
  28493. image: {
  28494. source: "./media/characters/cat/front.svg",
  28495. extra: 1449/1295,
  28496. bottom: 34/1483
  28497. }
  28498. },
  28499. back: {
  28500. height: math.unit(5 + 6 / 12, "feet"),
  28501. name: "Back",
  28502. image: {
  28503. source: "./media/characters/cat/back.svg",
  28504. extra: 1466/1301,
  28505. bottom: 19/1485
  28506. }
  28507. },
  28508. taur: {
  28509. height: math.unit(7, "feet"),
  28510. name: "Taur",
  28511. image: {
  28512. source: "./media/characters/cat/taur.svg",
  28513. extra: 1389/1233,
  28514. bottom: 83/1472
  28515. }
  28516. },
  28517. lucarioFront: {
  28518. height: math.unit(4, "feet"),
  28519. name: "Lucario (Front)",
  28520. image: {
  28521. source: "./media/characters/cat/lucario-front.svg",
  28522. extra: 1149/1019,
  28523. bottom: 84/1233
  28524. }
  28525. },
  28526. lucarioBack: {
  28527. height: math.unit(4, "feet"),
  28528. name: "Lucario (Back)",
  28529. image: {
  28530. source: "./media/characters/cat/lucario-back.svg",
  28531. extra: 1190/1059,
  28532. bottom: 33/1223
  28533. }
  28534. },
  28535. megaLucario: {
  28536. height: math.unit(4, "feet"),
  28537. name: "Mega Lucario",
  28538. image: {
  28539. source: "./media/characters/cat/mega-lucario.svg",
  28540. extra: 1515 / 1319,
  28541. bottom: 63 / 1578
  28542. }
  28543. },
  28544. nickit: {
  28545. height: math.unit(2, "feet"),
  28546. name: "Nickit",
  28547. image: {
  28548. source: "./media/characters/cat/nickit.svg",
  28549. extra: 1980 / 1585,
  28550. bottom: 102 / 2082
  28551. }
  28552. },
  28553. lopunnyFront: {
  28554. height: math.unit(5, "feet"),
  28555. name: "Lopunny (Front)",
  28556. image: {
  28557. source: "./media/characters/cat/lopunny-front.svg",
  28558. extra: 1782 / 1469,
  28559. bottom: 38 / 1820
  28560. }
  28561. },
  28562. lopunnyBack: {
  28563. height: math.unit(5, "feet"),
  28564. name: "Lopunny (Back)",
  28565. image: {
  28566. source: "./media/characters/cat/lopunny-back.svg",
  28567. extra: 1660 / 1490,
  28568. bottom: 25 / 1685
  28569. }
  28570. },
  28571. },
  28572. [
  28573. {
  28574. name: "Really small",
  28575. height: math.unit(1, "nm")
  28576. },
  28577. {
  28578. name: "Micro",
  28579. height: math.unit(5, "inches")
  28580. },
  28581. {
  28582. name: "Normal",
  28583. height: math.unit(5 + 6 / 12, "feet"),
  28584. default: true
  28585. },
  28586. {
  28587. name: "Macro",
  28588. height: math.unit(50, "feet")
  28589. },
  28590. {
  28591. name: "Macro+",
  28592. height: math.unit(150, "feet")
  28593. },
  28594. {
  28595. name: "Megamacro",
  28596. height: math.unit(100, "miles")
  28597. },
  28598. ]
  28599. ))
  28600. characterMakers.push(() => makeCharacter(
  28601. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28602. {
  28603. front: {
  28604. height: math.unit(63.4, "meters"),
  28605. weight: math.unit(3.28349e+6, "kilograms"),
  28606. name: "Front",
  28607. image: {
  28608. source: "./media/characters/kirina-violet/front.svg",
  28609. extra: 2812 / 2725,
  28610. bottom: 0 / 2812
  28611. }
  28612. },
  28613. back: {
  28614. height: math.unit(63.4, "meters"),
  28615. weight: math.unit(3.28349e+6, "kilograms"),
  28616. name: "Back",
  28617. image: {
  28618. source: "./media/characters/kirina-violet/back.svg",
  28619. extra: 2812 / 2725,
  28620. bottom: 0 / 2812
  28621. }
  28622. },
  28623. mouth: {
  28624. height: math.unit(4.35, "meters"),
  28625. name: "Mouth",
  28626. image: {
  28627. source: "./media/characters/kirina-violet/mouth.svg"
  28628. }
  28629. },
  28630. paw: {
  28631. height: math.unit(5.6, "meters"),
  28632. name: "Paw",
  28633. image: {
  28634. source: "./media/characters/kirina-violet/paw.svg"
  28635. }
  28636. },
  28637. tail: {
  28638. height: math.unit(18, "meters"),
  28639. name: "Tail",
  28640. image: {
  28641. source: "./media/characters/kirina-violet/tail.svg"
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Macro",
  28648. height: math.unit(63.4, "meters"),
  28649. default: true
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(75, "feet"),
  28658. name: "Front",
  28659. image: {
  28660. source: "./media/characters/cat-gigachu/front.svg",
  28661. extra: 1239/1027,
  28662. bottom: 32/1271
  28663. }
  28664. },
  28665. back: {
  28666. height: math.unit(75, "feet"),
  28667. name: "Back",
  28668. image: {
  28669. source: "./media/characters/cat-gigachu/back.svg",
  28670. extra: 1229/1030,
  28671. bottom: 9/1238
  28672. }
  28673. },
  28674. },
  28675. [
  28676. {
  28677. name: "Dynamax",
  28678. height: math.unit(75, "feet"),
  28679. default: true
  28680. },
  28681. ]
  28682. ))
  28683. characterMakers.push(() => makeCharacter(
  28684. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28685. {
  28686. front: {
  28687. height: math.unit(6, "feet"),
  28688. weight: math.unit(150, "lb"),
  28689. name: "Front",
  28690. image: {
  28691. source: "./media/characters/sfaiyan/front.svg",
  28692. extra: 999 / 978,
  28693. bottom: 5 / 1004
  28694. }
  28695. },
  28696. },
  28697. [
  28698. {
  28699. name: "Normal",
  28700. height: math.unit(1.82, "meters")
  28701. },
  28702. {
  28703. name: "Giant",
  28704. height: math.unit(2.27, "km"),
  28705. default: true
  28706. },
  28707. ]
  28708. ))
  28709. characterMakers.push(() => makeCharacter(
  28710. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28711. {
  28712. front: {
  28713. height: math.unit(179, "cm"),
  28714. weight: math.unit(100, "kg"),
  28715. name: "Front",
  28716. image: {
  28717. source: "./media/characters/raunehkeli/front.svg",
  28718. extra: 1934 / 1926,
  28719. bottom: 0 / 1934
  28720. }
  28721. },
  28722. },
  28723. [
  28724. {
  28725. name: "Normal",
  28726. height: math.unit(179, "cm")
  28727. },
  28728. {
  28729. name: "Maximum",
  28730. height: math.unit(575, "meters"),
  28731. default: true
  28732. },
  28733. ]
  28734. ))
  28735. characterMakers.push(() => makeCharacter(
  28736. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28737. {
  28738. front: {
  28739. height: math.unit(6, "feet"),
  28740. weight: math.unit(150, "lb"),
  28741. name: "Front",
  28742. image: {
  28743. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28744. extra: 2625 / 2518,
  28745. bottom: 60 / 2685
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(6 + 2 / 12, "feet")
  28753. },
  28754. {
  28755. name: "Macro",
  28756. height: math.unit(1180, "feet"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(5 + 6 / 12, "feet"),
  28766. weight: math.unit(108, "lb"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/lilith-zott/front.svg",
  28770. extra: 2510 / 2238,
  28771. bottom: 100 / 2610
  28772. }
  28773. },
  28774. frontDressed: {
  28775. height: math.unit(5 + 6 / 12, "feet"),
  28776. weight: math.unit(108, "lb"),
  28777. name: "Front (Dressed)",
  28778. image: {
  28779. source: "./media/characters/lilith-zott/front-dressed.svg",
  28780. extra: 2510 / 2238,
  28781. bottom: 100 / 2610
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Normal",
  28788. height: math.unit(5 + 6 / 12, "feet")
  28789. },
  28790. {
  28791. name: "Macro",
  28792. height: math.unit(1030, "feet"),
  28793. default: true
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(6, "feet"),
  28802. weight: math.unit(150, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28806. extra: 2567 / 2435,
  28807. bottom: 39 / 2606
  28808. }
  28809. },
  28810. frontSuper: {
  28811. height: math.unit(6, "feet"),
  28812. name: "Front (Super)",
  28813. image: {
  28814. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28815. extra: 2567 / 2435,
  28816. bottom: 39 / 2606
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Normal",
  28823. height: math.unit(5 + 10 / 12, "feet")
  28824. },
  28825. {
  28826. name: "Macro",
  28827. height: math.unit(1100, "feet"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28834. {
  28835. front: {
  28836. height: math.unit(100, "miles"),
  28837. name: "Front",
  28838. image: {
  28839. source: "./media/characters/sona/front.svg",
  28840. extra: 2433 / 2201,
  28841. bottom: 53 / 2486
  28842. }
  28843. },
  28844. foot: {
  28845. height: math.unit(16.1, "miles"),
  28846. name: "Foot",
  28847. image: {
  28848. source: "./media/characters/sona/foot.svg"
  28849. }
  28850. },
  28851. },
  28852. [
  28853. {
  28854. name: "Macro",
  28855. height: math.unit(100, "miles"),
  28856. default: true
  28857. },
  28858. ]
  28859. ))
  28860. characterMakers.push(() => makeCharacter(
  28861. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28862. {
  28863. front: {
  28864. height: math.unit(6, "feet"),
  28865. weight: math.unit(150, "lb"),
  28866. name: "Front",
  28867. image: {
  28868. source: "./media/characters/bailey/front.svg",
  28869. extra: 1778 / 1724,
  28870. bottom: 30 / 1808
  28871. }
  28872. },
  28873. },
  28874. [
  28875. {
  28876. name: "Micro",
  28877. height: math.unit(4, "inches")
  28878. },
  28879. {
  28880. name: "Normal",
  28881. height: math.unit(5 + 5 / 12, "feet"),
  28882. default: true
  28883. },
  28884. {
  28885. name: "Macro",
  28886. height: math.unit(250, "feet")
  28887. },
  28888. {
  28889. name: "Megamacro",
  28890. height: math.unit(100, "miles")
  28891. },
  28892. ]
  28893. ))
  28894. characterMakers.push(() => makeCharacter(
  28895. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28896. {
  28897. front: {
  28898. height: math.unit(5 + 2 / 12, "feet"),
  28899. weight: math.unit(120, "lb"),
  28900. name: "Front",
  28901. image: {
  28902. source: "./media/characters/snaps/front.svg",
  28903. extra: 2370 / 2177,
  28904. bottom: 48 / 2418
  28905. }
  28906. },
  28907. back: {
  28908. height: math.unit(5 + 2 / 12, "feet"),
  28909. weight: math.unit(120, "lb"),
  28910. name: "Back",
  28911. image: {
  28912. source: "./media/characters/snaps/back.svg",
  28913. extra: 2408 / 2258,
  28914. bottom: 15 / 2423
  28915. }
  28916. },
  28917. },
  28918. [
  28919. {
  28920. name: "Micro",
  28921. height: math.unit(9, "inches")
  28922. },
  28923. {
  28924. name: "Normal",
  28925. height: math.unit(5 + 2 / 12, "feet"),
  28926. default: true
  28927. },
  28928. {
  28929. name: "Mini Macro",
  28930. height: math.unit(10, "feet")
  28931. },
  28932. ]
  28933. ))
  28934. characterMakers.push(() => makeCharacter(
  28935. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28936. {
  28937. front: {
  28938. height: math.unit(1.8, "meters"),
  28939. weight: math.unit(85, "kg"),
  28940. name: "Front",
  28941. image: {
  28942. source: "./media/characters/azteck/front.svg",
  28943. extra: 2815 / 2625,
  28944. bottom: 89 / 2904
  28945. }
  28946. },
  28947. back: {
  28948. height: math.unit(1.8, "meters"),
  28949. weight: math.unit(85, "kg"),
  28950. name: "Back",
  28951. image: {
  28952. source: "./media/characters/azteck/back.svg",
  28953. extra: 2856 / 2648,
  28954. bottom: 85 / 2941
  28955. }
  28956. },
  28957. frontDressed: {
  28958. height: math.unit(1.8, "meters"),
  28959. weight: math.unit(85, "kg"),
  28960. name: "Front (Dressed)",
  28961. image: {
  28962. source: "./media/characters/azteck/front-dressed.svg",
  28963. extra: 2147 / 2003,
  28964. bottom: 68 / 2215
  28965. }
  28966. },
  28967. head: {
  28968. height: math.unit(0.47, "meters"),
  28969. weight: math.unit(85, "kg"),
  28970. name: "Head",
  28971. image: {
  28972. source: "./media/characters/azteck/head.svg"
  28973. }
  28974. },
  28975. },
  28976. [
  28977. {
  28978. name: "Bite sized",
  28979. height: math.unit(16, "cm")
  28980. },
  28981. {
  28982. name: "Normal",
  28983. height: math.unit(1.8, "meters"),
  28984. default: true
  28985. },
  28986. ]
  28987. ))
  28988. characterMakers.push(() => makeCharacter(
  28989. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28990. {
  28991. front: {
  28992. height: math.unit(6, "feet"),
  28993. weight: math.unit(150, "lb"),
  28994. name: "Front",
  28995. image: {
  28996. source: "./media/characters/pidge/front.svg",
  28997. extra: 620 / 588,
  28998. bottom: 9 / 629
  28999. }
  29000. },
  29001. back: {
  29002. height: math.unit(6, "feet"),
  29003. weight: math.unit(150, "lb"),
  29004. name: "Back",
  29005. image: {
  29006. source: "./media/characters/pidge/back.svg",
  29007. extra: 620 / 588,
  29008. bottom: 9 / 629
  29009. }
  29010. },
  29011. },
  29012. [
  29013. {
  29014. name: "Macro",
  29015. height: math.unit(1, "mile"),
  29016. default: true
  29017. },
  29018. ]
  29019. ))
  29020. characterMakers.push(() => makeCharacter(
  29021. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29022. {
  29023. front: {
  29024. height: math.unit(6, "feet"),
  29025. weight: math.unit(150, "lb"),
  29026. name: "Front",
  29027. image: {
  29028. source: "./media/characters/en/front.svg",
  29029. extra: 1697 / 1563,
  29030. bottom: 103 / 1800
  29031. }
  29032. },
  29033. back: {
  29034. height: math.unit(6, "feet"),
  29035. weight: math.unit(150, "lb"),
  29036. name: "Back",
  29037. image: {
  29038. source: "./media/characters/en/back.svg",
  29039. extra: 1700 / 1570,
  29040. bottom: 51 / 1751
  29041. }
  29042. },
  29043. frontDressed: {
  29044. height: math.unit(6, "feet"),
  29045. weight: math.unit(150, "lb"),
  29046. name: "Front (Dressed)",
  29047. image: {
  29048. source: "./media/characters/en/front-dressed.svg",
  29049. extra: 1697 / 1563,
  29050. bottom: 103 / 1800
  29051. }
  29052. },
  29053. backDressed: {
  29054. height: math.unit(6, "feet"),
  29055. weight: math.unit(150, "lb"),
  29056. name: "Back (Dressed)",
  29057. image: {
  29058. source: "./media/characters/en/back-dressed.svg",
  29059. extra: 1700 / 1570,
  29060. bottom: 51 / 1751
  29061. }
  29062. },
  29063. },
  29064. [
  29065. {
  29066. name: "Macro",
  29067. height: math.unit(210, "feet"),
  29068. default: true
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29074. {
  29075. front: {
  29076. height: math.unit(6, "feet"),
  29077. weight: math.unit(150, "lb"),
  29078. name: "Front",
  29079. image: {
  29080. source: "./media/characters/haze-orris/front.svg",
  29081. extra: 3975 / 3525,
  29082. bottom: 137 / 4112
  29083. }
  29084. },
  29085. },
  29086. [
  29087. {
  29088. name: "Micro",
  29089. height: math.unit(150, "mm"),
  29090. default: true
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(6, "feet"),
  29099. weight: math.unit(150, "lb"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/casselene-yaro/front.svg",
  29103. extra: 4721 / 4541,
  29104. bottom: 82 / 4803
  29105. }
  29106. },
  29107. back: {
  29108. height: math.unit(6, "feet"),
  29109. weight: math.unit(150, "lb"),
  29110. name: "Back",
  29111. image: {
  29112. source: "./media/characters/casselene-yaro/back.svg",
  29113. extra: 4569 / 4377,
  29114. bottom: 69 / 4638
  29115. }
  29116. },
  29117. frontDressed: {
  29118. height: math.unit(6, "feet"),
  29119. weight: math.unit(150, "lb"),
  29120. name: "Front-dressed",
  29121. image: {
  29122. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29123. extra: 4721 / 4541,
  29124. bottom: 82 / 4803
  29125. }
  29126. },
  29127. },
  29128. [
  29129. {
  29130. name: "Macro",
  29131. height: math.unit(190, "feet"),
  29132. default: true
  29133. },
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29138. {
  29139. front: {
  29140. height: math.unit(6, "feet"),
  29141. weight: math.unit(150, "lb"),
  29142. name: "Front",
  29143. image: {
  29144. source: "./media/characters/myra-rue-delore/front.svg",
  29145. extra: 1340 / 1308,
  29146. bottom: 67 / 1407
  29147. }
  29148. },
  29149. back: {
  29150. height: math.unit(6, "feet"),
  29151. weight: math.unit(150, "lb"),
  29152. name: "Back",
  29153. image: {
  29154. source: "./media/characters/myra-rue-delore/back.svg",
  29155. extra: 1341 / 1310,
  29156. bottom: 40 / 1381
  29157. }
  29158. },
  29159. frontDressed: {
  29160. height: math.unit(6, "feet"),
  29161. weight: math.unit(150, "lb"),
  29162. name: "Front (Dressed)",
  29163. image: {
  29164. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29165. extra: 1340 / 1308,
  29166. bottom: 67 / 1407
  29167. }
  29168. },
  29169. },
  29170. [
  29171. {
  29172. name: "Macro",
  29173. height: math.unit(150, "feet"),
  29174. default: true
  29175. },
  29176. ]
  29177. ))
  29178. characterMakers.push(() => makeCharacter(
  29179. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29180. {
  29181. front: {
  29182. height: math.unit(10, "feet"),
  29183. weight: math.unit(15015, "lb"),
  29184. name: "Front",
  29185. image: {
  29186. source: "./media/characters/fem!plat/front.svg",
  29187. extra: 2799 / 2604,
  29188. bottom: 149 / 2948
  29189. }
  29190. },
  29191. },
  29192. [
  29193. {
  29194. name: "Normal",
  29195. height: math.unit(10, "feet"),
  29196. default: true
  29197. },
  29198. {
  29199. name: "Macro",
  29200. height: math.unit(100, "feet")
  29201. },
  29202. {
  29203. name: "Megamacro",
  29204. height: math.unit(1000, "feet")
  29205. },
  29206. ]
  29207. ))
  29208. characterMakers.push(() => makeCharacter(
  29209. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29210. {
  29211. front: {
  29212. height: math.unit(15 + 5 / 12, "feet"),
  29213. weight: math.unit(4600, "lb"),
  29214. name: "Front",
  29215. image: {
  29216. source: "./media/characters/neapolitan-ananassa/front.svg",
  29217. extra: 2903 / 2736,
  29218. bottom: 0 / 2903
  29219. }
  29220. },
  29221. side: {
  29222. height: math.unit(15 + 5 / 12, "feet"),
  29223. weight: math.unit(4600, "lb"),
  29224. name: "Side",
  29225. image: {
  29226. source: "./media/characters/neapolitan-ananassa/side.svg",
  29227. extra: 2925 / 2719,
  29228. bottom: 0 / 2925
  29229. }
  29230. },
  29231. back: {
  29232. height: math.unit(15 + 5 / 12, "feet"),
  29233. weight: math.unit(4600, "lb"),
  29234. name: "Back",
  29235. image: {
  29236. source: "./media/characters/neapolitan-ananassa/back.svg",
  29237. extra: 2903 / 2736,
  29238. bottom: 0 / 2903
  29239. }
  29240. },
  29241. },
  29242. [
  29243. {
  29244. name: "Normal",
  29245. height: math.unit(15 + 5 / 12, "feet"),
  29246. default: true
  29247. },
  29248. {
  29249. name: "Post-Millenium",
  29250. height: math.unit(35 + 5 / 12, "feet")
  29251. },
  29252. {
  29253. name: "Post-Era",
  29254. height: math.unit(450 + 5 / 12, "feet")
  29255. },
  29256. ]
  29257. ))
  29258. characterMakers.push(() => makeCharacter(
  29259. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29260. {
  29261. front: {
  29262. height: math.unit(300, "meters"),
  29263. weight: math.unit(125000, "tonnes"),
  29264. name: "Front",
  29265. image: {
  29266. source: "./media/characters/pazuzu/front.svg",
  29267. extra: 877 / 794,
  29268. bottom: 47 / 924
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Macro",
  29275. height: math.unit(300, "meters"),
  29276. default: true
  29277. },
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29282. {
  29283. side: {
  29284. height: math.unit(10 + 7 / 12, "feet"),
  29285. weight: math.unit(2.5, "tons"),
  29286. name: "Side",
  29287. image: {
  29288. source: "./media/characters/aasha/side.svg",
  29289. extra: 1345 / 1245,
  29290. bottom: 111 / 1456
  29291. }
  29292. },
  29293. back: {
  29294. height: math.unit(10 + 7 / 12, "feet"),
  29295. weight: math.unit(2.5, "tons"),
  29296. name: "Back",
  29297. image: {
  29298. source: "./media/characters/aasha/back.svg",
  29299. extra: 1133 / 1057,
  29300. bottom: 257 / 1390
  29301. }
  29302. },
  29303. },
  29304. [
  29305. {
  29306. name: "Normal",
  29307. height: math.unit(10 + 7 / 12, "feet"),
  29308. default: true
  29309. },
  29310. ]
  29311. ))
  29312. characterMakers.push(() => makeCharacter(
  29313. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29314. {
  29315. front: {
  29316. height: math.unit(6 + 3 / 12, "feet"),
  29317. name: "Front",
  29318. image: {
  29319. source: "./media/characters/nevan/front.svg",
  29320. extra: 704 / 704,
  29321. bottom: 28 / 732
  29322. }
  29323. },
  29324. back: {
  29325. height: math.unit(6 + 3 / 12, "feet"),
  29326. name: "Back",
  29327. image: {
  29328. source: "./media/characters/nevan/back.svg",
  29329. extra: 714 / 714,
  29330. bottom: 21 / 735
  29331. }
  29332. },
  29333. frontFlaccid: {
  29334. height: math.unit(6 + 3 / 12, "feet"),
  29335. name: "Front (Flaccid)",
  29336. image: {
  29337. source: "./media/characters/nevan/front-flaccid.svg",
  29338. extra: 704 / 704,
  29339. bottom: 28 / 732
  29340. }
  29341. },
  29342. frontErect: {
  29343. height: math.unit(6 + 3 / 12, "feet"),
  29344. name: "Front (Erect)",
  29345. image: {
  29346. source: "./media/characters/nevan/front-erect.svg",
  29347. extra: 704 / 704,
  29348. bottom: 28 / 732
  29349. }
  29350. },
  29351. backFlaccid: {
  29352. height: math.unit(6 + 3 / 12, "feet"),
  29353. name: "Back (Flaccid)",
  29354. image: {
  29355. source: "./media/characters/nevan/back-flaccid.svg",
  29356. extra: 714 / 714,
  29357. bottom: 21 / 735
  29358. }
  29359. },
  29360. },
  29361. [
  29362. {
  29363. name: "Normal",
  29364. height: math.unit(6 + 3 / 12, "feet"),
  29365. default: true
  29366. },
  29367. ]
  29368. ))
  29369. characterMakers.push(() => makeCharacter(
  29370. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29371. {
  29372. front: {
  29373. height: math.unit(4, "feet"),
  29374. name: "Front",
  29375. image: {
  29376. source: "./media/characters/arhan/front.svg",
  29377. extra: 3368 / 3133,
  29378. bottom: 0 / 3368
  29379. }
  29380. },
  29381. side: {
  29382. height: math.unit(4, "feet"),
  29383. name: "Side",
  29384. image: {
  29385. source: "./media/characters/arhan/side.svg",
  29386. extra: 3347 / 3105,
  29387. bottom: 0 / 3347
  29388. }
  29389. },
  29390. tongue: {
  29391. height: math.unit(1.42, "feet"),
  29392. name: "Tongue",
  29393. image: {
  29394. source: "./media/characters/arhan/tongue.svg"
  29395. }
  29396. },
  29397. head: {
  29398. height: math.unit(0.85, "feet"),
  29399. name: "Head",
  29400. image: {
  29401. source: "./media/characters/arhan/head.svg"
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(4, "feet"),
  29409. default: true
  29410. },
  29411. ]
  29412. ))
  29413. characterMakers.push(() => makeCharacter(
  29414. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29415. {
  29416. front: {
  29417. height: math.unit(5 + 7.5 / 12, "feet"),
  29418. weight: math.unit(120, "lb"),
  29419. name: "Front",
  29420. image: {
  29421. source: "./media/characters/digi-duncan/front.svg",
  29422. extra: 330 / 326,
  29423. bottom: 16 / 346
  29424. }
  29425. },
  29426. side: {
  29427. height: math.unit(5 + 7.5 / 12, "feet"),
  29428. weight: math.unit(120, "lb"),
  29429. name: "Side",
  29430. image: {
  29431. source: "./media/characters/digi-duncan/side.svg",
  29432. extra: 341 / 337,
  29433. bottom: 1 / 342
  29434. }
  29435. },
  29436. back: {
  29437. height: math.unit(5 + 7.5 / 12, "feet"),
  29438. weight: math.unit(120, "lb"),
  29439. name: "Back",
  29440. image: {
  29441. source: "./media/characters/digi-duncan/back.svg",
  29442. extra: 330 / 326,
  29443. bottom: 12 / 342
  29444. }
  29445. },
  29446. },
  29447. [
  29448. {
  29449. name: "Speck",
  29450. height: math.unit(0.25, "mm")
  29451. },
  29452. {
  29453. name: "Micro",
  29454. height: math.unit(5, "mm")
  29455. },
  29456. {
  29457. name: "Tiny",
  29458. height: math.unit(0.5, "inches"),
  29459. default: true
  29460. },
  29461. {
  29462. name: "Human",
  29463. height: math.unit(5 + 7.5 / 12, "feet")
  29464. },
  29465. {
  29466. name: "Minigiant",
  29467. height: math.unit(8 + 5.25, "feet")
  29468. },
  29469. {
  29470. name: "Giant",
  29471. height: math.unit(2000, "feet")
  29472. },
  29473. {
  29474. name: "Mega",
  29475. height: math.unit(371.1, "miles")
  29476. },
  29477. ]
  29478. ))
  29479. characterMakers.push(() => makeCharacter(
  29480. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29481. {
  29482. front: {
  29483. height: math.unit(2, "meters"),
  29484. weight: math.unit(350, "kg"),
  29485. name: "Front",
  29486. image: {
  29487. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29488. extra: 898 / 838,
  29489. bottom: 9 / 907
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Micro",
  29496. height: math.unit(8, "meters")
  29497. },
  29498. {
  29499. name: "Normal",
  29500. height: math.unit(50, "meters"),
  29501. default: true
  29502. },
  29503. {
  29504. name: "Macro",
  29505. height: math.unit(500, "meters")
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(6 + 6 / 12, "feet"),
  29514. name: "Front",
  29515. image: {
  29516. source: "./media/characters/khardesh/front.svg",
  29517. extra: 888 / 797,
  29518. bottom: 25 / 913
  29519. }
  29520. },
  29521. },
  29522. [
  29523. {
  29524. name: "Normal",
  29525. height: math.unit(6 + 6 / 12, "feet"),
  29526. default: true
  29527. },
  29528. {
  29529. name: "Normal+",
  29530. height: math.unit(4, "meters")
  29531. },
  29532. {
  29533. name: "Macro",
  29534. height: math.unit(50, "meters")
  29535. },
  29536. {
  29537. name: "Macro+",
  29538. height: math.unit(100, "meters")
  29539. },
  29540. {
  29541. name: "Megamacro",
  29542. height: math.unit(20, "km")
  29543. },
  29544. ]
  29545. ))
  29546. characterMakers.push(() => makeCharacter(
  29547. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29548. {
  29549. front: {
  29550. height: math.unit(6, "feet"),
  29551. weight: math.unit(150, "lb"),
  29552. name: "Front",
  29553. image: {
  29554. source: "./media/characters/kosho/front.svg",
  29555. extra: 1847 / 1847,
  29556. bottom: 86 / 1933
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Second-stage micro",
  29563. height: math.unit(0.5, "inches")
  29564. },
  29565. {
  29566. name: "First-stage micro",
  29567. height: math.unit(6, "inches")
  29568. },
  29569. {
  29570. name: "Normal",
  29571. height: math.unit(6, "feet"),
  29572. default: true
  29573. },
  29574. {
  29575. name: "First-stage macro",
  29576. height: math.unit(72, "feet")
  29577. },
  29578. {
  29579. name: "Second-stage macro",
  29580. height: math.unit(864, "feet")
  29581. },
  29582. ]
  29583. ))
  29584. characterMakers.push(() => makeCharacter(
  29585. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29586. {
  29587. normal: {
  29588. height: math.unit(4 + 6 / 12, "feet"),
  29589. name: "Normal",
  29590. image: {
  29591. source: "./media/characters/hydra/normal.svg",
  29592. extra: 2833 / 2634,
  29593. bottom: 68 / 2901
  29594. }
  29595. },
  29596. smol: {
  29597. height: math.unit(0.705, "inches"),
  29598. name: "Smol",
  29599. image: {
  29600. source: "./media/characters/hydra/smol.svg",
  29601. extra: 2715 / 2540,
  29602. bottom: 0 / 2715
  29603. }
  29604. },
  29605. },
  29606. [
  29607. {
  29608. name: "Normal",
  29609. height: math.unit(4 + 6 / 12, "feet"),
  29610. default: true
  29611. }
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29616. {
  29617. front: {
  29618. height: math.unit(0.6, "cm"),
  29619. name: "Front",
  29620. image: {
  29621. source: "./media/characters/daz/front.svg",
  29622. extra: 1682 / 1164,
  29623. bottom: 42 / 1724
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(0.6, "cm"),
  29631. default: true
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(6, "feet"),
  29640. weight: math.unit(235, "lb"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/theo-pangolin/front.svg",
  29644. extra: 1996 / 1969,
  29645. bottom: 115 / 2111
  29646. }
  29647. },
  29648. back: {
  29649. height: math.unit(6, "feet"),
  29650. weight: math.unit(235, "lb"),
  29651. name: "Back",
  29652. image: {
  29653. source: "./media/characters/theo-pangolin/back.svg",
  29654. extra: 1979 / 1979,
  29655. bottom: 40 / 2019
  29656. }
  29657. },
  29658. feral: {
  29659. height: math.unit(2, "feet"),
  29660. weight: math.unit(30, "lb"),
  29661. name: "Feral",
  29662. image: {
  29663. source: "./media/characters/theo-pangolin/feral.svg",
  29664. extra: 803 / 791,
  29665. bottom: 181 / 984
  29666. }
  29667. },
  29668. footFive: {
  29669. height: math.unit(1.43, "feet"),
  29670. name: "Foot (Five Toes)",
  29671. image: {
  29672. source: "./media/characters/theo-pangolin/foot-five.svg"
  29673. }
  29674. },
  29675. footFour: {
  29676. height: math.unit(1.43, "feet"),
  29677. name: "Foot (Four Toes)",
  29678. image: {
  29679. source: "./media/characters/theo-pangolin/foot-four.svg"
  29680. }
  29681. },
  29682. handFour: {
  29683. height: math.unit(0.81, "feet"),
  29684. name: "Hand (Four Fingers)",
  29685. image: {
  29686. source: "./media/characters/theo-pangolin/hand-four.svg"
  29687. }
  29688. },
  29689. handThree: {
  29690. height: math.unit(0.81, "feet"),
  29691. name: "Hand (Three Fingers)",
  29692. image: {
  29693. source: "./media/characters/theo-pangolin/hand-three.svg"
  29694. }
  29695. },
  29696. headFront: {
  29697. height: math.unit(1.37, "feet"),
  29698. name: "Head (Front)",
  29699. image: {
  29700. source: "./media/characters/theo-pangolin/head-front.svg"
  29701. }
  29702. },
  29703. headSide: {
  29704. height: math.unit(1.43, "feet"),
  29705. name: "Head (Side)",
  29706. image: {
  29707. source: "./media/characters/theo-pangolin/head-side.svg"
  29708. }
  29709. },
  29710. tongue: {
  29711. height: math.unit(2.29, "feet"),
  29712. name: "Tongue",
  29713. image: {
  29714. source: "./media/characters/theo-pangolin/tongue.svg"
  29715. }
  29716. },
  29717. },
  29718. [
  29719. {
  29720. name: "Normal",
  29721. height: math.unit(6, "feet")
  29722. },
  29723. {
  29724. name: "Macro",
  29725. height: math.unit(400, "feet"),
  29726. default: true
  29727. },
  29728. ]
  29729. ))
  29730. characterMakers.push(() => makeCharacter(
  29731. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29732. {
  29733. front: {
  29734. height: math.unit(6, "inches"),
  29735. weight: math.unit(0.036, "kg"),
  29736. name: "Front",
  29737. image: {
  29738. source: "./media/characters/renée/front.svg",
  29739. extra: 900 / 886,
  29740. bottom: 8 / 908
  29741. }
  29742. },
  29743. },
  29744. [
  29745. {
  29746. name: "Nano",
  29747. height: math.unit(1, "nm")
  29748. },
  29749. {
  29750. name: "Micro",
  29751. height: math.unit(1, "mm")
  29752. },
  29753. {
  29754. name: "Normal",
  29755. height: math.unit(6, "inches")
  29756. },
  29757. {
  29758. name: "Macro",
  29759. height: math.unit(2000, "feet"),
  29760. default: true
  29761. },
  29762. {
  29763. name: "Megamacro",
  29764. height: math.unit(2, "km")
  29765. },
  29766. {
  29767. name: "Gigamacro",
  29768. height: math.unit(2000, "km")
  29769. },
  29770. {
  29771. name: "Teramacro",
  29772. height: math.unit(250000, "km")
  29773. },
  29774. ]
  29775. ))
  29776. characterMakers.push(() => makeCharacter(
  29777. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29778. {
  29779. front: {
  29780. height: math.unit(4, "meters"),
  29781. weight: math.unit(150, "kg"),
  29782. name: "Front",
  29783. image: {
  29784. source: "./media/characters/caledvwlch/front.svg",
  29785. extra: 1760 / 1551,
  29786. bottom: 28 / 1788
  29787. }
  29788. },
  29789. side: {
  29790. height: math.unit(4, "meters"),
  29791. weight: math.unit(150, "kg"),
  29792. name: "Side",
  29793. image: {
  29794. source: "./media/characters/caledvwlch/side.svg",
  29795. extra: 1605 / 1536,
  29796. bottom: 31 / 1636
  29797. }
  29798. },
  29799. back: {
  29800. height: math.unit(4, "meters"),
  29801. weight: math.unit(150, "kg"),
  29802. name: "Back",
  29803. image: {
  29804. source: "./media/characters/caledvwlch/back.svg",
  29805. extra: 1635 / 1565,
  29806. bottom: 27 / 1662
  29807. }
  29808. },
  29809. },
  29810. [
  29811. {
  29812. name: "\"Incognito\"",
  29813. height: math.unit(4, "meters")
  29814. },
  29815. {
  29816. name: "Small rampage",
  29817. height: math.unit(600, "meters")
  29818. },
  29819. {
  29820. name: "Mega",
  29821. height: math.unit(30, "km")
  29822. },
  29823. {
  29824. name: "Home-size",
  29825. height: math.unit(50, "km"),
  29826. default: true
  29827. },
  29828. {
  29829. name: "Giga",
  29830. height: math.unit(300, "km")
  29831. },
  29832. {
  29833. name: "Lounging",
  29834. height: math.unit(11000, "km")
  29835. },
  29836. {
  29837. name: "Planet snacking",
  29838. height: math.unit(2000000, "km")
  29839. },
  29840. ]
  29841. ))
  29842. characterMakers.push(() => makeCharacter(
  29843. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29844. {
  29845. front: {
  29846. height: math.unit(6, "feet"),
  29847. weight: math.unit(215, "lb"),
  29848. name: "Front",
  29849. image: {
  29850. source: "./media/characters/sapphire-svell/front.svg",
  29851. extra: 495 / 455,
  29852. bottom: 20 / 515
  29853. }
  29854. },
  29855. back: {
  29856. height: math.unit(6, "feet"),
  29857. weight: math.unit(216, "lb"),
  29858. name: "Back",
  29859. image: {
  29860. source: "./media/characters/sapphire-svell/back.svg",
  29861. extra: 497 / 477,
  29862. bottom: 7 / 504
  29863. }
  29864. },
  29865. maw: {
  29866. height: math.unit(1.57, "feet"),
  29867. name: "Maw",
  29868. image: {
  29869. source: "./media/characters/sapphire-svell/maw.svg"
  29870. }
  29871. },
  29872. foot: {
  29873. height: math.unit(1.07, "feet"),
  29874. name: "Foot",
  29875. image: {
  29876. source: "./media/characters/sapphire-svell/foot.svg"
  29877. }
  29878. },
  29879. toering: {
  29880. height: math.unit(1.7, "inch"),
  29881. name: "Toering",
  29882. image: {
  29883. source: "./media/characters/sapphire-svell/toering.svg"
  29884. }
  29885. },
  29886. },
  29887. [
  29888. {
  29889. name: "Normal",
  29890. height: math.unit(300, "feet"),
  29891. default: true
  29892. },
  29893. {
  29894. name: "Augmented",
  29895. height: math.unit(1250, "feet")
  29896. },
  29897. {
  29898. name: "Unleashed",
  29899. height: math.unit(3000, "feet")
  29900. },
  29901. ]
  29902. ))
  29903. characterMakers.push(() => makeCharacter(
  29904. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29905. {
  29906. side: {
  29907. height: math.unit(2 + 3 / 12, "feet"),
  29908. weight: math.unit(110, "lb"),
  29909. name: "Side",
  29910. image: {
  29911. source: "./media/characters/glitch-flux/side.svg",
  29912. extra: 997 / 805,
  29913. bottom: 20 / 1017
  29914. }
  29915. },
  29916. },
  29917. [
  29918. {
  29919. name: "Normal",
  29920. height: math.unit(2 + 3 / 12, "feet"),
  29921. default: true
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29927. {
  29928. front: {
  29929. height: math.unit(4, "meters"),
  29930. name: "Front",
  29931. image: {
  29932. source: "./media/characters/mid/front.svg",
  29933. extra: 507 / 476,
  29934. bottom: 17 / 524
  29935. }
  29936. },
  29937. back: {
  29938. height: math.unit(4, "meters"),
  29939. name: "Back",
  29940. image: {
  29941. source: "./media/characters/mid/back.svg",
  29942. extra: 519 / 487,
  29943. bottom: 7 / 526
  29944. }
  29945. },
  29946. stuck: {
  29947. height: math.unit(2.2, "meters"),
  29948. name: "Stuck",
  29949. image: {
  29950. source: "./media/characters/mid/stuck.svg",
  29951. extra: 1951 / 1869,
  29952. bottom: 88 / 2039
  29953. }
  29954. }
  29955. },
  29956. [
  29957. {
  29958. name: "Normal",
  29959. height: math.unit(4, "meters"),
  29960. default: true
  29961. },
  29962. {
  29963. name: "Big",
  29964. height: math.unit(10, "meters")
  29965. },
  29966. {
  29967. name: "Macro",
  29968. height: math.unit(800, "meters")
  29969. },
  29970. {
  29971. name: "Megamacro",
  29972. height: math.unit(100, "km")
  29973. },
  29974. {
  29975. name: "Overgrown",
  29976. height: math.unit(1, "parsec")
  29977. },
  29978. ]
  29979. ))
  29980. characterMakers.push(() => makeCharacter(
  29981. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29982. {
  29983. front: {
  29984. height: math.unit(2.5, "meters"),
  29985. weight: math.unit(225, "kg"),
  29986. name: "Front",
  29987. image: {
  29988. source: "./media/characters/iris/front.svg",
  29989. extra: 3348 / 3251,
  29990. bottom: 205 / 3553
  29991. }
  29992. },
  29993. maw: {
  29994. height: math.unit(0.56, "meter"),
  29995. name: "Maw",
  29996. image: {
  29997. source: "./media/characters/iris/maw.svg"
  29998. }
  29999. },
  30000. },
  30001. [
  30002. {
  30003. name: "Mewter cat",
  30004. height: math.unit(1.2, "meters")
  30005. },
  30006. {
  30007. name: "Minimacro",
  30008. height: math.unit(2.5, "meters"),
  30009. default: true
  30010. },
  30011. {
  30012. name: "Macro",
  30013. height: math.unit(180, "meters")
  30014. },
  30015. {
  30016. name: "Megamacro",
  30017. height: math.unit(2746, "meters")
  30018. },
  30019. ]
  30020. ))
  30021. characterMakers.push(() => makeCharacter(
  30022. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30023. {
  30024. front: {
  30025. height: math.unit(6, "feet"),
  30026. weight: math.unit(135, "lb"),
  30027. name: "Front",
  30028. image: {
  30029. source: "./media/characters/axel/front.svg",
  30030. extra: 908 / 908,
  30031. bottom: 58 / 966
  30032. }
  30033. },
  30034. side: {
  30035. height: math.unit(6, "feet"),
  30036. weight: math.unit(135, "lb"),
  30037. name: "Side",
  30038. image: {
  30039. source: "./media/characters/axel/side.svg",
  30040. extra: 958 / 958,
  30041. bottom: 11 / 969
  30042. }
  30043. },
  30044. back: {
  30045. height: math.unit(6, "feet"),
  30046. weight: math.unit(135, "lb"),
  30047. name: "Back",
  30048. image: {
  30049. source: "./media/characters/axel/back.svg",
  30050. extra: 887 / 887,
  30051. bottom: 34 / 921
  30052. }
  30053. },
  30054. head: {
  30055. height: math.unit(1.07, "feet"),
  30056. name: "Head",
  30057. image: {
  30058. source: "./media/characters/axel/head.svg"
  30059. }
  30060. },
  30061. beak: {
  30062. height: math.unit(1.4, "feet"),
  30063. name: "Beak",
  30064. image: {
  30065. source: "./media/characters/axel/beak.svg"
  30066. }
  30067. },
  30068. beakSide: {
  30069. height: math.unit(1.4, "feet"),
  30070. name: "Beak Side",
  30071. image: {
  30072. source: "./media/characters/axel/beak-side.svg"
  30073. }
  30074. },
  30075. sheath: {
  30076. height: math.unit(0.5, "feet"),
  30077. name: "Sheath",
  30078. image: {
  30079. source: "./media/characters/axel/sheath.svg"
  30080. }
  30081. },
  30082. dick: {
  30083. height: math.unit(0.98, "feet"),
  30084. name: "Dick",
  30085. image: {
  30086. source: "./media/characters/axel/dick.svg"
  30087. }
  30088. },
  30089. },
  30090. [
  30091. {
  30092. name: "Macro",
  30093. height: math.unit(68, "meters"),
  30094. default: true
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(3.5, "meters"),
  30103. weight: math.unit(1200, "kg"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/joanna/front.svg",
  30107. extra: 1596 / 1488,
  30108. bottom: 29 / 1625
  30109. }
  30110. },
  30111. back: {
  30112. height: math.unit(3.5, "meters"),
  30113. weight: math.unit(1200, "kg"),
  30114. name: "Back",
  30115. image: {
  30116. source: "./media/characters/joanna/back.svg",
  30117. extra: 1594 / 1495,
  30118. bottom: 26 / 1620
  30119. }
  30120. },
  30121. frontShorts: {
  30122. height: math.unit(3.5, "meters"),
  30123. weight: math.unit(1200, "kg"),
  30124. name: "Front (Shorts)",
  30125. image: {
  30126. source: "./media/characters/joanna/front-shorts.svg",
  30127. extra: 1596 / 1488,
  30128. bottom: 29 / 1625
  30129. }
  30130. },
  30131. frontBiker: {
  30132. height: math.unit(3.5, "meters"),
  30133. weight: math.unit(1200, "kg"),
  30134. name: "Front (Biker)",
  30135. image: {
  30136. source: "./media/characters/joanna/front-biker.svg",
  30137. extra: 1596 / 1488,
  30138. bottom: 29 / 1625
  30139. }
  30140. },
  30141. backBiker: {
  30142. height: math.unit(3.5, "meters"),
  30143. weight: math.unit(1200, "kg"),
  30144. name: "Back (Biker)",
  30145. image: {
  30146. source: "./media/characters/joanna/back-biker.svg",
  30147. extra: 1594 / 1495,
  30148. bottom: 88 / 1682
  30149. }
  30150. },
  30151. bikeLeft: {
  30152. height: math.unit(2.4, "meters"),
  30153. weight: math.unit(1600, "kg"),
  30154. name: "Bike (Left)",
  30155. image: {
  30156. source: "./media/characters/joanna/bike-left.svg",
  30157. extra: 720 / 720,
  30158. bottom: 8 / 728
  30159. }
  30160. },
  30161. bikeRight: {
  30162. height: math.unit(2.4, "meters"),
  30163. weight: math.unit(1600, "kg"),
  30164. name: "Bike (Right)",
  30165. image: {
  30166. source: "./media/characters/joanna/bike-right.svg",
  30167. extra: 720 / 720,
  30168. bottom: 8 / 728
  30169. }
  30170. },
  30171. },
  30172. [
  30173. {
  30174. name: "Incognito",
  30175. height: math.unit(3.5, "meters")
  30176. },
  30177. {
  30178. name: "Casual Big",
  30179. height: math.unit(200, "meters")
  30180. },
  30181. {
  30182. name: "Macro",
  30183. height: math.unit(600, "meters")
  30184. },
  30185. {
  30186. name: "Original",
  30187. height: math.unit(20, "km"),
  30188. default: true
  30189. },
  30190. {
  30191. name: "Giga",
  30192. height: math.unit(400, "km")
  30193. },
  30194. {
  30195. name: "Lounging",
  30196. height: math.unit(1500, "km")
  30197. },
  30198. {
  30199. name: "Planetary",
  30200. height: math.unit(200000, "km")
  30201. },
  30202. ]
  30203. ))
  30204. characterMakers.push(() => makeCharacter(
  30205. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30206. {
  30207. front: {
  30208. height: math.unit(6, "feet"),
  30209. weight: math.unit(150, "lb"),
  30210. name: "Front",
  30211. image: {
  30212. source: "./media/characters/hugo-sigil/front.svg",
  30213. extra: 522 / 500,
  30214. bottom: 2 / 524
  30215. }
  30216. },
  30217. back: {
  30218. height: math.unit(6, "feet"),
  30219. weight: math.unit(150, "lb"),
  30220. name: "Back",
  30221. image: {
  30222. source: "./media/characters/hugo-sigil/back.svg",
  30223. extra: 519 / 495,
  30224. bottom: 5 / 524
  30225. }
  30226. },
  30227. maw: {
  30228. height: math.unit(1.4, "feet"),
  30229. weight: math.unit(150, "lb"),
  30230. name: "Maw",
  30231. image: {
  30232. source: "./media/characters/hugo-sigil/maw.svg"
  30233. }
  30234. },
  30235. feet: {
  30236. height: math.unit(1.56, "feet"),
  30237. weight: math.unit(150, "lb"),
  30238. name: "Feet",
  30239. image: {
  30240. source: "./media/characters/hugo-sigil/feet.svg",
  30241. extra: 177 / 177,
  30242. bottom: 12 / 189
  30243. }
  30244. },
  30245. },
  30246. [
  30247. {
  30248. name: "Normal",
  30249. height: math.unit(6, "feet")
  30250. },
  30251. {
  30252. name: "Macro",
  30253. height: math.unit(200, "feet"),
  30254. default: true
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(6, "feet"),
  30263. weight: math.unit(150, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/peri/front.svg",
  30267. extra: 2354 / 2233,
  30268. bottom: 49 / 2403
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Really Small",
  30275. height: math.unit(1, "nm")
  30276. },
  30277. {
  30278. name: "Micro",
  30279. height: math.unit(4, "inches")
  30280. },
  30281. {
  30282. name: "Normal",
  30283. height: math.unit(7, "inches"),
  30284. default: true
  30285. },
  30286. {
  30287. name: "Macro",
  30288. height: math.unit(400, "feet")
  30289. },
  30290. {
  30291. name: "Megamacro",
  30292. height: math.unit(100, "miles")
  30293. },
  30294. ]
  30295. ))
  30296. characterMakers.push(() => makeCharacter(
  30297. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30298. {
  30299. frontSlim: {
  30300. height: math.unit(7, "feet"),
  30301. name: "Front (Slim)",
  30302. image: {
  30303. source: "./media/characters/issilora/front-slim.svg",
  30304. extra: 529 / 449,
  30305. bottom: 53 / 582
  30306. }
  30307. },
  30308. sideSlim: {
  30309. height: math.unit(7, "feet"),
  30310. name: "Side (Slim)",
  30311. image: {
  30312. source: "./media/characters/issilora/side-slim.svg",
  30313. extra: 570 / 480,
  30314. bottom: 30 / 600
  30315. }
  30316. },
  30317. backSlim: {
  30318. height: math.unit(7, "feet"),
  30319. name: "Back (Slim)",
  30320. image: {
  30321. source: "./media/characters/issilora/back-slim.svg",
  30322. extra: 537 / 455,
  30323. bottom: 46 / 583
  30324. }
  30325. },
  30326. frontBuff: {
  30327. height: math.unit(7, "feet"),
  30328. name: "Front (Buff)",
  30329. image: {
  30330. source: "./media/characters/issilora/front-buff.svg",
  30331. extra: 2310 / 2035,
  30332. bottom: 335 / 2645
  30333. }
  30334. },
  30335. head: {
  30336. height: math.unit(1.94, "feet"),
  30337. name: "Head",
  30338. image: {
  30339. source: "./media/characters/issilora/head.svg"
  30340. }
  30341. },
  30342. },
  30343. [
  30344. {
  30345. name: "Minimum",
  30346. height: math.unit(7, "feet")
  30347. },
  30348. {
  30349. name: "Comfortable",
  30350. height: math.unit(17, "feet")
  30351. },
  30352. {
  30353. name: "Fun Size",
  30354. height: math.unit(47, "feet")
  30355. },
  30356. {
  30357. name: "Natural Macro",
  30358. height: math.unit(137, "feet"),
  30359. default: true
  30360. },
  30361. {
  30362. name: "Maximum Kaiju",
  30363. height: math.unit(397, "feet")
  30364. },
  30365. ]
  30366. ))
  30367. characterMakers.push(() => makeCharacter(
  30368. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30369. {
  30370. front: {
  30371. height: math.unit(50 + 9/12, "feet"),
  30372. weight: math.unit(32.8, "tons"),
  30373. name: "Front",
  30374. image: {
  30375. source: "./media/characters/irb'iiritaahn/front.svg",
  30376. extra: 1878/1826,
  30377. bottom: 326/2204
  30378. }
  30379. },
  30380. back: {
  30381. height: math.unit(50 + 9/12, "feet"),
  30382. weight: math.unit(32.8, "tons"),
  30383. name: "Back",
  30384. image: {
  30385. source: "./media/characters/irb'iiritaahn/back.svg",
  30386. extra: 2052/2018,
  30387. bottom: 152/2204
  30388. }
  30389. },
  30390. head: {
  30391. height: math.unit(12.86, "feet"),
  30392. name: "Head",
  30393. image: {
  30394. source: "./media/characters/irb'iiritaahn/head.svg"
  30395. }
  30396. },
  30397. maw: {
  30398. height: math.unit(9.66, "feet"),
  30399. name: "Maw",
  30400. image: {
  30401. source: "./media/characters/irb'iiritaahn/maw.svg"
  30402. }
  30403. },
  30404. frontDick: {
  30405. height: math.unit(8.78461, "feet"),
  30406. name: "Front Dick",
  30407. image: {
  30408. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30409. }
  30410. },
  30411. rearDick: {
  30412. height: math.unit(8.78461, "feet"),
  30413. name: "Rear Dick",
  30414. image: {
  30415. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30416. }
  30417. },
  30418. rearDickUnfolded: {
  30419. height: math.unit(8.78, "feet"),
  30420. name: "Rear Dick (Unfolded)",
  30421. image: {
  30422. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30423. }
  30424. },
  30425. wings: {
  30426. height: math.unit(43, "feet"),
  30427. name: "Wings",
  30428. image: {
  30429. source: "./media/characters/irb'iiritaahn/wings.svg"
  30430. }
  30431. },
  30432. },
  30433. [
  30434. {
  30435. name: "Macro",
  30436. height: math.unit(50 + 9/12, "feet"),
  30437. default: true
  30438. },
  30439. ]
  30440. ))
  30441. characterMakers.push(() => makeCharacter(
  30442. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30443. {
  30444. front: {
  30445. height: math.unit(205, "cm"),
  30446. weight: math.unit(102, "kg"),
  30447. name: "Front",
  30448. image: {
  30449. source: "./media/characters/irbisgreif/front.svg",
  30450. extra: 785/706,
  30451. bottom: 13/798
  30452. }
  30453. },
  30454. back: {
  30455. height: math.unit(205, "cm"),
  30456. weight: math.unit(102, "kg"),
  30457. name: "Back",
  30458. image: {
  30459. source: "./media/characters/irbisgreif/back.svg",
  30460. extra: 713/701,
  30461. bottom: 26/739
  30462. }
  30463. },
  30464. frontDressed: {
  30465. height: math.unit(216, "cm"),
  30466. weight: math.unit(102, "kg"),
  30467. name: "Front-dressed",
  30468. image: {
  30469. source: "./media/characters/irbisgreif/front-dressed.svg",
  30470. extra: 902/776,
  30471. bottom: 14/916
  30472. }
  30473. },
  30474. sideDressed: {
  30475. height: math.unit(195, "cm"),
  30476. weight: math.unit(102, "kg"),
  30477. name: "Side-dressed",
  30478. image: {
  30479. source: "./media/characters/irbisgreif/side-dressed.svg",
  30480. extra: 788/688,
  30481. bottom: 21/809
  30482. }
  30483. },
  30484. backDressed: {
  30485. height: math.unit(216, "cm"),
  30486. weight: math.unit(102, "kg"),
  30487. name: "Back-dressed",
  30488. image: {
  30489. source: "./media/characters/irbisgreif/back-dressed.svg",
  30490. extra: 901/783,
  30491. bottom: 10/911
  30492. }
  30493. },
  30494. dick: {
  30495. height: math.unit(0.49, "feet"),
  30496. name: "Dick",
  30497. image: {
  30498. source: "./media/characters/irbisgreif/dick.svg"
  30499. }
  30500. },
  30501. wingTop: {
  30502. height: math.unit(1.93 , "feet"),
  30503. name: "Wing-top",
  30504. image: {
  30505. source: "./media/characters/irbisgreif/wing-top.svg"
  30506. }
  30507. },
  30508. wingBottom: {
  30509. height: math.unit(1.93 , "feet"),
  30510. name: "Wing-bottom",
  30511. image: {
  30512. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30513. }
  30514. },
  30515. },
  30516. [
  30517. {
  30518. name: "Normal",
  30519. height: math.unit(216, "cm"),
  30520. default: true
  30521. },
  30522. ]
  30523. ))
  30524. characterMakers.push(() => makeCharacter(
  30525. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30526. {
  30527. front: {
  30528. height: math.unit(6, "feet"),
  30529. weight: math.unit(150, "lb"),
  30530. name: "Front",
  30531. image: {
  30532. source: "./media/characters/pride/front.svg",
  30533. extra: 1299/1230,
  30534. bottom: 18/1317
  30535. }
  30536. },
  30537. },
  30538. [
  30539. {
  30540. name: "Normal",
  30541. height: math.unit(7, "feet")
  30542. },
  30543. {
  30544. name: "Mini-macro",
  30545. height: math.unit(11, "feet")
  30546. },
  30547. {
  30548. name: "Macro",
  30549. height: math.unit(15, "meters"),
  30550. default: true
  30551. },
  30552. {
  30553. name: "Macro+",
  30554. height: math.unit(40, "meters")
  30555. },
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30560. {
  30561. front: {
  30562. height: math.unit(4 + 2 / 12, "feet"),
  30563. weight: math.unit(95, "lb"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/vaelophis-nyx/front.svg",
  30567. extra: 2532/2330,
  30568. bottom: 0/2532
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(4 + 2 / 12, "feet"),
  30573. weight: math.unit(95, "lb"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/vaelophis-nyx/back.svg",
  30577. extra: 2484/2361,
  30578. bottom: 0/2484
  30579. }
  30580. },
  30581. feralSide: {
  30582. height: math.unit(2 + 1/12, "feet"),
  30583. weight: math.unit(20, "lb"),
  30584. name: "Feral (Side)",
  30585. image: {
  30586. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30587. extra: 1721/1581,
  30588. bottom: 70/1791
  30589. }
  30590. },
  30591. feralLazing: {
  30592. height: math.unit(1.08, "feet"),
  30593. weight: math.unit(20, "lb"),
  30594. name: "Feral (Lazing)",
  30595. image: {
  30596. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30597. extra: 822/822,
  30598. bottom: 248/1070
  30599. }
  30600. },
  30601. ear: {
  30602. height: math.unit(0.416, "feet"),
  30603. name: "Ear",
  30604. image: {
  30605. source: "./media/characters/vaelophis-nyx/ear.svg"
  30606. }
  30607. },
  30608. eye: {
  30609. height: math.unit(0.0748, "feet"),
  30610. name: "Eye",
  30611. image: {
  30612. source: "./media/characters/vaelophis-nyx/eye.svg"
  30613. }
  30614. },
  30615. mouth: {
  30616. height: math.unit(0.378, "feet"),
  30617. name: "Mouth",
  30618. image: {
  30619. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30620. }
  30621. },
  30622. spade: {
  30623. height: math.unit(0.55, "feet"),
  30624. name: "Spade",
  30625. image: {
  30626. source: "./media/characters/vaelophis-nyx/spade.svg"
  30627. }
  30628. },
  30629. },
  30630. [
  30631. {
  30632. name: "Normal",
  30633. height: math.unit(4 + 2/12, "feet"),
  30634. default: true
  30635. },
  30636. ]
  30637. ))
  30638. characterMakers.push(() => makeCharacter(
  30639. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30640. {
  30641. front: {
  30642. height: math.unit(7, "feet"),
  30643. weight: math.unit(231, "lb"),
  30644. name: "Front",
  30645. image: {
  30646. source: "./media/characters/flux/front.svg",
  30647. extra: 919/871,
  30648. bottom: 0/919
  30649. }
  30650. },
  30651. back: {
  30652. height: math.unit(7, "feet"),
  30653. weight: math.unit(231, "lb"),
  30654. name: "Back",
  30655. image: {
  30656. source: "./media/characters/flux/back.svg",
  30657. extra: 1040/992,
  30658. bottom: 0/1040
  30659. }
  30660. },
  30661. frontDressed: {
  30662. height: math.unit(7, "feet"),
  30663. weight: math.unit(231, "lb"),
  30664. name: "Front (Dressed)",
  30665. image: {
  30666. source: "./media/characters/flux/front-dressed.svg",
  30667. extra: 919/871,
  30668. bottom: 0/919
  30669. }
  30670. },
  30671. feralSide: {
  30672. height: math.unit(5, "feet"),
  30673. weight: math.unit(150, "lb"),
  30674. name: "Feral (Side)",
  30675. image: {
  30676. source: "./media/characters/flux/feral-side.svg",
  30677. extra: 598/528,
  30678. bottom: 28/626
  30679. }
  30680. },
  30681. head: {
  30682. height: math.unit(1.585, "feet"),
  30683. name: "Head",
  30684. image: {
  30685. source: "./media/characters/flux/head.svg"
  30686. }
  30687. },
  30688. headSide: {
  30689. height: math.unit(1.74, "feet"),
  30690. name: "Head (Side)",
  30691. image: {
  30692. source: "./media/characters/flux/head-side.svg"
  30693. }
  30694. },
  30695. headSideFire: {
  30696. height: math.unit(1.76, "feet"),
  30697. name: "Head (Side, Fire)",
  30698. image: {
  30699. source: "./media/characters/flux/head-side-fire.svg"
  30700. }
  30701. },
  30702. },
  30703. [
  30704. {
  30705. name: "Normal",
  30706. height: math.unit(7, "feet"),
  30707. default: true
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30713. {
  30714. front: {
  30715. height: math.unit(9, "feet"),
  30716. weight: math.unit(1012, "lb"),
  30717. name: "Front",
  30718. image: {
  30719. source: "./media/characters/ulfra-lupae/front.svg",
  30720. extra: 1083/1011,
  30721. bottom: 67/1150
  30722. }
  30723. },
  30724. },
  30725. [
  30726. {
  30727. name: "Micro",
  30728. height: math.unit(6, "inches")
  30729. },
  30730. {
  30731. name: "Socializing",
  30732. height: math.unit(6 + 5/12, "feet")
  30733. },
  30734. {
  30735. name: "Normal",
  30736. height: math.unit(9, "feet"),
  30737. default: true
  30738. },
  30739. {
  30740. name: "Macro",
  30741. height: math.unit(150, "feet")
  30742. },
  30743. ]
  30744. ))
  30745. characterMakers.push(() => makeCharacter(
  30746. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30747. {
  30748. front: {
  30749. height: math.unit(5 + 2/12, "feet"),
  30750. weight: math.unit(120, "lb"),
  30751. name: "Front",
  30752. image: {
  30753. source: "./media/characters/timber/front.svg",
  30754. extra: 2814/2705,
  30755. bottom: 181/2995
  30756. }
  30757. },
  30758. },
  30759. [
  30760. {
  30761. name: "Normal",
  30762. height: math.unit(5 + 2/12, "feet"),
  30763. default: true
  30764. },
  30765. ]
  30766. ))
  30767. characterMakers.push(() => makeCharacter(
  30768. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30769. {
  30770. front: {
  30771. height: math.unit(5 + 7/12, "feet"),
  30772. weight: math.unit(220, "lb"),
  30773. name: "Front",
  30774. image: {
  30775. source: "./media/characters/nicki/front.svg",
  30776. extra: 453/419,
  30777. bottom: 7/460
  30778. }
  30779. },
  30780. frontAlt: {
  30781. height: math.unit(5 + 7/12, "feet"),
  30782. weight: math.unit(220, "lb"),
  30783. name: "Front-alt",
  30784. image: {
  30785. source: "./media/characters/nicki/front-alt.svg",
  30786. extra: 435/411,
  30787. bottom: 12/447
  30788. }
  30789. },
  30790. back: {
  30791. height: math.unit(5 + 7/12, "feet"),
  30792. weight: math.unit(220, "lb"),
  30793. name: "Back",
  30794. image: {
  30795. source: "./media/characters/nicki/back.svg",
  30796. extra: 440/413,
  30797. bottom: 19/459
  30798. }
  30799. },
  30800. taur: {
  30801. height: math.unit(7 + 6/12, "feet"),
  30802. weight: math.unit(700, "lb"),
  30803. name: "Taur",
  30804. image: {
  30805. source: "./media/characters/nicki/taur.svg",
  30806. extra: 975/773,
  30807. bottom: 0/975
  30808. }
  30809. },
  30810. frontNsfw: {
  30811. height: math.unit(5 + 7/12, "feet"),
  30812. weight: math.unit(220, "lb"),
  30813. name: "Front (NSFW)",
  30814. image: {
  30815. source: "./media/characters/nicki/front-nsfw.svg",
  30816. extra: 453/419,
  30817. bottom: 7/460
  30818. }
  30819. },
  30820. frontNsfwAlt: {
  30821. height: math.unit(5 + 7/12, "feet"),
  30822. weight: math.unit(220, "lb"),
  30823. name: "Front (Alt, NSFW)",
  30824. image: {
  30825. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30826. extra: 435/411,
  30827. bottom: 12/447
  30828. }
  30829. },
  30830. backNsfw: {
  30831. height: math.unit(5 + 7/12, "feet"),
  30832. weight: math.unit(220, "lb"),
  30833. name: "Back (NSFW)",
  30834. image: {
  30835. source: "./media/characters/nicki/back-nsfw.svg",
  30836. extra: 440/413,
  30837. bottom: 19/459
  30838. }
  30839. },
  30840. head: {
  30841. height: math.unit(2.1, "feet"),
  30842. name: "Head",
  30843. image: {
  30844. source: "./media/characters/nicki/head.svg"
  30845. }
  30846. },
  30847. paw: {
  30848. height: math.unit(1.88, "feet"),
  30849. name: "Paw",
  30850. image: {
  30851. source: "./media/characters/nicki/paw.svg"
  30852. }
  30853. },
  30854. },
  30855. [
  30856. {
  30857. name: "Normal",
  30858. height: math.unit(5 + 7/12, "feet"),
  30859. default: true
  30860. },
  30861. ]
  30862. ))
  30863. characterMakers.push(() => makeCharacter(
  30864. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30865. {
  30866. front: {
  30867. height: math.unit(7 + 10/12, "feet"),
  30868. weight: math.unit(3.5, "tons"),
  30869. name: "Front",
  30870. image: {
  30871. source: "./media/characters/lee/front.svg",
  30872. extra: 1773/1615,
  30873. bottom: 86/1859
  30874. }
  30875. },
  30876. hand: {
  30877. height: math.unit(1.78, "feet"),
  30878. name: "Hand",
  30879. image: {
  30880. source: "./media/characters/lee/hand.svg"
  30881. }
  30882. },
  30883. maw: {
  30884. height: math.unit(1.18, "feet"),
  30885. name: "Maw",
  30886. image: {
  30887. source: "./media/characters/lee/maw.svg"
  30888. }
  30889. },
  30890. },
  30891. [
  30892. {
  30893. name: "Normal",
  30894. height: math.unit(7 + 10/12, "feet"),
  30895. default: true
  30896. },
  30897. ]
  30898. ))
  30899. characterMakers.push(() => makeCharacter(
  30900. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30901. {
  30902. front: {
  30903. height: math.unit(9, "feet"),
  30904. name: "Front",
  30905. image: {
  30906. source: "./media/characters/guti/front.svg",
  30907. extra: 4551/4355,
  30908. bottom: 123/4674
  30909. }
  30910. },
  30911. tongue: {
  30912. height: math.unit(1, "feet"),
  30913. name: "Tongue",
  30914. image: {
  30915. source: "./media/characters/guti/tongue.svg"
  30916. }
  30917. },
  30918. paw: {
  30919. height: math.unit(1.18, "feet"),
  30920. name: "Paw",
  30921. image: {
  30922. source: "./media/characters/guti/paw.svg"
  30923. }
  30924. },
  30925. },
  30926. [
  30927. {
  30928. name: "Normal",
  30929. height: math.unit(9, "feet"),
  30930. default: true
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30936. {
  30937. side: {
  30938. height: math.unit(5, "meters"),
  30939. name: "Side",
  30940. image: {
  30941. source: "./media/characters/vesper/side.svg",
  30942. extra: 1605/1518,
  30943. bottom: 0/1605
  30944. }
  30945. },
  30946. },
  30947. [
  30948. {
  30949. name: "Small",
  30950. height: math.unit(5, "meters")
  30951. },
  30952. {
  30953. name: "Sage",
  30954. height: math.unit(100, "meters"),
  30955. default: true
  30956. },
  30957. {
  30958. name: "Fun Size",
  30959. height: math.unit(600, "meters")
  30960. },
  30961. {
  30962. name: "Goddess",
  30963. height: math.unit(20000, "km")
  30964. },
  30965. {
  30966. name: "Maximum",
  30967. height: math.unit(5, "galaxies")
  30968. },
  30969. ]
  30970. ))
  30971. characterMakers.push(() => makeCharacter(
  30972. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30973. {
  30974. front: {
  30975. height: math.unit(6 + 3/12, "feet"),
  30976. weight: math.unit(190, "lb"),
  30977. name: "Front",
  30978. image: {
  30979. source: "./media/characters/gawain/front.svg",
  30980. extra: 2222/2139,
  30981. bottom: 90/2312
  30982. }
  30983. },
  30984. back: {
  30985. height: math.unit(6 + 3/12, "feet"),
  30986. weight: math.unit(190, "lb"),
  30987. name: "Back",
  30988. image: {
  30989. source: "./media/characters/gawain/back.svg",
  30990. extra: 2199/2111,
  30991. bottom: 73/2272
  30992. }
  30993. },
  30994. },
  30995. [
  30996. {
  30997. name: "Normal",
  30998. height: math.unit(6 + 3/12, "feet"),
  30999. default: true
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31005. {
  31006. side: {
  31007. height: math.unit(3.5, "meters"),
  31008. weight: math.unit(16000, "lb"),
  31009. name: "Side",
  31010. image: {
  31011. source: "./media/characters/dascalti/side.svg",
  31012. extra: 392/273,
  31013. bottom: 47/439
  31014. }
  31015. },
  31016. breath: {
  31017. height: math.unit(7.4, "feet"),
  31018. name: "Breath",
  31019. image: {
  31020. source: "./media/characters/dascalti/breath.svg"
  31021. }
  31022. },
  31023. fed: {
  31024. height: math.unit(3.6, "meters"),
  31025. weight: math.unit(16000, "lb"),
  31026. name: "Fed",
  31027. image: {
  31028. source: "./media/characters/dascalti/fed.svg",
  31029. extra: 1419/820,
  31030. bottom: 95/1514
  31031. }
  31032. },
  31033. },
  31034. [
  31035. {
  31036. name: "Normal",
  31037. height: math.unit(3.5, "meters"),
  31038. default: true
  31039. },
  31040. ]
  31041. ))
  31042. characterMakers.push(() => makeCharacter(
  31043. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31044. {
  31045. front: {
  31046. height: math.unit(3 + 5/12, "feet"),
  31047. name: "Front",
  31048. image: {
  31049. source: "./media/characters/mauve/front.svg",
  31050. extra: 1126/1033,
  31051. bottom: 65/1191
  31052. }
  31053. },
  31054. side: {
  31055. height: math.unit(3 + 5/12, "feet"),
  31056. name: "Side",
  31057. image: {
  31058. source: "./media/characters/mauve/side.svg",
  31059. extra: 1089/1001,
  31060. bottom: 29/1118
  31061. }
  31062. },
  31063. back: {
  31064. height: math.unit(3 + 5/12, "feet"),
  31065. name: "Back",
  31066. image: {
  31067. source: "./media/characters/mauve/back.svg",
  31068. extra: 1173/1053,
  31069. bottom: 109/1282
  31070. }
  31071. },
  31072. },
  31073. [
  31074. {
  31075. name: "Normal",
  31076. height: math.unit(3 + 5/12, "feet"),
  31077. default: true
  31078. },
  31079. ]
  31080. ))
  31081. characterMakers.push(() => makeCharacter(
  31082. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31083. {
  31084. front: {
  31085. height: math.unit(6 + 3/12, "feet"),
  31086. weight: math.unit(430, "lb"),
  31087. name: "Front",
  31088. image: {
  31089. source: "./media/characters/carlos/front.svg",
  31090. extra: 1964/1913,
  31091. bottom: 70/2034
  31092. }
  31093. },
  31094. },
  31095. [
  31096. {
  31097. name: "Normal",
  31098. height: math.unit(6 + 3/12, "feet"),
  31099. default: true
  31100. },
  31101. ]
  31102. ))
  31103. characterMakers.push(() => makeCharacter(
  31104. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31105. {
  31106. back: {
  31107. height: math.unit(5 + 10/12, "feet"),
  31108. weight: math.unit(200, "lb"),
  31109. name: "Back",
  31110. image: {
  31111. source: "./media/characters/jax/back.svg",
  31112. extra: 764/739,
  31113. bottom: 25/789
  31114. }
  31115. },
  31116. },
  31117. [
  31118. {
  31119. name: "Normal",
  31120. height: math.unit(5 + 10/12, "feet"),
  31121. default: true
  31122. },
  31123. ]
  31124. ))
  31125. characterMakers.push(() => makeCharacter(
  31126. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31127. {
  31128. front: {
  31129. height: math.unit(8, "feet"),
  31130. weight: math.unit(250, "lb"),
  31131. name: "Front",
  31132. image: {
  31133. source: "./media/characters/eikthynir/front.svg",
  31134. extra: 1332/1166,
  31135. bottom: 82/1414
  31136. }
  31137. },
  31138. back: {
  31139. height: math.unit(8, "feet"),
  31140. weight: math.unit(250, "lb"),
  31141. name: "Back",
  31142. image: {
  31143. source: "./media/characters/eikthynir/back.svg",
  31144. extra: 1342/1190,
  31145. bottom: 19/1361
  31146. }
  31147. },
  31148. dick: {
  31149. height: math.unit(2.35, "feet"),
  31150. name: "Dick",
  31151. image: {
  31152. source: "./media/characters/eikthynir/dick.svg"
  31153. }
  31154. },
  31155. },
  31156. [
  31157. {
  31158. name: "Normal",
  31159. height: math.unit(8, "feet"),
  31160. default: true
  31161. },
  31162. ]
  31163. ))
  31164. characterMakers.push(() => makeCharacter(
  31165. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31166. {
  31167. front: {
  31168. height: math.unit(99, "meters"),
  31169. weight: math.unit(13000, "tons"),
  31170. name: "Front",
  31171. image: {
  31172. source: "./media/characters/zlmos/front.svg",
  31173. extra: 2202/1992,
  31174. bottom: 315/2517
  31175. }
  31176. },
  31177. },
  31178. [
  31179. {
  31180. name: "Macro",
  31181. height: math.unit(99, "meters"),
  31182. default: true
  31183. },
  31184. ]
  31185. ))
  31186. characterMakers.push(() => makeCharacter(
  31187. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31188. {
  31189. front: {
  31190. height: math.unit(6 + 5/12, "feet"),
  31191. name: "Front",
  31192. image: {
  31193. source: "./media/characters/purri/front.svg",
  31194. extra: 1698/1610,
  31195. bottom: 32/1730
  31196. }
  31197. },
  31198. frontAlt: {
  31199. height: math.unit(6 + 5/12, "feet"),
  31200. name: "Front (Alt)",
  31201. image: {
  31202. source: "./media/characters/purri/front-alt.svg",
  31203. extra: 450/420,
  31204. bottom: 26/476
  31205. }
  31206. },
  31207. boots: {
  31208. height: math.unit(5.5, "feet"),
  31209. name: "Boots",
  31210. image: {
  31211. source: "./media/characters/purri/boots.svg",
  31212. extra: 905/853,
  31213. bottom: 18/923
  31214. }
  31215. },
  31216. lying: {
  31217. height: math.unit(2, "feet"),
  31218. name: "Lying",
  31219. image: {
  31220. source: "./media/characters/purri/lying.svg",
  31221. extra: 940/843,
  31222. bottom: 146/1086
  31223. }
  31224. },
  31225. devious: {
  31226. height: math.unit(1.77, "feet"),
  31227. name: "Devious",
  31228. image: {
  31229. source: "./media/characters/purri/devious.svg",
  31230. extra: 1440/1155,
  31231. bottom: 147/1587
  31232. }
  31233. },
  31234. bean: {
  31235. height: math.unit(1.94, "feet"),
  31236. name: "Bean",
  31237. image: {
  31238. source: "./media/characters/purri/bean.svg"
  31239. }
  31240. },
  31241. },
  31242. [
  31243. {
  31244. name: "Micro",
  31245. height: math.unit(1, "mm")
  31246. },
  31247. {
  31248. name: "Normal",
  31249. height: math.unit(6 + 5/12, "feet"),
  31250. default: true
  31251. },
  31252. {
  31253. name: "Macro :3c",
  31254. height: math.unit(2, "miles")
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(6 + 2/12, "feet"),
  31263. weight: math.unit(250, "lb"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/moonlight/front.svg",
  31267. extra: 1044/908,
  31268. bottom: 56/1100
  31269. }
  31270. },
  31271. feral: {
  31272. height: math.unit(3 + 1/12, "feet"),
  31273. weight: math.unit(50, "kg"),
  31274. name: "Feral",
  31275. image: {
  31276. source: "./media/characters/moonlight/feral.svg",
  31277. extra: 3705/2791,
  31278. bottom: 145/3850
  31279. }
  31280. },
  31281. paw: {
  31282. height: math.unit(1, "feet"),
  31283. name: "Paw",
  31284. image: {
  31285. source: "./media/characters/moonlight/paw.svg"
  31286. }
  31287. },
  31288. paws: {
  31289. height: math.unit(0.98, "feet"),
  31290. name: "Paws",
  31291. image: {
  31292. source: "./media/characters/moonlight/paws.svg",
  31293. extra: 939/939,
  31294. bottom: 50/989
  31295. }
  31296. },
  31297. mouth: {
  31298. height: math.unit(0.48, "feet"),
  31299. name: "Mouth",
  31300. image: {
  31301. source: "./media/characters/moonlight/mouth.svg"
  31302. }
  31303. },
  31304. dick: {
  31305. height: math.unit(1.46, "feet"),
  31306. name: "Dick",
  31307. image: {
  31308. source: "./media/characters/moonlight/dick.svg"
  31309. }
  31310. },
  31311. },
  31312. [
  31313. {
  31314. name: "Normal",
  31315. height: math.unit(6 + 2/12, "feet"),
  31316. default: true
  31317. },
  31318. {
  31319. name: "Macro",
  31320. height: math.unit(300, "feet")
  31321. },
  31322. {
  31323. name: "Macro+",
  31324. height: math.unit(1, "mile")
  31325. },
  31326. {
  31327. name: "Mt. Moon",
  31328. height: math.unit(5, "miles")
  31329. },
  31330. {
  31331. name: "Megamacro",
  31332. height: math.unit(15, "miles")
  31333. },
  31334. ]
  31335. ))
  31336. characterMakers.push(() => makeCharacter(
  31337. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31338. {
  31339. back: {
  31340. height: math.unit(6, "feet"),
  31341. weight: math.unit(150, "lb"),
  31342. name: "Back",
  31343. image: {
  31344. source: "./media/characters/sylen/back.svg",
  31345. extra: 1335/1273,
  31346. bottom: 107/1442
  31347. }
  31348. },
  31349. },
  31350. [
  31351. {
  31352. name: "Normal",
  31353. height: math.unit(5 + 5/12, "feet")
  31354. },
  31355. {
  31356. name: "Megamacro",
  31357. height: math.unit(3, "miles"),
  31358. default: true
  31359. },
  31360. ]
  31361. ))
  31362. characterMakers.push(() => makeCharacter(
  31363. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31364. {
  31365. front: {
  31366. height: math.unit(6, "feet"),
  31367. weight: math.unit(190, "lb"),
  31368. name: "Front",
  31369. image: {
  31370. source: "./media/characters/huttser/front.svg",
  31371. extra: 1152/1058,
  31372. bottom: 23/1175
  31373. }
  31374. },
  31375. side: {
  31376. height: math.unit(6, "feet"),
  31377. weight: math.unit(190, "lb"),
  31378. name: "Side",
  31379. image: {
  31380. source: "./media/characters/huttser/side.svg",
  31381. extra: 1174/1065,
  31382. bottom: 18/1192
  31383. }
  31384. },
  31385. back: {
  31386. height: math.unit(6, "feet"),
  31387. weight: math.unit(190, "lb"),
  31388. name: "Back",
  31389. image: {
  31390. source: "./media/characters/huttser/back.svg",
  31391. extra: 1158/1056,
  31392. bottom: 12/1170
  31393. }
  31394. },
  31395. },
  31396. [
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31401. {
  31402. side: {
  31403. height: math.unit(12 + 9/12, "feet"),
  31404. weight: math.unit(15000, "lb"),
  31405. name: "Side",
  31406. image: {
  31407. source: "./media/characters/faan/side.svg",
  31408. extra: 2747/2697,
  31409. bottom: 0/2747
  31410. }
  31411. },
  31412. front: {
  31413. height: math.unit(12 + 9/12, "feet"),
  31414. weight: math.unit(15000, "lb"),
  31415. name: "Front",
  31416. image: {
  31417. source: "./media/characters/faan/front.svg",
  31418. extra: 607/571,
  31419. bottom: 24/631
  31420. }
  31421. },
  31422. head: {
  31423. height: math.unit(2.85, "feet"),
  31424. name: "Head",
  31425. image: {
  31426. source: "./media/characters/faan/head.svg"
  31427. }
  31428. },
  31429. headAlt: {
  31430. height: math.unit(3.13, "feet"),
  31431. name: "Head-alt",
  31432. image: {
  31433. source: "./media/characters/faan/head-alt.svg"
  31434. }
  31435. },
  31436. },
  31437. [
  31438. {
  31439. name: "Normal",
  31440. height: math.unit(12 + 9/12, "feet"),
  31441. default: true
  31442. },
  31443. ]
  31444. ))
  31445. characterMakers.push(() => makeCharacter(
  31446. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31447. {
  31448. front: {
  31449. height: math.unit(6, "feet"),
  31450. weight: math.unit(300, "lb"),
  31451. name: "Front",
  31452. image: {
  31453. source: "./media/characters/tanio/front.svg",
  31454. extra: 711/673,
  31455. bottom: 25/736
  31456. }
  31457. },
  31458. },
  31459. [
  31460. {
  31461. name: "Normal",
  31462. height: math.unit(6, "feet"),
  31463. default: true
  31464. },
  31465. ]
  31466. ))
  31467. characterMakers.push(() => makeCharacter(
  31468. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31469. {
  31470. front: {
  31471. height: math.unit(3, "inches"),
  31472. name: "Front",
  31473. image: {
  31474. source: "./media/characters/noboru/front.svg",
  31475. extra: 1039/932,
  31476. bottom: 18/1057
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Micro",
  31483. height: math.unit(3, "inches"),
  31484. default: true
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(1.85, "meters"),
  31493. weight: math.unit(80, "kg"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/daniel-barrett/front.svg",
  31497. extra: 355/337,
  31498. bottom: 9/364
  31499. }
  31500. },
  31501. },
  31502. [
  31503. {
  31504. name: "Pico",
  31505. height: math.unit(0.0433, "mm")
  31506. },
  31507. {
  31508. name: "Nano",
  31509. height: math.unit(1.5, "mm")
  31510. },
  31511. {
  31512. name: "Micro",
  31513. height: math.unit(5.3, "cm"),
  31514. default: true
  31515. },
  31516. {
  31517. name: "Normal",
  31518. height: math.unit(1.85, "meters")
  31519. },
  31520. {
  31521. name: "Macro",
  31522. height: math.unit(64.7, "meters")
  31523. },
  31524. {
  31525. name: "Megamacro",
  31526. height: math.unit(2.26, "km")
  31527. },
  31528. {
  31529. name: "Gigamacro",
  31530. height: math.unit(79, "km")
  31531. },
  31532. {
  31533. name: "Teramacro",
  31534. height: math.unit(2765, "km")
  31535. },
  31536. {
  31537. name: "Petamacro",
  31538. height: math.unit(96678, "km")
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31544. {
  31545. front: {
  31546. height: math.unit(30, "meters"),
  31547. weight: math.unit(400, "tons"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/zeel/front.svg",
  31551. extra: 2599/2599,
  31552. bottom: 226/2825
  31553. }
  31554. },
  31555. },
  31556. [
  31557. {
  31558. name: "Macro",
  31559. height: math.unit(30, "meters"),
  31560. default: true
  31561. },
  31562. ]
  31563. ))
  31564. characterMakers.push(() => makeCharacter(
  31565. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31566. {
  31567. front: {
  31568. height: math.unit(6 + 7/12, "feet"),
  31569. weight: math.unit(210, "lb"),
  31570. name: "Front",
  31571. image: {
  31572. source: "./media/characters/tarn/front.svg",
  31573. extra: 3517/3220,
  31574. bottom: 91/3608
  31575. }
  31576. },
  31577. back: {
  31578. height: math.unit(6 + 7/12, "feet"),
  31579. weight: math.unit(210, "lb"),
  31580. name: "Back",
  31581. image: {
  31582. source: "./media/characters/tarn/back.svg",
  31583. extra: 3566/3241,
  31584. bottom: 34/3600
  31585. }
  31586. },
  31587. dick: {
  31588. height: math.unit(1.65, "feet"),
  31589. name: "Dick",
  31590. image: {
  31591. source: "./media/characters/tarn/dick.svg"
  31592. }
  31593. },
  31594. paw: {
  31595. height: math.unit(1.80, "feet"),
  31596. name: "Paw",
  31597. image: {
  31598. source: "./media/characters/tarn/paw.svg"
  31599. }
  31600. },
  31601. tongue: {
  31602. height: math.unit(0.97, "feet"),
  31603. name: "Tongue",
  31604. image: {
  31605. source: "./media/characters/tarn/tongue.svg"
  31606. }
  31607. },
  31608. },
  31609. [
  31610. {
  31611. name: "Micro",
  31612. height: math.unit(4, "inches")
  31613. },
  31614. {
  31615. name: "Normal",
  31616. height: math.unit(6 + 7/12, "feet"),
  31617. default: true
  31618. },
  31619. {
  31620. name: "Macro",
  31621. height: math.unit(300, "feet")
  31622. },
  31623. ]
  31624. ))
  31625. characterMakers.push(() => makeCharacter(
  31626. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31627. {
  31628. front: {
  31629. height: math.unit(5 + 7/12, "feet"),
  31630. weight: math.unit(80, "kg"),
  31631. name: "Front",
  31632. image: {
  31633. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31634. extra: 3023/2865,
  31635. bottom: 33/3056
  31636. }
  31637. },
  31638. back: {
  31639. height: math.unit(5 + 7/12, "feet"),
  31640. weight: math.unit(80, "kg"),
  31641. name: "Back",
  31642. image: {
  31643. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31644. extra: 3020/2886,
  31645. bottom: 30/3050
  31646. }
  31647. },
  31648. dick: {
  31649. height: math.unit(0.98, "feet"),
  31650. name: "Dick",
  31651. image: {
  31652. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31653. }
  31654. },
  31655. anatomy: {
  31656. height: math.unit(2.86, "feet"),
  31657. name: "Anatomy",
  31658. image: {
  31659. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31660. }
  31661. },
  31662. },
  31663. [
  31664. {
  31665. name: "Really Small",
  31666. height: math.unit(2, "inches")
  31667. },
  31668. {
  31669. name: "Micro",
  31670. height: math.unit(5.583, "inches")
  31671. },
  31672. {
  31673. name: "Normal",
  31674. height: math.unit(5 + 7/12, "feet"),
  31675. default: true
  31676. },
  31677. {
  31678. name: "Macro",
  31679. height: math.unit(67, "feet")
  31680. },
  31681. {
  31682. name: "Megamacro",
  31683. height: math.unit(134, "feet")
  31684. },
  31685. ]
  31686. ))
  31687. characterMakers.push(() => makeCharacter(
  31688. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31689. {
  31690. front: {
  31691. height: math.unit(9, "feet"),
  31692. weight: math.unit(120, "lb"),
  31693. name: "Front",
  31694. image: {
  31695. source: "./media/characters/sally/front.svg",
  31696. extra: 1506/1349,
  31697. bottom: 66/1572
  31698. }
  31699. },
  31700. },
  31701. [
  31702. {
  31703. name: "Normal",
  31704. height: math.unit(9, "feet"),
  31705. default: true
  31706. },
  31707. ]
  31708. ))
  31709. characterMakers.push(() => makeCharacter(
  31710. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31711. {
  31712. front: {
  31713. height: math.unit(8, "feet"),
  31714. weight: math.unit(900, "lb"),
  31715. name: "Front",
  31716. image: {
  31717. source: "./media/characters/owen/front.svg",
  31718. extra: 1761/1657,
  31719. bottom: 74/1835
  31720. }
  31721. },
  31722. side: {
  31723. height: math.unit(8, "feet"),
  31724. weight: math.unit(900, "lb"),
  31725. name: "Side",
  31726. image: {
  31727. source: "./media/characters/owen/side.svg",
  31728. extra: 1797/1734,
  31729. bottom: 30/1827
  31730. }
  31731. },
  31732. back: {
  31733. height: math.unit(8, "feet"),
  31734. weight: math.unit(900, "lb"),
  31735. name: "Back",
  31736. image: {
  31737. source: "./media/characters/owen/back.svg",
  31738. extra: 1796/1706,
  31739. bottom: 59/1855
  31740. }
  31741. },
  31742. maw: {
  31743. height: math.unit(1.76, "feet"),
  31744. name: "Maw",
  31745. image: {
  31746. source: "./media/characters/owen/maw.svg"
  31747. }
  31748. },
  31749. },
  31750. [
  31751. {
  31752. name: "Normal",
  31753. height: math.unit(8, "feet"),
  31754. default: true
  31755. },
  31756. ]
  31757. ))
  31758. characterMakers.push(() => makeCharacter(
  31759. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31760. {
  31761. front: {
  31762. height: math.unit(4, "feet"),
  31763. weight: math.unit(400, "lb"),
  31764. name: "Front",
  31765. image: {
  31766. source: "./media/characters/ryth/front.svg",
  31767. extra: 1920/1748,
  31768. bottom: 42/1962
  31769. }
  31770. },
  31771. back: {
  31772. height: math.unit(4, "feet"),
  31773. weight: math.unit(400, "lb"),
  31774. name: "Back",
  31775. image: {
  31776. source: "./media/characters/ryth/back.svg",
  31777. extra: 1897/1690,
  31778. bottom: 89/1986
  31779. }
  31780. },
  31781. mouth: {
  31782. height: math.unit(1.39, "feet"),
  31783. name: "Mouth",
  31784. image: {
  31785. source: "./media/characters/ryth/mouth.svg"
  31786. }
  31787. },
  31788. tailmaw: {
  31789. height: math.unit(1.23, "feet"),
  31790. name: "Tailmaw",
  31791. image: {
  31792. source: "./media/characters/ryth/tailmaw.svg"
  31793. }
  31794. },
  31795. goia: {
  31796. height: math.unit(12, "feet"),
  31797. weight: math.unit(10800, "lb"),
  31798. name: "Goia",
  31799. image: {
  31800. source: "./media/characters/ryth/goia.svg",
  31801. extra: 3450/3198,
  31802. bottom: 61/3511
  31803. }
  31804. },
  31805. },
  31806. [
  31807. {
  31808. name: "Normal",
  31809. height: math.unit(4, "feet"),
  31810. default: true
  31811. },
  31812. ]
  31813. ))
  31814. characterMakers.push(() => makeCharacter(
  31815. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31816. {
  31817. front: {
  31818. height: math.unit(7, "feet"),
  31819. weight: math.unit(180, "lb"),
  31820. name: "Front",
  31821. image: {
  31822. source: "./media/characters/necrolance/front.svg",
  31823. extra: 1062/947,
  31824. bottom: 41/1103
  31825. }
  31826. },
  31827. back: {
  31828. height: math.unit(7, "feet"),
  31829. weight: math.unit(180, "lb"),
  31830. name: "Back",
  31831. image: {
  31832. source: "./media/characters/necrolance/back.svg",
  31833. extra: 1045/984,
  31834. bottom: 14/1059
  31835. }
  31836. },
  31837. wing: {
  31838. height: math.unit(2.67, "feet"),
  31839. name: "Wing",
  31840. image: {
  31841. source: "./media/characters/necrolance/wing.svg"
  31842. }
  31843. },
  31844. },
  31845. [
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(7, "feet"),
  31849. default: true
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31855. {
  31856. front: {
  31857. height: math.unit(76, "meters"),
  31858. weight: math.unit(30000, "tons"),
  31859. name: "Front",
  31860. image: {
  31861. source: "./media/characters/tyler/front.svg",
  31862. extra: 1640/1640,
  31863. bottom: 114/1754
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Macro",
  31870. height: math.unit(76, "meters"),
  31871. default: true
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31877. {
  31878. front: {
  31879. height: math.unit(4 + 11/12, "feet"),
  31880. weight: math.unit(132, "lb"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/icey/front.svg",
  31884. extra: 2750/2550,
  31885. bottom: 33/2783
  31886. }
  31887. },
  31888. back: {
  31889. height: math.unit(4 + 11/12, "feet"),
  31890. weight: math.unit(132, "lb"),
  31891. name: "Back",
  31892. image: {
  31893. source: "./media/characters/icey/back.svg",
  31894. extra: 2624/2481,
  31895. bottom: 35/2659
  31896. }
  31897. },
  31898. },
  31899. [
  31900. {
  31901. name: "Normal",
  31902. height: math.unit(4 + 11/12, "feet"),
  31903. default: true
  31904. },
  31905. ]
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31909. {
  31910. front: {
  31911. height: math.unit(100, "feet"),
  31912. weight: math.unit(0, "lb"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/smile/front.svg",
  31916. extra: 2983/2912,
  31917. bottom: 162/3145
  31918. }
  31919. },
  31920. back: {
  31921. height: math.unit(100, "feet"),
  31922. weight: math.unit(0, "lb"),
  31923. name: "Back",
  31924. image: {
  31925. source: "./media/characters/smile/back.svg",
  31926. extra: 3143/3031,
  31927. bottom: 91/3234
  31928. }
  31929. },
  31930. head: {
  31931. height: math.unit(26.3, "feet"),
  31932. weight: math.unit(0, "lb"),
  31933. name: "Head",
  31934. image: {
  31935. source: "./media/characters/smile/head.svg"
  31936. }
  31937. },
  31938. collar: {
  31939. height: math.unit(5.3, "feet"),
  31940. weight: math.unit(0, "lb"),
  31941. name: "Collar",
  31942. image: {
  31943. source: "./media/characters/smile/collar.svg"
  31944. }
  31945. },
  31946. },
  31947. [
  31948. {
  31949. name: "Macro",
  31950. height: math.unit(100, "feet"),
  31951. default: true
  31952. },
  31953. ]
  31954. ))
  31955. characterMakers.push(() => makeCharacter(
  31956. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31957. {
  31958. dragon: {
  31959. height: math.unit(26, "feet"),
  31960. weight: math.unit(36, "tons"),
  31961. name: "Dragon",
  31962. image: {
  31963. source: "./media/characters/arimphae/dragon.svg",
  31964. extra: 1574/983,
  31965. bottom: 357/1931
  31966. }
  31967. },
  31968. drake: {
  31969. height: math.unit(9, "feet"),
  31970. weight: math.unit(1.5, "tons"),
  31971. name: "Drake",
  31972. image: {
  31973. source: "./media/characters/arimphae/drake.svg",
  31974. extra: 1120/925,
  31975. bottom: 435/1555
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Small",
  31982. height: math.unit(26*5/9, "feet")
  31983. },
  31984. {
  31985. name: "Normal",
  31986. height: math.unit(26, "feet"),
  31987. default: true
  31988. },
  31989. ]
  31990. ))
  31991. characterMakers.push(() => makeCharacter(
  31992. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31993. {
  31994. front: {
  31995. height: math.unit(8 + 9/12, "feet"),
  31996. name: "Front",
  31997. image: {
  31998. source: "./media/characters/xander/front.svg",
  31999. extra: 848/673,
  32000. bottom: 62/910
  32001. }
  32002. },
  32003. },
  32004. [
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(8 + 9/12, "feet"),
  32008. default: true
  32009. },
  32010. {
  32011. name: "Gaze Grabber",
  32012. height: math.unit(13 + 8/12, "feet")
  32013. },
  32014. {
  32015. name: "Jaw Dropper",
  32016. height: math.unit(27, "feet")
  32017. },
  32018. {
  32019. name: "Show Stopper",
  32020. height: math.unit(136, "feet")
  32021. },
  32022. {
  32023. name: "Superstar",
  32024. height: math.unit(1.9e6, "miles")
  32025. },
  32026. ]
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32030. {
  32031. side: {
  32032. height: math.unit(2100, "feet"),
  32033. name: "Side",
  32034. image: {
  32035. source: "./media/characters/osiris/side.svg",
  32036. extra: 1105/939,
  32037. bottom: 167/1272
  32038. }
  32039. },
  32040. },
  32041. [
  32042. {
  32043. name: "Macro",
  32044. height: math.unit(2100, "feet"),
  32045. default: true
  32046. },
  32047. ]
  32048. ))
  32049. characterMakers.push(() => makeCharacter(
  32050. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32051. {
  32052. front: {
  32053. height: math.unit(6 + 8/12, "feet"),
  32054. weight: math.unit(225, "lb"),
  32055. name: "Front",
  32056. image: {
  32057. source: "./media/characters/rhys-londe/front.svg",
  32058. extra: 2258/2141,
  32059. bottom: 188/2446
  32060. }
  32061. },
  32062. back: {
  32063. height: math.unit(6 + 8/12, "feet"),
  32064. weight: math.unit(225, "lb"),
  32065. name: "Back",
  32066. image: {
  32067. source: "./media/characters/rhys-londe/back.svg",
  32068. extra: 2237/2137,
  32069. bottom: 63/2300
  32070. }
  32071. },
  32072. frontNsfw: {
  32073. height: math.unit(6 + 8/12, "feet"),
  32074. weight: math.unit(225, "lb"),
  32075. name: "Front (NSFW)",
  32076. image: {
  32077. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32078. extra: 2258/2141,
  32079. bottom: 188/2446
  32080. }
  32081. },
  32082. backNsfw: {
  32083. height: math.unit(6 + 8/12, "feet"),
  32084. weight: math.unit(225, "lb"),
  32085. name: "Back (NSFW)",
  32086. image: {
  32087. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32088. extra: 2237/2137,
  32089. bottom: 63/2300
  32090. }
  32091. },
  32092. dick: {
  32093. height: math.unit(30, "inches"),
  32094. name: "Dick",
  32095. image: {
  32096. source: "./media/characters/rhys-londe/dick.svg"
  32097. }
  32098. },
  32099. maw: {
  32100. height: math.unit(1.6, "feet"),
  32101. name: "Maw",
  32102. image: {
  32103. source: "./media/characters/rhys-londe/maw.svg"
  32104. }
  32105. },
  32106. },
  32107. [
  32108. {
  32109. name: "Normal",
  32110. height: math.unit(6 + 8/12, "feet"),
  32111. default: true
  32112. },
  32113. ]
  32114. ))
  32115. characterMakers.push(() => makeCharacter(
  32116. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32117. {
  32118. front: {
  32119. height: math.unit(3 + 10/12, "feet"),
  32120. weight: math.unit(90, "lb"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/taivas-ensim/front.svg",
  32124. extra: 1327/1216,
  32125. bottom: 96/1423
  32126. }
  32127. },
  32128. back: {
  32129. height: math.unit(3 + 10/12, "feet"),
  32130. weight: math.unit(90, "lb"),
  32131. name: "Back",
  32132. image: {
  32133. source: "./media/characters/taivas-ensim/back.svg",
  32134. extra: 1355/1247,
  32135. bottom: 11/1366
  32136. }
  32137. },
  32138. frontNsfw: {
  32139. height: math.unit(3 + 10/12, "feet"),
  32140. weight: math.unit(90, "lb"),
  32141. name: "Front (NSFW)",
  32142. image: {
  32143. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32144. extra: 1327/1216,
  32145. bottom: 96/1423
  32146. }
  32147. },
  32148. backNsfw: {
  32149. height: math.unit(3 + 10/12, "feet"),
  32150. weight: math.unit(90, "lb"),
  32151. name: "Back (NSFW)",
  32152. image: {
  32153. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32154. extra: 1355/1247,
  32155. bottom: 11/1366
  32156. }
  32157. },
  32158. },
  32159. [
  32160. {
  32161. name: "Normal",
  32162. height: math.unit(3 + 10/12, "feet"),
  32163. default: true
  32164. },
  32165. ]
  32166. ))
  32167. characterMakers.push(() => makeCharacter(
  32168. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32169. {
  32170. front: {
  32171. height: math.unit(9 + 6/12, "feet"),
  32172. weight: math.unit(940, "lb"),
  32173. name: "Front",
  32174. image: {
  32175. source: "./media/characters/byliss/front.svg",
  32176. extra: 1327/1290,
  32177. bottom: 82/1409
  32178. }
  32179. },
  32180. back: {
  32181. height: math.unit(9 + 6/12, "feet"),
  32182. weight: math.unit(940, "lb"),
  32183. name: "Back",
  32184. image: {
  32185. source: "./media/characters/byliss/back.svg",
  32186. extra: 1376/1349,
  32187. bottom: 9/1385
  32188. }
  32189. },
  32190. frontNsfw: {
  32191. height: math.unit(9 + 6/12, "feet"),
  32192. weight: math.unit(940, "lb"),
  32193. name: "Front (NSFW)",
  32194. image: {
  32195. source: "./media/characters/byliss/front-nsfw.svg",
  32196. extra: 1327/1290,
  32197. bottom: 82/1409
  32198. }
  32199. },
  32200. backNsfw: {
  32201. height: math.unit(9 + 6/12, "feet"),
  32202. weight: math.unit(940, "lb"),
  32203. name: "Back (NSFW)",
  32204. image: {
  32205. source: "./media/characters/byliss/back-nsfw.svg",
  32206. extra: 1376/1349,
  32207. bottom: 9/1385
  32208. }
  32209. },
  32210. },
  32211. [
  32212. {
  32213. name: "Normal",
  32214. height: math.unit(9 + 6/12, "feet"),
  32215. default: true
  32216. },
  32217. ]
  32218. ))
  32219. characterMakers.push(() => makeCharacter(
  32220. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32221. {
  32222. front: {
  32223. height: math.unit(5 + 2/12, "feet"),
  32224. weight: math.unit(200, "lb"),
  32225. name: "Front",
  32226. image: {
  32227. source: "./media/characters/noraly/front.svg",
  32228. extra: 4985/4773,
  32229. bottom: 150/5135
  32230. }
  32231. },
  32232. full: {
  32233. height: math.unit(5 + 2/12, "feet"),
  32234. weight: math.unit(164, "lb"),
  32235. name: "Full",
  32236. image: {
  32237. source: "./media/characters/noraly/full.svg",
  32238. extra: 1114/1059,
  32239. bottom: 35/1149
  32240. }
  32241. },
  32242. fuller: {
  32243. height: math.unit(5 + 2/12, "feet"),
  32244. weight: math.unit(230, "lb"),
  32245. name: "Fuller",
  32246. image: {
  32247. source: "./media/characters/noraly/fuller.svg",
  32248. extra: 1114/1059,
  32249. bottom: 35/1149
  32250. }
  32251. },
  32252. fullest: {
  32253. height: math.unit(5 + 2/12, "feet"),
  32254. weight: math.unit(300, "lb"),
  32255. name: "Fullest",
  32256. image: {
  32257. source: "./media/characters/noraly/fullest.svg",
  32258. extra: 1114/1059,
  32259. bottom: 35/1149
  32260. }
  32261. },
  32262. },
  32263. [
  32264. {
  32265. name: "Normal",
  32266. height: math.unit(5 + 2/12, "feet"),
  32267. default: true
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32273. {
  32274. front: {
  32275. height: math.unit(5 + 2/12, "feet"),
  32276. weight: math.unit(210, "lb"),
  32277. name: "Front",
  32278. image: {
  32279. source: "./media/characters/pera/front.svg",
  32280. extra: 1560/1531,
  32281. bottom: 165/1725
  32282. }
  32283. },
  32284. back: {
  32285. height: math.unit(5 + 2/12, "feet"),
  32286. weight: math.unit(210, "lb"),
  32287. name: "Back",
  32288. image: {
  32289. source: "./media/characters/pera/back.svg",
  32290. extra: 1523/1493,
  32291. bottom: 152/1675
  32292. }
  32293. },
  32294. dick: {
  32295. height: math.unit(2.4, "feet"),
  32296. name: "Dick",
  32297. image: {
  32298. source: "./media/characters/pera/dick.svg"
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Normal",
  32305. height: math.unit(5 + 2/12, "feet"),
  32306. default: true
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32312. {
  32313. front: {
  32314. height: math.unit(12, "feet"),
  32315. weight: math.unit(3200, "lb"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/julian/front.svg",
  32319. extra: 2962/2701,
  32320. bottom: 184/3146
  32321. }
  32322. },
  32323. maw: {
  32324. height: math.unit(5.35, "feet"),
  32325. name: "Maw",
  32326. image: {
  32327. source: "./media/characters/julian/maw.svg"
  32328. }
  32329. },
  32330. paw: {
  32331. height: math.unit(3.07, "feet"),
  32332. name: "Paw",
  32333. image: {
  32334. source: "./media/characters/julian/paw.svg"
  32335. }
  32336. },
  32337. },
  32338. [
  32339. {
  32340. name: "Default",
  32341. height: math.unit(12, "feet"),
  32342. default: true
  32343. },
  32344. {
  32345. name: "Big",
  32346. height: math.unit(50, "feet")
  32347. },
  32348. {
  32349. name: "Really Big",
  32350. height: math.unit(1, "mile")
  32351. },
  32352. {
  32353. name: "Extremely Big",
  32354. height: math.unit(100, "miles")
  32355. },
  32356. {
  32357. name: "Planet Hugger",
  32358. height: math.unit(200, "megameters")
  32359. },
  32360. {
  32361. name: "Unreasonably Big",
  32362. height: math.unit(1e300, "meters")
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32368. {
  32369. solgooleo: {
  32370. height: math.unit(4, "meters"),
  32371. weight: math.unit(6000*1.5, "kg"),
  32372. volume: math.unit(6000, "liters"),
  32373. name: "Solgooleo",
  32374. image: {
  32375. source: "./media/characters/pi/solgooleo.svg",
  32376. extra: 388/331,
  32377. bottom: 29/417
  32378. }
  32379. },
  32380. },
  32381. [
  32382. {
  32383. name: "Normal",
  32384. height: math.unit(4, "meters"),
  32385. default: true
  32386. },
  32387. ]
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32391. {
  32392. front: {
  32393. height: math.unit(8 + 2/12, "feet"),
  32394. weight: math.unit(4, "tons"),
  32395. name: "Front",
  32396. image: {
  32397. source: "./media/characters/shaun/front.svg",
  32398. extra: 1550/1505,
  32399. bottom: 353/1903
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Lorg",
  32406. height: math.unit(8 + 2/12, "feet"),
  32407. default: true
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32413. {
  32414. front: {
  32415. height: math.unit(7, "feet"),
  32416. name: "Front",
  32417. image: {
  32418. source: "./media/characters/sini/front.svg",
  32419. extra: 726/678,
  32420. bottom: 35/761
  32421. }
  32422. },
  32423. back: {
  32424. height: math.unit(7, "feet"),
  32425. name: "Back",
  32426. image: {
  32427. source: "./media/characters/sini/back.svg",
  32428. extra: 743/701,
  32429. bottom: 12/755
  32430. }
  32431. },
  32432. mawAnthro: {
  32433. height: math.unit(2.14, "feet"),
  32434. name: "Maw (Anthro)",
  32435. image: {
  32436. source: "./media/characters/sini/maw-anthro.svg"
  32437. }
  32438. },
  32439. dick: {
  32440. height: math.unit(1.45, "feet"),
  32441. name: "Dick (Anthro)",
  32442. image: {
  32443. source: "./media/characters/sini/dick-anthro.svg"
  32444. }
  32445. },
  32446. feral: {
  32447. height: math.unit(16, "feet"),
  32448. name: "Feral",
  32449. image: {
  32450. source: "./media/characters/sini/feral.svg",
  32451. extra: 814/605,
  32452. bottom: 11/825
  32453. }
  32454. },
  32455. mawFeral: {
  32456. height: math.unit(5.66, "feet"),
  32457. name: "Maw-feral",
  32458. image: {
  32459. source: "./media/characters/sini/maw-feral.svg"
  32460. }
  32461. },
  32462. footFeral: {
  32463. height: math.unit(5.17, "feet"),
  32464. name: "Foot-feral",
  32465. image: {
  32466. source: "./media/characters/sini/foot-feral.svg"
  32467. }
  32468. },
  32469. },
  32470. [
  32471. {
  32472. name: "Normal",
  32473. height: math.unit(7, "feet"),
  32474. default: true
  32475. },
  32476. ]
  32477. ))
  32478. characterMakers.push(() => makeCharacter(
  32479. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32480. {
  32481. side: {
  32482. height: math.unit(13, "meters"),
  32483. weight: math.unit(9072, "kg"),
  32484. name: "Side",
  32485. image: {
  32486. source: "./media/characters/raylldo/side.svg",
  32487. extra: 403/344,
  32488. bottom: 42/445
  32489. }
  32490. },
  32491. leaping: {
  32492. height: math.unit(12.3, "meters"),
  32493. weight: math.unit(9072, "kg"),
  32494. name: "Leaping",
  32495. image: {
  32496. source: "./media/characters/raylldo/leaping.svg",
  32497. extra: 470/249,
  32498. bottom: 13/483
  32499. }
  32500. },
  32501. flying: {
  32502. height: math.unit(18, "meters"),
  32503. weight: math.unit(9072, "kg"),
  32504. name: "Flying",
  32505. image: {
  32506. source: "./media/characters/raylldo/flying.svg"
  32507. }
  32508. },
  32509. head: {
  32510. height: math.unit(5.85, "meters"),
  32511. name: "Head",
  32512. image: {
  32513. source: "./media/characters/raylldo/head.svg"
  32514. }
  32515. },
  32516. maw: {
  32517. height: math.unit(5.32, "meters"),
  32518. name: "Maw",
  32519. image: {
  32520. source: "./media/characters/raylldo/maw.svg"
  32521. }
  32522. },
  32523. eye: {
  32524. height: math.unit(0.54, "meters"),
  32525. name: "Eye",
  32526. image: {
  32527. source: "./media/characters/raylldo/eye.svg"
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Normal",
  32534. height: math.unit(13, "meters"),
  32535. default: true
  32536. },
  32537. ]
  32538. ))
  32539. characterMakers.push(() => makeCharacter(
  32540. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32541. {
  32542. anthroFront: {
  32543. height: math.unit(9, "feet"),
  32544. weight: math.unit(600, "lb"),
  32545. name: "Anthro (Front)",
  32546. image: {
  32547. source: "./media/characters/glint/anthro-front.svg",
  32548. extra: 1097/1018,
  32549. bottom: 28/1125
  32550. }
  32551. },
  32552. anthroBack: {
  32553. height: math.unit(9, "feet"),
  32554. weight: math.unit(600, "lb"),
  32555. name: "Anthro (Back)",
  32556. image: {
  32557. source: "./media/characters/glint/anthro-back.svg",
  32558. extra: 1154/997,
  32559. bottom: 36/1190
  32560. }
  32561. },
  32562. feral: {
  32563. height: math.unit(11, "feet"),
  32564. weight: math.unit(50000, "lb"),
  32565. name: "Feral",
  32566. image: {
  32567. source: "./media/characters/glint/feral.svg",
  32568. extra: 3035/1585,
  32569. bottom: 1169/4204
  32570. }
  32571. },
  32572. dickAnthro: {
  32573. height: math.unit(0.7, "meters"),
  32574. name: "Dick (Anthro)",
  32575. image: {
  32576. source: "./media/characters/glint/dick-anthro.svg"
  32577. }
  32578. },
  32579. dickFeral: {
  32580. height: math.unit(2.65, "meters"),
  32581. name: "Dick (Feral)",
  32582. image: {
  32583. source: "./media/characters/glint/dick-feral.svg"
  32584. }
  32585. },
  32586. slitHidden: {
  32587. height: math.unit(5.85, "meters"),
  32588. name: "Slit (Hidden)",
  32589. image: {
  32590. source: "./media/characters/glint/slit-hidden.svg"
  32591. }
  32592. },
  32593. slitErect: {
  32594. height: math.unit(5.85, "meters"),
  32595. name: "Slit (Erect)",
  32596. image: {
  32597. source: "./media/characters/glint/slit-erect.svg"
  32598. }
  32599. },
  32600. mawAnthro: {
  32601. height: math.unit(0.63, "meters"),
  32602. name: "Maw (Anthro)",
  32603. image: {
  32604. source: "./media/characters/glint/maw.svg"
  32605. }
  32606. },
  32607. mawFeral: {
  32608. height: math.unit(2.89, "meters"),
  32609. name: "Maw (Feral)",
  32610. image: {
  32611. source: "./media/characters/glint/maw.svg"
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Normal",
  32618. height: math.unit(9, "feet"),
  32619. default: true
  32620. },
  32621. ]
  32622. ))
  32623. characterMakers.push(() => makeCharacter(
  32624. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32625. {
  32626. side: {
  32627. height: math.unit(15, "feet"),
  32628. weight: math.unit(5000, "kg"),
  32629. name: "Side",
  32630. image: {
  32631. source: "./media/characters/kairne/side.svg",
  32632. extra: 979/811,
  32633. bottom: 13/992
  32634. }
  32635. },
  32636. front: {
  32637. height: math.unit(15, "feet"),
  32638. weight: math.unit(5000, "kg"),
  32639. name: "Front",
  32640. image: {
  32641. source: "./media/characters/kairne/front.svg",
  32642. extra: 908/814,
  32643. bottom: 26/934
  32644. }
  32645. },
  32646. sideNsfw: {
  32647. height: math.unit(15, "feet"),
  32648. weight: math.unit(5000, "kg"),
  32649. name: "Side (NSFW)",
  32650. image: {
  32651. source: "./media/characters/kairne/side-nsfw.svg",
  32652. extra: 979/811,
  32653. bottom: 13/992
  32654. }
  32655. },
  32656. frontNsfw: {
  32657. height: math.unit(15, "feet"),
  32658. weight: math.unit(5000, "kg"),
  32659. name: "Front (NSFW)",
  32660. image: {
  32661. source: "./media/characters/kairne/front-nsfw.svg",
  32662. extra: 908/814,
  32663. bottom: 26/934
  32664. }
  32665. },
  32666. dickCaged: {
  32667. height: math.unit(0.65, "meters"),
  32668. name: "Dick-caged",
  32669. image: {
  32670. source: "./media/characters/kairne/dick-caged.svg"
  32671. }
  32672. },
  32673. dick: {
  32674. height: math.unit(0.79, "meters"),
  32675. name: "Dick",
  32676. image: {
  32677. source: "./media/characters/kairne/dick.svg"
  32678. }
  32679. },
  32680. genitals: {
  32681. height: math.unit(1.29, "meters"),
  32682. name: "Genitals",
  32683. image: {
  32684. source: "./media/characters/kairne/genitals.svg"
  32685. }
  32686. },
  32687. maw: {
  32688. height: math.unit(1.73, "meters"),
  32689. name: "Maw",
  32690. image: {
  32691. source: "./media/characters/kairne/maw.svg"
  32692. }
  32693. },
  32694. },
  32695. [
  32696. {
  32697. name: "Normal",
  32698. height: math.unit(15, "feet"),
  32699. default: true
  32700. },
  32701. ]
  32702. ))
  32703. characterMakers.push(() => makeCharacter(
  32704. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32705. {
  32706. front: {
  32707. height: math.unit(5 + 8/12, "feet"),
  32708. weight: math.unit(139, "lb"),
  32709. name: "Front",
  32710. image: {
  32711. source: "./media/characters/biscuit-jackal/front.svg",
  32712. extra: 2106/1961,
  32713. bottom: 58/2164
  32714. }
  32715. },
  32716. back: {
  32717. height: math.unit(5 + 8/12, "feet"),
  32718. weight: math.unit(139, "lb"),
  32719. name: "Back",
  32720. image: {
  32721. source: "./media/characters/biscuit-jackal/back.svg",
  32722. extra: 2132/1976,
  32723. bottom: 57/2189
  32724. }
  32725. },
  32726. werejackal: {
  32727. height: math.unit(6 + 3/12, "feet"),
  32728. weight: math.unit(188, "lb"),
  32729. name: "Werejackal",
  32730. image: {
  32731. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32732. extra: 2373/2178,
  32733. bottom: 53/2426
  32734. }
  32735. },
  32736. },
  32737. [
  32738. {
  32739. name: "Normal",
  32740. height: math.unit(5 + 8/12, "feet"),
  32741. default: true
  32742. },
  32743. ]
  32744. ))
  32745. characterMakers.push(() => makeCharacter(
  32746. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32747. {
  32748. front: {
  32749. height: math.unit(140, "cm"),
  32750. weight: math.unit(45, "kg"),
  32751. name: "Front",
  32752. image: {
  32753. source: "./media/characters/tayra-white/front.svg",
  32754. extra: 2229/2192,
  32755. bottom: 75/2304
  32756. }
  32757. },
  32758. },
  32759. [
  32760. {
  32761. name: "Normal",
  32762. height: math.unit(140, "cm"),
  32763. default: true
  32764. },
  32765. ]
  32766. ))
  32767. characterMakers.push(() => makeCharacter(
  32768. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32769. {
  32770. front: {
  32771. height: math.unit(4 + 5/12, "feet"),
  32772. name: "Front",
  32773. image: {
  32774. source: "./media/characters/scoop/front.svg",
  32775. extra: 1257/1136,
  32776. bottom: 69/1326
  32777. }
  32778. },
  32779. back: {
  32780. height: math.unit(4 + 5/12, "feet"),
  32781. name: "Back",
  32782. image: {
  32783. source: "./media/characters/scoop/back.svg",
  32784. extra: 1321/1152,
  32785. bottom: 32/1353
  32786. }
  32787. },
  32788. maw: {
  32789. height: math.unit(0.68, "feet"),
  32790. name: "Maw",
  32791. image: {
  32792. source: "./media/characters/scoop/maw.svg"
  32793. }
  32794. },
  32795. },
  32796. [
  32797. {
  32798. name: "Really Small",
  32799. height: math.unit(1, "mm")
  32800. },
  32801. {
  32802. name: "Micro",
  32803. height: math.unit(1, "inch")
  32804. },
  32805. {
  32806. name: "Normal",
  32807. height: math.unit(4 + 5/12, "feet"),
  32808. default: true
  32809. },
  32810. {
  32811. name: "Macro",
  32812. height: math.unit(200, "feet")
  32813. },
  32814. {
  32815. name: "Megamacro",
  32816. height: math.unit(3240, "feet")
  32817. },
  32818. {
  32819. name: "Teramacro",
  32820. height: math.unit(2500, "miles")
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32826. {
  32827. front: {
  32828. height: math.unit(15 + 7/12, "feet"),
  32829. name: "Front",
  32830. image: {
  32831. source: "./media/characters/saphinara/front.svg",
  32832. extra: 604/546,
  32833. bottom: 19/623
  32834. }
  32835. },
  32836. side: {
  32837. height: math.unit(15 + 7/12, "feet"),
  32838. name: "Side",
  32839. image: {
  32840. source: "./media/characters/saphinara/side.svg",
  32841. extra: 605/547,
  32842. bottom: 6/611
  32843. }
  32844. },
  32845. back: {
  32846. height: math.unit(15 + 7/12, "feet"),
  32847. name: "Back",
  32848. image: {
  32849. source: "./media/characters/saphinara/back.svg",
  32850. extra: 591/531,
  32851. bottom: 13/604
  32852. }
  32853. },
  32854. frontTail: {
  32855. height: math.unit(15 + 7/12, "feet"),
  32856. name: "Front (Full Tail)",
  32857. image: {
  32858. source: "./media/characters/saphinara/front-tail.svg",
  32859. extra: 748/547,
  32860. bottom: 66/814
  32861. }
  32862. },
  32863. },
  32864. [
  32865. {
  32866. name: "Normal",
  32867. height: math.unit(15 + 7/12, "feet"),
  32868. default: true
  32869. },
  32870. {
  32871. name: "Angry",
  32872. height: math.unit(30 + 6/12, "feet")
  32873. },
  32874. {
  32875. name: "Enraged",
  32876. height: math.unit(102 + 1/12, "feet")
  32877. },
  32878. ]
  32879. ))
  32880. characterMakers.push(() => makeCharacter(
  32881. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32882. {
  32883. front: {
  32884. height: math.unit(6 + 8/12, "feet"),
  32885. weight: math.unit(300, "lb"),
  32886. name: "Front",
  32887. image: {
  32888. source: "./media/characters/jrain/front.svg",
  32889. extra: 3039/2865,
  32890. bottom: 399/3438
  32891. }
  32892. },
  32893. back: {
  32894. height: math.unit(6 + 8/12, "feet"),
  32895. weight: math.unit(300, "lb"),
  32896. name: "Back",
  32897. image: {
  32898. source: "./media/characters/jrain/back.svg",
  32899. extra: 3089/2938,
  32900. bottom: 172/3261
  32901. }
  32902. },
  32903. head: {
  32904. height: math.unit(2.14, "feet"),
  32905. name: "Head",
  32906. image: {
  32907. source: "./media/characters/jrain/head.svg"
  32908. }
  32909. },
  32910. maw: {
  32911. height: math.unit(1.77, "feet"),
  32912. name: "Maw",
  32913. image: {
  32914. source: "./media/characters/jrain/maw.svg"
  32915. }
  32916. },
  32917. leftHand: {
  32918. height: math.unit(1.1, "feet"),
  32919. name: "Left Hand",
  32920. image: {
  32921. source: "./media/characters/jrain/left-hand.svg"
  32922. }
  32923. },
  32924. rightHand: {
  32925. height: math.unit(1.1, "feet"),
  32926. name: "Right Hand",
  32927. image: {
  32928. source: "./media/characters/jrain/right-hand.svg"
  32929. }
  32930. },
  32931. eye: {
  32932. height: math.unit(0.35, "feet"),
  32933. name: "Eye",
  32934. image: {
  32935. source: "./media/characters/jrain/eye.svg"
  32936. }
  32937. },
  32938. },
  32939. [
  32940. {
  32941. name: "Normal",
  32942. height: math.unit(6 + 8/12, "feet"),
  32943. default: true
  32944. },
  32945. {
  32946. name: "Casually Large",
  32947. height: math.unit(25, "feet")
  32948. },
  32949. {
  32950. name: "Giant",
  32951. height: math.unit(100, "feet")
  32952. },
  32953. {
  32954. name: "Kaiju",
  32955. height: math.unit(300, "feet")
  32956. },
  32957. ]
  32958. ))
  32959. characterMakers.push(() => makeCharacter(
  32960. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32961. {
  32962. dragon: {
  32963. height: math.unit(5, "meters"),
  32964. name: "Dragon",
  32965. image: {
  32966. source: "./media/characters/sabrina/dragon.svg",
  32967. extra: 3670 / 2365,
  32968. bottom: 333 / 4003
  32969. }
  32970. },
  32971. gryphon: {
  32972. height: math.unit(3, "meters"),
  32973. name: "Gryphon",
  32974. image: {
  32975. source: "./media/characters/sabrina/gryphon.svg",
  32976. extra: 1576 / 945,
  32977. bottom: 71 / 1647
  32978. }
  32979. },
  32980. snake: {
  32981. height: math.unit(12, "meters"),
  32982. name: "Snake",
  32983. image: {
  32984. source: "./media/characters/sabrina/snake.svg",
  32985. extra: 1758 / 1320,
  32986. bottom: 186 / 1944
  32987. }
  32988. },
  32989. collar: {
  32990. height: math.unit(1.86, "meters"),
  32991. name: "Collar",
  32992. image: {
  32993. source: "./media/characters/sabrina/collar.svg"
  32994. }
  32995. },
  32996. eye: {
  32997. height: math.unit(0.53, "meters"),
  32998. name: "Eye",
  32999. image: {
  33000. source: "./media/characters/sabrina/eye.svg"
  33001. }
  33002. },
  33003. foot: {
  33004. height: math.unit(1.86, "meters"),
  33005. name: "Foot",
  33006. image: {
  33007. source: "./media/characters/sabrina/foot.svg"
  33008. }
  33009. },
  33010. hand: {
  33011. height: math.unit(1.32, "meters"),
  33012. name: "Hand",
  33013. image: {
  33014. source: "./media/characters/sabrina/hand.svg"
  33015. }
  33016. },
  33017. head: {
  33018. height: math.unit(2.44, "meters"),
  33019. name: "Head",
  33020. image: {
  33021. source: "./media/characters/sabrina/head.svg"
  33022. }
  33023. },
  33024. headAngry: {
  33025. height: math.unit(2.44, "meters"),
  33026. name: "Head (Angry))",
  33027. image: {
  33028. source: "./media/characters/sabrina/head-angry.svg"
  33029. }
  33030. },
  33031. maw: {
  33032. height: math.unit(1.65, "meters"),
  33033. name: "Maw",
  33034. image: {
  33035. source: "./media/characters/sabrina/maw.svg"
  33036. }
  33037. },
  33038. spikes: {
  33039. height: math.unit(1.69, "meters"),
  33040. name: "Spikes",
  33041. image: {
  33042. source: "./media/characters/sabrina/spikes.svg"
  33043. }
  33044. },
  33045. stomach: {
  33046. height: math.unit(1.15, "meters"),
  33047. name: "Stomach",
  33048. image: {
  33049. source: "./media/characters/sabrina/stomach.svg"
  33050. }
  33051. },
  33052. tongue: {
  33053. height: math.unit(1.27, "meters"),
  33054. name: "Tongue",
  33055. image: {
  33056. source: "./media/characters/sabrina/tongue.svg"
  33057. }
  33058. },
  33059. wingDorsal: {
  33060. height: math.unit(4.85, "meters"),
  33061. name: "Wing (Dorsal)",
  33062. image: {
  33063. source: "./media/characters/sabrina/wing-dorsal.svg"
  33064. }
  33065. },
  33066. wingVentral: {
  33067. height: math.unit(4.85, "meters"),
  33068. name: "Wing (Ventral)",
  33069. image: {
  33070. source: "./media/characters/sabrina/wing-ventral.svg"
  33071. }
  33072. },
  33073. },
  33074. [
  33075. {
  33076. name: "Normal",
  33077. height: math.unit(5, "meters"),
  33078. default: true
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33084. {
  33085. frontMaid: {
  33086. height: math.unit(5 + 5/12, "feet"),
  33087. weight: math.unit(130, "lb"),
  33088. name: "Front (Maid)",
  33089. image: {
  33090. source: "./media/characters/midnight-tales/front-maid.svg",
  33091. extra: 489/454,
  33092. bottom: 61/550
  33093. }
  33094. },
  33095. frontFormal: {
  33096. height: math.unit(5 + 5/12, "feet"),
  33097. weight: math.unit(130, "lb"),
  33098. name: "Front (Formal)",
  33099. image: {
  33100. source: "./media/characters/midnight-tales/front-formal.svg",
  33101. extra: 489/454,
  33102. bottom: 61/550
  33103. }
  33104. },
  33105. back: {
  33106. height: math.unit(5 + 5/12, "feet"),
  33107. weight: math.unit(130, "lb"),
  33108. name: "Back",
  33109. image: {
  33110. source: "./media/characters/midnight-tales/back.svg",
  33111. extra: 498/456,
  33112. bottom: 33/531
  33113. }
  33114. },
  33115. frontBeast: {
  33116. height: math.unit(40, "feet"),
  33117. weight: math.unit(64000, "lb"),
  33118. name: "Front (Beast)",
  33119. image: {
  33120. source: "./media/characters/midnight-tales/front-beast.svg",
  33121. extra: 927/860,
  33122. bottom: 53/980
  33123. }
  33124. },
  33125. backBeast: {
  33126. height: math.unit(40, "feet"),
  33127. weight: math.unit(64000, "lb"),
  33128. name: "Back (Beast)",
  33129. image: {
  33130. source: "./media/characters/midnight-tales/back-beast.svg",
  33131. extra: 929/855,
  33132. bottom: 16/945
  33133. }
  33134. },
  33135. footBeast: {
  33136. height: math.unit(6.7, "feet"),
  33137. name: "Foot (Beast)",
  33138. image: {
  33139. source: "./media/characters/midnight-tales/foot-beast.svg"
  33140. }
  33141. },
  33142. headBeast: {
  33143. height: math.unit(8, "feet"),
  33144. name: "Head (Beast)",
  33145. image: {
  33146. source: "./media/characters/midnight-tales/head-beast.svg"
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Normal",
  33153. height: math.unit(5 + 5 / 12, "feet"),
  33154. default: true
  33155. },
  33156. {
  33157. name: "Macro",
  33158. height: math.unit(25, "feet")
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33164. {
  33165. front: {
  33166. height: math.unit(5 + 10/12, "feet"),
  33167. name: "Front",
  33168. image: {
  33169. source: "./media/characters/argon/front.svg",
  33170. extra: 2009/1935,
  33171. bottom: 118/2127
  33172. }
  33173. },
  33174. back: {
  33175. height: math.unit(5 + 10/12, "feet"),
  33176. name: "Back",
  33177. image: {
  33178. source: "./media/characters/argon/back.svg",
  33179. extra: 2047/1992,
  33180. bottom: 20/2067
  33181. }
  33182. },
  33183. frontDressed: {
  33184. height: math.unit(5 + 10/12, "feet"),
  33185. name: "Front (Dressed)",
  33186. image: {
  33187. source: "./media/characters/argon/front-dressed.svg",
  33188. extra: 2009/1935,
  33189. bottom: 118/2127
  33190. }
  33191. },
  33192. },
  33193. [
  33194. {
  33195. name: "Normal",
  33196. height: math.unit(5 + 10/12, "feet"),
  33197. default: true
  33198. },
  33199. ]
  33200. ))
  33201. characterMakers.push(() => makeCharacter(
  33202. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33203. {
  33204. front: {
  33205. height: math.unit(8 + 6/12, "feet"),
  33206. weight: math.unit(1150, "lb"),
  33207. name: "Front",
  33208. image: {
  33209. source: "./media/characters/kichi/front.svg",
  33210. extra: 1267/1164,
  33211. bottom: 61/1328
  33212. }
  33213. },
  33214. back: {
  33215. height: math.unit(8 + 6/12, "feet"),
  33216. weight: math.unit(1150, "lb"),
  33217. name: "Back",
  33218. image: {
  33219. source: "./media/characters/kichi/back.svg",
  33220. extra: 1273/1166,
  33221. bottom: 33/1306
  33222. }
  33223. },
  33224. },
  33225. [
  33226. {
  33227. name: "Normal",
  33228. height: math.unit(8 + 6/12, "feet"),
  33229. default: true
  33230. },
  33231. ]
  33232. ))
  33233. characterMakers.push(() => makeCharacter(
  33234. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33235. {
  33236. front: {
  33237. height: math.unit(6, "feet"),
  33238. weight: math.unit(210, "lb"),
  33239. name: "Front",
  33240. image: {
  33241. source: "./media/characters/manetel-greyscale/front.svg",
  33242. extra: 350/312,
  33243. bottom: 8/358
  33244. }
  33245. },
  33246. },
  33247. [
  33248. {
  33249. name: "Micro",
  33250. height: math.unit(2, "inches")
  33251. },
  33252. {
  33253. name: "Normal",
  33254. height: math.unit(6, "feet"),
  33255. default: true
  33256. },
  33257. {
  33258. name: "Minimacro",
  33259. height: math.unit(17, "feet")
  33260. },
  33261. {
  33262. name: "Macro",
  33263. height: math.unit(117, "feet")
  33264. },
  33265. ]
  33266. ))
  33267. characterMakers.push(() => makeCharacter(
  33268. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33269. {
  33270. side: {
  33271. height: math.unit(5 + 1/12, "feet"),
  33272. weight: math.unit(418, "lb"),
  33273. name: "Side",
  33274. image: {
  33275. source: "./media/characters/softpurr/side.svg",
  33276. extra: 1993/1945,
  33277. bottom: 134/2127
  33278. }
  33279. },
  33280. front: {
  33281. height: math.unit(5 + 1/12, "feet"),
  33282. weight: math.unit(418, "lb"),
  33283. name: "Front",
  33284. image: {
  33285. source: "./media/characters/softpurr/front.svg",
  33286. extra: 1950/1856,
  33287. bottom: 174/2124
  33288. }
  33289. },
  33290. paw: {
  33291. height: math.unit(1, "feet"),
  33292. name: "Paw",
  33293. image: {
  33294. source: "./media/characters/softpurr/paw.svg"
  33295. }
  33296. },
  33297. },
  33298. [
  33299. {
  33300. name: "Normal",
  33301. height: math.unit(5 + 1/12, "feet"),
  33302. default: true
  33303. },
  33304. ]
  33305. ))
  33306. characterMakers.push(() => makeCharacter(
  33307. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33308. {
  33309. front: {
  33310. height: math.unit(260, "meters"),
  33311. name: "Front",
  33312. image: {
  33313. source: "./media/characters/anahita/front.svg",
  33314. extra: 665/635,
  33315. bottom: 89/754
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Macro",
  33322. height: math.unit(260, "meters"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33329. {
  33330. front: {
  33331. height: math.unit(4 + 10/12, "feet"),
  33332. weight: math.unit(160, "lb"),
  33333. name: "Front",
  33334. image: {
  33335. source: "./media/characters/chip-mouse/front.svg",
  33336. extra: 3528/3408,
  33337. bottom: 0/3528
  33338. }
  33339. },
  33340. frontNsfw: {
  33341. height: math.unit(4 + 10/12, "feet"),
  33342. weight: math.unit(160, "lb"),
  33343. name: "Front (NSFW)",
  33344. image: {
  33345. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33346. extra: 3528/3408,
  33347. bottom: 0/3528
  33348. }
  33349. },
  33350. },
  33351. [
  33352. {
  33353. name: "Normal",
  33354. height: math.unit(4 + 10/12, "feet"),
  33355. default: true
  33356. },
  33357. ]
  33358. ))
  33359. characterMakers.push(() => makeCharacter(
  33360. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33361. {
  33362. side: {
  33363. height: math.unit(10, "feet"),
  33364. weight: math.unit(14000, "lb"),
  33365. name: "Side",
  33366. image: {
  33367. source: "./media/characters/kremm/side.svg",
  33368. extra: 1390/1053,
  33369. bottom: 90/1480
  33370. }
  33371. },
  33372. gut: {
  33373. height: math.unit(5.8, "feet"),
  33374. name: "Gut",
  33375. image: {
  33376. source: "./media/characters/kremm/gut.svg"
  33377. }
  33378. },
  33379. ass: {
  33380. height: math.unit(6.1, "feet"),
  33381. name: "Ass",
  33382. image: {
  33383. source: "./media/characters/kremm/ass.svg"
  33384. }
  33385. },
  33386. jaws: {
  33387. height: math.unit(2.2, "feet"),
  33388. name: "Jaws",
  33389. image: {
  33390. source: "./media/characters/kremm/jaws.svg"
  33391. }
  33392. },
  33393. dick: {
  33394. height: math.unit(4.26, "feet"),
  33395. name: "Dick",
  33396. image: {
  33397. source: "./media/characters/kremm/dick.svg"
  33398. }
  33399. },
  33400. },
  33401. [
  33402. {
  33403. name: "Normal",
  33404. height: math.unit(10, "feet"),
  33405. default: true
  33406. },
  33407. ]
  33408. ))
  33409. characterMakers.push(() => makeCharacter(
  33410. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33411. {
  33412. front: {
  33413. height: math.unit(30, "stories"),
  33414. name: "Front",
  33415. image: {
  33416. source: "./media/characters/kai/front.svg",
  33417. extra: 1892/1718,
  33418. bottom: 162/2054
  33419. }
  33420. },
  33421. },
  33422. [
  33423. {
  33424. name: "Macro",
  33425. height: math.unit(30, "stories"),
  33426. default: true
  33427. },
  33428. ]
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33432. {
  33433. front: {
  33434. height: math.unit(6 + 4/12, "feet"),
  33435. weight: math.unit(145, "lb"),
  33436. name: "Front",
  33437. image: {
  33438. source: "./media/characters/sykes/front.svg",
  33439. extra: 1321 / 1187,
  33440. bottom: 66 / 1387
  33441. }
  33442. },
  33443. back: {
  33444. height: math.unit(6 + 4/12, "feet"),
  33445. weight: math.unit(145, "lb"),
  33446. name: "Back",
  33447. image: {
  33448. source: "./media/characters/sykes/back.svg",
  33449. extra: 1326/1181,
  33450. bottom: 31/1357
  33451. }
  33452. },
  33453. handBack: {
  33454. height: math.unit(0.9, "feet"),
  33455. name: "Hand (Back)",
  33456. image: {
  33457. source: "./media/characters/sykes/hand-back.svg"
  33458. }
  33459. },
  33460. handFront: {
  33461. height: math.unit(0.839, "feet"),
  33462. name: "Hand (Front)",
  33463. image: {
  33464. source: "./media/characters/sykes/hand-front.svg"
  33465. }
  33466. },
  33467. leftFoot: {
  33468. height: math.unit(1.2, "feet"),
  33469. name: "Foot (Left)",
  33470. image: {
  33471. source: "./media/characters/sykes/foot-left.svg"
  33472. }
  33473. },
  33474. rightFoot: {
  33475. height: math.unit(1.2, "feet"),
  33476. name: "Foot (Right)",
  33477. image: {
  33478. source: "./media/characters/sykes/foot-right.svg"
  33479. }
  33480. },
  33481. maw: {
  33482. height: math.unit(1.93, "feet"),
  33483. name: "Maw",
  33484. image: {
  33485. source: "./media/characters/sykes/maw.svg"
  33486. }
  33487. },
  33488. teeth: {
  33489. height: math.unit(0.51, "feet"),
  33490. name: "Teeth",
  33491. image: {
  33492. source: "./media/characters/sykes/teeth.svg"
  33493. }
  33494. },
  33495. tongue: {
  33496. height: math.unit(2.13, "feet"),
  33497. name: "Tongue",
  33498. image: {
  33499. source: "./media/characters/sykes/tongue.svg"
  33500. }
  33501. },
  33502. uvula: {
  33503. height: math.unit(0.16, "feet"),
  33504. name: "Uvula",
  33505. image: {
  33506. source: "./media/characters/sykes/uvula.svg"
  33507. }
  33508. },
  33509. collar: {
  33510. height: math.unit(0.287, "feet"),
  33511. name: "Collar",
  33512. image: {
  33513. source: "./media/characters/sykes/collar.svg"
  33514. }
  33515. },
  33516. },
  33517. [
  33518. {
  33519. name: "Shrunken",
  33520. height: math.unit(5, "inches")
  33521. },
  33522. {
  33523. name: "Normal",
  33524. height: math.unit(6 + 4 / 12, "feet"),
  33525. default: true
  33526. },
  33527. {
  33528. name: "Big",
  33529. height: math.unit(15, "feet")
  33530. },
  33531. ]
  33532. ))
  33533. characterMakers.push(() => makeCharacter(
  33534. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33535. {
  33536. front: {
  33537. height: math.unit(5 + 8/12, "feet"),
  33538. weight: math.unit(190, "lb"),
  33539. name: "Front",
  33540. image: {
  33541. source: "./media/characters/oven-otter/front.svg",
  33542. extra: 1809/1740,
  33543. bottom: 181/1990
  33544. }
  33545. },
  33546. back: {
  33547. height: math.unit(5 + 8/12, "feet"),
  33548. weight: math.unit(190, "lb"),
  33549. name: "Back",
  33550. image: {
  33551. source: "./media/characters/oven-otter/back.svg",
  33552. extra: 1709/1635,
  33553. bottom: 118/1827
  33554. }
  33555. },
  33556. hand: {
  33557. height: math.unit(1.07, "feet"),
  33558. name: "Hand",
  33559. image: {
  33560. source: "./media/characters/oven-otter/hand.svg"
  33561. }
  33562. },
  33563. beans: {
  33564. height: math.unit(1.74, "feet"),
  33565. name: "Beans",
  33566. image: {
  33567. source: "./media/characters/oven-otter/beans.svg"
  33568. }
  33569. },
  33570. },
  33571. [
  33572. {
  33573. name: "Micro",
  33574. height: math.unit(0.5, "inches")
  33575. },
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(5 + 8/12, "feet"),
  33579. default: true
  33580. },
  33581. {
  33582. name: "Macro",
  33583. height: math.unit(250, "feet")
  33584. },
  33585. {
  33586. name: "Really High",
  33587. height: math.unit(420, "feet")
  33588. },
  33589. ]
  33590. ))
  33591. characterMakers.push(() => makeCharacter(
  33592. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33593. {
  33594. front: {
  33595. height: math.unit(5, "meters"),
  33596. weight: math.unit(292000000000000, "kg"),
  33597. name: "Front",
  33598. image: {
  33599. source: "./media/characters/devourer/front.svg",
  33600. extra: 1800/1733,
  33601. bottom: 211/2011
  33602. }
  33603. },
  33604. maw: {
  33605. height: math.unit(1.1, "meter"),
  33606. name: "Maw",
  33607. image: {
  33608. source: "./media/characters/devourer/maw.svg"
  33609. }
  33610. },
  33611. },
  33612. [
  33613. {
  33614. name: "Small",
  33615. height: math.unit(3, "meters")
  33616. },
  33617. {
  33618. name: "Large",
  33619. height: math.unit(5, "meters"),
  33620. default: true
  33621. },
  33622. ]
  33623. ))
  33624. characterMakers.push(() => makeCharacter(
  33625. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33626. {
  33627. front: {
  33628. height: math.unit(6, "feet"),
  33629. weight: math.unit(400, "lb"),
  33630. name: "Front",
  33631. image: {
  33632. source: "./media/characters/ellarby/front.svg",
  33633. extra: 1909/1763,
  33634. bottom: 80/1989
  33635. }
  33636. },
  33637. back: {
  33638. height: math.unit(6, "feet"),
  33639. weight: math.unit(400, "lb"),
  33640. name: "Back",
  33641. image: {
  33642. source: "./media/characters/ellarby/back.svg",
  33643. extra: 1914/1784,
  33644. bottom: 172/2086
  33645. }
  33646. },
  33647. },
  33648. [
  33649. {
  33650. name: "Mischief",
  33651. height: math.unit(18, "inches")
  33652. },
  33653. {
  33654. name: "Trouble",
  33655. height: math.unit(12, "feet")
  33656. },
  33657. {
  33658. name: "Havoc",
  33659. height: math.unit(200, "feet"),
  33660. default: true
  33661. },
  33662. {
  33663. name: "Pandemonium",
  33664. height: math.unit(1, "mile")
  33665. },
  33666. {
  33667. name: "Catastrophe",
  33668. height: math.unit(100, "miles")
  33669. },
  33670. ]
  33671. ))
  33672. characterMakers.push(() => makeCharacter(
  33673. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33674. {
  33675. front: {
  33676. height: math.unit(4.7, "meters"),
  33677. weight: math.unit(6500, "kg"),
  33678. name: "Front",
  33679. image: {
  33680. source: "./media/characters/vex/front.svg",
  33681. extra: 1288/1140,
  33682. bottom: 100/1388
  33683. }
  33684. },
  33685. },
  33686. [
  33687. {
  33688. name: "Normal",
  33689. height: math.unit(4.7, "meters"),
  33690. default: true
  33691. },
  33692. ]
  33693. ))
  33694. characterMakers.push(() => makeCharacter(
  33695. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33696. {
  33697. normal: {
  33698. height: math.unit(6, "feet"),
  33699. weight: math.unit(350, "lb"),
  33700. name: "Normal",
  33701. image: {
  33702. source: "./media/characters/teshy/normal.svg",
  33703. extra: 1795/1735,
  33704. bottom: 16/1811
  33705. }
  33706. },
  33707. monsterFront: {
  33708. height: math.unit(12, "feet"),
  33709. weight: math.unit(4700, "lb"),
  33710. name: "Monster (Front)",
  33711. image: {
  33712. source: "./media/characters/teshy/monster-front.svg",
  33713. extra: 2042/2034,
  33714. bottom: 128/2170
  33715. }
  33716. },
  33717. monsterSide: {
  33718. height: math.unit(12, "feet"),
  33719. weight: math.unit(4700, "lb"),
  33720. name: "Monster (Side)",
  33721. image: {
  33722. source: "./media/characters/teshy/monster-side.svg",
  33723. extra: 2067/2056,
  33724. bottom: 70/2137
  33725. }
  33726. },
  33727. monsterBack: {
  33728. height: math.unit(12, "feet"),
  33729. weight: math.unit(4700, "lb"),
  33730. name: "Monster (Back)",
  33731. image: {
  33732. source: "./media/characters/teshy/monster-back.svg",
  33733. extra: 1921/1914,
  33734. bottom: 171/2092
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Normal",
  33741. height: math.unit(6, "feet"),
  33742. default: true
  33743. },
  33744. ]
  33745. ))
  33746. characterMakers.push(() => makeCharacter(
  33747. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33748. {
  33749. front: {
  33750. height: math.unit(6, "feet"),
  33751. name: "Front",
  33752. image: {
  33753. source: "./media/characters/ramey/front.svg",
  33754. extra: 790/787,
  33755. bottom: 27/817
  33756. }
  33757. },
  33758. },
  33759. [
  33760. {
  33761. name: "Normal",
  33762. height: math.unit(6, "feet"),
  33763. default: true
  33764. },
  33765. ]
  33766. ))
  33767. characterMakers.push(() => makeCharacter(
  33768. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33769. {
  33770. front: {
  33771. height: math.unit(5 + 5/12, "feet"),
  33772. weight: math.unit(120, "lb"),
  33773. name: "Front",
  33774. image: {
  33775. source: "./media/characters/phirae/front.svg",
  33776. extra: 2491/2436,
  33777. bottom: 38/2529
  33778. }
  33779. },
  33780. },
  33781. [
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(5 + 5/12, "feet"),
  33785. default: true
  33786. },
  33787. ]
  33788. ))
  33789. characterMakers.push(() => makeCharacter(
  33790. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33791. {
  33792. front: {
  33793. height: math.unit(6, "feet"),
  33794. weight: math.unit(150, "lb"),
  33795. name: "Front",
  33796. image: {
  33797. source: "./media/characters/stagglas/front.svg",
  33798. extra: 962/882,
  33799. bottom: 53/1015
  33800. }
  33801. },
  33802. },
  33803. [
  33804. {
  33805. name: "Normal",
  33806. height: math.unit(5 + 3/12, "feet"),
  33807. default: true
  33808. },
  33809. ]
  33810. ))
  33811. characterMakers.push(() => makeCharacter(
  33812. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33813. {
  33814. front: {
  33815. height: math.unit(5 + 4/12, "feet"),
  33816. weight: math.unit(145, "lb"),
  33817. name: "Front",
  33818. image: {
  33819. source: "./media/characters/starra/front.svg",
  33820. extra: 1790/1691,
  33821. bottom: 91/1881
  33822. }
  33823. },
  33824. },
  33825. [
  33826. {
  33827. name: "Normal",
  33828. height: math.unit(5 + 4/12, "feet"),
  33829. default: true
  33830. },
  33831. ]
  33832. ))
  33833. characterMakers.push(() => makeCharacter(
  33834. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33835. {
  33836. front: {
  33837. height: math.unit(2.2, "meters"),
  33838. name: "Front",
  33839. image: {
  33840. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33841. extra: 1194/1005,
  33842. bottom: 25/1219
  33843. }
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(2.2, "meters"),
  33850. default: true
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33856. {
  33857. side: {
  33858. height: math.unit(8 + 2/12, "feet"),
  33859. weight: math.unit(1240, "lb"),
  33860. name: "Side",
  33861. image: {
  33862. source: "./media/characters/mika-valentine/side.svg",
  33863. extra: 2670/2501,
  33864. bottom: 250/2920
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Normal",
  33871. height: math.unit(8 + 2/12, "feet"),
  33872. default: true
  33873. },
  33874. ]
  33875. ))
  33876. characterMakers.push(() => makeCharacter(
  33877. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33878. {
  33879. front: {
  33880. height: math.unit(7 + 2/12, "feet"),
  33881. name: "Front",
  33882. image: {
  33883. source: "./media/characters/xoltol/front.svg",
  33884. extra: 2212/2124,
  33885. bottom: 84/2296
  33886. }
  33887. },
  33888. side: {
  33889. height: math.unit(7 + 2/12, "feet"),
  33890. name: "Side",
  33891. image: {
  33892. source: "./media/characters/xoltol/side.svg",
  33893. extra: 2273/2197,
  33894. bottom: 26/2299
  33895. }
  33896. },
  33897. hand: {
  33898. height: math.unit(2.5, "feet"),
  33899. name: "Hand",
  33900. image: {
  33901. source: "./media/characters/xoltol/hand.svg"
  33902. }
  33903. },
  33904. },
  33905. [
  33906. {
  33907. name: "Small-ish",
  33908. height: math.unit(5 + 11/12, "feet")
  33909. },
  33910. {
  33911. name: "Normal",
  33912. height: math.unit(7 + 2/12, "feet")
  33913. },
  33914. {
  33915. name: "\"Macro\"",
  33916. height: math.unit(14 + 9/12, "feet"),
  33917. default: true
  33918. },
  33919. {
  33920. name: "Alternate Height",
  33921. height: math.unit(20, "feet")
  33922. },
  33923. {
  33924. name: "Actually Macro",
  33925. height: math.unit(100, "feet")
  33926. },
  33927. ]
  33928. ))
  33929. characterMakers.push(() => makeCharacter(
  33930. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33931. {
  33932. front: {
  33933. height: math.unit(5 + 2/12, "feet"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/kotetsu-redwood/front.svg",
  33937. extra: 1053/942,
  33938. bottom: 60/1113
  33939. }
  33940. },
  33941. },
  33942. [
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(5 + 2/12, "feet"),
  33946. default: true
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33952. {
  33953. front: {
  33954. height: math.unit(2.4, "meters"),
  33955. weight: math.unit(125, "kg"),
  33956. name: "Front",
  33957. image: {
  33958. source: "./media/characters/lilith/front.svg",
  33959. extra: 1590/1513,
  33960. bottom: 203/1793
  33961. }
  33962. },
  33963. },
  33964. [
  33965. {
  33966. name: "Humanoid",
  33967. height: math.unit(2.4, "meters")
  33968. },
  33969. {
  33970. name: "Normal",
  33971. height: math.unit(6, "meters"),
  33972. default: true
  33973. },
  33974. {
  33975. name: "Largest",
  33976. height: math.unit(55, "meters")
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33982. {
  33983. front: {
  33984. height: math.unit(8 + 4/12, "feet"),
  33985. weight: math.unit(535, "lb"),
  33986. name: "Front",
  33987. image: {
  33988. source: "./media/characters/beh'kah-bolger/front.svg",
  33989. extra: 1660/1603,
  33990. bottom: 37/1697
  33991. }
  33992. },
  33993. },
  33994. [
  33995. {
  33996. name: "Normal",
  33997. height: math.unit(8 + 4/12, "feet"),
  33998. default: true
  33999. },
  34000. {
  34001. name: "Kaiju",
  34002. height: math.unit(250, "feet")
  34003. },
  34004. {
  34005. name: "Still Growing",
  34006. height: math.unit(10, "miles")
  34007. },
  34008. {
  34009. name: "Continental",
  34010. height: math.unit(5000, "miles")
  34011. },
  34012. {
  34013. name: "Final Form",
  34014. height: math.unit(2500000, "miles")
  34015. },
  34016. ]
  34017. ))
  34018. characterMakers.push(() => makeCharacter(
  34019. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34020. {
  34021. front: {
  34022. height: math.unit(7 + 2/12, "feet"),
  34023. weight: math.unit(230, "kg"),
  34024. name: "Front",
  34025. image: {
  34026. source: "./media/characters/tatyana-milewska/front.svg",
  34027. extra: 1199/1150,
  34028. bottom: 86/1285
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Normal",
  34035. height: math.unit(7 + 2/12, "feet"),
  34036. default: true
  34037. },
  34038. {
  34039. name: "Big",
  34040. height: math.unit(12, "feet")
  34041. },
  34042. {
  34043. name: "Minimacro",
  34044. height: math.unit(20, "feet")
  34045. },
  34046. {
  34047. name: "Macro",
  34048. height: math.unit(120, "feet")
  34049. },
  34050. ]
  34051. ))
  34052. characterMakers.push(() => makeCharacter(
  34053. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34054. {
  34055. front: {
  34056. height: math.unit(7 + 8/12, "feet"),
  34057. weight: math.unit(152, "kg"),
  34058. name: "Front",
  34059. image: {
  34060. source: "./media/characters/helen-arri/front.svg",
  34061. extra: 440/423,
  34062. bottom: 14/454
  34063. }
  34064. },
  34065. back: {
  34066. height: math.unit(7 + 8/12, "feet"),
  34067. weight: math.unit(152, "kg"),
  34068. name: "Back",
  34069. image: {
  34070. source: "./media/characters/helen-arri/back.svg",
  34071. extra: 443/426,
  34072. bottom: 8/451
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Normal",
  34079. height: math.unit(7 + 8/12, "feet"),
  34080. default: true
  34081. },
  34082. {
  34083. name: "Big",
  34084. height: math.unit(14, "feet")
  34085. },
  34086. {
  34087. name: "Minimacro",
  34088. height: math.unit(24, "feet")
  34089. },
  34090. {
  34091. name: "Macro",
  34092. height: math.unit(140, "feet")
  34093. },
  34094. ]
  34095. ))
  34096. characterMakers.push(() => makeCharacter(
  34097. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34098. {
  34099. front: {
  34100. height: math.unit(6, "meters"),
  34101. name: "Front",
  34102. image: {
  34103. source: "./media/characters/ehanu-rehu/front.svg",
  34104. extra: 1800/1800,
  34105. bottom: 59/1859
  34106. }
  34107. },
  34108. },
  34109. [
  34110. {
  34111. name: "Normal",
  34112. height: math.unit(6, "meters"),
  34113. default: true
  34114. },
  34115. ]
  34116. ))
  34117. characterMakers.push(() => makeCharacter(
  34118. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34119. {
  34120. front: {
  34121. height: math.unit(7 + 3/12, "feet"),
  34122. name: "Front",
  34123. image: {
  34124. source: "./media/characters/renholder/front.svg",
  34125. extra: 3096/2960,
  34126. bottom: 250/3346
  34127. }
  34128. },
  34129. },
  34130. [
  34131. {
  34132. name: "Normal Bat",
  34133. height: math.unit(7 + 3/12, "feet"),
  34134. default: true
  34135. },
  34136. {
  34137. name: "Slightly Tall Bat",
  34138. height: math.unit(100, "feet")
  34139. },
  34140. {
  34141. name: "Big Bat",
  34142. height: math.unit(1000, "feet")
  34143. },
  34144. {
  34145. name: "City-Sized Bat",
  34146. height: math.unit(200000, "feet")
  34147. },
  34148. {
  34149. name: "Bigger Bat",
  34150. height: math.unit(10000, "miles")
  34151. },
  34152. {
  34153. name: "Solar Sized Bat",
  34154. height: math.unit(100, "AU")
  34155. },
  34156. {
  34157. name: "Galactic Bat",
  34158. height: math.unit(200000, "lightyears")
  34159. },
  34160. {
  34161. name: "Universally Known Bat",
  34162. height: math.unit(1, "universe")
  34163. },
  34164. ]
  34165. ))
  34166. characterMakers.push(() => makeCharacter(
  34167. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34168. {
  34169. front: {
  34170. height: math.unit(6 + 11/12, "feet"),
  34171. weight: math.unit(250, "lb"),
  34172. name: "Front",
  34173. image: {
  34174. source: "./media/characters/cookiecat/front.svg",
  34175. extra: 893/827,
  34176. bottom: 14/907
  34177. }
  34178. },
  34179. },
  34180. [
  34181. {
  34182. name: "Micro",
  34183. height: math.unit(3, "inches")
  34184. },
  34185. {
  34186. name: "Normal",
  34187. height: math.unit(6 + 11/12, "feet"),
  34188. default: true
  34189. },
  34190. {
  34191. name: "Macro",
  34192. height: math.unit(100, "feet")
  34193. },
  34194. {
  34195. name: "Macro+",
  34196. height: math.unit(404, "feet")
  34197. },
  34198. {
  34199. name: "Megamacro",
  34200. height: math.unit(165, "miles")
  34201. },
  34202. {
  34203. name: "Planetary",
  34204. height: math.unit(4600, "miles")
  34205. },
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34210. {
  34211. front: {
  34212. height: math.unit(10 + 3/12, "feet"),
  34213. weight: math.unit(1500, "lb"),
  34214. name: "Front",
  34215. image: {
  34216. source: "./media/characters/tux-kusanagi/front.svg",
  34217. extra: 944/840,
  34218. bottom: 39/983
  34219. }
  34220. },
  34221. back: {
  34222. height: math.unit(10 + 3/12, "feet"),
  34223. weight: math.unit(1500, "lb"),
  34224. name: "Back",
  34225. image: {
  34226. source: "./media/characters/tux-kusanagi/back.svg",
  34227. extra: 941/842,
  34228. bottom: 28/969
  34229. }
  34230. },
  34231. rump: {
  34232. height: math.unit(5.25, "feet"),
  34233. name: "Rump",
  34234. image: {
  34235. source: "./media/characters/tux-kusanagi/rump.svg"
  34236. }
  34237. },
  34238. beak: {
  34239. height: math.unit(1.54, "feet"),
  34240. name: "Beak",
  34241. image: {
  34242. source: "./media/characters/tux-kusanagi/beak.svg"
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Normal",
  34249. height: math.unit(10 + 3/12, "feet"),
  34250. default: true
  34251. },
  34252. ]
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34256. {
  34257. front: {
  34258. height: math.unit(58, "feet"),
  34259. weight: math.unit(200, "tons"),
  34260. name: "Front",
  34261. image: {
  34262. source: "./media/characters/uzarmazari/front.svg",
  34263. extra: 1575/1455,
  34264. bottom: 152/1727
  34265. }
  34266. },
  34267. back: {
  34268. height: math.unit(58, "feet"),
  34269. weight: math.unit(200, "tons"),
  34270. name: "Back",
  34271. image: {
  34272. source: "./media/characters/uzarmazari/back.svg",
  34273. extra: 1585/1510,
  34274. bottom: 157/1742
  34275. }
  34276. },
  34277. head: {
  34278. height: math.unit(26, "feet"),
  34279. name: "Head",
  34280. image: {
  34281. source: "./media/characters/uzarmazari/head.svg"
  34282. }
  34283. },
  34284. },
  34285. [
  34286. {
  34287. name: "Normal",
  34288. height: math.unit(58, "feet"),
  34289. default: true
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34295. {
  34296. side: {
  34297. height: math.unit(15, "feet"),
  34298. name: "Side",
  34299. image: {
  34300. source: "./media/characters/akitu/side.svg",
  34301. extra: 1421/1321,
  34302. bottom: 157/1578
  34303. }
  34304. },
  34305. front: {
  34306. height: math.unit(15, "feet"),
  34307. name: "Front",
  34308. image: {
  34309. source: "./media/characters/akitu/front.svg",
  34310. extra: 1435/1326,
  34311. bottom: 232/1667
  34312. }
  34313. },
  34314. },
  34315. [
  34316. {
  34317. name: "Normal",
  34318. height: math.unit(15, "feet"),
  34319. default: true
  34320. },
  34321. ]
  34322. ))
  34323. characterMakers.push(() => makeCharacter(
  34324. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34325. {
  34326. front: {
  34327. height: math.unit(10 + 8/12, "feet"),
  34328. name: "Front",
  34329. image: {
  34330. source: "./media/characters/azalie-croixland/front.svg",
  34331. extra: 1972/1856,
  34332. bottom: 31/2003
  34333. }
  34334. },
  34335. },
  34336. [
  34337. {
  34338. name: "Original Height",
  34339. height: math.unit(5 + 4/12, "feet")
  34340. },
  34341. {
  34342. name: "Normal Height",
  34343. height: math.unit(10 + 8/12, "feet"),
  34344. default: true
  34345. },
  34346. ]
  34347. ))
  34348. characterMakers.push(() => makeCharacter(
  34349. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34350. {
  34351. side: {
  34352. height: math.unit(7 + 1/12, "feet"),
  34353. weight: math.unit(245, "lb"),
  34354. name: "Side",
  34355. image: {
  34356. source: "./media/characters/kavus-kazian/side.svg",
  34357. extra: 349/342,
  34358. bottom: 15/364
  34359. }
  34360. },
  34361. },
  34362. [
  34363. {
  34364. name: "Normal",
  34365. height: math.unit(7 + 1/12, "feet"),
  34366. default: true
  34367. },
  34368. ]
  34369. ))
  34370. characterMakers.push(() => makeCharacter(
  34371. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34372. {
  34373. normal: {
  34374. height: math.unit(5 + 11/12, "feet"),
  34375. name: "Normal",
  34376. image: {
  34377. source: "./media/characters/moonlight-rose/normal.svg",
  34378. extra: 1979/1835,
  34379. bottom: 14/1993
  34380. }
  34381. },
  34382. demon: {
  34383. height: math.unit(5, "km"),
  34384. name: "Demon",
  34385. image: {
  34386. source: "./media/characters/moonlight-rose/demon.svg",
  34387. extra: 986/916,
  34388. bottom: 28/1014
  34389. }
  34390. },
  34391. },
  34392. [
  34393. {
  34394. name: "\"Natural\" height",
  34395. height: math.unit(5 + 11/12, "feet")
  34396. },
  34397. {
  34398. name: "Comfortable Size",
  34399. height: math.unit(40, "meters")
  34400. },
  34401. {
  34402. name: "Common Size",
  34403. height: math.unit(50, "km"),
  34404. default: true
  34405. },
  34406. {
  34407. name: "Demonic",
  34408. height: math.unit(1.24415e+21, "meters")
  34409. },
  34410. ]
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34414. {
  34415. front: {
  34416. height: math.unit(16, "feet"),
  34417. weight: math.unit(610, "kg"),
  34418. name: "Front",
  34419. image: {
  34420. source: "./media/characters/huckle/front.svg",
  34421. extra: 1731/1625,
  34422. bottom: 33/1764
  34423. }
  34424. },
  34425. back: {
  34426. height: math.unit(16, "feet"),
  34427. weight: math.unit(610, "kg"),
  34428. name: "Back",
  34429. image: {
  34430. source: "./media/characters/huckle/back.svg",
  34431. extra: 1738/1651,
  34432. bottom: 37/1775
  34433. }
  34434. },
  34435. laughing: {
  34436. height: math.unit(3.75, "feet"),
  34437. name: "Laughing",
  34438. image: {
  34439. source: "./media/characters/huckle/laughing.svg"
  34440. }
  34441. },
  34442. angry: {
  34443. height: math.unit(4.15, "feet"),
  34444. name: "Angry",
  34445. image: {
  34446. source: "./media/characters/huckle/angry.svg"
  34447. }
  34448. },
  34449. },
  34450. [
  34451. {
  34452. name: "Normal",
  34453. height: math.unit(16, "feet"),
  34454. default: true
  34455. },
  34456. {
  34457. name: "Mini Macro",
  34458. height: math.unit(463, "feet")
  34459. },
  34460. {
  34461. name: "Macro",
  34462. height: math.unit(1680, "meters")
  34463. },
  34464. {
  34465. name: "Mega Macro",
  34466. height: math.unit(175, "km")
  34467. },
  34468. {
  34469. name: "Terra Macro",
  34470. height: math.unit(32, "gigameters")
  34471. },
  34472. {
  34473. name: "Multiverse+",
  34474. height: math.unit(2.56e23, "yottameters")
  34475. },
  34476. ]
  34477. ))
  34478. characterMakers.push(() => makeCharacter(
  34479. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34480. {
  34481. front: {
  34482. height: math.unit(6 + 9/12, "feet"),
  34483. weight: math.unit(280, "lb"),
  34484. name: "Front",
  34485. image: {
  34486. source: "./media/characters/candy/front.svg",
  34487. extra: 234/217,
  34488. bottom: 11/245
  34489. }
  34490. },
  34491. },
  34492. [
  34493. {
  34494. name: "Really Small",
  34495. height: math.unit(0.1, "nm")
  34496. },
  34497. {
  34498. name: "Micro",
  34499. height: math.unit(2, "inches")
  34500. },
  34501. {
  34502. name: "Normal",
  34503. height: math.unit(6 + 9/12, "feet"),
  34504. default: true
  34505. },
  34506. {
  34507. name: "Small Macro",
  34508. height: math.unit(69, "feet")
  34509. },
  34510. {
  34511. name: "Macro",
  34512. height: math.unit(160, "feet")
  34513. },
  34514. {
  34515. name: "Megamacro",
  34516. height: math.unit(22000, "miles")
  34517. },
  34518. {
  34519. name: "Gigamacro",
  34520. height: math.unit(50000, "miles")
  34521. },
  34522. ]
  34523. ))
  34524. characterMakers.push(() => makeCharacter(
  34525. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34526. {
  34527. front: {
  34528. height: math.unit(4, "feet"),
  34529. weight: math.unit(90, "lb"),
  34530. name: "Front",
  34531. image: {
  34532. source: "./media/characters/joey-mcdonald/front.svg",
  34533. extra: 1059/852,
  34534. bottom: 33/1092
  34535. }
  34536. },
  34537. back: {
  34538. height: math.unit(4, "feet"),
  34539. weight: math.unit(90, "lb"),
  34540. name: "Back",
  34541. image: {
  34542. source: "./media/characters/joey-mcdonald/back.svg",
  34543. extra: 1077/879,
  34544. bottom: 5/1082
  34545. }
  34546. },
  34547. },
  34548. [
  34549. {
  34550. name: "Normal",
  34551. height: math.unit(4, "feet"),
  34552. default: true
  34553. },
  34554. ]
  34555. ))
  34556. characterMakers.push(() => makeCharacter(
  34557. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34558. {
  34559. front: {
  34560. height: math.unit(12 + 6/12, "feet"),
  34561. name: "Front",
  34562. image: {
  34563. source: "./media/characters/kass-lockheed/front.svg",
  34564. extra: 354/343,
  34565. bottom: 9/363
  34566. }
  34567. },
  34568. back: {
  34569. height: math.unit(12 + 6/12, "feet"),
  34570. name: "Back",
  34571. image: {
  34572. source: "./media/characters/kass-lockheed/back.svg",
  34573. extra: 364/352,
  34574. bottom: 3/367
  34575. }
  34576. },
  34577. dick: {
  34578. height: math.unit(3.12, "feet"),
  34579. name: "Dick",
  34580. image: {
  34581. source: "./media/characters/kass-lockheed/dick.svg"
  34582. }
  34583. },
  34584. head: {
  34585. height: math.unit(2.6, "feet"),
  34586. name: "Head",
  34587. image: {
  34588. source: "./media/characters/kass-lockheed/head.svg"
  34589. }
  34590. },
  34591. bleh: {
  34592. height: math.unit(2.85, "feet"),
  34593. name: "Bleh",
  34594. image: {
  34595. source: "./media/characters/kass-lockheed/bleh.svg"
  34596. }
  34597. },
  34598. smug: {
  34599. height: math.unit(2.85, "feet"),
  34600. name: "Smug",
  34601. image: {
  34602. source: "./media/characters/kass-lockheed/smug.svg"
  34603. }
  34604. },
  34605. },
  34606. [
  34607. {
  34608. name: "Normal",
  34609. height: math.unit(12 + 6/12, "feet"),
  34610. default: true
  34611. },
  34612. ]
  34613. ))
  34614. characterMakers.push(() => makeCharacter(
  34615. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34616. {
  34617. front: {
  34618. height: math.unit(6 + 2/12, "feet"),
  34619. name: "Front",
  34620. image: {
  34621. source: "./media/characters/taylor/front.svg",
  34622. extra: 639/495,
  34623. bottom: 12/651
  34624. }
  34625. },
  34626. },
  34627. [
  34628. {
  34629. name: "Normal",
  34630. height: math.unit(6 + 2/12, "feet"),
  34631. default: true
  34632. },
  34633. {
  34634. name: "Big",
  34635. height: math.unit(15, "feet")
  34636. },
  34637. {
  34638. name: "Lorg",
  34639. height: math.unit(80, "feet")
  34640. },
  34641. {
  34642. name: "Too Lorg",
  34643. height: math.unit(120, "feet")
  34644. },
  34645. ]
  34646. ))
  34647. characterMakers.push(() => makeCharacter(
  34648. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34649. {
  34650. front: {
  34651. height: math.unit(15, "feet"),
  34652. name: "Front",
  34653. image: {
  34654. source: "./media/characters/kaizer/front.svg",
  34655. extra: 1612/1436,
  34656. bottom: 43/1655
  34657. }
  34658. },
  34659. },
  34660. [
  34661. {
  34662. name: "Normal",
  34663. height: math.unit(15, "feet"),
  34664. default: true
  34665. },
  34666. ]
  34667. ))
  34668. characterMakers.push(() => makeCharacter(
  34669. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34670. {
  34671. front: {
  34672. height: math.unit(2, "feet"),
  34673. weight: math.unit(30, "lb"),
  34674. name: "Front",
  34675. image: {
  34676. source: "./media/characters/sandy/front.svg",
  34677. extra: 1439/1307,
  34678. bottom: 194/1633
  34679. }
  34680. },
  34681. },
  34682. [
  34683. {
  34684. name: "Normal",
  34685. height: math.unit(2, "feet"),
  34686. default: true
  34687. },
  34688. ]
  34689. ))
  34690. characterMakers.push(() => makeCharacter(
  34691. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34692. {
  34693. front: {
  34694. height: math.unit(3, "feet"),
  34695. name: "Front",
  34696. image: {
  34697. source: "./media/characters/mellvi/front.svg",
  34698. extra: 1831/1630,
  34699. bottom: 58/1889
  34700. }
  34701. },
  34702. },
  34703. [
  34704. {
  34705. name: "Normal",
  34706. height: math.unit(3, "feet"),
  34707. default: true
  34708. },
  34709. ]
  34710. ))
  34711. characterMakers.push(() => makeCharacter(
  34712. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34713. {
  34714. front: {
  34715. height: math.unit(5 + 11/12, "feet"),
  34716. weight: math.unit(200, "lb"),
  34717. name: "Front",
  34718. image: {
  34719. source: "./media/characters/shirou/front.svg",
  34720. extra: 2491/2383,
  34721. bottom: 189/2680
  34722. }
  34723. },
  34724. back: {
  34725. height: math.unit(5 + 11/12, "feet"),
  34726. weight: math.unit(200, "lb"),
  34727. name: "Back",
  34728. image: {
  34729. source: "./media/characters/shirou/back.svg",
  34730. extra: 2554/2450,
  34731. bottom: 76/2630
  34732. }
  34733. },
  34734. },
  34735. [
  34736. {
  34737. name: "Normal",
  34738. height: math.unit(5 + 11/12, "feet"),
  34739. default: true
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34745. {
  34746. front: {
  34747. height: math.unit(6 + 3/12, "feet"),
  34748. weight: math.unit(177, "lb"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/noryu/front.svg",
  34752. extra: 973/885,
  34753. bottom: 10/983
  34754. }
  34755. },
  34756. },
  34757. [
  34758. {
  34759. name: "Normal",
  34760. height: math.unit(6 + 3/12, "feet"),
  34761. default: true
  34762. },
  34763. ]
  34764. ))
  34765. characterMakers.push(() => makeCharacter(
  34766. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34767. {
  34768. front: {
  34769. height: math.unit(5 + 6/12, "feet"),
  34770. weight: math.unit(170, "lb"),
  34771. name: "Front",
  34772. image: {
  34773. source: "./media/characters/mevolas-rubenido/front.svg",
  34774. extra: 2109/1901,
  34775. bottom: 96/2205
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Normal",
  34782. height: math.unit(5 + 6/12, "feet"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34789. {
  34790. front: {
  34791. height: math.unit(100, "feet"),
  34792. name: "Front",
  34793. image: {
  34794. source: "./media/characters/dee/front.svg",
  34795. extra: 2153/2036,
  34796. bottom: 59/2212
  34797. }
  34798. },
  34799. back: {
  34800. height: math.unit(100, "feet"),
  34801. name: "Back",
  34802. image: {
  34803. source: "./media/characters/dee/back.svg",
  34804. extra: 2183/2058,
  34805. bottom: 75/2258
  34806. }
  34807. },
  34808. foot: {
  34809. height: math.unit(19.43, "feet"),
  34810. name: "Foot",
  34811. image: {
  34812. source: "./media/characters/dee/foot.svg"
  34813. }
  34814. },
  34815. hoof: {
  34816. height: math.unit(20.6, "feet"),
  34817. name: "Hoof",
  34818. image: {
  34819. source: "./media/characters/dee/hoof.svg"
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Macro",
  34826. height: math.unit(100, "feet"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34833. {
  34834. front: {
  34835. height: math.unit(5 + 6/12, "feet"),
  34836. name: "Front",
  34837. image: {
  34838. source: "./media/characters/teh/front.svg",
  34839. extra: 1002/847,
  34840. bottom: 62/1064
  34841. }
  34842. },
  34843. },
  34844. [
  34845. {
  34846. name: "Normal",
  34847. height: math.unit(5 + 6/12, "feet"),
  34848. default: true
  34849. },
  34850. ]
  34851. ))
  34852. characterMakers.push(() => makeCharacter(
  34853. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34854. {
  34855. side: {
  34856. height: math.unit(6 + 1/12, "feet"),
  34857. weight: math.unit(204, "lb"),
  34858. name: "Side",
  34859. image: {
  34860. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34861. extra: 974/775,
  34862. bottom: 169/1143
  34863. }
  34864. },
  34865. sitting: {
  34866. height: math.unit(6 + 2/12, "feet"),
  34867. weight: math.unit(204, "lb"),
  34868. name: "Sitting",
  34869. image: {
  34870. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34871. extra: 1175/964,
  34872. bottom: 378/1553
  34873. }
  34874. },
  34875. },
  34876. [
  34877. {
  34878. name: "Normal",
  34879. height: math.unit(6 + 1/12, "feet"),
  34880. default: true
  34881. },
  34882. ]
  34883. ))
  34884. characterMakers.push(() => makeCharacter(
  34885. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34886. {
  34887. front: {
  34888. height: math.unit(6, "inches"),
  34889. name: "Front",
  34890. image: {
  34891. source: "./media/characters/tululi/front.svg",
  34892. extra: 1997/1876,
  34893. bottom: 20/2017
  34894. }
  34895. },
  34896. },
  34897. [
  34898. {
  34899. name: "Normal",
  34900. height: math.unit(6, "inches"),
  34901. default: true
  34902. },
  34903. ]
  34904. ))
  34905. characterMakers.push(() => makeCharacter(
  34906. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34907. {
  34908. front: {
  34909. height: math.unit(4 + 1/12, "feet"),
  34910. name: "Front",
  34911. image: {
  34912. source: "./media/characters/star/front.svg",
  34913. extra: 1493/1189,
  34914. bottom: 48/1541
  34915. }
  34916. },
  34917. },
  34918. [
  34919. {
  34920. name: "Normal",
  34921. height: math.unit(4 + 1/12, "feet"),
  34922. default: true
  34923. },
  34924. ]
  34925. ))
  34926. characterMakers.push(() => makeCharacter(
  34927. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34928. {
  34929. front: {
  34930. height: math.unit(6 + 3/12, "feet"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/comet/front.svg",
  34934. extra: 1681/1462,
  34935. bottom: 26/1707
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Normal",
  34942. height: math.unit(6 + 3/12, "feet"),
  34943. default: true
  34944. },
  34945. ]
  34946. ))
  34947. characterMakers.push(() => makeCharacter(
  34948. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34949. {
  34950. front: {
  34951. height: math.unit(950, "feet"),
  34952. name: "Front",
  34953. image: {
  34954. source: "./media/characters/vortex/front.svg",
  34955. extra: 1497/1434,
  34956. bottom: 56/1553
  34957. }
  34958. },
  34959. maw: {
  34960. height: math.unit(285, "feet"),
  34961. name: "Maw",
  34962. image: {
  34963. source: "./media/characters/vortex/maw.svg"
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Macro",
  34970. height: math.unit(950, "feet"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(600, "feet"),
  34980. weight: math.unit(0.02, "grams"),
  34981. name: "Front",
  34982. image: {
  34983. source: "./media/characters/doodle/front.svg",
  34984. extra: 1578/1413,
  34985. bottom: 37/1615
  34986. }
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Macro",
  34992. height: math.unit(600, "feet"),
  34993. default: true
  34994. },
  34995. ]
  34996. ))
  34997. characterMakers.push(() => makeCharacter(
  34998. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34999. {
  35000. front: {
  35001. height: math.unit(6 + 6/12, "feet"),
  35002. name: "Front",
  35003. image: {
  35004. source: "./media/characters/jai/front.svg",
  35005. extra: 1645/1534,
  35006. bottom: 115/1760
  35007. }
  35008. },
  35009. },
  35010. [
  35011. {
  35012. name: "Normal",
  35013. height: math.unit(6 + 6/12, "feet"),
  35014. default: true
  35015. },
  35016. ]
  35017. ))
  35018. characterMakers.push(() => makeCharacter(
  35019. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35020. {
  35021. front: {
  35022. height: math.unit(6 + 8/12, "feet"),
  35023. name: "Front",
  35024. image: {
  35025. source: "./media/characters/pixel/front.svg",
  35026. extra: 1900/1735,
  35027. bottom: 63/1963
  35028. }
  35029. },
  35030. },
  35031. [
  35032. {
  35033. name: "Normal",
  35034. height: math.unit(6 + 8/12, "feet"),
  35035. default: true
  35036. },
  35037. ]
  35038. ))
  35039. characterMakers.push(() => makeCharacter(
  35040. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35041. {
  35042. front: {
  35043. height: math.unit(4 + 11/12, "feet"),
  35044. weight: math.unit(111, "lb"),
  35045. name: "Front",
  35046. image: {
  35047. source: "./media/characters/rhett/front.svg",
  35048. extra: 1682/1586,
  35049. bottom: 92/1774
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Mini",
  35056. height: math.unit(1 + 1/12, "feet")
  35057. },
  35058. {
  35059. name: "Normal",
  35060. height: math.unit(4 + 11/12, "feet"),
  35061. default: true
  35062. },
  35063. ]
  35064. ))
  35065. characterMakers.push(() => makeCharacter(
  35066. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35067. {
  35068. front: {
  35069. height: math.unit(3 + 3/12, "feet"),
  35070. name: "Front",
  35071. image: {
  35072. source: "./media/characters/penny/front.svg",
  35073. extra: 1406/1311,
  35074. bottom: 26/1432
  35075. }
  35076. },
  35077. },
  35078. [
  35079. {
  35080. name: "Normal",
  35081. height: math.unit(3 + 3/12, "feet"),
  35082. default: true
  35083. },
  35084. ]
  35085. ))
  35086. characterMakers.push(() => makeCharacter(
  35087. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35088. {
  35089. front: {
  35090. height: math.unit(4 + 11/12, "feet"),
  35091. name: "Front",
  35092. image: {
  35093. source: "./media/characters/monty/front.svg",
  35094. extra: 1479/1209,
  35095. bottom: 0/1479
  35096. }
  35097. },
  35098. },
  35099. [
  35100. {
  35101. name: "Normal",
  35102. height: math.unit(4 + 11/12, "feet"),
  35103. default: true
  35104. },
  35105. ]
  35106. ))
  35107. characterMakers.push(() => makeCharacter(
  35108. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35109. {
  35110. front: {
  35111. height: math.unit(8 + 4/12, "feet"),
  35112. name: "Front",
  35113. image: {
  35114. source: "./media/characters/sterling/front.svg",
  35115. extra: 1420/1236,
  35116. bottom: 27/1447
  35117. }
  35118. },
  35119. },
  35120. [
  35121. {
  35122. name: "Normal",
  35123. height: math.unit(8 + 4/12, "feet"),
  35124. default: true
  35125. },
  35126. ]
  35127. ))
  35128. characterMakers.push(() => makeCharacter(
  35129. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35130. {
  35131. front: {
  35132. height: math.unit(15, "feet"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/marble/front.svg",
  35136. extra: 973/937,
  35137. bottom: 32/1005
  35138. }
  35139. },
  35140. },
  35141. [
  35142. {
  35143. name: "Normal",
  35144. height: math.unit(15, "feet"),
  35145. default: true
  35146. },
  35147. ]
  35148. ))
  35149. characterMakers.push(() => makeCharacter(
  35150. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35151. {
  35152. front: {
  35153. height: math.unit(3, "inches"),
  35154. name: "Front",
  35155. image: {
  35156. source: "./media/characters/powder/front.svg",
  35157. extra: 1504/1334,
  35158. bottom: 518/2022
  35159. }
  35160. },
  35161. },
  35162. [
  35163. {
  35164. name: "Normal",
  35165. height: math.unit(3, "inches"),
  35166. default: true
  35167. },
  35168. ]
  35169. ))
  35170. characterMakers.push(() => makeCharacter(
  35171. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35172. {
  35173. front: {
  35174. height: math.unit(4 + 5/12, "feet"),
  35175. name: "Front",
  35176. image: {
  35177. source: "./media/characters/joey-raccoon/front.svg",
  35178. extra: 1273/1197,
  35179. bottom: 0/1273
  35180. }
  35181. },
  35182. },
  35183. [
  35184. {
  35185. name: "Normal",
  35186. height: math.unit(4 + 5/12, "feet"),
  35187. default: true
  35188. },
  35189. ]
  35190. ))
  35191. characterMakers.push(() => makeCharacter(
  35192. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35193. {
  35194. front: {
  35195. height: math.unit(8 + 4/12, "feet"),
  35196. name: "Front",
  35197. image: {
  35198. source: "./media/characters/vick/front.svg",
  35199. extra: 2187/2118,
  35200. bottom: 47/2234
  35201. }
  35202. },
  35203. },
  35204. [
  35205. {
  35206. name: "Normal",
  35207. height: math.unit(8 + 4/12, "feet"),
  35208. default: true
  35209. },
  35210. ]
  35211. ))
  35212. characterMakers.push(() => makeCharacter(
  35213. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35214. {
  35215. front: {
  35216. height: math.unit(5 + 5/12, "feet"),
  35217. name: "Front",
  35218. image: {
  35219. source: "./media/characters/mitsy/front.svg",
  35220. extra: 1842/1695,
  35221. bottom: 0/1842
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(5 + 5/12, "feet"),
  35229. default: true
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(6 + 3/12, "feet"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/silvy/front.svg",
  35241. extra: 1995/1836,
  35242. bottom: 225/2220
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(6 + 3/12, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(3 + 8/12, "feet"),
  35259. name: "Front",
  35260. image: {
  35261. source: "./media/characters/rodney/front.svg",
  35262. extra: 1956/1747,
  35263. bottom: 31/1987
  35264. }
  35265. },
  35266. frontDressed: {
  35267. height: math.unit(2.9, "feet"),
  35268. name: "Front (Dressed)",
  35269. image: {
  35270. source: "./media/characters/rodney/front-dressed.svg",
  35271. extra: 1382/1241,
  35272. bottom: 385/1767
  35273. }
  35274. },
  35275. },
  35276. [
  35277. {
  35278. name: "Normal",
  35279. height: math.unit(3 + 8/12, "feet"),
  35280. default: true
  35281. },
  35282. ]
  35283. ))
  35284. characterMakers.push(() => makeCharacter(
  35285. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35286. {
  35287. front: {
  35288. height: math.unit(5 + 9/12, "feet"),
  35289. weight: math.unit(194, "lbs"),
  35290. name: "Front",
  35291. image: {
  35292. source: "./media/characters/zakail-sudekai/front.svg",
  35293. extra: 2696/2533,
  35294. bottom: 248/2944
  35295. }
  35296. },
  35297. maw: {
  35298. height: math.unit(1.35, "feet"),
  35299. name: "Maw",
  35300. image: {
  35301. source: "./media/characters/zakail-sudekai/maw.svg"
  35302. }
  35303. },
  35304. },
  35305. [
  35306. {
  35307. name: "Normal",
  35308. height: math.unit(5 + 9/12, "feet"),
  35309. default: true
  35310. },
  35311. ]
  35312. ))
  35313. characterMakers.push(() => makeCharacter(
  35314. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35315. {
  35316. front: {
  35317. height: math.unit(8 + 4/12, "feet"),
  35318. weight: math.unit(1200, "lb"),
  35319. name: "Front",
  35320. image: {
  35321. source: "./media/characters/eleanor/front.svg",
  35322. extra: 1226/1192,
  35323. bottom: 52/1278
  35324. }
  35325. },
  35326. back: {
  35327. height: math.unit(8 + 4/12, "feet"),
  35328. weight: math.unit(1200, "lb"),
  35329. name: "Back",
  35330. image: {
  35331. source: "./media/characters/eleanor/back.svg",
  35332. extra: 1242/1184,
  35333. bottom: 60/1302
  35334. }
  35335. },
  35336. head: {
  35337. height: math.unit(2.62, "feet"),
  35338. name: "Head",
  35339. image: {
  35340. source: "./media/characters/eleanor/head.svg"
  35341. }
  35342. },
  35343. },
  35344. [
  35345. {
  35346. name: "Normal",
  35347. height: math.unit(8 + 4/12, "feet"),
  35348. default: true
  35349. },
  35350. ]
  35351. ))
  35352. characterMakers.push(() => makeCharacter(
  35353. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35354. {
  35355. front: {
  35356. height: math.unit(8 + 4/12, "feet"),
  35357. weight: math.unit(750, "lb"),
  35358. name: "Front",
  35359. image: {
  35360. source: "./media/characters/tanya/front.svg",
  35361. extra: 1749/1615,
  35362. bottom: 33/1782
  35363. }
  35364. },
  35365. },
  35366. [
  35367. {
  35368. name: "Normal",
  35369. height: math.unit(8 + 4/12, "feet"),
  35370. default: true
  35371. },
  35372. ]
  35373. ))
  35374. characterMakers.push(() => makeCharacter(
  35375. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35376. {
  35377. front: {
  35378. height: math.unit(5, "feet"),
  35379. weight: math.unit(225, "lb"),
  35380. name: "Front",
  35381. image: {
  35382. source: "./media/characters/cindy/front.svg",
  35383. extra: 1320/1250,
  35384. bottom: 42/1362
  35385. }
  35386. },
  35387. frontDressed: {
  35388. height: math.unit(5, "feet"),
  35389. weight: math.unit(225, "lb"),
  35390. name: "Front (Dressed)",
  35391. image: {
  35392. source: "./media/characters/cindy/front-dressed.svg",
  35393. extra: 1320/1250,
  35394. bottom: 42/1362
  35395. }
  35396. },
  35397. back: {
  35398. height: math.unit(5, "feet"),
  35399. weight: math.unit(225, "lb"),
  35400. name: "Back",
  35401. image: {
  35402. source: "./media/characters/cindy/back.svg",
  35403. extra: 1384/1346,
  35404. bottom: 14/1398
  35405. }
  35406. },
  35407. },
  35408. [
  35409. {
  35410. name: "Normal",
  35411. height: math.unit(5, "feet"),
  35412. default: true
  35413. },
  35414. ]
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35418. {
  35419. front: {
  35420. height: math.unit(6 + 9/12, "feet"),
  35421. weight: math.unit(440, "lb"),
  35422. name: "Front",
  35423. image: {
  35424. source: "./media/characters/wilbur-owen/front.svg",
  35425. extra: 1575/1448,
  35426. bottom: 72/1647
  35427. }
  35428. },
  35429. back: {
  35430. height: math.unit(6 + 9/12, "feet"),
  35431. weight: math.unit(440, "lb"),
  35432. name: "Back",
  35433. image: {
  35434. source: "./media/characters/wilbur-owen/back.svg",
  35435. extra: 1578/1445,
  35436. bottom: 36/1614
  35437. }
  35438. },
  35439. },
  35440. [
  35441. {
  35442. name: "Normal",
  35443. height: math.unit(6 + 9/12, "feet"),
  35444. default: true
  35445. },
  35446. ]
  35447. ))
  35448. characterMakers.push(() => makeCharacter(
  35449. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35450. {
  35451. front: {
  35452. height: math.unit(6 + 5/12, "feet"),
  35453. weight: math.unit(650, "lb"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/keegan/front.svg",
  35457. extra: 2387/2198,
  35458. bottom: 33/2420
  35459. }
  35460. },
  35461. side: {
  35462. height: math.unit(6 + 5/12, "feet"),
  35463. weight: math.unit(650, "lb"),
  35464. name: "Side",
  35465. image: {
  35466. source: "./media/characters/keegan/side.svg",
  35467. extra: 2390/2202,
  35468. bottom: 47/2437
  35469. }
  35470. },
  35471. back: {
  35472. height: math.unit(6 + 5/12, "feet"),
  35473. weight: math.unit(650, "lb"),
  35474. name: "Back",
  35475. image: {
  35476. source: "./media/characters/keegan/back.svg",
  35477. extra: 2418/2268,
  35478. bottom: 15/2433
  35479. }
  35480. },
  35481. frontSfw: {
  35482. height: math.unit(6 + 5/12, "feet"),
  35483. weight: math.unit(650, "lb"),
  35484. name: "Front (SFW)",
  35485. image: {
  35486. source: "./media/characters/keegan/front-sfw.svg",
  35487. extra: 2387/2198,
  35488. bottom: 33/2420
  35489. }
  35490. },
  35491. beans: {
  35492. height: math.unit(1.85, "feet"),
  35493. name: "Beans",
  35494. image: {
  35495. source: "./media/characters/keegan/beans.svg"
  35496. }
  35497. },
  35498. },
  35499. [
  35500. {
  35501. name: "Normal",
  35502. height: math.unit(6 + 5/12, "feet"),
  35503. default: true
  35504. },
  35505. ]
  35506. ))
  35507. characterMakers.push(() => makeCharacter(
  35508. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35509. {
  35510. front: {
  35511. height: math.unit(9, "feet"),
  35512. name: "Front",
  35513. image: {
  35514. source: "./media/characters/colton/front.svg",
  35515. extra: 1589/1326,
  35516. bottom: 139/1728
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(9, "feet"),
  35524. default: true
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35530. {
  35531. front: {
  35532. height: math.unit(2 + 9/12, "feet"),
  35533. name: "Front",
  35534. image: {
  35535. source: "./media/characters/bora/front.svg",
  35536. extra: 1265/1250,
  35537. bottom: 24/1289
  35538. }
  35539. },
  35540. },
  35541. [
  35542. {
  35543. name: "Normal",
  35544. height: math.unit(2 + 9/12, "feet"),
  35545. default: true
  35546. },
  35547. ]
  35548. ))
  35549. characterMakers.push(() => makeCharacter(
  35550. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35551. {
  35552. front: {
  35553. height: math.unit(8, "feet"),
  35554. name: "Front",
  35555. image: {
  35556. source: "./media/characters/myu-myu/front.svg",
  35557. extra: 1949/1857,
  35558. bottom: 90/2039
  35559. }
  35560. },
  35561. },
  35562. [
  35563. {
  35564. name: "Normal",
  35565. height: math.unit(8, "feet"),
  35566. default: true
  35567. },
  35568. {
  35569. name: "Big",
  35570. height: math.unit(15, "feet")
  35571. },
  35572. {
  35573. name: "BIG",
  35574. height: math.unit(25, "feet")
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35580. {
  35581. side: {
  35582. height: math.unit(7 + 5/12, "feet"),
  35583. weight: math.unit(2800, "lb"),
  35584. name: "Side",
  35585. image: {
  35586. source: "./media/characters/haloren/side.svg",
  35587. extra: 1793/409,
  35588. bottom: 59/1852
  35589. }
  35590. },
  35591. frontPaw: {
  35592. height: math.unit(2.36, "feet"),
  35593. name: "Front paw",
  35594. image: {
  35595. source: "./media/characters/haloren/front-paw.svg"
  35596. }
  35597. },
  35598. hindPaw: {
  35599. height: math.unit(3.18, "feet"),
  35600. name: "Hind paw",
  35601. image: {
  35602. source: "./media/characters/haloren/hind-paw.svg"
  35603. }
  35604. },
  35605. maw: {
  35606. height: math.unit(5.05, "feet"),
  35607. name: "Maw",
  35608. image: {
  35609. source: "./media/characters/haloren/maw.svg"
  35610. }
  35611. },
  35612. dick: {
  35613. height: math.unit(2.90, "feet"),
  35614. name: "Dick",
  35615. image: {
  35616. source: "./media/characters/haloren/dick.svg"
  35617. }
  35618. },
  35619. },
  35620. [
  35621. {
  35622. name: "Normal",
  35623. height: math.unit(7 + 5/12, "feet"),
  35624. default: true
  35625. },
  35626. {
  35627. name: "Enhanced",
  35628. height: math.unit(14 + 3/12, "feet")
  35629. },
  35630. ]
  35631. ))
  35632. characterMakers.push(() => makeCharacter(
  35633. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35634. {
  35635. front: {
  35636. height: math.unit(171, "cm"),
  35637. name: "Front",
  35638. image: {
  35639. source: "./media/characters/kimmy/front.svg",
  35640. extra: 1491/1435,
  35641. bottom: 53/1544
  35642. }
  35643. },
  35644. },
  35645. [
  35646. {
  35647. name: "Small",
  35648. height: math.unit(9, "cm")
  35649. },
  35650. {
  35651. name: "Normal",
  35652. height: math.unit(171, "cm"),
  35653. default: true
  35654. },
  35655. ]
  35656. ))
  35657. characterMakers.push(() => makeCharacter(
  35658. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35659. {
  35660. front: {
  35661. height: math.unit(8, "feet"),
  35662. weight: math.unit(300, "lb"),
  35663. name: "Front",
  35664. image: {
  35665. source: "./media/characters/galeboomer/front.svg",
  35666. extra: 4651/4415,
  35667. bottom: 162/4813
  35668. }
  35669. },
  35670. back: {
  35671. height: math.unit(8, "feet"),
  35672. weight: math.unit(300, "lb"),
  35673. name: "Back",
  35674. image: {
  35675. source: "./media/characters/galeboomer/back.svg",
  35676. extra: 4544/4314,
  35677. bottom: 16/4560
  35678. }
  35679. },
  35680. frontAlt: {
  35681. height: math.unit(8, "feet"),
  35682. weight: math.unit(300, "lb"),
  35683. name: "Front (Alt)",
  35684. image: {
  35685. source: "./media/characters/galeboomer/front-alt.svg",
  35686. extra: 4458/4228,
  35687. bottom: 68/4526
  35688. }
  35689. },
  35690. maw: {
  35691. height: math.unit(1.2, "feet"),
  35692. name: "Maw",
  35693. image: {
  35694. source: "./media/characters/galeboomer/maw.svg"
  35695. }
  35696. },
  35697. },
  35698. [
  35699. {
  35700. name: "Normal",
  35701. height: math.unit(8, "feet"),
  35702. default: true
  35703. },
  35704. ]
  35705. ))
  35706. characterMakers.push(() => makeCharacter(
  35707. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35708. {
  35709. front: {
  35710. height: math.unit(5 + 9/12, "feet"),
  35711. weight: math.unit(120, "lb"),
  35712. name: "Front",
  35713. image: {
  35714. source: "./media/characters/chyr/front.svg",
  35715. extra: 1323/1254,
  35716. bottom: 63/1386
  35717. }
  35718. },
  35719. back: {
  35720. height: math.unit(5 + 9/12, "feet"),
  35721. weight: math.unit(120, "lb"),
  35722. name: "Back",
  35723. image: {
  35724. source: "./media/characters/chyr/back.svg",
  35725. extra: 1323/1252,
  35726. bottom: 48/1371
  35727. }
  35728. },
  35729. },
  35730. [
  35731. {
  35732. name: "Normal",
  35733. height: math.unit(5 + 9/12, "feet"),
  35734. default: true
  35735. },
  35736. ]
  35737. ))
  35738. characterMakers.push(() => makeCharacter(
  35739. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35740. {
  35741. front: {
  35742. height: math.unit(7, "feet"),
  35743. weight: math.unit(310, "lb"),
  35744. name: "Front",
  35745. image: {
  35746. source: "./media/characters/solarus/front.svg",
  35747. extra: 2415/2021,
  35748. bottom: 103/2518
  35749. }
  35750. },
  35751. back: {
  35752. height: math.unit(7, "feet"),
  35753. weight: math.unit(310, "lb"),
  35754. name: "Back",
  35755. image: {
  35756. source: "./media/characters/solarus/back.svg",
  35757. extra: 2463/2089,
  35758. bottom: 79/2542
  35759. }
  35760. },
  35761. },
  35762. [
  35763. {
  35764. name: "Normal",
  35765. height: math.unit(7, "feet"),
  35766. default: true
  35767. },
  35768. ]
  35769. ))
  35770. characterMakers.push(() => makeCharacter(
  35771. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35772. {
  35773. front: {
  35774. height: math.unit(16, "feet"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35778. extra: 1844/1780,
  35779. bottom: 58/1902
  35780. }
  35781. },
  35782. winterCoat: {
  35783. height: math.unit(16, "feet"),
  35784. name: "Winter Coat",
  35785. image: {
  35786. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35787. extra: 1807/1775,
  35788. bottom: 69/1876
  35789. }
  35790. },
  35791. },
  35792. [
  35793. {
  35794. name: "Normal",
  35795. height: math.unit(16, "feet"),
  35796. default: true
  35797. },
  35798. {
  35799. name: "Chicago Size",
  35800. height: math.unit(560, "feet")
  35801. },
  35802. ]
  35803. ))
  35804. characterMakers.push(() => makeCharacter(
  35805. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35806. {
  35807. front: {
  35808. height: math.unit(11 + 6/12, "feet"),
  35809. weight: math.unit(1366, "lb"),
  35810. name: "Front",
  35811. image: {
  35812. source: "./media/characters/lexor/front.svg",
  35813. extra: 1560/1481,
  35814. bottom: 211/1771
  35815. }
  35816. },
  35817. back: {
  35818. height: math.unit(11 + 6/12, "feet"),
  35819. weight: math.unit(1366, "lb"),
  35820. name: "Back",
  35821. image: {
  35822. source: "./media/characters/lexor/back.svg",
  35823. extra: 1614/1533,
  35824. bottom: 76/1690
  35825. }
  35826. },
  35827. maw: {
  35828. height: math.unit(3, "feet"),
  35829. name: "Maw",
  35830. image: {
  35831. source: "./media/characters/lexor/maw.svg"
  35832. }
  35833. },
  35834. dick: {
  35835. height: math.unit(2.59, "feet"),
  35836. name: "Dick",
  35837. image: {
  35838. source: "./media/characters/lexor/dick.svg"
  35839. }
  35840. },
  35841. },
  35842. [
  35843. {
  35844. name: "Normal",
  35845. height: math.unit(11 + 6/12, "feet"),
  35846. default: true
  35847. },
  35848. ]
  35849. ))
  35850. characterMakers.push(() => makeCharacter(
  35851. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35852. {
  35853. front: {
  35854. height: math.unit(5 + 8/12, "feet"),
  35855. name: "Front",
  35856. image: {
  35857. source: "./media/characters/magnum/front.svg",
  35858. extra: 942/855,
  35859. bottom: 26/968
  35860. }
  35861. },
  35862. },
  35863. [
  35864. {
  35865. name: "Normal",
  35866. height: math.unit(5 + 8/12, "feet"),
  35867. default: true
  35868. },
  35869. ]
  35870. ))
  35871. characterMakers.push(() => makeCharacter(
  35872. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35873. {
  35874. front: {
  35875. height: math.unit(18 + 4/12, "feet"),
  35876. weight: math.unit(1500, "kg"),
  35877. name: "Front",
  35878. image: {
  35879. source: "./media/characters/solas-sharpsman/front.svg",
  35880. extra: 1698/1589,
  35881. bottom: 0/1698
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(18 + 4/12, "feet"),
  35889. default: true
  35890. },
  35891. ]
  35892. ))
  35893. characterMakers.push(() => makeCharacter(
  35894. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35895. {
  35896. front: {
  35897. height: math.unit(5 + 5/12, "feet"),
  35898. weight: math.unit(180, "lb"),
  35899. name: "Front",
  35900. image: {
  35901. source: "./media/characters/october/front.svg",
  35902. extra: 1800/1650,
  35903. bottom: 0/1800
  35904. }
  35905. },
  35906. frontNsfw: {
  35907. height: math.unit(5 + 5/12, "feet"),
  35908. weight: math.unit(180, "lb"),
  35909. name: "Front (NSFW)",
  35910. image: {
  35911. source: "./media/characters/october/front-nsfw.svg",
  35912. extra: 1392/1307,
  35913. bottom: 42/1434
  35914. }
  35915. },
  35916. },
  35917. [
  35918. {
  35919. name: "Normal",
  35920. height: math.unit(5 + 5/12, "feet"),
  35921. default: true
  35922. },
  35923. ]
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35927. {
  35928. front: {
  35929. height: math.unit(8 + 6/12, "feet"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/essynkardi/front.svg",
  35933. extra: 1914/1846,
  35934. bottom: 22/1936
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Normal",
  35941. height: math.unit(8 + 6/12, "feet"),
  35942. default: true
  35943. },
  35944. ]
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35948. {
  35949. front: {
  35950. height: math.unit(6 + 6/12, "feet"),
  35951. weight: math.unit(7, "lb"),
  35952. name: "Front",
  35953. image: {
  35954. source: "./media/characters/icky/front.svg",
  35955. extra: 813/782,
  35956. bottom: 66/879
  35957. }
  35958. },
  35959. back: {
  35960. height: math.unit(6 + 6/12, "feet"),
  35961. weight: math.unit(7, "lb"),
  35962. name: "Back",
  35963. image: {
  35964. source: "./media/characters/icky/back.svg",
  35965. extra: 754/735,
  35966. bottom: 56/810
  35967. }
  35968. },
  35969. },
  35970. [
  35971. {
  35972. name: "Normal",
  35973. height: math.unit(6 + 6/12, "feet"),
  35974. default: true
  35975. },
  35976. ]
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35980. {
  35981. front: {
  35982. height: math.unit(15, "feet"),
  35983. name: "Front",
  35984. image: {
  35985. source: "./media/characters/rojas/front.svg",
  35986. extra: 1462/1408,
  35987. bottom: 95/1557
  35988. }
  35989. },
  35990. back: {
  35991. height: math.unit(15, "feet"),
  35992. name: "Back",
  35993. image: {
  35994. source: "./media/characters/rojas/back.svg",
  35995. extra: 1023/954,
  35996. bottom: 28/1051
  35997. }
  35998. },
  35999. },
  36000. [
  36001. {
  36002. name: "Normal",
  36003. height: math.unit(15, "feet"),
  36004. default: true
  36005. },
  36006. ]
  36007. ))
  36008. characterMakers.push(() => makeCharacter(
  36009. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36010. {
  36011. frontHuman: {
  36012. height: math.unit(5 + 7/12, "feet"),
  36013. name: "Front (Human)",
  36014. image: {
  36015. source: "./media/characters/alek-dryagan/front-human.svg",
  36016. extra: 1687/1667,
  36017. bottom: 69/1756
  36018. }
  36019. },
  36020. backHuman: {
  36021. height: math.unit(5 + 7/12, "feet"),
  36022. name: "Back (Human)",
  36023. image: {
  36024. source: "./media/characters/alek-dryagan/back-human.svg",
  36025. extra: 1670/1649,
  36026. bottom: 65/1735
  36027. }
  36028. },
  36029. frontDemi: {
  36030. height: math.unit(65, "feet"),
  36031. name: "Front (Demi)",
  36032. image: {
  36033. source: "./media/characters/alek-dryagan/front-demi.svg",
  36034. extra: 1669/1642,
  36035. bottom: 49/1718
  36036. }
  36037. },
  36038. backDemi: {
  36039. height: math.unit(65, "feet"),
  36040. name: "Back (Demi)",
  36041. image: {
  36042. source: "./media/characters/alek-dryagan/back-demi.svg",
  36043. extra: 1658/1637,
  36044. bottom: 40/1698
  36045. }
  36046. },
  36047. mawHuman: {
  36048. height: math.unit(0.3, "feet"),
  36049. name: "Maw (Human)",
  36050. image: {
  36051. source: "./media/characters/alek-dryagan/maw-human.svg"
  36052. }
  36053. },
  36054. mawDemi: {
  36055. height: math.unit(3.8, "feet"),
  36056. name: "Maw (Demi)",
  36057. image: {
  36058. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(5 + 7/12, "feet"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36072. {
  36073. frontHuman: {
  36074. height: math.unit(5 + 2/12, "feet"),
  36075. name: "Front (Human)",
  36076. image: {
  36077. source: "./media/characters/gen/front-human.svg",
  36078. extra: 1627/1538,
  36079. bottom: 71/1698
  36080. }
  36081. },
  36082. backHuman: {
  36083. height: math.unit(5 + 2/12, "feet"),
  36084. name: "Back (Human)",
  36085. image: {
  36086. source: "./media/characters/gen/back-human.svg",
  36087. extra: 1638/1548,
  36088. bottom: 69/1707
  36089. }
  36090. },
  36091. frontDemi: {
  36092. height: math.unit(5 + 2/12, "feet"),
  36093. name: "Front (Demi)",
  36094. image: {
  36095. source: "./media/characters/gen/front-demi.svg",
  36096. extra: 1627/1538,
  36097. bottom: 71/1698
  36098. }
  36099. },
  36100. backDemi: {
  36101. height: math.unit(5 + 2/12, "feet"),
  36102. name: "Back (Demi)",
  36103. image: {
  36104. source: "./media/characters/gen/back-demi.svg",
  36105. extra: 1638/1548,
  36106. bottom: 69/1707
  36107. }
  36108. },
  36109. },
  36110. [
  36111. {
  36112. name: "Normal",
  36113. height: math.unit(5 + 2/12, "feet"),
  36114. default: true
  36115. },
  36116. ]
  36117. ))
  36118. characterMakers.push(() => makeCharacter(
  36119. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36120. {
  36121. frontImp: {
  36122. height: math.unit(1 + 11/12, "feet"),
  36123. name: "Front (Imp)",
  36124. image: {
  36125. source: "./media/characters/max-kobold/front-imp.svg",
  36126. extra: 1238/1134,
  36127. bottom: 81/1319
  36128. }
  36129. },
  36130. backImp: {
  36131. height: math.unit(1 + 11/12, "feet"),
  36132. name: "Back (Imp)",
  36133. image: {
  36134. source: "./media/characters/max-kobold/back-imp.svg",
  36135. extra: 1334/1175,
  36136. bottom: 34/1368
  36137. }
  36138. },
  36139. frontDemi: {
  36140. height: math.unit(5 + 9/12, "feet"),
  36141. name: "Front (Demi)",
  36142. image: {
  36143. source: "./media/characters/max-kobold/front-demi.svg",
  36144. extra: 1715/1685,
  36145. bottom: 54/1769
  36146. }
  36147. },
  36148. backDemi: {
  36149. height: math.unit(5 + 9/12, "feet"),
  36150. name: "Back (Demi)",
  36151. image: {
  36152. source: "./media/characters/max-kobold/back-demi.svg",
  36153. extra: 1752/1729,
  36154. bottom: 41/1793
  36155. }
  36156. },
  36157. handImp: {
  36158. height: math.unit(0.45, "feet"),
  36159. name: "Hand (Imp)",
  36160. image: {
  36161. source: "./media/characters/max-kobold/hand.svg"
  36162. }
  36163. },
  36164. pawImp: {
  36165. height: math.unit(0.46, "feet"),
  36166. name: "Paw (Imp)",
  36167. image: {
  36168. source: "./media/characters/max-kobold/paw.svg"
  36169. }
  36170. },
  36171. handDemi: {
  36172. height: math.unit(0.80, "feet"),
  36173. name: "Hand (Demi)",
  36174. image: {
  36175. source: "./media/characters/max-kobold/hand.svg"
  36176. }
  36177. },
  36178. pawDemi: {
  36179. height: math.unit(1.1, "feet"),
  36180. name: "Paw (Demi)",
  36181. image: {
  36182. source: "./media/characters/max-kobold/paw.svg"
  36183. }
  36184. },
  36185. headImp: {
  36186. height: math.unit(1.33, "feet"),
  36187. name: "Head (Imp)",
  36188. image: {
  36189. source: "./media/characters/max-kobold/head-imp.svg"
  36190. }
  36191. },
  36192. mawImp: {
  36193. height: math.unit(0.75, "feet"),
  36194. name: "Maw (Imp)",
  36195. image: {
  36196. source: "./media/characters/max-kobold/maw-imp.svg"
  36197. }
  36198. },
  36199. mawDemi: {
  36200. height: math.unit(0.42, "feet"),
  36201. name: "Maw (Demi)",
  36202. image: {
  36203. source: "./media/characters/max-kobold/maw-demi.svg"
  36204. }
  36205. },
  36206. },
  36207. [
  36208. {
  36209. name: "Normal",
  36210. height: math.unit(1 + 11/12, "feet"),
  36211. default: true
  36212. },
  36213. ]
  36214. ))
  36215. characterMakers.push(() => makeCharacter(
  36216. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36217. {
  36218. front: {
  36219. height: math.unit(7 + 5/12, "feet"),
  36220. name: "Front",
  36221. image: {
  36222. source: "./media/characters/carbon/front.svg",
  36223. extra: 1754/1689,
  36224. bottom: 65/1819
  36225. }
  36226. },
  36227. back: {
  36228. height: math.unit(7 + 5/12, "feet"),
  36229. name: "Back",
  36230. image: {
  36231. source: "./media/characters/carbon/back.svg",
  36232. extra: 1762/1695,
  36233. bottom: 24/1786
  36234. }
  36235. },
  36236. frontGigantamax: {
  36237. height: math.unit(150, "feet"),
  36238. name: "Front (Gigantamax)",
  36239. image: {
  36240. source: "./media/characters/carbon/front-gigantamax.svg",
  36241. extra: 1826/1669,
  36242. bottom: 59/1885
  36243. }
  36244. },
  36245. backGigantamax: {
  36246. height: math.unit(150, "feet"),
  36247. name: "Back (Gigantamax)",
  36248. image: {
  36249. source: "./media/characters/carbon/back-gigantamax.svg",
  36250. extra: 1796/1653,
  36251. bottom: 53/1849
  36252. }
  36253. },
  36254. maw: {
  36255. height: math.unit(0.48, "feet"),
  36256. name: "Maw",
  36257. image: {
  36258. source: "./media/characters/carbon/maw.svg"
  36259. }
  36260. },
  36261. mawGigantamax: {
  36262. height: math.unit(7.5, "feet"),
  36263. name: "Maw (Gigantamax)",
  36264. image: {
  36265. source: "./media/characters/carbon/maw-gigantamax.svg"
  36266. }
  36267. },
  36268. },
  36269. [
  36270. {
  36271. name: "Normal",
  36272. height: math.unit(7 + 5/12, "feet"),
  36273. default: true
  36274. },
  36275. ]
  36276. ))
  36277. characterMakers.push(() => makeCharacter(
  36278. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36279. {
  36280. front: {
  36281. height: math.unit(6, "feet"),
  36282. name: "Front",
  36283. image: {
  36284. source: "./media/characters/maverick/front.svg",
  36285. extra: 1672/1661,
  36286. bottom: 85/1757
  36287. }
  36288. },
  36289. back: {
  36290. height: math.unit(6, "feet"),
  36291. name: "Back",
  36292. image: {
  36293. source: "./media/characters/maverick/back.svg",
  36294. extra: 1642/1631,
  36295. bottom: 38/1680
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(6, "feet"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36309. {
  36310. front: {
  36311. height: math.unit(15, "feet"),
  36312. weight: math.unit(615, "lb"),
  36313. name: "Front",
  36314. image: {
  36315. source: "./media/characters/grockle/front.svg",
  36316. extra: 1535/1427,
  36317. bottom: 56/1591
  36318. }
  36319. },
  36320. },
  36321. [
  36322. {
  36323. name: "Normal",
  36324. height: math.unit(15, "feet"),
  36325. default: true
  36326. },
  36327. {
  36328. name: "Large",
  36329. height: math.unit(150, "feet")
  36330. },
  36331. {
  36332. name: "Macro",
  36333. height: math.unit(1876, "feet")
  36334. },
  36335. {
  36336. name: "Mega Macro",
  36337. height: math.unit(121940, "feet")
  36338. },
  36339. {
  36340. name: "Giga Macro",
  36341. height: math.unit(750, "km")
  36342. },
  36343. {
  36344. name: "Tera Macro",
  36345. height: math.unit(750000, "km")
  36346. },
  36347. {
  36348. name: "Galactic",
  36349. height: math.unit(1.4e5, "km")
  36350. },
  36351. {
  36352. name: "Godlike",
  36353. height: math.unit(9.8e280, "galaxies")
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36359. {
  36360. front: {
  36361. height: math.unit(11, "meters"),
  36362. weight: math.unit(20, "tonnes"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/alistair/front.svg",
  36366. extra: 1265/1009,
  36367. bottom: 93/1358
  36368. }
  36369. },
  36370. },
  36371. [
  36372. {
  36373. name: "Normal",
  36374. height: math.unit(11, "meters"),
  36375. default: true
  36376. },
  36377. ]
  36378. ))
  36379. characterMakers.push(() => makeCharacter(
  36380. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36381. {
  36382. front: {
  36383. height: math.unit(5 + 8/12, "feet"),
  36384. name: "Front",
  36385. image: {
  36386. source: "./media/characters/haruka/front.svg",
  36387. extra: 2012/1952,
  36388. bottom: 0/2012
  36389. }
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(5 + 8/12, "feet"),
  36396. default: true
  36397. },
  36398. ]
  36399. ))
  36400. characterMakers.push(() => makeCharacter(
  36401. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36402. {
  36403. back: {
  36404. height: math.unit(9, "feet"),
  36405. name: "Back",
  36406. image: {
  36407. source: "./media/characters/vivian-sylveon/back.svg",
  36408. extra: 1853/1714,
  36409. bottom: 0/1853
  36410. }
  36411. },
  36412. },
  36413. [
  36414. {
  36415. name: "Normal",
  36416. height: math.unit(9, "feet"),
  36417. default: true
  36418. },
  36419. {
  36420. name: "Macro",
  36421. height: math.unit(500, "feet")
  36422. },
  36423. {
  36424. name: "Megamacro",
  36425. height: math.unit(600, "miles")
  36426. },
  36427. {
  36428. name: "Gigamacro",
  36429. height: math.unit(30000, "miles")
  36430. },
  36431. ]
  36432. ))
  36433. characterMakers.push(() => makeCharacter(
  36434. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36435. {
  36436. anthro: {
  36437. height: math.unit(5 + 10/12, "feet"),
  36438. weight: math.unit(100, "lb"),
  36439. name: "Anthro",
  36440. image: {
  36441. source: "./media/characters/daiki/anthro.svg",
  36442. extra: 1115/1027,
  36443. bottom: 69/1184
  36444. }
  36445. },
  36446. feral: {
  36447. height: math.unit(200, "feet"),
  36448. name: "Feral",
  36449. image: {
  36450. source: "./media/characters/daiki/feral.svg",
  36451. extra: 1256/313,
  36452. bottom: 39/1295
  36453. }
  36454. },
  36455. feralHead: {
  36456. height: math.unit(171, "feet"),
  36457. name: "Feral Head",
  36458. image: {
  36459. source: "./media/characters/daiki/feral-head.svg"
  36460. }
  36461. },
  36462. manaDragon: {
  36463. height: math.unit(170, "meters"),
  36464. name: "Mana-dragon",
  36465. image: {
  36466. source: "./media/characters/daiki/mana-dragon.svg",
  36467. extra: 763/420,
  36468. bottom: 97/860
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Normal",
  36475. height: math.unit(5 + 10/12, "feet"),
  36476. default: true
  36477. },
  36478. ]
  36479. ))
  36480. characterMakers.push(() => makeCharacter(
  36481. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36482. {
  36483. fullyEquippedFront: {
  36484. height: math.unit(3 + 1/12, "feet"),
  36485. weight: math.unit(24, "lb"),
  36486. name: "Fully Equipped (Front)",
  36487. image: {
  36488. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36489. extra: 687/605,
  36490. bottom: 18/705
  36491. }
  36492. },
  36493. fullyEquippedBack: {
  36494. height: math.unit(3 + 1/12, "feet"),
  36495. weight: math.unit(24, "lb"),
  36496. name: "Fully Equipped (Back)",
  36497. image: {
  36498. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36499. extra: 689/590,
  36500. bottom: 18/707
  36501. }
  36502. },
  36503. dailyWear: {
  36504. height: math.unit(3 + 1/12, "feet"),
  36505. weight: math.unit(24, "lb"),
  36506. name: "Daily Wear",
  36507. image: {
  36508. source: "./media/characters/tea-spot/daily-wear.svg",
  36509. extra: 701/620,
  36510. bottom: 21/722
  36511. }
  36512. },
  36513. maidWork: {
  36514. height: math.unit(3 + 1/12, "feet"),
  36515. weight: math.unit(24, "lb"),
  36516. name: "Maid Work",
  36517. image: {
  36518. source: "./media/characters/tea-spot/maid-work.svg",
  36519. extra: 693/609,
  36520. bottom: 15/708
  36521. }
  36522. },
  36523. },
  36524. [
  36525. {
  36526. name: "Normal",
  36527. height: math.unit(3 + 1/12, "feet"),
  36528. default: true
  36529. },
  36530. ]
  36531. ))
  36532. characterMakers.push(() => makeCharacter(
  36533. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36534. {
  36535. front: {
  36536. height: math.unit(175, "cm"),
  36537. weight: math.unit(75, "kg"),
  36538. name: "Front",
  36539. image: {
  36540. source: "./media/characters/chee/front.svg",
  36541. extra: 1796/1740,
  36542. bottom: 40/1836
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Micro-Micro",
  36549. height: math.unit(1, "nm")
  36550. },
  36551. {
  36552. name: "Micro-erst",
  36553. height: math.unit(1, "micrometer")
  36554. },
  36555. {
  36556. name: "Micro-er",
  36557. height: math.unit(1, "cm")
  36558. },
  36559. {
  36560. name: "Normal",
  36561. height: math.unit(175, "cm"),
  36562. default: true
  36563. },
  36564. {
  36565. name: "Macro",
  36566. height: math.unit(100, "m")
  36567. },
  36568. {
  36569. name: "Macro-er",
  36570. height: math.unit(1, "km")
  36571. },
  36572. {
  36573. name: "Macro-erst",
  36574. height: math.unit(10, "km")
  36575. },
  36576. {
  36577. name: "Macro-Macro",
  36578. height: math.unit(100, "km")
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(11 + 9/12, "feet"),
  36587. weight: math.unit(935, "lb"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/kingsley/front.svg",
  36591. extra: 1803/1674,
  36592. bottom: 127/1930
  36593. }
  36594. },
  36595. frontNude: {
  36596. height: math.unit(11 + 9/12, "feet"),
  36597. weight: math.unit(935, "lb"),
  36598. name: "Front (Nude)",
  36599. image: {
  36600. source: "./media/characters/kingsley/front-nude.svg",
  36601. extra: 1803/1674,
  36602. bottom: 127/1930
  36603. }
  36604. },
  36605. },
  36606. [
  36607. {
  36608. name: "Normal",
  36609. height: math.unit(11 + 9/12, "feet"),
  36610. default: true
  36611. },
  36612. ]
  36613. ))
  36614. characterMakers.push(() => makeCharacter(
  36615. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36616. {
  36617. side: {
  36618. height: math.unit(9, "feet"),
  36619. name: "Side",
  36620. image: {
  36621. source: "./media/characters/rymel/side.svg",
  36622. extra: 792/469,
  36623. bottom: 121/913
  36624. }
  36625. },
  36626. maw: {
  36627. height: math.unit(2.4, "meters"),
  36628. name: "Maw",
  36629. image: {
  36630. source: "./media/characters/rymel/maw.svg"
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "House Drake",
  36637. height: math.unit(2, "feet")
  36638. },
  36639. {
  36640. name: "Reduced",
  36641. height: math.unit(4.5, "feet")
  36642. },
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(9, "feet"),
  36646. default: true
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(1.74, "meters"),
  36655. weight: math.unit(55, "kg"),
  36656. name: "Front",
  36657. image: {
  36658. source: "./media/characters/rubus/front.svg",
  36659. extra: 1894/1742,
  36660. bottom: 44/1938
  36661. }
  36662. },
  36663. },
  36664. [
  36665. {
  36666. name: "Normal",
  36667. height: math.unit(1.74, "meters"),
  36668. default: true
  36669. },
  36670. ]
  36671. ))
  36672. characterMakers.push(() => makeCharacter(
  36673. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36674. {
  36675. front: {
  36676. height: math.unit(5 + 2/12, "feet"),
  36677. weight: math.unit(112, "lb"),
  36678. name: "Front",
  36679. image: {
  36680. source: "./media/characters/cassie-kingston/front.svg",
  36681. extra: 1438/1390,
  36682. bottom: 47/1485
  36683. }
  36684. },
  36685. },
  36686. [
  36687. {
  36688. name: "Normal",
  36689. height: math.unit(5 + 2/12, "feet"),
  36690. default: true
  36691. },
  36692. {
  36693. name: "Macro",
  36694. height: math.unit(128, "feet")
  36695. },
  36696. {
  36697. name: "Megamacro",
  36698. height: math.unit(2.56, "miles")
  36699. },
  36700. ]
  36701. ))
  36702. characterMakers.push(() => makeCharacter(
  36703. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36704. {
  36705. front: {
  36706. height: math.unit(7, "feet"),
  36707. name: "Front",
  36708. image: {
  36709. source: "./media/characters/fox/front.svg",
  36710. extra: 1798/1703,
  36711. bottom: 55/1853
  36712. }
  36713. },
  36714. back: {
  36715. height: math.unit(7, "feet"),
  36716. name: "Back",
  36717. image: {
  36718. source: "./media/characters/fox/back.svg",
  36719. extra: 1748/1649,
  36720. bottom: 32/1780
  36721. }
  36722. },
  36723. head: {
  36724. height: math.unit(1.95, "feet"),
  36725. name: "Head",
  36726. image: {
  36727. source: "./media/characters/fox/head.svg"
  36728. }
  36729. },
  36730. dick: {
  36731. height: math.unit(1.33, "feet"),
  36732. name: "Dick",
  36733. image: {
  36734. source: "./media/characters/fox/dick.svg"
  36735. }
  36736. },
  36737. foot: {
  36738. height: math.unit(1, "feet"),
  36739. name: "Foot",
  36740. image: {
  36741. source: "./media/characters/fox/foot.svg"
  36742. }
  36743. },
  36744. paw: {
  36745. height: math.unit(0.92, "feet"),
  36746. name: "Paw",
  36747. image: {
  36748. source: "./media/characters/fox/paw.svg"
  36749. }
  36750. },
  36751. },
  36752. [
  36753. {
  36754. name: "Small",
  36755. height: math.unit(3, "inches")
  36756. },
  36757. {
  36758. name: "\"Realistic\"",
  36759. height: math.unit(7, "feet")
  36760. },
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(150, "feet"),
  36764. default: true
  36765. },
  36766. {
  36767. name: "BIG",
  36768. height: math.unit(1200, "feet")
  36769. },
  36770. {
  36771. name: "👀",
  36772. height: math.unit(5, "miles")
  36773. },
  36774. {
  36775. name: "👀👀👀",
  36776. height: math.unit(64, "miles")
  36777. },
  36778. ]
  36779. ))
  36780. characterMakers.push(() => makeCharacter(
  36781. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36782. {
  36783. front: {
  36784. height: math.unit(625, "feet"),
  36785. name: "Front",
  36786. image: {
  36787. source: "./media/characters/asonja-rossa/front.svg",
  36788. extra: 1833/1686,
  36789. bottom: 24/1857
  36790. }
  36791. },
  36792. back: {
  36793. height: math.unit(625, "feet"),
  36794. name: "Back",
  36795. image: {
  36796. source: "./media/characters/asonja-rossa/back.svg",
  36797. extra: 1852/1753,
  36798. bottom: 26/1878
  36799. }
  36800. },
  36801. },
  36802. [
  36803. {
  36804. name: "Macro",
  36805. height: math.unit(625, "feet"),
  36806. default: true
  36807. },
  36808. ]
  36809. ))
  36810. characterMakers.push(() => makeCharacter(
  36811. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36812. {
  36813. side: {
  36814. height: math.unit(6, "feet"),
  36815. weight: math.unit(150, "lb"),
  36816. name: "Side",
  36817. image: {
  36818. source: "./media/characters/rezukii/side.svg",
  36819. extra: 979/542,
  36820. bottom: 87/1066
  36821. }
  36822. },
  36823. },
  36824. [
  36825. {
  36826. name: "Tiny",
  36827. height: math.unit(2, "feet")
  36828. },
  36829. {
  36830. name: "Smol",
  36831. height: math.unit(4, "feet")
  36832. },
  36833. {
  36834. name: "Normal",
  36835. height: math.unit(8, "feet"),
  36836. default: true
  36837. },
  36838. {
  36839. name: "Big",
  36840. height: math.unit(12, "feet")
  36841. },
  36842. {
  36843. name: "Macro",
  36844. height: math.unit(30, "feet")
  36845. },
  36846. ]
  36847. ))
  36848. characterMakers.push(() => makeCharacter(
  36849. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36850. {
  36851. front: {
  36852. height: math.unit(14, "feet"),
  36853. weight: math.unit(9.5, "tonnes"),
  36854. name: "Front",
  36855. image: {
  36856. source: "./media/characters/dawnheart/front.svg",
  36857. extra: 2792/2675,
  36858. bottom: 64/2856
  36859. }
  36860. },
  36861. },
  36862. [
  36863. {
  36864. name: "Normal",
  36865. height: math.unit(14, "feet"),
  36866. default: true
  36867. },
  36868. ]
  36869. ))
  36870. characterMakers.push(() => makeCharacter(
  36871. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36872. {
  36873. front: {
  36874. height: math.unit(1.7, "m"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/gladi/front.svg",
  36878. extra: 1460/1362,
  36879. bottom: 19/1479
  36880. }
  36881. },
  36882. back: {
  36883. height: math.unit(1.7, "m"),
  36884. name: "Back",
  36885. image: {
  36886. source: "./media/characters/gladi/back.svg",
  36887. extra: 1459/1357,
  36888. bottom: 12/1471
  36889. }
  36890. },
  36891. feral: {
  36892. height: math.unit(2.05, "m"),
  36893. name: "Feral",
  36894. image: {
  36895. source: "./media/characters/gladi/feral.svg",
  36896. extra: 821/557,
  36897. bottom: 91/912
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Shortest",
  36904. height: math.unit(70, "cm")
  36905. },
  36906. {
  36907. name: "Normal",
  36908. height: math.unit(1.7, "m")
  36909. },
  36910. {
  36911. name: "Macro",
  36912. height: math.unit(10, "m"),
  36913. default: true
  36914. },
  36915. {
  36916. name: "Tallest",
  36917. height: math.unit(200, "m")
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36923. {
  36924. front: {
  36925. height: math.unit(5 + 7/12, "feet"),
  36926. weight: math.unit(2, "tons"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/erdno/front.svg",
  36930. extra: 1234/1129,
  36931. bottom: 35/1269
  36932. }
  36933. },
  36934. angled: {
  36935. height: math.unit(5 + 7/12, "feet"),
  36936. weight: math.unit(2, "tons"),
  36937. name: "Angled",
  36938. image: {
  36939. source: "./media/characters/erdno/angled.svg",
  36940. extra: 1185/1139,
  36941. bottom: 36/1221
  36942. }
  36943. },
  36944. side: {
  36945. height: math.unit(5 + 7/12, "feet"),
  36946. weight: math.unit(2, "tons"),
  36947. name: "Side",
  36948. image: {
  36949. source: "./media/characters/erdno/side.svg",
  36950. extra: 1191/1144,
  36951. bottom: 40/1231
  36952. }
  36953. },
  36954. back: {
  36955. height: math.unit(5 + 7/12, "feet"),
  36956. weight: math.unit(2, "tons"),
  36957. name: "Back",
  36958. image: {
  36959. source: "./media/characters/erdno/back.svg",
  36960. extra: 1202/1146,
  36961. bottom: 17/1219
  36962. }
  36963. },
  36964. frontNsfw: {
  36965. height: math.unit(5 + 7/12, "feet"),
  36966. weight: math.unit(2, "tons"),
  36967. name: "Front (NSFW)",
  36968. image: {
  36969. source: "./media/characters/erdno/front-nsfw.svg",
  36970. extra: 1234/1129,
  36971. bottom: 35/1269
  36972. }
  36973. },
  36974. angledNsfw: {
  36975. height: math.unit(5 + 7/12, "feet"),
  36976. weight: math.unit(2, "tons"),
  36977. name: "Angled (NSFW)",
  36978. image: {
  36979. source: "./media/characters/erdno/angled-nsfw.svg",
  36980. extra: 1185/1139,
  36981. bottom: 36/1221
  36982. }
  36983. },
  36984. sideNsfw: {
  36985. height: math.unit(5 + 7/12, "feet"),
  36986. weight: math.unit(2, "tons"),
  36987. name: "Side (NSFW)",
  36988. image: {
  36989. source: "./media/characters/erdno/side-nsfw.svg",
  36990. extra: 1191/1144,
  36991. bottom: 40/1231
  36992. }
  36993. },
  36994. backNsfw: {
  36995. height: math.unit(5 + 7/12, "feet"),
  36996. weight: math.unit(2, "tons"),
  36997. name: "Back (NSFW)",
  36998. image: {
  36999. source: "./media/characters/erdno/back-nsfw.svg",
  37000. extra: 1202/1146,
  37001. bottom: 17/1219
  37002. }
  37003. },
  37004. frontHyper: {
  37005. height: math.unit(5 + 7/12, "feet"),
  37006. weight: math.unit(2, "tons"),
  37007. name: "Front (Hyper)",
  37008. image: {
  37009. source: "./media/characters/erdno/front-hyper.svg",
  37010. extra: 1298/1136,
  37011. bottom: 35/1333
  37012. }
  37013. },
  37014. },
  37015. [
  37016. {
  37017. name: "Normal",
  37018. height: math.unit(5 + 7/12, "feet"),
  37019. default: true
  37020. },
  37021. {
  37022. name: "Big",
  37023. height: math.unit(5.7, "meters")
  37024. },
  37025. {
  37026. name: "Macro",
  37027. height: math.unit(5.7, "kilometers")
  37028. },
  37029. {
  37030. name: "Megamacro",
  37031. height: math.unit(5.7, "earths")
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37037. {
  37038. front: {
  37039. height: math.unit(5 + 10/12, "feet"),
  37040. weight: math.unit(150, "lb"),
  37041. name: "Front",
  37042. image: {
  37043. source: "./media/characters/jamie/front.svg",
  37044. extra: 1908/1768,
  37045. bottom: 19/1927
  37046. }
  37047. },
  37048. },
  37049. [
  37050. {
  37051. name: "Minimum",
  37052. height: math.unit(2, "cm")
  37053. },
  37054. {
  37055. name: "Micro",
  37056. height: math.unit(3, "inches")
  37057. },
  37058. {
  37059. name: "Normal",
  37060. height: math.unit(5 + 10/12, "feet"),
  37061. default: true
  37062. },
  37063. {
  37064. name: "Macro",
  37065. height: math.unit(150, "feet")
  37066. },
  37067. {
  37068. name: "Megamacro",
  37069. height: math.unit(10000, "m")
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(2, "meters"),
  37078. weight: math.unit(100, "kg"),
  37079. name: "Front",
  37080. image: {
  37081. source: "./media/characters/shiron/front.svg",
  37082. extra: 2103/1985,
  37083. bottom: 98/2201
  37084. }
  37085. },
  37086. back: {
  37087. height: math.unit(2, "meters"),
  37088. weight: math.unit(100, "kg"),
  37089. name: "Back",
  37090. image: {
  37091. source: "./media/characters/shiron/back.svg",
  37092. extra: 2110/2015,
  37093. bottom: 89/2199
  37094. }
  37095. },
  37096. hand: {
  37097. height: math.unit(0.96, "feet"),
  37098. name: "Hand",
  37099. image: {
  37100. source: "./media/characters/shiron/hand.svg"
  37101. }
  37102. },
  37103. foot: {
  37104. height: math.unit(1.464, "feet"),
  37105. name: "Foot",
  37106. image: {
  37107. source: "./media/characters/shiron/foot.svg"
  37108. }
  37109. },
  37110. },
  37111. [
  37112. {
  37113. name: "Normal",
  37114. height: math.unit(2, "meters")
  37115. },
  37116. {
  37117. name: "Macro",
  37118. height: math.unit(500, "meters"),
  37119. default: true
  37120. },
  37121. {
  37122. name: "Megamacro",
  37123. height: math.unit(20, "km")
  37124. },
  37125. ]
  37126. ))
  37127. characterMakers.push(() => makeCharacter(
  37128. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37129. {
  37130. front: {
  37131. height: math.unit(6, "feet"),
  37132. name: "Front",
  37133. image: {
  37134. source: "./media/characters/sam/front.svg",
  37135. extra: 849/826,
  37136. bottom: 19/868
  37137. }
  37138. },
  37139. },
  37140. [
  37141. {
  37142. name: "Normal",
  37143. height: math.unit(6, "feet"),
  37144. default: true
  37145. },
  37146. ]
  37147. ))
  37148. characterMakers.push(() => makeCharacter(
  37149. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37150. {
  37151. front: {
  37152. height: math.unit(8 + 4/12, "feet"),
  37153. weight: math.unit(122, "kg"),
  37154. name: "Front",
  37155. image: {
  37156. source: "./media/characters/namori-kurogawa/front.svg",
  37157. extra: 1894/1576,
  37158. bottom: 34/1928
  37159. }
  37160. },
  37161. },
  37162. [
  37163. {
  37164. name: "Normal",
  37165. height: math.unit(8 + 4/12, "feet"),
  37166. default: true
  37167. },
  37168. ]
  37169. ))
  37170. characterMakers.push(() => makeCharacter(
  37171. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37172. {
  37173. front: {
  37174. height: math.unit(9, "feet"),
  37175. weight: math.unit(621, "lb"),
  37176. name: "Front",
  37177. image: {
  37178. source: "./media/characters/unmru/front.svg",
  37179. extra: 1853/1747,
  37180. bottom: 73/1926
  37181. }
  37182. },
  37183. side: {
  37184. height: math.unit(9, "feet"),
  37185. weight: math.unit(621, "lb"),
  37186. name: "Side",
  37187. image: {
  37188. source: "./media/characters/unmru/side.svg",
  37189. extra: 1781/1671,
  37190. bottom: 127/1908
  37191. }
  37192. },
  37193. back: {
  37194. height: math.unit(9, "feet"),
  37195. weight: math.unit(621, "lb"),
  37196. name: "Back",
  37197. image: {
  37198. source: "./media/characters/unmru/back.svg",
  37199. extra: 1894/1765,
  37200. bottom: 75/1969
  37201. }
  37202. },
  37203. dick: {
  37204. height: math.unit(3, "feet"),
  37205. weight: math.unit(35, "lb"),
  37206. name: "Dick",
  37207. image: {
  37208. source: "./media/characters/unmru/dick.svg"
  37209. }
  37210. },
  37211. },
  37212. [
  37213. {
  37214. name: "Normal",
  37215. height: math.unit(9, "feet")
  37216. },
  37217. {
  37218. name: "Natural",
  37219. height: math.unit(27, "feet"),
  37220. default: true
  37221. },
  37222. {
  37223. name: "Giant",
  37224. height: math.unit(90, "feet")
  37225. },
  37226. {
  37227. name: "Kaiju",
  37228. height: math.unit(270, "feet")
  37229. },
  37230. {
  37231. name: "Macro",
  37232. height: math.unit(900, "feet")
  37233. },
  37234. {
  37235. name: "Macro+",
  37236. height: math.unit(2700, "feet")
  37237. },
  37238. {
  37239. name: "Megamacro",
  37240. height: math.unit(9000, "feet")
  37241. },
  37242. {
  37243. name: "City-Crushing",
  37244. height: math.unit(27000, "feet")
  37245. },
  37246. {
  37247. name: "Mountain-Mashing",
  37248. height: math.unit(90000, "feet")
  37249. },
  37250. {
  37251. name: "Earth-Eclipsing",
  37252. height: math.unit(2.7e8, "feet")
  37253. },
  37254. {
  37255. name: "Sol-Swallowing",
  37256. height: math.unit(9e10, "feet")
  37257. },
  37258. {
  37259. name: "Majoris-Munching",
  37260. height: math.unit(2.7e13, "feet")
  37261. },
  37262. ]
  37263. ))
  37264. characterMakers.push(() => makeCharacter(
  37265. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37266. {
  37267. front: {
  37268. height: math.unit(1, "inch"),
  37269. name: "Front",
  37270. image: {
  37271. source: "./media/characters/squeaks-mouse/front.svg",
  37272. extra: 352/308,
  37273. bottom: 25/377
  37274. }
  37275. },
  37276. },
  37277. [
  37278. {
  37279. name: "Micro",
  37280. height: math.unit(1, "inch"),
  37281. default: true
  37282. },
  37283. ]
  37284. ))
  37285. characterMakers.push(() => makeCharacter(
  37286. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37287. {
  37288. side: {
  37289. height: math.unit(35, "feet"),
  37290. name: "Side",
  37291. image: {
  37292. source: "./media/characters/sayko/side.svg",
  37293. extra: 1697/1021,
  37294. bottom: 82/1779
  37295. }
  37296. },
  37297. head: {
  37298. height: math.unit(16, "feet"),
  37299. name: "Head",
  37300. image: {
  37301. source: "./media/characters/sayko/head.svg"
  37302. }
  37303. },
  37304. forepaw: {
  37305. height: math.unit(7.85, "feet"),
  37306. name: "Forepaw",
  37307. image: {
  37308. source: "./media/characters/sayko/forepaw.svg"
  37309. }
  37310. },
  37311. hindpaw: {
  37312. height: math.unit(8.8, "feet"),
  37313. name: "Hindpaw",
  37314. image: {
  37315. source: "./media/characters/sayko/hindpaw.svg"
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(35, "feet"),
  37323. default: true
  37324. },
  37325. {
  37326. name: "Colossus",
  37327. height: math.unit(100, "meters")
  37328. },
  37329. {
  37330. name: "\"Small\" Deity",
  37331. height: math.unit(1, "km")
  37332. },
  37333. {
  37334. name: "\"Large\" Deity",
  37335. height: math.unit(15, "km")
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(6, "feet"),
  37344. weight: math.unit(250, "lb"),
  37345. name: "Front",
  37346. image: {
  37347. source: "./media/characters/mukiro/front.svg",
  37348. extra: 1368/1310,
  37349. bottom: 34/1402
  37350. }
  37351. },
  37352. },
  37353. [
  37354. {
  37355. name: "Normal",
  37356. height: math.unit(6, "feet"),
  37357. default: true
  37358. },
  37359. ]
  37360. ))
  37361. characterMakers.push(() => makeCharacter(
  37362. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37363. {
  37364. front: {
  37365. height: math.unit(12 + 4/12, "feet"),
  37366. name: "Front",
  37367. image: {
  37368. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37369. extra: 1346/1311,
  37370. bottom: 65/1411
  37371. }
  37372. },
  37373. },
  37374. [
  37375. {
  37376. name: "Base",
  37377. height: math.unit(12 + 4/12, "feet"),
  37378. default: true
  37379. },
  37380. {
  37381. name: "Macro",
  37382. height: math.unit(150, "feet")
  37383. },
  37384. {
  37385. name: "Mega",
  37386. height: math.unit(2, "miles")
  37387. },
  37388. {
  37389. name: "Demi God",
  37390. height: math.unit(4, "AU")
  37391. },
  37392. {
  37393. name: "God Size",
  37394. height: math.unit(1, "universe")
  37395. },
  37396. ]
  37397. ))
  37398. characterMakers.push(() => makeCharacter(
  37399. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37400. {
  37401. front: {
  37402. height: math.unit(3 + 3/12, "feet"),
  37403. weight: math.unit(88, "lb"),
  37404. name: "Front",
  37405. image: {
  37406. source: "./media/characters/trey/front.svg",
  37407. extra: 1815/1509,
  37408. bottom: 60/1875
  37409. }
  37410. },
  37411. },
  37412. [
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(3 + 3/12, "feet"),
  37416. default: true
  37417. },
  37418. ]
  37419. ))
  37420. characterMakers.push(() => makeCharacter(
  37421. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37422. {
  37423. front: {
  37424. height: math.unit(4, "meters"),
  37425. name: "Front",
  37426. image: {
  37427. source: "./media/characters/adelonda/front.svg",
  37428. extra: 1077/982,
  37429. bottom: 39/1116
  37430. }
  37431. },
  37432. back: {
  37433. height: math.unit(4, "meters"),
  37434. name: "Back",
  37435. image: {
  37436. source: "./media/characters/adelonda/back.svg",
  37437. extra: 1105/1003,
  37438. bottom: 25/1130
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Normal",
  37445. height: math.unit(4, "meters"),
  37446. default: true
  37447. },
  37448. ]
  37449. ))
  37450. characterMakers.push(() => makeCharacter(
  37451. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37452. {
  37453. front: {
  37454. height: math.unit(8 + 4/12, "feet"),
  37455. weight: math.unit(670, "lb"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/acadiel/front.svg",
  37459. extra: 1901/1595,
  37460. bottom: 142/2043
  37461. }
  37462. },
  37463. },
  37464. [
  37465. {
  37466. name: "Normal",
  37467. height: math.unit(8 + 4/12, "feet"),
  37468. default: true
  37469. },
  37470. {
  37471. name: "Macro",
  37472. height: math.unit(200, "feet")
  37473. },
  37474. ]
  37475. ))
  37476. characterMakers.push(() => makeCharacter(
  37477. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37478. {
  37479. front: {
  37480. height: math.unit(6 + 2/12, "feet"),
  37481. weight: math.unit(185, "lb"),
  37482. name: "Front",
  37483. image: {
  37484. source: "./media/characters/kayne-ein/front.svg",
  37485. extra: 1780/1560,
  37486. bottom: 81/1861
  37487. }
  37488. },
  37489. },
  37490. [
  37491. {
  37492. name: "Normal",
  37493. height: math.unit(6 + 2/12, "feet"),
  37494. default: true
  37495. },
  37496. {
  37497. name: "Transformation Stage",
  37498. height: math.unit(15, "feet")
  37499. },
  37500. {
  37501. name: "Macro",
  37502. height: math.unit(150, "feet")
  37503. },
  37504. {
  37505. name: "Earth's Shadow",
  37506. height: math.unit(6200, "miles")
  37507. },
  37508. {
  37509. name: "Universal Demon",
  37510. height: math.unit(28e9, "parsecs")
  37511. },
  37512. {
  37513. name: "Multiverse God",
  37514. height: math.unit(3, "multiverses")
  37515. },
  37516. ]
  37517. ))
  37518. characterMakers.push(() => makeCharacter(
  37519. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37520. {
  37521. front: {
  37522. height: math.unit(5 + 5/12, "feet"),
  37523. name: "Front",
  37524. image: {
  37525. source: "./media/characters/fawn/front.svg",
  37526. extra: 1873/1731,
  37527. bottom: 95/1968
  37528. }
  37529. },
  37530. back: {
  37531. height: math.unit(5 + 5/12, "feet"),
  37532. name: "Back",
  37533. image: {
  37534. source: "./media/characters/fawn/back.svg",
  37535. extra: 1813/1700,
  37536. bottom: 14/1827
  37537. }
  37538. },
  37539. hoof: {
  37540. height: math.unit(1.45, "feet"),
  37541. name: "Hoof",
  37542. image: {
  37543. source: "./media/characters/fawn/hoof.svg"
  37544. }
  37545. },
  37546. },
  37547. [
  37548. {
  37549. name: "Normal",
  37550. height: math.unit(5 + 5/12, "feet"),
  37551. default: true
  37552. },
  37553. ]
  37554. ))
  37555. characterMakers.push(() => makeCharacter(
  37556. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37557. {
  37558. front: {
  37559. height: math.unit(2 + 5/12, "feet"),
  37560. name: "Front",
  37561. image: {
  37562. source: "./media/characters/orion/front.svg",
  37563. extra: 1366/1304,
  37564. bottom: 43/1409
  37565. }
  37566. },
  37567. paw: {
  37568. height: math.unit(0.52, "feet"),
  37569. name: "Paw",
  37570. image: {
  37571. source: "./media/characters/orion/paw.svg"
  37572. }
  37573. },
  37574. },
  37575. [
  37576. {
  37577. name: "Normal",
  37578. height: math.unit(2 + 5/12, "feet"),
  37579. default: true
  37580. },
  37581. ]
  37582. ))
  37583. characterMakers.push(() => makeCharacter(
  37584. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37585. {
  37586. front: {
  37587. height: math.unit(5 + 10/12, "feet"),
  37588. name: "Front",
  37589. image: {
  37590. source: "./media/characters/vera/front.svg",
  37591. extra: 1680/1575,
  37592. bottom: 49/1729
  37593. }
  37594. },
  37595. back: {
  37596. height: math.unit(5 + 10/12, "feet"),
  37597. name: "Back",
  37598. image: {
  37599. source: "./media/characters/vera/back.svg",
  37600. extra: 1700/1588,
  37601. bottom: 18/1718
  37602. }
  37603. },
  37604. arcanine: {
  37605. height: math.unit(6 + 8/12, "feet"),
  37606. name: "Arcanine",
  37607. image: {
  37608. source: "./media/characters/vera/arcanine.svg",
  37609. extra: 1590/1511,
  37610. bottom: 71/1661
  37611. }
  37612. },
  37613. maw: {
  37614. height: math.unit(0.82, "feet"),
  37615. name: "Maw",
  37616. image: {
  37617. source: "./media/characters/vera/maw.svg"
  37618. }
  37619. },
  37620. mawArcanine: {
  37621. height: math.unit(0.97, "feet"),
  37622. name: "Maw (Arcanine)",
  37623. image: {
  37624. source: "./media/characters/vera/maw-arcanine.svg"
  37625. }
  37626. },
  37627. paw: {
  37628. height: math.unit(0.75, "feet"),
  37629. name: "Paw",
  37630. image: {
  37631. source: "./media/characters/vera/paw.svg"
  37632. }
  37633. },
  37634. pawprint: {
  37635. height: math.unit(0.52, "feet"),
  37636. name: "Pawprint",
  37637. image: {
  37638. source: "./media/characters/vera/pawprint.svg"
  37639. }
  37640. },
  37641. },
  37642. [
  37643. {
  37644. name: "Normal",
  37645. height: math.unit(5 + 10/12, "feet"),
  37646. default: true
  37647. },
  37648. {
  37649. name: "Macro",
  37650. height: math.unit(75, "feet")
  37651. },
  37652. ]
  37653. ))
  37654. characterMakers.push(() => makeCharacter(
  37655. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37656. {
  37657. front: {
  37658. height: math.unit(4, "feet"),
  37659. weight: math.unit(40, "lb"),
  37660. name: "Front",
  37661. image: {
  37662. source: "./media/characters/orvan-rabbit/front.svg",
  37663. extra: 1896/1642,
  37664. bottom: 29/1925
  37665. }
  37666. },
  37667. },
  37668. [
  37669. {
  37670. name: "Normal",
  37671. height: math.unit(4, "feet"),
  37672. default: true
  37673. },
  37674. ]
  37675. ))
  37676. characterMakers.push(() => makeCharacter(
  37677. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37678. {
  37679. front: {
  37680. height: math.unit(6, "feet"),
  37681. weight: math.unit(168, "lb"),
  37682. name: "Front",
  37683. image: {
  37684. source: "./media/characters/lisa/front.svg",
  37685. extra: 2065/1867,
  37686. bottom: 46/2111
  37687. }
  37688. },
  37689. back: {
  37690. height: math.unit(6, "feet"),
  37691. weight: math.unit(168, "lb"),
  37692. name: "Back",
  37693. image: {
  37694. source: "./media/characters/lisa/back.svg",
  37695. extra: 1982/1838,
  37696. bottom: 29/2011
  37697. }
  37698. },
  37699. maw: {
  37700. height: math.unit(0.81, "feet"),
  37701. name: "Maw",
  37702. image: {
  37703. source: "./media/characters/lisa/maw.svg"
  37704. }
  37705. },
  37706. paw: {
  37707. height: math.unit(0.9, "feet"),
  37708. name: "Paw",
  37709. image: {
  37710. source: "./media/characters/lisa/paw.svg"
  37711. }
  37712. },
  37713. caribousune: {
  37714. height: math.unit(7 + 2/12, "feet"),
  37715. weight: math.unit(268, "lb"),
  37716. name: "Caribousune",
  37717. image: {
  37718. source: "./media/characters/lisa/caribousune.svg",
  37719. extra: 1843/1633,
  37720. bottom: 29/1872
  37721. }
  37722. },
  37723. frontCaribousune: {
  37724. height: math.unit(7 + 2/12, "feet"),
  37725. weight: math.unit(268, "lb"),
  37726. name: "Front (Caribousune)",
  37727. image: {
  37728. source: "./media/characters/lisa/front-caribousune.svg",
  37729. extra: 1818/1638,
  37730. bottom: 52/1870
  37731. }
  37732. },
  37733. sideCaribousune: {
  37734. height: math.unit(7 + 2/12, "feet"),
  37735. weight: math.unit(268, "lb"),
  37736. name: "Side (Caribousune)",
  37737. image: {
  37738. source: "./media/characters/lisa/side-caribousune.svg",
  37739. extra: 1851/1635,
  37740. bottom: 16/1867
  37741. }
  37742. },
  37743. backCaribousune: {
  37744. height: math.unit(7 + 2/12, "feet"),
  37745. weight: math.unit(268, "lb"),
  37746. name: "Back (Caribousune)",
  37747. image: {
  37748. source: "./media/characters/lisa/back-caribousune.svg",
  37749. extra: 1801/1604,
  37750. bottom: 44/1845
  37751. }
  37752. },
  37753. caribou: {
  37754. height: math.unit(7 + 2/12, "feet"),
  37755. weight: math.unit(268, "lb"),
  37756. name: "Caribou",
  37757. image: {
  37758. source: "./media/characters/lisa/caribou.svg",
  37759. extra: 1843/1633,
  37760. bottom: 29/1872
  37761. }
  37762. },
  37763. frontCaribou: {
  37764. height: math.unit(7 + 2/12, "feet"),
  37765. weight: math.unit(268, "lb"),
  37766. name: "Front (Caribou)",
  37767. image: {
  37768. source: "./media/characters/lisa/front-caribou.svg",
  37769. extra: 1818/1638,
  37770. bottom: 52/1870
  37771. }
  37772. },
  37773. sideCaribou: {
  37774. height: math.unit(7 + 2/12, "feet"),
  37775. weight: math.unit(268, "lb"),
  37776. name: "Side (Caribou)",
  37777. image: {
  37778. source: "./media/characters/lisa/side-caribou.svg",
  37779. extra: 1851/1635,
  37780. bottom: 16/1867
  37781. }
  37782. },
  37783. backCaribou: {
  37784. height: math.unit(7 + 2/12, "feet"),
  37785. weight: math.unit(268, "lb"),
  37786. name: "Back (Caribou)",
  37787. image: {
  37788. source: "./media/characters/lisa/back-caribou.svg",
  37789. extra: 1801/1604,
  37790. bottom: 44/1845
  37791. }
  37792. },
  37793. mawCaribou: {
  37794. height: math.unit(1.45, "feet"),
  37795. name: "Maw (Caribou)",
  37796. image: {
  37797. source: "./media/characters/lisa/maw-caribou.svg"
  37798. }
  37799. },
  37800. mawCaribousune: {
  37801. height: math.unit(1.45, "feet"),
  37802. name: "Maw (Caribousune)",
  37803. image: {
  37804. source: "./media/characters/lisa/maw-caribousune.svg"
  37805. }
  37806. },
  37807. pawCaribousune: {
  37808. height: math.unit(1.61, "feet"),
  37809. name: "Paw (Caribou)",
  37810. image: {
  37811. source: "./media/characters/lisa/paw-caribousune.svg"
  37812. }
  37813. },
  37814. },
  37815. [
  37816. {
  37817. name: "Normal",
  37818. height: math.unit(6, "feet")
  37819. },
  37820. {
  37821. name: "God Size",
  37822. height: math.unit(72, "feet"),
  37823. default: true
  37824. },
  37825. {
  37826. name: "Towering",
  37827. height: math.unit(288, "feet")
  37828. },
  37829. {
  37830. name: "City Size",
  37831. height: math.unit(48384, "feet")
  37832. },
  37833. {
  37834. name: "Continental",
  37835. height: math.unit(4200, "miles")
  37836. },
  37837. {
  37838. name: "Planet Eater",
  37839. height: math.unit(42, "earths")
  37840. },
  37841. {
  37842. name: "Star Swallower",
  37843. height: math.unit(42, "solarradii")
  37844. },
  37845. {
  37846. name: "System Swallower",
  37847. height: math.unit(84000, "AU")
  37848. },
  37849. {
  37850. name: "Galaxy Gobbler",
  37851. height: math.unit(42, "galaxies")
  37852. },
  37853. {
  37854. name: "Universe Devourer",
  37855. height: math.unit(42, "universes")
  37856. },
  37857. {
  37858. name: "Multiverse Muncher",
  37859. height: math.unit(42, "multiverses")
  37860. },
  37861. ]
  37862. ))
  37863. characterMakers.push(() => makeCharacter(
  37864. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37865. {
  37866. front: {
  37867. height: math.unit(36, "feet"),
  37868. name: "Front",
  37869. image: {
  37870. source: "./media/characters/shadow-rat/front.svg",
  37871. extra: 1845/1758,
  37872. bottom: 83/1928
  37873. }
  37874. },
  37875. },
  37876. [
  37877. {
  37878. name: "Macro",
  37879. height: math.unit(36, "feet"),
  37880. default: true
  37881. },
  37882. ]
  37883. ))
  37884. characterMakers.push(() => makeCharacter(
  37885. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37886. {
  37887. side: {
  37888. height: math.unit(8, "feet"),
  37889. weight: math.unit(2630, "lb"),
  37890. name: "Side",
  37891. image: {
  37892. source: "./media/characters/torallia/side.svg",
  37893. extra: 2164/2021,
  37894. bottom: 371/2535
  37895. }
  37896. },
  37897. },
  37898. [
  37899. {
  37900. name: "Mortal Interaction",
  37901. height: math.unit(8, "feet")
  37902. },
  37903. {
  37904. name: "Natural",
  37905. height: math.unit(24, "feet"),
  37906. default: true
  37907. },
  37908. {
  37909. name: "Giant",
  37910. height: math.unit(80, "feet")
  37911. },
  37912. {
  37913. name: "Kaiju",
  37914. height: math.unit(240, "feet")
  37915. },
  37916. {
  37917. name: "Macro",
  37918. height: math.unit(800, "feet")
  37919. },
  37920. {
  37921. name: "Macro+",
  37922. height: math.unit(2400, "feet")
  37923. },
  37924. {
  37925. name: "Macro++",
  37926. height: math.unit(8000, "feet")
  37927. },
  37928. {
  37929. name: "City-Crushing",
  37930. height: math.unit(24000, "feet")
  37931. },
  37932. {
  37933. name: "Mountain-Mashing",
  37934. height: math.unit(80000, "feet")
  37935. },
  37936. {
  37937. name: "District Demolisher",
  37938. height: math.unit(240000, "feet")
  37939. },
  37940. {
  37941. name: "Tri-County Terror",
  37942. height: math.unit(800000, "feet")
  37943. },
  37944. {
  37945. name: "State Smasher",
  37946. height: math.unit(2.4e6, "feet")
  37947. },
  37948. {
  37949. name: "Nation Nemesis",
  37950. height: math.unit(8e6, "feet")
  37951. },
  37952. {
  37953. name: "Continent Cracker",
  37954. height: math.unit(2.4e7, "feet")
  37955. },
  37956. {
  37957. name: "Planet-Pillaging",
  37958. height: math.unit(8e7, "feet")
  37959. },
  37960. {
  37961. name: "Earth-Eclipsing",
  37962. height: math.unit(2.4e8, "feet")
  37963. },
  37964. {
  37965. name: "Jovian-Jostling",
  37966. height: math.unit(8e8, "feet")
  37967. },
  37968. {
  37969. name: "Gas Giant Gulper",
  37970. height: math.unit(2.4e9, "feet")
  37971. },
  37972. {
  37973. name: "Astral Annihilator",
  37974. height: math.unit(8e9, "feet")
  37975. },
  37976. {
  37977. name: "Celestial Conqueror",
  37978. height: math.unit(2.4e10, "feet")
  37979. },
  37980. {
  37981. name: "Sol-Swallowing",
  37982. height: math.unit(8e10, "feet")
  37983. },
  37984. {
  37985. name: "Hunter of the Heavens",
  37986. height: math.unit(2.4e13, "feet")
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(6 + 8/12, "feet"),
  37995. name: "Front",
  37996. image: {
  37997. source: "./media/characters/rebecca-pawlson/front.svg",
  37998. extra: 1737/1596,
  37999. bottom: 107/1844
  38000. }
  38001. },
  38002. back: {
  38003. height: math.unit(6 + 8/12, "feet"),
  38004. name: "Back",
  38005. image: {
  38006. source: "./media/characters/rebecca-pawlson/back.svg",
  38007. extra: 1702/1523,
  38008. bottom: 86/1788
  38009. }
  38010. },
  38011. },
  38012. [
  38013. {
  38014. name: "Normal",
  38015. height: math.unit(6 + 8/12, "feet")
  38016. },
  38017. {
  38018. name: "Mini Macro",
  38019. height: math.unit(10, "feet"),
  38020. default: true
  38021. },
  38022. {
  38023. name: "Macro",
  38024. height: math.unit(100, "feet")
  38025. },
  38026. {
  38027. name: "Mega Macro",
  38028. height: math.unit(2500, "feet")
  38029. },
  38030. {
  38031. name: "Giga Macro",
  38032. height: math.unit(50, "miles")
  38033. },
  38034. ]
  38035. ))
  38036. characterMakers.push(() => makeCharacter(
  38037. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38038. {
  38039. front: {
  38040. height: math.unit(7 + 6/12, "feet"),
  38041. weight: math.unit(600, "lb"),
  38042. name: "Front",
  38043. image: {
  38044. source: "./media/characters/moxie-nova/front.svg",
  38045. extra: 1734/1652,
  38046. bottom: 41/1775
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(7 + 6/12, "feet"),
  38054. default: true
  38055. },
  38056. ]
  38057. ))
  38058. characterMakers.push(() => makeCharacter(
  38059. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38060. {
  38061. goat: {
  38062. height: math.unit(4, "feet"),
  38063. weight: math.unit(180, "lb"),
  38064. name: "Goat",
  38065. image: {
  38066. source: "./media/characters/tiffany/goat.svg",
  38067. extra: 1845/1595,
  38068. bottom: 106/1951
  38069. }
  38070. },
  38071. front: {
  38072. height: math.unit(5, "feet"),
  38073. weight: math.unit(150, "lb"),
  38074. name: "Foxcoon",
  38075. image: {
  38076. source: "./media/characters/tiffany/foxcoon.svg",
  38077. extra: 1941/1845,
  38078. bottom: 58/1999
  38079. }
  38080. },
  38081. },
  38082. [
  38083. {
  38084. name: "Normal",
  38085. height: math.unit(5, "feet"),
  38086. default: true
  38087. },
  38088. ]
  38089. ))
  38090. characterMakers.push(() => makeCharacter(
  38091. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38092. {
  38093. front: {
  38094. height: math.unit(8, "feet"),
  38095. weight: math.unit(300, "lb"),
  38096. name: "Front",
  38097. image: {
  38098. source: "./media/characters/raxinath/front.svg",
  38099. extra: 1407/1309,
  38100. bottom: 39/1446
  38101. }
  38102. },
  38103. back: {
  38104. height: math.unit(8, "feet"),
  38105. weight: math.unit(300, "lb"),
  38106. name: "Back",
  38107. image: {
  38108. source: "./media/characters/raxinath/back.svg",
  38109. extra: 1405/1315,
  38110. bottom: 9/1414
  38111. }
  38112. },
  38113. },
  38114. [
  38115. {
  38116. name: "Speck",
  38117. height: math.unit(0.5, "nm")
  38118. },
  38119. {
  38120. name: "Micro",
  38121. height: math.unit(3, "inches")
  38122. },
  38123. {
  38124. name: "Kobold",
  38125. height: math.unit(3, "feet")
  38126. },
  38127. {
  38128. name: "Normal",
  38129. height: math.unit(8, "feet"),
  38130. default: true
  38131. },
  38132. {
  38133. name: "Giant",
  38134. height: math.unit(50, "feet")
  38135. },
  38136. {
  38137. name: "Macro",
  38138. height: math.unit(1000, "feet")
  38139. },
  38140. {
  38141. name: "Megamacro",
  38142. height: math.unit(1, "mile")
  38143. },
  38144. ]
  38145. ))
  38146. characterMakers.push(() => makeCharacter(
  38147. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38148. {
  38149. front: {
  38150. height: math.unit(10, "feet"),
  38151. weight: math.unit(1442, "lb"),
  38152. name: "Front",
  38153. image: {
  38154. source: "./media/characters/mal-dragon/front.svg",
  38155. extra: 1515/1444,
  38156. bottom: 113/1628
  38157. }
  38158. },
  38159. back: {
  38160. height: math.unit(10, "feet"),
  38161. weight: math.unit(1442, "lb"),
  38162. name: "Back",
  38163. image: {
  38164. source: "./media/characters/mal-dragon/back.svg",
  38165. extra: 1527/1434,
  38166. bottom: 25/1552
  38167. }
  38168. },
  38169. },
  38170. [
  38171. {
  38172. name: "Mortal Interaction",
  38173. height: math.unit(10, "feet"),
  38174. default: true
  38175. },
  38176. {
  38177. name: "Large",
  38178. height: math.unit(30, "feet")
  38179. },
  38180. {
  38181. name: "Kaiju",
  38182. height: math.unit(300, "feet")
  38183. },
  38184. {
  38185. name: "Megamacro",
  38186. height: math.unit(10000, "feet")
  38187. },
  38188. {
  38189. name: "Continent Cracker",
  38190. height: math.unit(30000000, "feet")
  38191. },
  38192. {
  38193. name: "Sol-Swallowing",
  38194. height: math.unit(1e11, "feet")
  38195. },
  38196. {
  38197. name: "Light Universal",
  38198. height: math.unit(5, "universes")
  38199. },
  38200. {
  38201. name: "Universe Atoms",
  38202. height: math.unit(1.829e9, "universes")
  38203. },
  38204. {
  38205. name: "Light Multiversal",
  38206. height: math.unit(5, "multiverses")
  38207. },
  38208. {
  38209. name: "Multiverse Atoms",
  38210. height: math.unit(1.829e9, "multiverses")
  38211. },
  38212. {
  38213. name: "Fabric of Time",
  38214. height: math.unit(1e262, "multiverses")
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38220. {
  38221. front: {
  38222. height: math.unit(9, "feet"),
  38223. weight: math.unit(1050, "lb"),
  38224. name: "Front",
  38225. image: {
  38226. source: "./media/characters/tabitha/front.svg",
  38227. extra: 2083/1994,
  38228. bottom: 68/2151
  38229. }
  38230. },
  38231. },
  38232. [
  38233. {
  38234. name: "Baseline",
  38235. height: math.unit(9, "feet"),
  38236. default: true
  38237. },
  38238. {
  38239. name: "Giant",
  38240. height: math.unit(90, "feet")
  38241. },
  38242. {
  38243. name: "Macro",
  38244. height: math.unit(900, "feet")
  38245. },
  38246. {
  38247. name: "Megamacro",
  38248. height: math.unit(9000, "feet")
  38249. },
  38250. {
  38251. name: "City-Crushing",
  38252. height: math.unit(27000, "feet")
  38253. },
  38254. {
  38255. name: "Mountain-Mashing",
  38256. height: math.unit(90000, "feet")
  38257. },
  38258. {
  38259. name: "Nation Nemesis",
  38260. height: math.unit(9e6, "feet")
  38261. },
  38262. {
  38263. name: "Continent Cracker",
  38264. height: math.unit(27e6, "feet")
  38265. },
  38266. {
  38267. name: "Earth-Eclipsing",
  38268. height: math.unit(2.7e8, "feet")
  38269. },
  38270. {
  38271. name: "Gas Giant Gulper",
  38272. height: math.unit(2.7e9, "feet")
  38273. },
  38274. {
  38275. name: "Sol-Swallowing",
  38276. height: math.unit(9e10, "feet")
  38277. },
  38278. {
  38279. name: "Galaxy Gulper",
  38280. height: math.unit(9, "galaxies")
  38281. },
  38282. {
  38283. name: "Cosmos Churner",
  38284. height: math.unit(9, "universes")
  38285. },
  38286. ]
  38287. ))
  38288. characterMakers.push(() => makeCharacter(
  38289. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38290. {
  38291. front: {
  38292. height: math.unit(160, "cm"),
  38293. weight: math.unit(55, "kg"),
  38294. name: "Front",
  38295. image: {
  38296. source: "./media/characters/tow/front.svg",
  38297. extra: 1751/1722,
  38298. bottom: 74/1825
  38299. }
  38300. },
  38301. },
  38302. [
  38303. {
  38304. name: "Norm",
  38305. height: math.unit(160, "cm")
  38306. },
  38307. {
  38308. name: "Casual",
  38309. height: math.unit(3200, "m"),
  38310. default: true
  38311. },
  38312. {
  38313. name: "Show-Off",
  38314. height: math.unit(160, "km")
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38320. {
  38321. front: {
  38322. height: math.unit(7 + 11/12, "feet"),
  38323. weight: math.unit(342.8, "lb"),
  38324. name: "Front",
  38325. image: {
  38326. source: "./media/characters/vivian-orca-dragon/front.svg",
  38327. extra: 1890/1865,
  38328. bottom: 28/1918
  38329. }
  38330. },
  38331. },
  38332. [
  38333. {
  38334. name: "Micro",
  38335. height: math.unit(5, "inches")
  38336. },
  38337. {
  38338. name: "Normal",
  38339. height: math.unit(7 + 11/12, "feet"),
  38340. default: true
  38341. },
  38342. {
  38343. name: "Macro",
  38344. height: math.unit(395 + 7/12, "feet")
  38345. },
  38346. ]
  38347. ))
  38348. characterMakers.push(() => makeCharacter(
  38349. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38350. {
  38351. side: {
  38352. height: math.unit(10, "feet"),
  38353. weight: math.unit(1442, "lb"),
  38354. name: "Side",
  38355. image: {
  38356. source: "./media/characters/lotherakon/side.svg",
  38357. extra: 1604/1497,
  38358. bottom: 89/1693
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Mortal Interaction",
  38365. height: math.unit(10, "feet")
  38366. },
  38367. {
  38368. name: "Large",
  38369. height: math.unit(30, "feet"),
  38370. default: true
  38371. },
  38372. {
  38373. name: "Giant",
  38374. height: math.unit(100, "feet")
  38375. },
  38376. {
  38377. name: "Kaiju",
  38378. height: math.unit(300, "feet")
  38379. },
  38380. {
  38381. name: "Macro",
  38382. height: math.unit(1000, "feet")
  38383. },
  38384. {
  38385. name: "Macro+",
  38386. height: math.unit(3000, "feet")
  38387. },
  38388. {
  38389. name: "Megamacro",
  38390. height: math.unit(10000, "feet")
  38391. },
  38392. {
  38393. name: "City-Crushing",
  38394. height: math.unit(30000, "feet")
  38395. },
  38396. {
  38397. name: "Continent Cracker",
  38398. height: math.unit(30e6, "feet")
  38399. },
  38400. {
  38401. name: "Earth Eclipsing",
  38402. height: math.unit(3e8, "feet")
  38403. },
  38404. {
  38405. name: "Gas Giant Gulper",
  38406. height: math.unit(3e9, "feet")
  38407. },
  38408. {
  38409. name: "Sol-Swallowing",
  38410. height: math.unit(1e11, "feet")
  38411. },
  38412. {
  38413. name: "System Swallower",
  38414. height: math.unit(3e14, "feet")
  38415. },
  38416. {
  38417. name: "Galaxy Gulper",
  38418. height: math.unit(10, "galaxies")
  38419. },
  38420. {
  38421. name: "Light Universal",
  38422. height: math.unit(5, "universes")
  38423. },
  38424. {
  38425. name: "Universe Palm",
  38426. height: math.unit(20, "universes")
  38427. },
  38428. {
  38429. name: "Light Multiversal",
  38430. height: math.unit(5, "multiverses")
  38431. },
  38432. {
  38433. name: "Multiverse Palm",
  38434. height: math.unit(20, "multiverses")
  38435. },
  38436. {
  38437. name: "Inferno Incarnate",
  38438. height: math.unit(1e7, "multiverses")
  38439. },
  38440. ]
  38441. ))
  38442. characterMakers.push(() => makeCharacter(
  38443. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38444. {
  38445. front: {
  38446. height: math.unit(8, "feet"),
  38447. weight: math.unit(1200, "lb"),
  38448. name: "Front",
  38449. image: {
  38450. source: "./media/characters/malithee/front.svg",
  38451. extra: 1675/1640,
  38452. bottom: 162/1837
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Mortal Interaction",
  38459. height: math.unit(8, "feet"),
  38460. default: true
  38461. },
  38462. {
  38463. name: "Large",
  38464. height: math.unit(24, "feet")
  38465. },
  38466. {
  38467. name: "Kaiju",
  38468. height: math.unit(240, "feet")
  38469. },
  38470. {
  38471. name: "Megamacro",
  38472. height: math.unit(8000, "feet")
  38473. },
  38474. {
  38475. name: "Continent Cracker",
  38476. height: math.unit(24e6, "feet")
  38477. },
  38478. {
  38479. name: "Earth-Eclipsing",
  38480. height: math.unit(2.4e8, "feet")
  38481. },
  38482. {
  38483. name: "Sol-Swallowing",
  38484. height: math.unit(8e10, "feet")
  38485. },
  38486. {
  38487. name: "Galaxy Gulper",
  38488. height: math.unit(8, "galaxies")
  38489. },
  38490. {
  38491. name: "Light Universal",
  38492. height: math.unit(4, "universes")
  38493. },
  38494. {
  38495. name: "Universe Atoms",
  38496. height: math.unit(1.829e9, "universes")
  38497. },
  38498. {
  38499. name: "Light Multiversal",
  38500. height: math.unit(4, "multiverses")
  38501. },
  38502. {
  38503. name: "Multiverse Atoms",
  38504. height: math.unit(1.829e9, "multiverses")
  38505. },
  38506. {
  38507. name: "Nigh-Omnipresence",
  38508. height: math.unit(8e261, "multiverses")
  38509. },
  38510. ]
  38511. ))
  38512. characterMakers.push(() => makeCharacter(
  38513. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38514. {
  38515. front: {
  38516. height: math.unit(10, "feet"),
  38517. weight: math.unit(1500, "lb"),
  38518. name: "Front",
  38519. image: {
  38520. source: "./media/characters/miles-thestia/front.svg",
  38521. extra: 1812/1727,
  38522. bottom: 86/1898
  38523. }
  38524. },
  38525. back: {
  38526. height: math.unit(10, "feet"),
  38527. weight: math.unit(1500, "lb"),
  38528. name: "Back",
  38529. image: {
  38530. source: "./media/characters/miles-thestia/back.svg",
  38531. extra: 1799/1690,
  38532. bottom: 47/1846
  38533. }
  38534. },
  38535. frontNsfw: {
  38536. height: math.unit(10, "feet"),
  38537. weight: math.unit(1500, "lb"),
  38538. name: "Front (NSFW)",
  38539. image: {
  38540. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38541. extra: 1812/1727,
  38542. bottom: 86/1898
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Mini-Macro",
  38549. height: math.unit(10, "feet"),
  38550. default: true
  38551. },
  38552. ]
  38553. ))
  38554. characterMakers.push(() => makeCharacter(
  38555. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38556. {
  38557. front: {
  38558. height: math.unit(25, "feet"),
  38559. name: "Front",
  38560. image: {
  38561. source: "./media/characters/titan-s-wulf/front.svg",
  38562. extra: 1560/1484,
  38563. bottom: 76/1636
  38564. }
  38565. },
  38566. },
  38567. [
  38568. {
  38569. name: "Smallest",
  38570. height: math.unit(25, "feet"),
  38571. default: true
  38572. },
  38573. {
  38574. name: "Normal",
  38575. height: math.unit(200, "feet")
  38576. },
  38577. {
  38578. name: "Macro",
  38579. height: math.unit(200000, "feet")
  38580. },
  38581. {
  38582. name: "Multiversal Original",
  38583. height: math.unit(10000, "multiverses")
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38589. {
  38590. front: {
  38591. height: math.unit(8, "feet"),
  38592. weight: math.unit(553, "lb"),
  38593. name: "Front",
  38594. image: {
  38595. source: "./media/characters/tawendeh/front.svg",
  38596. extra: 2365/2268,
  38597. bottom: 83/2448
  38598. }
  38599. },
  38600. frontClothed: {
  38601. height: math.unit(8, "feet"),
  38602. weight: math.unit(553, "lb"),
  38603. name: "Front (Clothed)",
  38604. image: {
  38605. source: "./media/characters/tawendeh/front-clothed.svg",
  38606. extra: 2365/2268,
  38607. bottom: 83/2448
  38608. }
  38609. },
  38610. back: {
  38611. height: math.unit(8, "feet"),
  38612. weight: math.unit(553, "lb"),
  38613. name: "Back",
  38614. image: {
  38615. source: "./media/characters/tawendeh/back.svg",
  38616. extra: 2397/2294,
  38617. bottom: 42/2439
  38618. }
  38619. },
  38620. },
  38621. [
  38622. {
  38623. name: "Mortal Interaction",
  38624. height: math.unit(8, "feet"),
  38625. default: true
  38626. },
  38627. {
  38628. name: "Giant",
  38629. height: math.unit(80, "feet")
  38630. },
  38631. {
  38632. name: "Macro",
  38633. height: math.unit(800, "feet")
  38634. },
  38635. {
  38636. name: "Megamacro",
  38637. height: math.unit(8000, "feet")
  38638. },
  38639. {
  38640. name: "City-Crushing",
  38641. height: math.unit(24000, "feet")
  38642. },
  38643. {
  38644. name: "Mountain-Mashing",
  38645. height: math.unit(80000, "feet")
  38646. },
  38647. {
  38648. name: "Nation Nemesis",
  38649. height: math.unit(8e6, "feet")
  38650. },
  38651. {
  38652. name: "Continent Cracker",
  38653. height: math.unit(24e6, "feet")
  38654. },
  38655. {
  38656. name: "Earth-Eclipsing",
  38657. height: math.unit(2.4e8, "feet")
  38658. },
  38659. {
  38660. name: "Gas Giant Gulper",
  38661. height: math.unit(2.4e9, "feet")
  38662. },
  38663. {
  38664. name: "Sol-Swallowing",
  38665. height: math.unit(8e10, "feet")
  38666. },
  38667. {
  38668. name: "Galaxy Gulper",
  38669. height: math.unit(8, "galaxies")
  38670. },
  38671. {
  38672. name: "Cosmos Churner",
  38673. height: math.unit(8, "universes")
  38674. },
  38675. {
  38676. name: "Omnipotent Otter",
  38677. height: math.unit(80, "universes")
  38678. },
  38679. ]
  38680. ))
  38681. characterMakers.push(() => makeCharacter(
  38682. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38683. {
  38684. front: {
  38685. height: math.unit(2.6, "meters"),
  38686. weight: math.unit(900, "kg"),
  38687. name: "Front",
  38688. image: {
  38689. source: "./media/characters/neesha/front.svg",
  38690. extra: 1803/1653,
  38691. bottom: 128/1931
  38692. }
  38693. },
  38694. },
  38695. [
  38696. {
  38697. name: "Normal",
  38698. height: math.unit(2.6, "meters"),
  38699. default: true
  38700. },
  38701. {
  38702. name: "Macro",
  38703. height: math.unit(50, "meters")
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38709. {
  38710. front: {
  38711. height: math.unit(5, "feet"),
  38712. weight: math.unit(185, "lb"),
  38713. name: "Front",
  38714. image: {
  38715. source: "./media/characters/kyera/front.svg",
  38716. extra: 1875/1790,
  38717. bottom: 96/1971
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Normal",
  38724. height: math.unit(5, "feet"),
  38725. default: true
  38726. },
  38727. ]
  38728. ))
  38729. characterMakers.push(() => makeCharacter(
  38730. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38731. {
  38732. front: {
  38733. height: math.unit(7 + 6/12, "feet"),
  38734. weight: math.unit(540, "lb"),
  38735. name: "Front",
  38736. image: {
  38737. source: "./media/characters/yuko/front.svg",
  38738. extra: 1282/1222,
  38739. bottom: 101/1383
  38740. }
  38741. },
  38742. frontClothed: {
  38743. height: math.unit(7 + 6/12, "feet"),
  38744. weight: math.unit(540, "lb"),
  38745. name: "Front (Clothed)",
  38746. image: {
  38747. source: "./media/characters/yuko/front-clothed.svg",
  38748. extra: 1282/1222,
  38749. bottom: 101/1383
  38750. }
  38751. },
  38752. },
  38753. [
  38754. {
  38755. name: "Normal",
  38756. height: math.unit(7 + 6/12, "feet"),
  38757. default: true
  38758. },
  38759. {
  38760. name: "Macro",
  38761. height: math.unit(26 + 9/12, "feet")
  38762. },
  38763. {
  38764. name: "Megamacro",
  38765. height: math.unit(300, "feet")
  38766. },
  38767. {
  38768. name: "Gigamacro",
  38769. height: math.unit(5000, "feet")
  38770. },
  38771. {
  38772. name: "Planetary",
  38773. height: math.unit(10000, "miles")
  38774. },
  38775. ]
  38776. ))
  38777. characterMakers.push(() => makeCharacter(
  38778. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38779. {
  38780. front: {
  38781. height: math.unit(8 + 2/12, "feet"),
  38782. weight: math.unit(600, "lb"),
  38783. name: "Front",
  38784. image: {
  38785. source: "./media/characters/deam-nitrel/front.svg",
  38786. extra: 1308/1234,
  38787. bottom: 125/1433
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(8 + 2/12, "feet"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38801. {
  38802. front: {
  38803. height: math.unit(6.1, "feet"),
  38804. weight: math.unit(180, "lb"),
  38805. name: "Front",
  38806. image: {
  38807. source: "./media/characters/skyress/front.svg",
  38808. extra: 1045/915,
  38809. bottom: 28/1073
  38810. }
  38811. },
  38812. maw: {
  38813. height: math.unit(1, "feet"),
  38814. name: "Maw",
  38815. image: {
  38816. source: "./media/characters/skyress/maw.svg"
  38817. }
  38818. },
  38819. },
  38820. [
  38821. {
  38822. name: "Normal",
  38823. height: math.unit(6.1, "feet"),
  38824. default: true
  38825. },
  38826. {
  38827. name: "Macro",
  38828. height: math.unit(200, "feet")
  38829. },
  38830. ]
  38831. ))
  38832. characterMakers.push(() => makeCharacter(
  38833. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38834. {
  38835. front: {
  38836. height: math.unit(4 + 2/12, "feet"),
  38837. weight: math.unit(40, "kg"),
  38838. name: "Front",
  38839. image: {
  38840. source: "./media/characters/amethyst-jones/front.svg",
  38841. extra: 1220/1150,
  38842. bottom: 101/1321
  38843. }
  38844. },
  38845. },
  38846. [
  38847. {
  38848. name: "Normal",
  38849. height: math.unit(4 + 2/12, "feet"),
  38850. default: true
  38851. },
  38852. ]
  38853. ))
  38854. characterMakers.push(() => makeCharacter(
  38855. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38856. {
  38857. front: {
  38858. height: math.unit(1.7, "m"),
  38859. weight: math.unit(135, "lb"),
  38860. name: "Front",
  38861. image: {
  38862. source: "./media/characters/jade/front.svg",
  38863. extra: 1818/1767,
  38864. bottom: 32/1850
  38865. }
  38866. },
  38867. back: {
  38868. height: math.unit(1.7, "m"),
  38869. weight: math.unit(135, "lb"),
  38870. name: "Back",
  38871. image: {
  38872. source: "./media/characters/jade/back.svg",
  38873. extra: 1869/1809,
  38874. bottom: 35/1904
  38875. }
  38876. },
  38877. hand: {
  38878. height: math.unit(0.24, "m"),
  38879. name: "Hand",
  38880. image: {
  38881. source: "./media/characters/jade/hand.svg"
  38882. }
  38883. },
  38884. foot: {
  38885. height: math.unit(0.263, "m"),
  38886. name: "Foot",
  38887. image: {
  38888. source: "./media/characters/jade/foot.svg"
  38889. }
  38890. },
  38891. dick: {
  38892. height: math.unit(0.47, "m"),
  38893. name: "Dick",
  38894. image: {
  38895. source: "./media/characters/jade/dick.svg"
  38896. }
  38897. },
  38898. },
  38899. [
  38900. {
  38901. name: "Micro",
  38902. height: math.unit(22, "cm")
  38903. },
  38904. {
  38905. name: "Normal",
  38906. height: math.unit(1.7, "m"),
  38907. default: true
  38908. },
  38909. {
  38910. name: "Macro",
  38911. height: math.unit(152, "m")
  38912. },
  38913. ]
  38914. ))
  38915. characterMakers.push(() => makeCharacter(
  38916. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38917. {
  38918. front: {
  38919. height: math.unit(100, "miles"),
  38920. weight: math.unit(20000, "tons"),
  38921. name: "Front",
  38922. image: {
  38923. source: "./media/characters/cookie/front.svg",
  38924. extra: 1125/1070,
  38925. bottom: 30/1155
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Big",
  38932. height: math.unit(50, "feet")
  38933. },
  38934. {
  38935. name: "Macro",
  38936. height: math.unit(100, "miles"),
  38937. default: true
  38938. },
  38939. {
  38940. name: "Megamacro",
  38941. height: math.unit(90000, "miles")
  38942. },
  38943. ]
  38944. ))
  38945. characterMakers.push(() => makeCharacter(
  38946. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38947. {
  38948. front: {
  38949. height: math.unit(6, "feet"),
  38950. weight: math.unit(145, "lb"),
  38951. name: "Front",
  38952. image: {
  38953. source: "./media/characters/farzian/front.svg",
  38954. extra: 1902/1693,
  38955. bottom: 108/2010
  38956. }
  38957. },
  38958. },
  38959. [
  38960. {
  38961. name: "Macro",
  38962. height: math.unit(500, "feet"),
  38963. default: true
  38964. },
  38965. ]
  38966. ))
  38967. characterMakers.push(() => makeCharacter(
  38968. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38969. {
  38970. front: {
  38971. height: math.unit(3 + 6/12, "feet"),
  38972. weight: math.unit(50, "lb"),
  38973. name: "Front",
  38974. image: {
  38975. source: "./media/characters/kimberly-tilson/front.svg",
  38976. extra: 1400/1322,
  38977. bottom: 36/1436
  38978. }
  38979. },
  38980. back: {
  38981. height: math.unit(3 + 6/12, "feet"),
  38982. weight: math.unit(50, "lb"),
  38983. name: "Back",
  38984. image: {
  38985. source: "./media/characters/kimberly-tilson/back.svg",
  38986. extra: 1370/1307,
  38987. bottom: 20/1390
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(3 + 6/12, "feet"),
  38995. default: true
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39001. {
  39002. front: {
  39003. height: math.unit(1148, "feet"),
  39004. weight: math.unit(34057, "lb"),
  39005. name: "Front",
  39006. image: {
  39007. source: "./media/characters/harthos/front.svg",
  39008. extra: 1391/1339,
  39009. bottom: 13/1404
  39010. }
  39011. },
  39012. },
  39013. [
  39014. {
  39015. name: "Macro",
  39016. height: math.unit(1148, "feet"),
  39017. default: true
  39018. },
  39019. ]
  39020. ))
  39021. characterMakers.push(() => makeCharacter(
  39022. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39023. {
  39024. front: {
  39025. height: math.unit(15, "feet"),
  39026. name: "Front",
  39027. image: {
  39028. source: "./media/characters/hypatia/front.svg",
  39029. extra: 1653/1591,
  39030. bottom: 79/1732
  39031. }
  39032. },
  39033. },
  39034. [
  39035. {
  39036. name: "Normal",
  39037. height: math.unit(15, "feet")
  39038. },
  39039. {
  39040. name: "Small",
  39041. height: math.unit(300, "feet")
  39042. },
  39043. {
  39044. name: "Macro",
  39045. height: math.unit(2500, "feet"),
  39046. default: true
  39047. },
  39048. {
  39049. name: "Mega Macro",
  39050. height: math.unit(1500, "miles")
  39051. },
  39052. {
  39053. name: "Giga Macro",
  39054. height: math.unit(1.5e6, "miles")
  39055. },
  39056. ]
  39057. ))
  39058. characterMakers.push(() => makeCharacter(
  39059. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39060. {
  39061. front: {
  39062. height: math.unit(6, "feet"),
  39063. weight: math.unit(200, "lb"),
  39064. name: "Front",
  39065. image: {
  39066. source: "./media/characters/wulver/front.svg",
  39067. extra: 1724/1632,
  39068. bottom: 130/1854
  39069. }
  39070. },
  39071. frontNsfw: {
  39072. height: math.unit(6, "feet"),
  39073. weight: math.unit(200, "lb"),
  39074. name: "Front (NSFW)",
  39075. image: {
  39076. source: "./media/characters/wulver/front-nsfw.svg",
  39077. extra: 1724/1632,
  39078. bottom: 130/1854
  39079. }
  39080. },
  39081. },
  39082. [
  39083. {
  39084. name: "Human-Sized",
  39085. height: math.unit(6, "feet")
  39086. },
  39087. {
  39088. name: "Normal",
  39089. height: math.unit(4, "meters"),
  39090. default: true
  39091. },
  39092. {
  39093. name: "Large",
  39094. height: math.unit(6, "m")
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(7, "feet"),
  39103. name: "Front",
  39104. image: {
  39105. source: "./media/characters/maru/front.svg",
  39106. extra: 1595/1570,
  39107. bottom: 0/1595
  39108. }
  39109. },
  39110. },
  39111. [
  39112. {
  39113. name: "Normal",
  39114. height: math.unit(7, "feet"),
  39115. default: true
  39116. },
  39117. {
  39118. name: "Macro",
  39119. height: math.unit(700, "feet")
  39120. },
  39121. {
  39122. name: "Mega Macro",
  39123. height: math.unit(25, "miles")
  39124. },
  39125. ]
  39126. ))
  39127. characterMakers.push(() => makeCharacter(
  39128. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39129. {
  39130. front: {
  39131. height: math.unit(6, "feet"),
  39132. weight: math.unit(170, "lb"),
  39133. name: "Front",
  39134. image: {
  39135. source: "./media/characters/xenon/front.svg",
  39136. extra: 1376/1305,
  39137. bottom: 56/1432
  39138. }
  39139. },
  39140. back: {
  39141. height: math.unit(6, "feet"),
  39142. weight: math.unit(170, "lb"),
  39143. name: "Back",
  39144. image: {
  39145. source: "./media/characters/xenon/back.svg",
  39146. extra: 1328/1259,
  39147. bottom: 95/1423
  39148. }
  39149. },
  39150. maw: {
  39151. height: math.unit(0.52, "feet"),
  39152. name: "Maw",
  39153. image: {
  39154. source: "./media/characters/xenon/maw.svg"
  39155. }
  39156. },
  39157. hand: {
  39158. height: math.unit(0.82, "feet"),
  39159. name: "Hand",
  39160. image: {
  39161. source: "./media/characters/xenon/hand.svg"
  39162. }
  39163. },
  39164. foot: {
  39165. height: math.unit(1.13, "feet"),
  39166. name: "Foot",
  39167. image: {
  39168. source: "./media/characters/xenon/foot.svg"
  39169. }
  39170. },
  39171. },
  39172. [
  39173. {
  39174. name: "Micro",
  39175. height: math.unit(0.8, "inches")
  39176. },
  39177. {
  39178. name: "Normal",
  39179. height: math.unit(6, "feet")
  39180. },
  39181. {
  39182. name: "Macro",
  39183. height: math.unit(50, "feet"),
  39184. default: true
  39185. },
  39186. {
  39187. name: "Macro+",
  39188. height: math.unit(250, "feet")
  39189. },
  39190. {
  39191. name: "Megamacro",
  39192. height: math.unit(1500, "feet")
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39198. {
  39199. front: {
  39200. height: math.unit(7 + 5/12, "feet"),
  39201. name: "Front",
  39202. image: {
  39203. source: "./media/characters/zane/front.svg",
  39204. extra: 1260/1203,
  39205. bottom: 94/1354
  39206. }
  39207. },
  39208. back: {
  39209. height: math.unit(5.05, "feet"),
  39210. name: "Back",
  39211. image: {
  39212. source: "./media/characters/zane/back.svg",
  39213. extra: 893/829,
  39214. bottom: 30/923
  39215. }
  39216. },
  39217. werewolf: {
  39218. height: math.unit(11, "feet"),
  39219. name: "Werewolf",
  39220. image: {
  39221. source: "./media/characters/zane/werewolf.svg",
  39222. extra: 1383/1323,
  39223. bottom: 89/1472
  39224. }
  39225. },
  39226. foot: {
  39227. height: math.unit(1.46, "feet"),
  39228. name: "Foot",
  39229. image: {
  39230. source: "./media/characters/zane/foot.svg"
  39231. }
  39232. },
  39233. footFront: {
  39234. height: math.unit(0.784, "feet"),
  39235. name: "Foot (Front)",
  39236. image: {
  39237. source: "./media/characters/zane/foot-front.svg"
  39238. }
  39239. },
  39240. dick: {
  39241. height: math.unit(1.95, "feet"),
  39242. name: "Dick",
  39243. image: {
  39244. source: "./media/characters/zane/dick.svg"
  39245. }
  39246. },
  39247. dickWerewolf: {
  39248. height: math.unit(3.77, "feet"),
  39249. name: "Dick (Werewolf)",
  39250. image: {
  39251. source: "./media/characters/zane/dick.svg"
  39252. }
  39253. },
  39254. },
  39255. [
  39256. {
  39257. name: "Normal",
  39258. height: math.unit(7 + 5/12, "feet"),
  39259. default: true
  39260. },
  39261. ]
  39262. ))
  39263. characterMakers.push(() => makeCharacter(
  39264. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39265. {
  39266. front: {
  39267. height: math.unit(6 + 2/12, "feet"),
  39268. weight: math.unit(284, "lb"),
  39269. name: "Front",
  39270. image: {
  39271. source: "./media/characters/benni-desparque/front.svg",
  39272. extra: 1353/1126,
  39273. bottom: 69/1422
  39274. }
  39275. },
  39276. },
  39277. [
  39278. {
  39279. name: "Civilian",
  39280. height: math.unit(6 + 2/12, "feet")
  39281. },
  39282. {
  39283. name: "Normal",
  39284. height: math.unit(98, "feet"),
  39285. default: true
  39286. },
  39287. {
  39288. name: "Kaiju Fighter",
  39289. height: math.unit(268, "feet")
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39295. {
  39296. front: {
  39297. height: math.unit(5, "feet"),
  39298. weight: math.unit(105, "lb"),
  39299. name: "Front",
  39300. image: {
  39301. source: "./media/characters/maxine/front.svg",
  39302. extra: 1386/1250,
  39303. bottom: 71/1457
  39304. }
  39305. },
  39306. },
  39307. [
  39308. {
  39309. name: "Normal",
  39310. height: math.unit(5, "feet"),
  39311. default: true
  39312. },
  39313. ]
  39314. ))
  39315. characterMakers.push(() => makeCharacter(
  39316. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39317. {
  39318. front: {
  39319. height: math.unit(11 + 7/12, "feet"),
  39320. weight: math.unit(9576, "lb"),
  39321. name: "Front",
  39322. image: {
  39323. source: "./media/characters/scaly/front.svg",
  39324. extra: 888/867,
  39325. bottom: 36/924
  39326. }
  39327. },
  39328. },
  39329. [
  39330. {
  39331. name: "Normal",
  39332. height: math.unit(11 + 7/12, "feet"),
  39333. default: true
  39334. },
  39335. ]
  39336. ))
  39337. characterMakers.push(() => makeCharacter(
  39338. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39339. {
  39340. front: {
  39341. height: math.unit(9, "inches"),
  39342. name: "Front",
  39343. image: {
  39344. source: "./media/characters/saelria/front.svg",
  39345. extra: 662/621,
  39346. bottom: 12/674
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Tiny",
  39353. height: math.unit(9, "inches"),
  39354. default: true
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(80, "meters"),
  39363. weight: math.unit(7000, "tonnes"),
  39364. name: "Front",
  39365. image: {
  39366. source: "./media/characters/tef/front.svg",
  39367. extra: 2036/1991,
  39368. bottom: 54/2090
  39369. }
  39370. },
  39371. back: {
  39372. height: math.unit(80, "meters"),
  39373. weight: math.unit(7000, "tonnes"),
  39374. name: "Back",
  39375. image: {
  39376. source: "./media/characters/tef/back.svg",
  39377. extra: 2036/1991,
  39378. bottom: 54/2090
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Macro",
  39385. height: math.unit(80, "meters"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39392. {
  39393. front: {
  39394. height: math.unit(13, "feet"),
  39395. weight: math.unit(6, "tons"),
  39396. name: "Front",
  39397. image: {
  39398. source: "./media/characters/rover/front.svg",
  39399. extra: 1233/1156,
  39400. bottom: 50/1283
  39401. }
  39402. },
  39403. back: {
  39404. height: math.unit(13, "feet"),
  39405. weight: math.unit(6, "tons"),
  39406. name: "Back",
  39407. image: {
  39408. source: "./media/characters/rover/back.svg",
  39409. extra: 1327/1258,
  39410. bottom: 39/1366
  39411. }
  39412. },
  39413. },
  39414. [
  39415. {
  39416. name: "Normal",
  39417. height: math.unit(13, "feet"),
  39418. default: true
  39419. },
  39420. {
  39421. name: "Macro",
  39422. height: math.unit(1300, "feet")
  39423. },
  39424. {
  39425. name: "Megamacro",
  39426. height: math.unit(1300, "miles")
  39427. },
  39428. {
  39429. name: "Gigamacro",
  39430. height: math.unit(1300000, "miles")
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39436. {
  39437. front: {
  39438. height: math.unit(6, "feet"),
  39439. weight: math.unit(150, "lb"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/ariz/front.svg",
  39443. extra: 1401/1346,
  39444. bottom: 5/1406
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Normal",
  39451. height: math.unit(10, "feet"),
  39452. default: true
  39453. },
  39454. ]
  39455. ))
  39456. characterMakers.push(() => makeCharacter(
  39457. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39458. {
  39459. front: {
  39460. height: math.unit(6, "feet"),
  39461. weight: math.unit(140, "lb"),
  39462. name: "Front",
  39463. image: {
  39464. source: "./media/characters/sigrun/front.svg",
  39465. extra: 1418/1359,
  39466. bottom: 27/1445
  39467. }
  39468. },
  39469. },
  39470. [
  39471. {
  39472. name: "Macro",
  39473. height: math.unit(35, "feet"),
  39474. default: true
  39475. },
  39476. ]
  39477. ))
  39478. characterMakers.push(() => makeCharacter(
  39479. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39480. {
  39481. front: {
  39482. height: math.unit(6, "feet"),
  39483. weight: math.unit(150, "lb"),
  39484. name: "Front",
  39485. image: {
  39486. source: "./media/characters/numin/front.svg",
  39487. extra: 1433/1388,
  39488. bottom: 12/1445
  39489. }
  39490. },
  39491. },
  39492. [
  39493. {
  39494. name: "Macro",
  39495. height: math.unit(21.5, "km"),
  39496. default: true
  39497. },
  39498. ]
  39499. ))
  39500. characterMakers.push(() => makeCharacter(
  39501. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39502. {
  39503. front: {
  39504. height: math.unit(6, "feet"),
  39505. weight: math.unit(463, "lb"),
  39506. name: "Front",
  39507. image: {
  39508. source: "./media/characters/melwa/front.svg",
  39509. extra: 1307/1248,
  39510. bottom: 93/1400
  39511. }
  39512. },
  39513. },
  39514. [
  39515. {
  39516. name: "Macro",
  39517. height: math.unit(50, "meters"),
  39518. default: true
  39519. },
  39520. ]
  39521. ))
  39522. characterMakers.push(() => makeCharacter(
  39523. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39524. {
  39525. front: {
  39526. height: math.unit(325, "feet"),
  39527. name: "Front",
  39528. image: {
  39529. source: "./media/characters/zorkaiju/front.svg",
  39530. extra: 1955/1814,
  39531. bottom: 40/1995
  39532. }
  39533. },
  39534. frontExtended: {
  39535. height: math.unit(325, "feet"),
  39536. name: "Front (Extended)",
  39537. image: {
  39538. source: "./media/characters/zorkaiju/front-extended.svg",
  39539. extra: 1955/1814,
  39540. bottom: 40/1995
  39541. }
  39542. },
  39543. side: {
  39544. height: math.unit(325, "feet"),
  39545. name: "Side",
  39546. image: {
  39547. source: "./media/characters/zorkaiju/side.svg",
  39548. extra: 1495/1396,
  39549. bottom: 17/1512
  39550. }
  39551. },
  39552. sideExtended: {
  39553. height: math.unit(325, "feet"),
  39554. name: "Side (Extended)",
  39555. image: {
  39556. source: "./media/characters/zorkaiju/side-extended.svg",
  39557. extra: 1495/1396,
  39558. bottom: 17/1512
  39559. }
  39560. },
  39561. back: {
  39562. height: math.unit(325, "feet"),
  39563. name: "Back",
  39564. image: {
  39565. source: "./media/characters/zorkaiju/back.svg",
  39566. extra: 1959/1821,
  39567. bottom: 31/1990
  39568. }
  39569. },
  39570. backExtended: {
  39571. height: math.unit(325, "feet"),
  39572. name: "Back (Extended)",
  39573. image: {
  39574. source: "./media/characters/zorkaiju/back-extended.svg",
  39575. extra: 1959/1821,
  39576. bottom: 31/1990
  39577. }
  39578. },
  39579. hand: {
  39580. height: math.unit(58.4, "feet"),
  39581. name: "Hand",
  39582. image: {
  39583. source: "./media/characters/zorkaiju/hand.svg"
  39584. }
  39585. },
  39586. handExtended: {
  39587. height: math.unit(61.4, "feet"),
  39588. name: "Hand (Extended)",
  39589. image: {
  39590. source: "./media/characters/zorkaiju/hand-extended.svg"
  39591. }
  39592. },
  39593. foot: {
  39594. height: math.unit(95, "feet"),
  39595. name: "Foot",
  39596. image: {
  39597. source: "./media/characters/zorkaiju/foot.svg"
  39598. }
  39599. },
  39600. leftArm: {
  39601. height: math.unit(59, "feet"),
  39602. name: "Left Arm",
  39603. image: {
  39604. source: "./media/characters/zorkaiju/left-arm.svg"
  39605. }
  39606. },
  39607. rightArm: {
  39608. height: math.unit(59, "feet"),
  39609. name: "Right Arm",
  39610. image: {
  39611. source: "./media/characters/zorkaiju/right-arm.svg"
  39612. }
  39613. },
  39614. tail: {
  39615. height: math.unit(104, "feet"),
  39616. name: "Tail",
  39617. image: {
  39618. source: "./media/characters/zorkaiju/tail.svg"
  39619. }
  39620. },
  39621. tailExtended: {
  39622. height: math.unit(104, "feet"),
  39623. name: "Tail (Extended)",
  39624. image: {
  39625. source: "./media/characters/zorkaiju/tail-extended.svg"
  39626. }
  39627. },
  39628. tailBottom: {
  39629. height: math.unit(104, "feet"),
  39630. name: "Tail Bottom",
  39631. image: {
  39632. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39633. }
  39634. },
  39635. crystal: {
  39636. height: math.unit(27.54, "feet"),
  39637. name: "Crystal",
  39638. image: {
  39639. source: "./media/characters/zorkaiju/crystal.svg"
  39640. }
  39641. },
  39642. },
  39643. [
  39644. {
  39645. name: "Kaiju",
  39646. height: math.unit(325, "feet"),
  39647. default: true
  39648. },
  39649. ]
  39650. ))
  39651. characterMakers.push(() => makeCharacter(
  39652. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39653. {
  39654. front: {
  39655. height: math.unit(6 + 1/12, "feet"),
  39656. weight: math.unit(115, "lb"),
  39657. name: "Front",
  39658. image: {
  39659. source: "./media/characters/bailey-belfry/front.svg",
  39660. extra: 1240/1121,
  39661. bottom: 101/1341
  39662. }
  39663. },
  39664. },
  39665. [
  39666. {
  39667. name: "Normal",
  39668. height: math.unit(6 + 1/12, "feet"),
  39669. default: true
  39670. },
  39671. ]
  39672. ))
  39673. characterMakers.push(() => makeCharacter(
  39674. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39675. {
  39676. side: {
  39677. height: math.unit(4, "meters"),
  39678. weight: math.unit(250, "kg"),
  39679. name: "Side",
  39680. image: {
  39681. source: "./media/characters/blacky/side.svg",
  39682. extra: 1027/919,
  39683. bottom: 43/1070
  39684. }
  39685. },
  39686. maw: {
  39687. height: math.unit(1, "meters"),
  39688. name: "Maw",
  39689. image: {
  39690. source: "./media/characters/blacky/maw.svg"
  39691. }
  39692. },
  39693. paw: {
  39694. height: math.unit(1, "meters"),
  39695. name: "Paw",
  39696. image: {
  39697. source: "./media/characters/blacky/paw.svg"
  39698. }
  39699. },
  39700. },
  39701. [
  39702. {
  39703. name: "Normal",
  39704. height: math.unit(4, "meters"),
  39705. default: true
  39706. },
  39707. ]
  39708. ))
  39709. characterMakers.push(() => makeCharacter(
  39710. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39711. {
  39712. front: {
  39713. height: math.unit(170, "cm"),
  39714. weight: math.unit(66, "kg"),
  39715. name: "Front",
  39716. image: {
  39717. source: "./media/characters/thux-ei/front.svg",
  39718. extra: 1109/1011,
  39719. bottom: 8/1117
  39720. }
  39721. },
  39722. },
  39723. [
  39724. {
  39725. name: "Normal",
  39726. height: math.unit(170, "cm"),
  39727. default: true
  39728. },
  39729. ]
  39730. ))
  39731. characterMakers.push(() => makeCharacter(
  39732. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39733. {
  39734. front: {
  39735. height: math.unit(5, "feet"),
  39736. weight: math.unit(120, "lb"),
  39737. name: "Front",
  39738. image: {
  39739. source: "./media/characters/roxanne-voltaire/front.svg",
  39740. extra: 1901/1779,
  39741. bottom: 53/1954
  39742. }
  39743. },
  39744. },
  39745. [
  39746. {
  39747. name: "Normal",
  39748. height: math.unit(5, "feet"),
  39749. default: true
  39750. },
  39751. {
  39752. name: "Giant",
  39753. height: math.unit(50, "feet")
  39754. },
  39755. {
  39756. name: "Titan",
  39757. height: math.unit(500, "feet")
  39758. },
  39759. {
  39760. name: "Macro",
  39761. height: math.unit(5000, "feet")
  39762. },
  39763. {
  39764. name: "Megamacro",
  39765. height: math.unit(50000, "feet")
  39766. },
  39767. {
  39768. name: "Gigamacro",
  39769. height: math.unit(500000, "feet")
  39770. },
  39771. {
  39772. name: "Teramacro",
  39773. height: math.unit(5e6, "feet")
  39774. },
  39775. ]
  39776. ))
  39777. characterMakers.push(() => makeCharacter(
  39778. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39779. {
  39780. front: {
  39781. height: math.unit(6 + 2/12, "feet"),
  39782. name: "Front",
  39783. image: {
  39784. source: "./media/characters/squeaks/front.svg",
  39785. extra: 1823/1768,
  39786. bottom: 138/1961
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Micro",
  39793. height: math.unit(0.5, "inches")
  39794. },
  39795. {
  39796. name: "Normal",
  39797. height: math.unit(6 + 2/12, "feet"),
  39798. default: true
  39799. },
  39800. {
  39801. name: "Macro",
  39802. height: math.unit(600, "feet")
  39803. },
  39804. ]
  39805. ))
  39806. characterMakers.push(() => makeCharacter(
  39807. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39808. {
  39809. front: {
  39810. height: math.unit(1.72, "meters"),
  39811. name: "Front",
  39812. image: {
  39813. source: "./media/characters/archinger/front.svg",
  39814. extra: 1861/1675,
  39815. bottom: 125/1986
  39816. }
  39817. },
  39818. back: {
  39819. height: math.unit(1.72, "meters"),
  39820. name: "Back",
  39821. image: {
  39822. source: "./media/characters/archinger/back.svg",
  39823. extra: 1844/1701,
  39824. bottom: 104/1948
  39825. }
  39826. },
  39827. cock: {
  39828. height: math.unit(0.59, "feet"),
  39829. name: "Cock",
  39830. image: {
  39831. source: "./media/characters/archinger/cock.svg"
  39832. }
  39833. },
  39834. },
  39835. [
  39836. {
  39837. name: "Normal",
  39838. height: math.unit(1.72, "meters"),
  39839. default: true
  39840. },
  39841. {
  39842. name: "Macro",
  39843. height: math.unit(84, "meters")
  39844. },
  39845. {
  39846. name: "Macro+",
  39847. height: math.unit(112, "meters")
  39848. },
  39849. {
  39850. name: "Macro++",
  39851. height: math.unit(960, "meters")
  39852. },
  39853. {
  39854. name: "Macro+++",
  39855. height: math.unit(4, "km")
  39856. },
  39857. {
  39858. name: "Macro++++",
  39859. height: math.unit(48, "km")
  39860. },
  39861. {
  39862. name: "Macro+++++",
  39863. height: math.unit(4500, "km")
  39864. },
  39865. ]
  39866. ))
  39867. characterMakers.push(() => makeCharacter(
  39868. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39869. {
  39870. front: {
  39871. height: math.unit(5 + 5/12, "feet"),
  39872. name: "Front",
  39873. image: {
  39874. source: "./media/characters/alsnapz/front.svg",
  39875. extra: 1157/1065,
  39876. bottom: 42/1199
  39877. }
  39878. },
  39879. },
  39880. [
  39881. {
  39882. name: "Normal",
  39883. height: math.unit(5 + 5/12, "feet"),
  39884. default: true
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39890. {
  39891. side: {
  39892. height: math.unit(3.2, "earths"),
  39893. name: "Side",
  39894. image: {
  39895. source: "./media/characters/mag/side.svg",
  39896. extra: 1331/1008,
  39897. bottom: 52/1383
  39898. }
  39899. },
  39900. wing: {
  39901. height: math.unit(1.94, "earths"),
  39902. name: "Wing",
  39903. image: {
  39904. source: "./media/characters/mag/wing.svg"
  39905. }
  39906. },
  39907. dick: {
  39908. height: math.unit(1.8, "earths"),
  39909. name: "Dick",
  39910. image: {
  39911. source: "./media/characters/mag/dick.svg"
  39912. }
  39913. },
  39914. ass: {
  39915. height: math.unit(1.33, "earths"),
  39916. name: "Ass",
  39917. image: {
  39918. source: "./media/characters/mag/ass.svg"
  39919. }
  39920. },
  39921. head: {
  39922. height: math.unit(1.1, "earths"),
  39923. name: "Head",
  39924. image: {
  39925. source: "./media/characters/mag/head.svg"
  39926. }
  39927. },
  39928. maw: {
  39929. height: math.unit(1.62, "earths"),
  39930. name: "Maw",
  39931. image: {
  39932. source: "./media/characters/mag/maw.svg"
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Small",
  39939. height: math.unit(162, "feet")
  39940. },
  39941. {
  39942. name: "Normal",
  39943. height: math.unit(3.2, "earths"),
  39944. default: true
  39945. },
  39946. ]
  39947. ))
  39948. characterMakers.push(() => makeCharacter(
  39949. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39950. {
  39951. front: {
  39952. height: math.unit(512, "feet"),
  39953. weight: math.unit(63509, "tonnes"),
  39954. name: "Front",
  39955. image: {
  39956. source: "./media/characters/vorrel-harroc/front.svg",
  39957. extra: 1075/1063,
  39958. bottom: 62/1137
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Normal",
  39965. height: math.unit(10, "feet")
  39966. },
  39967. {
  39968. name: "Macro",
  39969. height: math.unit(512, "feet"),
  39970. default: true
  39971. },
  39972. {
  39973. name: "Megamacro",
  39974. height: math.unit(256, "miles")
  39975. },
  39976. {
  39977. name: "Gigamacro",
  39978. height: math.unit(4096, "miles")
  39979. },
  39980. ]
  39981. ))
  39982. characterMakers.push(() => makeCharacter(
  39983. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39984. {
  39985. side: {
  39986. height: math.unit(50, "feet"),
  39987. name: "Side",
  39988. image: {
  39989. source: "./media/characters/froimar/side.svg",
  39990. extra: 855/638,
  39991. bottom: 99/954
  39992. }
  39993. },
  39994. },
  39995. [
  39996. {
  39997. name: "Macro",
  39998. height: math.unit(50, "feet"),
  39999. default: true
  40000. },
  40001. ]
  40002. ))
  40003. characterMakers.push(() => makeCharacter(
  40004. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40005. {
  40006. front: {
  40007. height: math.unit(210, "miles"),
  40008. name: "Front",
  40009. image: {
  40010. source: "./media/characters/timothy/front.svg",
  40011. extra: 1007/943,
  40012. bottom: 62/1069
  40013. }
  40014. },
  40015. frontSkirt: {
  40016. height: math.unit(210, "miles"),
  40017. name: "Front (Skirt)",
  40018. image: {
  40019. source: "./media/characters/timothy/front-skirt.svg",
  40020. extra: 1007/943,
  40021. bottom: 62/1069
  40022. }
  40023. },
  40024. frontCoat: {
  40025. height: math.unit(210, "miles"),
  40026. name: "Front (Coat)",
  40027. image: {
  40028. source: "./media/characters/timothy/front-coat.svg",
  40029. extra: 1007/943,
  40030. bottom: 62/1069
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Macro",
  40037. height: math.unit(210, "miles"),
  40038. default: true
  40039. },
  40040. {
  40041. name: "Megamacro",
  40042. height: math.unit(210000, "miles")
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40048. {
  40049. front: {
  40050. height: math.unit(188, "feet"),
  40051. name: "Front",
  40052. image: {
  40053. source: "./media/characters/pyotr/front.svg",
  40054. extra: 1912/1826,
  40055. bottom: 18/1930
  40056. }
  40057. },
  40058. },
  40059. [
  40060. {
  40061. name: "Macro",
  40062. height: math.unit(188, "feet"),
  40063. default: true
  40064. },
  40065. {
  40066. name: "Megamacro",
  40067. height: math.unit(8, "miles")
  40068. },
  40069. ]
  40070. ))
  40071. characterMakers.push(() => makeCharacter(
  40072. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40073. {
  40074. side: {
  40075. height: math.unit(10, "feet"),
  40076. weight: math.unit(4500, "lb"),
  40077. name: "Side",
  40078. image: {
  40079. source: "./media/characters/ackart/side.svg",
  40080. extra: 1776/1668,
  40081. bottom: 116/1892
  40082. }
  40083. },
  40084. },
  40085. [
  40086. {
  40087. name: "Normal",
  40088. height: math.unit(10, "feet"),
  40089. default: true
  40090. },
  40091. ]
  40092. ))
  40093. characterMakers.push(() => makeCharacter(
  40094. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40095. {
  40096. side: {
  40097. height: math.unit(21, "feet"),
  40098. name: "Side",
  40099. image: {
  40100. source: "./media/characters/nolow/side.svg",
  40101. extra: 1484/1434,
  40102. bottom: 85/1569
  40103. }
  40104. },
  40105. sideErect: {
  40106. height: math.unit(21, "feet"),
  40107. name: "Side-erect",
  40108. image: {
  40109. source: "./media/characters/nolow/side-erect.svg",
  40110. extra: 1484/1434,
  40111. bottom: 85/1569
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Regular",
  40118. height: math.unit(12, "feet")
  40119. },
  40120. {
  40121. name: "Big Chee",
  40122. height: math.unit(21, "feet"),
  40123. default: true
  40124. },
  40125. ]
  40126. ))
  40127. characterMakers.push(() => makeCharacter(
  40128. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40129. {
  40130. front: {
  40131. height: math.unit(7, "feet"),
  40132. weight: math.unit(250, "lb"),
  40133. name: "Front",
  40134. image: {
  40135. source: "./media/characters/nines/front.svg",
  40136. extra: 1741/1607,
  40137. bottom: 41/1782
  40138. }
  40139. },
  40140. side: {
  40141. height: math.unit(7, "feet"),
  40142. weight: math.unit(250, "lb"),
  40143. name: "Side",
  40144. image: {
  40145. source: "./media/characters/nines/side.svg",
  40146. extra: 1854/1735,
  40147. bottom: 93/1947
  40148. }
  40149. },
  40150. back: {
  40151. height: math.unit(7, "feet"),
  40152. weight: math.unit(250, "lb"),
  40153. name: "Back",
  40154. image: {
  40155. source: "./media/characters/nines/back.svg",
  40156. extra: 1748/1615,
  40157. bottom: 20/1768
  40158. }
  40159. },
  40160. },
  40161. [
  40162. {
  40163. name: "Megamacro",
  40164. height: math.unit(99, "km"),
  40165. default: true
  40166. },
  40167. ]
  40168. ))
  40169. characterMakers.push(() => makeCharacter(
  40170. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40171. {
  40172. front: {
  40173. height: math.unit(5 + 10/12, "feet"),
  40174. weight: math.unit(210, "lb"),
  40175. name: "Front",
  40176. image: {
  40177. source: "./media/characters/zenith/front.svg",
  40178. extra: 1531/1452,
  40179. bottom: 198/1729
  40180. }
  40181. },
  40182. back: {
  40183. height: math.unit(5 + 10/12, "feet"),
  40184. weight: math.unit(210, "lb"),
  40185. name: "Back",
  40186. image: {
  40187. source: "./media/characters/zenith/back.svg",
  40188. extra: 1571/1487,
  40189. bottom: 75/1646
  40190. }
  40191. },
  40192. },
  40193. [
  40194. {
  40195. name: "Normal",
  40196. height: math.unit(5 + 10/12, "feet"),
  40197. default: true
  40198. }
  40199. ]
  40200. ))
  40201. characterMakers.push(() => makeCharacter(
  40202. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40203. {
  40204. front: {
  40205. height: math.unit(4, "feet"),
  40206. weight: math.unit(60, "lb"),
  40207. name: "Front",
  40208. image: {
  40209. source: "./media/characters/jasper/front.svg",
  40210. extra: 1450/1379,
  40211. bottom: 19/1469
  40212. }
  40213. },
  40214. },
  40215. [
  40216. {
  40217. name: "Normal",
  40218. height: math.unit(4, "feet"),
  40219. default: true
  40220. },
  40221. ]
  40222. ))
  40223. characterMakers.push(() => makeCharacter(
  40224. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40225. {
  40226. front: {
  40227. height: math.unit(6 + 5/12, "feet"),
  40228. weight: math.unit(290, "lb"),
  40229. name: "Front",
  40230. image: {
  40231. source: "./media/characters/tiberius-thyben/front.svg",
  40232. extra: 757/739,
  40233. bottom: 39/796
  40234. }
  40235. },
  40236. },
  40237. [
  40238. {
  40239. name: "Micro",
  40240. height: math.unit(1.5, "inches")
  40241. },
  40242. {
  40243. name: "Normal",
  40244. height: math.unit(6 + 5/12, "feet"),
  40245. default: true
  40246. },
  40247. {
  40248. name: "Macro",
  40249. height: math.unit(300, "feet")
  40250. },
  40251. ]
  40252. ))
  40253. characterMakers.push(() => makeCharacter(
  40254. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40255. {
  40256. front: {
  40257. height: math.unit(5 + 6/12, "feet"),
  40258. weight: math.unit(60, "kg"),
  40259. name: "Front",
  40260. image: {
  40261. source: "./media/characters/sabre/front.svg",
  40262. extra: 738/671,
  40263. bottom: 27/765
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Teeny",
  40270. height: math.unit(2, "inches")
  40271. },
  40272. {
  40273. name: "Smol",
  40274. height: math.unit(8, "inches")
  40275. },
  40276. {
  40277. name: "Normal",
  40278. height: math.unit(5 + 6/12, "feet"),
  40279. default: true
  40280. },
  40281. {
  40282. name: "Mini-Macro",
  40283. height: math.unit(15, "feet")
  40284. },
  40285. {
  40286. name: "Macro",
  40287. height: math.unit(50, "feet")
  40288. },
  40289. ]
  40290. ))
  40291. characterMakers.push(() => makeCharacter(
  40292. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40293. {
  40294. front: {
  40295. height: math.unit(6 + 4/12, "feet"),
  40296. weight: math.unit(170, "lb"),
  40297. name: "Front",
  40298. image: {
  40299. source: "./media/characters/charlie/front.svg",
  40300. extra: 1348/1228,
  40301. bottom: 15/1363
  40302. }
  40303. },
  40304. },
  40305. [
  40306. {
  40307. name: "Macro",
  40308. height: math.unit(1700, "meters"),
  40309. default: true
  40310. },
  40311. {
  40312. name: "MegaMacro",
  40313. height: math.unit(20400, "meters")
  40314. },
  40315. ]
  40316. ))
  40317. characterMakers.push(() => makeCharacter(
  40318. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40319. {
  40320. front: {
  40321. height: math.unit(6 + 3/12, "feet"),
  40322. weight: math.unit(185, "lb"),
  40323. name: "Front",
  40324. image: {
  40325. source: "./media/characters/susan-grant/front.svg",
  40326. extra: 1351/1327,
  40327. bottom: 26/1377
  40328. }
  40329. },
  40330. },
  40331. [
  40332. {
  40333. name: "Normal",
  40334. height: math.unit(6 + 3/12, "feet"),
  40335. default: true
  40336. },
  40337. {
  40338. name: "Macro",
  40339. height: math.unit(225, "feet")
  40340. },
  40341. {
  40342. name: "Macro+",
  40343. height: math.unit(900, "feet")
  40344. },
  40345. {
  40346. name: "MegaMacro",
  40347. height: math.unit(14400, "feet")
  40348. },
  40349. ]
  40350. ))
  40351. characterMakers.push(() => makeCharacter(
  40352. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40353. {
  40354. front: {
  40355. height: math.unit(5 + 4/12, "feet"),
  40356. weight: math.unit(110, "lb"),
  40357. name: "Front",
  40358. image: {
  40359. source: "./media/characters/axel-isanov/front.svg",
  40360. extra: 1096/1065,
  40361. bottom: 13/1109
  40362. }
  40363. },
  40364. },
  40365. [
  40366. {
  40367. name: "Normal",
  40368. height: math.unit(5 + 4/12, "feet"),
  40369. default: true
  40370. },
  40371. ]
  40372. ))
  40373. characterMakers.push(() => makeCharacter(
  40374. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40375. {
  40376. front: {
  40377. height: math.unit(9, "feet"),
  40378. weight: math.unit(467, "lb"),
  40379. name: "Front",
  40380. image: {
  40381. source: "./media/characters/necahual/front.svg",
  40382. extra: 920/873,
  40383. bottom: 26/946
  40384. }
  40385. },
  40386. back: {
  40387. height: math.unit(9, "feet"),
  40388. weight: math.unit(467, "lb"),
  40389. name: "Back",
  40390. image: {
  40391. source: "./media/characters/necahual/back.svg",
  40392. extra: 930/884,
  40393. bottom: 16/946
  40394. }
  40395. },
  40396. frontUnderwear: {
  40397. height: math.unit(9, "feet"),
  40398. weight: math.unit(467, "lb"),
  40399. name: "Front (Underwear)",
  40400. image: {
  40401. source: "./media/characters/necahual/front-underwear.svg",
  40402. extra: 920/873,
  40403. bottom: 26/946
  40404. }
  40405. },
  40406. frontDressed: {
  40407. height: math.unit(9, "feet"),
  40408. weight: math.unit(467, "lb"),
  40409. name: "Front (Dressed)",
  40410. image: {
  40411. source: "./media/characters/necahual/front-dressed.svg",
  40412. extra: 920/873,
  40413. bottom: 26/946
  40414. }
  40415. },
  40416. },
  40417. [
  40418. {
  40419. name: "Comprsesed",
  40420. height: math.unit(9, "feet")
  40421. },
  40422. {
  40423. name: "Natural",
  40424. height: math.unit(15, "feet"),
  40425. default: true
  40426. },
  40427. {
  40428. name: "Boosted",
  40429. height: math.unit(50, "feet")
  40430. },
  40431. {
  40432. name: "Boosted+",
  40433. height: math.unit(150, "feet")
  40434. },
  40435. {
  40436. name: "Max",
  40437. height: math.unit(500, "feet")
  40438. },
  40439. ]
  40440. ))
  40441. characterMakers.push(() => makeCharacter(
  40442. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40443. {
  40444. front: {
  40445. height: math.unit(22 + 1/12, "feet"),
  40446. weight: math.unit(3200, "lb"),
  40447. name: "Front",
  40448. image: {
  40449. source: "./media/characters/theo-acacia/front.svg",
  40450. extra: 1796/1741,
  40451. bottom: 83/1879
  40452. }
  40453. },
  40454. frontUnderwear: {
  40455. height: math.unit(22 + 1/12, "feet"),
  40456. weight: math.unit(3200, "lb"),
  40457. name: "Front (Underwear)",
  40458. image: {
  40459. source: "./media/characters/theo-acacia/front-underwear.svg",
  40460. extra: 1796/1741,
  40461. bottom: 83/1879
  40462. }
  40463. },
  40464. frontNude: {
  40465. height: math.unit(22 + 1/12, "feet"),
  40466. weight: math.unit(3200, "lb"),
  40467. name: "Front (Nude)",
  40468. image: {
  40469. source: "./media/characters/theo-acacia/front-nude.svg",
  40470. extra: 1796/1741,
  40471. bottom: 83/1879
  40472. }
  40473. },
  40474. },
  40475. [
  40476. {
  40477. name: "Normal",
  40478. height: math.unit(22 + 1/12, "feet"),
  40479. default: true
  40480. },
  40481. ]
  40482. ))
  40483. characterMakers.push(() => makeCharacter(
  40484. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40485. {
  40486. front: {
  40487. height: math.unit(20, "feet"),
  40488. name: "Front",
  40489. image: {
  40490. source: "./media/characters/astra/front.svg",
  40491. extra: 1850/1714,
  40492. bottom: 106/1956
  40493. }
  40494. },
  40495. frontUndressed: {
  40496. height: math.unit(20, "feet"),
  40497. name: "Front (Undressed)",
  40498. image: {
  40499. source: "./media/characters/astra/front-undressed.svg",
  40500. extra: 1926/1749,
  40501. bottom: 0/1926
  40502. }
  40503. },
  40504. hand: {
  40505. height: math.unit(1.53, "feet"),
  40506. name: "Hand",
  40507. image: {
  40508. source: "./media/characters/astra/hand.svg"
  40509. }
  40510. },
  40511. paw: {
  40512. height: math.unit(1.53, "feet"),
  40513. name: "Paw",
  40514. image: {
  40515. source: "./media/characters/astra/paw.svg"
  40516. }
  40517. },
  40518. },
  40519. [
  40520. {
  40521. name: "Smallest",
  40522. height: math.unit(20, "feet")
  40523. },
  40524. {
  40525. name: "Normal",
  40526. height: math.unit(1e9, "miles"),
  40527. default: true
  40528. },
  40529. {
  40530. name: "Larger",
  40531. height: math.unit(5, "multiverses")
  40532. },
  40533. {
  40534. name: "Largest",
  40535. height: math.unit(1e9, "multiverses")
  40536. },
  40537. ]
  40538. ))
  40539. characterMakers.push(() => makeCharacter(
  40540. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40541. {
  40542. front: {
  40543. height: math.unit(8, "feet"),
  40544. name: "Front",
  40545. image: {
  40546. source: "./media/characters/breanna/front.svg",
  40547. extra: 1912/1632,
  40548. bottom: 33/1945
  40549. }
  40550. },
  40551. },
  40552. [
  40553. {
  40554. name: "Smallest",
  40555. height: math.unit(8, "feet")
  40556. },
  40557. {
  40558. name: "Normal",
  40559. height: math.unit(1, "mile"),
  40560. default: true
  40561. },
  40562. {
  40563. name: "Maximum",
  40564. height: math.unit(1500000000000, "lightyears")
  40565. },
  40566. ]
  40567. ))
  40568. characterMakers.push(() => makeCharacter(
  40569. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40570. {
  40571. front: {
  40572. height: math.unit(5 + 11/12, "feet"),
  40573. weight: math.unit(155, "lb"),
  40574. name: "Front",
  40575. image: {
  40576. source: "./media/characters/cai/front.svg",
  40577. extra: 1823/1702,
  40578. bottom: 32/1855
  40579. }
  40580. },
  40581. back: {
  40582. height: math.unit(5 + 11/12, "feet"),
  40583. weight: math.unit(155, "lb"),
  40584. name: "Back",
  40585. image: {
  40586. source: "./media/characters/cai/back.svg",
  40587. extra: 1809/1708,
  40588. bottom: 31/1840
  40589. }
  40590. },
  40591. },
  40592. [
  40593. {
  40594. name: "Normal",
  40595. height: math.unit(5 + 11/12, "feet"),
  40596. default: true
  40597. },
  40598. {
  40599. name: "Big",
  40600. height: math.unit(15, "feet")
  40601. },
  40602. {
  40603. name: "Macro",
  40604. height: math.unit(200, "feet")
  40605. },
  40606. ]
  40607. ))
  40608. characterMakers.push(() => makeCharacter(
  40609. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40610. {
  40611. front: {
  40612. height: math.unit(5 + 6/12, "feet"),
  40613. weight: math.unit(160, "lb"),
  40614. name: "Front",
  40615. image: {
  40616. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40617. extra: 1227/1174,
  40618. bottom: 37/1264
  40619. }
  40620. },
  40621. },
  40622. [
  40623. {
  40624. name: "Macro",
  40625. height: math.unit(444, "meters"),
  40626. default: true
  40627. },
  40628. ]
  40629. ))
  40630. characterMakers.push(() => makeCharacter(
  40631. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40632. {
  40633. front: {
  40634. height: math.unit(18 + 7/12, "feet"),
  40635. name: "Front",
  40636. image: {
  40637. source: "./media/characters/rex/front.svg",
  40638. extra: 1941/1807,
  40639. bottom: 66/2007
  40640. }
  40641. },
  40642. back: {
  40643. height: math.unit(18 + 7/12, "feet"),
  40644. name: "Back",
  40645. image: {
  40646. source: "./media/characters/rex/back.svg",
  40647. extra: 1937/1822,
  40648. bottom: 42/1979
  40649. }
  40650. },
  40651. boot: {
  40652. height: math.unit(3.45, "feet"),
  40653. name: "Boot",
  40654. image: {
  40655. source: "./media/characters/rex/boot.svg"
  40656. }
  40657. },
  40658. paw: {
  40659. height: math.unit(4.17, "feet"),
  40660. name: "Paw",
  40661. image: {
  40662. source: "./media/characters/rex/paw.svg"
  40663. }
  40664. },
  40665. head: {
  40666. height: math.unit(6.728, "feet"),
  40667. name: "Head",
  40668. image: {
  40669. source: "./media/characters/rex/head.svg"
  40670. }
  40671. },
  40672. },
  40673. [
  40674. {
  40675. name: "Nano",
  40676. height: math.unit(18 + 7/12, "feet")
  40677. },
  40678. {
  40679. name: "Micro",
  40680. height: math.unit(1.5, "megameters")
  40681. },
  40682. {
  40683. name: "Normal",
  40684. height: math.unit(440, "megameters"),
  40685. default: true
  40686. },
  40687. {
  40688. name: "Macro",
  40689. height: math.unit(2.5, "gigameters")
  40690. },
  40691. {
  40692. name: "Gigamacro",
  40693. height: math.unit(2, "galaxies")
  40694. },
  40695. ]
  40696. ))
  40697. characterMakers.push(() => makeCharacter(
  40698. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40699. {
  40700. side: {
  40701. height: math.unit(32, "feet"),
  40702. weight: math.unit(250000, "lb"),
  40703. name: "Side",
  40704. image: {
  40705. source: "./media/characters/silverwing/side.svg",
  40706. extra: 1100/1019,
  40707. bottom: 204/1304
  40708. }
  40709. },
  40710. },
  40711. [
  40712. {
  40713. name: "Normal",
  40714. height: math.unit(32, "feet"),
  40715. default: true
  40716. },
  40717. ]
  40718. ))
  40719. characterMakers.push(() => makeCharacter(
  40720. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40721. {
  40722. front: {
  40723. height: math.unit(6 + 6/12, "feet"),
  40724. weight: math.unit(350, "lb"),
  40725. name: "Front",
  40726. image: {
  40727. source: "./media/characters/tristan-hawthorne/front.svg",
  40728. extra: 1159/1124,
  40729. bottom: 37/1196
  40730. }
  40731. },
  40732. },
  40733. [
  40734. {
  40735. name: "Normal",
  40736. height: math.unit(6 + 6/12, "feet"),
  40737. default: true
  40738. },
  40739. ]
  40740. ))
  40741. characterMakers.push(() => makeCharacter(
  40742. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40743. {
  40744. front: {
  40745. height: math.unit(5 + 11/12, "feet"),
  40746. weight: math.unit(190, "lb"),
  40747. name: "Front",
  40748. image: {
  40749. source: "./media/characters/mizu/front.svg",
  40750. extra: 1988/1788,
  40751. bottom: 14/2002
  40752. }
  40753. },
  40754. },
  40755. [
  40756. {
  40757. name: "Normal",
  40758. height: math.unit(5 + 11/12, "feet"),
  40759. default: true
  40760. },
  40761. ]
  40762. ))
  40763. characterMakers.push(() => makeCharacter(
  40764. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40765. {
  40766. front: {
  40767. height: math.unit(6, "feet"),
  40768. name: "Front",
  40769. image: {
  40770. source: "./media/characters/moonlight-rose-terra/front.svg",
  40771. extra: 1434/1252,
  40772. bottom: 48/1482
  40773. }
  40774. },
  40775. },
  40776. [
  40777. {
  40778. name: "TRAPPIST-1D",
  40779. height: math.unit(4992*2, "km")
  40780. },
  40781. {
  40782. name: "Earth",
  40783. height: math.unit(6367*2, "km"),
  40784. default: true
  40785. },
  40786. {
  40787. name: "Kepler-22b",
  40788. height: math.unit(15282*2, "km")
  40789. },
  40790. ]
  40791. ))
  40792. characterMakers.push(() => makeCharacter(
  40793. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40794. {
  40795. front: {
  40796. height: math.unit(6, "feet"),
  40797. name: "Front",
  40798. image: {
  40799. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40800. extra: 1851/1712,
  40801. bottom: 0/1851
  40802. }
  40803. },
  40804. },
  40805. [
  40806. {
  40807. name: "Enceladus",
  40808. height: math.unit(513*2, "km")
  40809. },
  40810. {
  40811. name: "Europe",
  40812. height: math.unit(1560*2, "km")
  40813. },
  40814. {
  40815. name: "Neptune",
  40816. height: math.unit(24622*2, "km"),
  40817. default: true
  40818. },
  40819. {
  40820. name: "CoRoT-9b",
  40821. height: math.unit(75067*2, "km")
  40822. },
  40823. ]
  40824. ))
  40825. characterMakers.push(() => makeCharacter(
  40826. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40827. {
  40828. front: {
  40829. height: math.unit(6, "feet"),
  40830. name: "Front",
  40831. image: {
  40832. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40833. extra: 1367/1286,
  40834. bottom: 55/1422
  40835. }
  40836. },
  40837. },
  40838. [
  40839. {
  40840. name: "Saturn",
  40841. height: math.unit(58232*2, "km")
  40842. },
  40843. {
  40844. name: "Jupiter",
  40845. height: math.unit(69911*2, "km"),
  40846. default: true
  40847. },
  40848. {
  40849. name: "HD 100546 b",
  40850. height: math.unit(482938, "km")
  40851. },
  40852. ]
  40853. ))
  40854. characterMakers.push(() => makeCharacter(
  40855. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40856. {
  40857. front: {
  40858. height: math.unit(1.7, "feet"),
  40859. weight: math.unit(50, "lb"),
  40860. name: "Front",
  40861. image: {
  40862. source: "./media/characters/dechroma/front.svg",
  40863. extra: 1095/859,
  40864. bottom: 64/1159
  40865. }
  40866. },
  40867. },
  40868. [
  40869. {
  40870. name: "Normal",
  40871. height: math.unit(1.7, "feet"),
  40872. default: true
  40873. },
  40874. ]
  40875. ))
  40876. characterMakers.push(() => makeCharacter(
  40877. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40878. {
  40879. side: {
  40880. height: math.unit(30, "feet"),
  40881. name: "Side",
  40882. image: {
  40883. source: "./media/characters/veluren-thanazel/side.svg",
  40884. extra: 1611/633,
  40885. bottom: 118/1729
  40886. }
  40887. },
  40888. front: {
  40889. height: math.unit(30, "feet"),
  40890. name: "Front",
  40891. image: {
  40892. source: "./media/characters/veluren-thanazel/front.svg",
  40893. extra: 1486/636,
  40894. bottom: 238/1724
  40895. }
  40896. },
  40897. head: {
  40898. height: math.unit(21.4, "feet"),
  40899. name: "Head",
  40900. image: {
  40901. source: "./media/characters/veluren-thanazel/head.svg"
  40902. }
  40903. },
  40904. genitals: {
  40905. height: math.unit(19.4, "feet"),
  40906. name: "Genitals",
  40907. image: {
  40908. source: "./media/characters/veluren-thanazel/genitals.svg"
  40909. }
  40910. },
  40911. },
  40912. [
  40913. {
  40914. name: "Social",
  40915. height: math.unit(6, "feet")
  40916. },
  40917. {
  40918. name: "Play",
  40919. height: math.unit(12, "feet")
  40920. },
  40921. {
  40922. name: "True",
  40923. height: math.unit(30, "feet"),
  40924. default: true
  40925. },
  40926. ]
  40927. ))
  40928. characterMakers.push(() => makeCharacter(
  40929. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40930. {
  40931. front: {
  40932. height: math.unit(7 + 6/12, "feet"),
  40933. weight: math.unit(500, "kg"),
  40934. name: "Front",
  40935. image: {
  40936. source: "./media/characters/arcturas/front.svg",
  40937. extra: 1700/1500,
  40938. bottom: 145/1845
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Normal",
  40945. height: math.unit(7 + 6/12, "feet"),
  40946. default: true
  40947. },
  40948. ]
  40949. ))
  40950. characterMakers.push(() => makeCharacter(
  40951. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40952. {
  40953. side: {
  40954. height: math.unit(6, "feet"),
  40955. weight: math.unit(2, "tons"),
  40956. name: "Side",
  40957. image: {
  40958. source: "./media/characters/vitaen/side.svg",
  40959. extra: 1157/617,
  40960. bottom: 122/1279
  40961. }
  40962. },
  40963. },
  40964. [
  40965. {
  40966. name: "Normal",
  40967. height: math.unit(6, "feet"),
  40968. default: true
  40969. },
  40970. ]
  40971. ))
  40972. characterMakers.push(() => makeCharacter(
  40973. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40974. {
  40975. front: {
  40976. height: math.unit(19, "feet"),
  40977. name: "Front",
  40978. image: {
  40979. source: "./media/characters/fia-dreamweaver/front.svg",
  40980. extra: 1630/1504,
  40981. bottom: 25/1655
  40982. }
  40983. },
  40984. },
  40985. [
  40986. {
  40987. name: "Normal",
  40988. height: math.unit(19, "feet"),
  40989. default: true
  40990. },
  40991. ]
  40992. ))
  40993. characterMakers.push(() => makeCharacter(
  40994. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40995. {
  40996. front: {
  40997. height: math.unit(5 + 4/12, "feet"),
  40998. name: "Front",
  40999. image: {
  41000. source: "./media/characters/artan/front.svg",
  41001. extra: 1618/1535,
  41002. bottom: 46/1664
  41003. }
  41004. },
  41005. back: {
  41006. height: math.unit(5 + 4/12, "feet"),
  41007. name: "Back",
  41008. image: {
  41009. source: "./media/characters/artan/back.svg",
  41010. extra: 1618/1543,
  41011. bottom: 31/1649
  41012. }
  41013. },
  41014. },
  41015. [
  41016. {
  41017. name: "Normal",
  41018. height: math.unit(5 + 4/12, "feet"),
  41019. default: true
  41020. },
  41021. ]
  41022. ))
  41023. characterMakers.push(() => makeCharacter(
  41024. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41025. {
  41026. side: {
  41027. height: math.unit(182, "cm"),
  41028. weight: math.unit(1000, "lb"),
  41029. name: "Side",
  41030. image: {
  41031. source: "./media/characters/silver-dragon/side.svg",
  41032. extra: 710/287,
  41033. bottom: 88/798
  41034. }
  41035. },
  41036. },
  41037. [
  41038. {
  41039. name: "Normal",
  41040. height: math.unit(182, "cm"),
  41041. default: true
  41042. },
  41043. ]
  41044. ))
  41045. characterMakers.push(() => makeCharacter(
  41046. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41047. {
  41048. side: {
  41049. height: math.unit(6 + 6/12, "feet"),
  41050. weight: math.unit(1.5, "tons"),
  41051. name: "Side",
  41052. image: {
  41053. source: "./media/characters/zephyr/side.svg",
  41054. extra: 1433/586,
  41055. bottom: 109/1542
  41056. }
  41057. },
  41058. },
  41059. [
  41060. {
  41061. name: "Normal",
  41062. height: math.unit(6 + 6/12, "feet"),
  41063. default: true
  41064. },
  41065. ]
  41066. ))
  41067. characterMakers.push(() => makeCharacter(
  41068. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41069. {
  41070. side: {
  41071. height: math.unit(1, "feet"),
  41072. name: "Side",
  41073. image: {
  41074. source: "./media/characters/vixye/side.svg",
  41075. extra: 632/541,
  41076. bottom: 0/632
  41077. }
  41078. },
  41079. },
  41080. [
  41081. {
  41082. name: "Normal",
  41083. height: math.unit(1, "feet"),
  41084. default: true
  41085. },
  41086. {
  41087. name: "True",
  41088. height: math.unit(1e15, "multiverses")
  41089. },
  41090. ]
  41091. ))
  41092. characterMakers.push(() => makeCharacter(
  41093. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41094. {
  41095. front: {
  41096. height: math.unit(8 + 2/12, "feet"),
  41097. weight: math.unit(650, "lb"),
  41098. name: "Front",
  41099. image: {
  41100. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41101. extra: 1174/1137,
  41102. bottom: 82/1256
  41103. }
  41104. },
  41105. back: {
  41106. height: math.unit(8 + 2/12, "feet"),
  41107. weight: math.unit(650, "lb"),
  41108. name: "Back",
  41109. image: {
  41110. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41111. extra: 1204/1157,
  41112. bottom: 46/1250
  41113. }
  41114. },
  41115. },
  41116. [
  41117. {
  41118. name: "Wildform",
  41119. height: math.unit(8 + 2/12, "feet"),
  41120. default: true
  41121. },
  41122. ]
  41123. ))
  41124. characterMakers.push(() => makeCharacter(
  41125. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41126. {
  41127. front: {
  41128. height: math.unit(18, "feet"),
  41129. name: "Front",
  41130. image: {
  41131. source: "./media/characters/cyphin/front.svg",
  41132. extra: 970/886,
  41133. bottom: 42/1012
  41134. }
  41135. },
  41136. back: {
  41137. height: math.unit(18, "feet"),
  41138. name: "Back",
  41139. image: {
  41140. source: "./media/characters/cyphin/back.svg",
  41141. extra: 1009/894,
  41142. bottom: 24/1033
  41143. }
  41144. },
  41145. head: {
  41146. height: math.unit(5.05, "feet"),
  41147. name: "Head",
  41148. image: {
  41149. source: "./media/characters/cyphin/head.svg"
  41150. }
  41151. },
  41152. tailbud: {
  41153. height: math.unit(5, "feet"),
  41154. name: "Tailbud",
  41155. image: {
  41156. source: "./media/characters/cyphin/tailbud.svg"
  41157. }
  41158. },
  41159. },
  41160. [
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41165. {
  41166. side: {
  41167. height: math.unit(10, "feet"),
  41168. weight: math.unit(6, "tons"),
  41169. name: "Side",
  41170. image: {
  41171. source: "./media/characters/raijin/side.svg",
  41172. extra: 1529/613,
  41173. bottom: 337/1866
  41174. }
  41175. },
  41176. },
  41177. [
  41178. {
  41179. name: "Normal",
  41180. height: math.unit(10, "feet"),
  41181. default: true
  41182. },
  41183. ]
  41184. ))
  41185. characterMakers.push(() => makeCharacter(
  41186. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41187. {
  41188. side: {
  41189. height: math.unit(9, "feet"),
  41190. name: "Side",
  41191. image: {
  41192. source: "./media/characters/nilghais/side.svg",
  41193. extra: 1047/744,
  41194. bottom: 91/1138
  41195. }
  41196. },
  41197. head: {
  41198. height: math.unit(3.14, "feet"),
  41199. name: "Head",
  41200. image: {
  41201. source: "./media/characters/nilghais/head.svg"
  41202. }
  41203. },
  41204. mouth: {
  41205. height: math.unit(4.6, "feet"),
  41206. name: "Mouth",
  41207. image: {
  41208. source: "./media/characters/nilghais/mouth.svg"
  41209. }
  41210. },
  41211. wings: {
  41212. height: math.unit(24, "feet"),
  41213. name: "Wings",
  41214. image: {
  41215. source: "./media/characters/nilghais/wings.svg"
  41216. }
  41217. },
  41218. ass: {
  41219. height: math.unit(6.12, "feet"),
  41220. name: "Ass",
  41221. image: {
  41222. source: "./media/characters/nilghais/ass.svg"
  41223. }
  41224. },
  41225. },
  41226. [
  41227. {
  41228. name: "Normal",
  41229. height: math.unit(9, "feet"),
  41230. default: true
  41231. },
  41232. ]
  41233. ))
  41234. characterMakers.push(() => makeCharacter(
  41235. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41236. {
  41237. regular: {
  41238. height: math.unit(16 + 2/12, "feet"),
  41239. weight: math.unit(2300, "lb"),
  41240. name: "Regular",
  41241. image: {
  41242. source: "./media/characters/zolgar/regular.svg",
  41243. extra: 1246/1004,
  41244. bottom: 124/1370
  41245. }
  41246. },
  41247. boxers: {
  41248. height: math.unit(16 + 2/12, "feet"),
  41249. weight: math.unit(2300, "lb"),
  41250. name: "Boxers",
  41251. image: {
  41252. source: "./media/characters/zolgar/boxers.svg",
  41253. extra: 1246/1004,
  41254. bottom: 124/1370
  41255. }
  41256. },
  41257. armored: {
  41258. height: math.unit(16 + 2/12, "feet"),
  41259. weight: math.unit(2300, "lb"),
  41260. name: "Armored",
  41261. image: {
  41262. source: "./media/characters/zolgar/armored.svg",
  41263. extra: 1246/1004,
  41264. bottom: 124/1370
  41265. }
  41266. },
  41267. goth: {
  41268. height: math.unit(16 + 2/12, "feet"),
  41269. weight: math.unit(2300, "lb"),
  41270. name: "Goth",
  41271. image: {
  41272. source: "./media/characters/zolgar/goth.svg",
  41273. extra: 1246/1004,
  41274. bottom: 124/1370
  41275. }
  41276. },
  41277. },
  41278. [
  41279. {
  41280. name: "Shrunken Down",
  41281. height: math.unit(9 + 2/12, "feet")
  41282. },
  41283. {
  41284. name: "Normal",
  41285. height: math.unit(16 + 2/12, "feet"),
  41286. default: true
  41287. },
  41288. ]
  41289. ))
  41290. characterMakers.push(() => makeCharacter(
  41291. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41292. {
  41293. front: {
  41294. height: math.unit(6, "feet"),
  41295. weight: math.unit(168, "lb"),
  41296. name: "Front",
  41297. image: {
  41298. source: "./media/characters/luca/front.svg",
  41299. extra: 841/667,
  41300. bottom: 102/943
  41301. }
  41302. },
  41303. },
  41304. [
  41305. {
  41306. name: "Normal",
  41307. height: math.unit(6, "feet"),
  41308. default: true
  41309. },
  41310. ]
  41311. ))
  41312. characterMakers.push(() => makeCharacter(
  41313. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41314. {
  41315. side: {
  41316. height: math.unit(7 + 3/12, "feet"),
  41317. weight: math.unit(312, "lb"),
  41318. name: "Side",
  41319. image: {
  41320. source: "./media/characters/zezo/side.svg",
  41321. extra: 1192/1067,
  41322. bottom: 63/1255
  41323. }
  41324. },
  41325. },
  41326. [
  41327. {
  41328. name: "Normal",
  41329. height: math.unit(7 + 3/12, "feet"),
  41330. default: true
  41331. },
  41332. ]
  41333. ))
  41334. characterMakers.push(() => makeCharacter(
  41335. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41336. {
  41337. front: {
  41338. height: math.unit(5 + 5/12, "feet"),
  41339. weight: math.unit(170, "lb"),
  41340. name: "Front",
  41341. image: {
  41342. source: "./media/characters/mayso/front.svg",
  41343. extra: 1215/1108,
  41344. bottom: 16/1231
  41345. }
  41346. },
  41347. },
  41348. [
  41349. {
  41350. name: "Normal",
  41351. height: math.unit(5 + 5/12, "feet"),
  41352. default: true
  41353. },
  41354. ]
  41355. ))
  41356. characterMakers.push(() => makeCharacter(
  41357. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41358. {
  41359. front: {
  41360. height: math.unit(4 + 3/12, "feet"),
  41361. weight: math.unit(80, "lb"),
  41362. name: "Front",
  41363. image: {
  41364. source: "./media/characters/hess/front.svg",
  41365. extra: 1200/1123,
  41366. bottom: 16/1216
  41367. }
  41368. },
  41369. },
  41370. [
  41371. {
  41372. name: "Normal",
  41373. height: math.unit(4 + 3/12, "feet"),
  41374. default: true
  41375. },
  41376. ]
  41377. ))
  41378. characterMakers.push(() => makeCharacter(
  41379. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41380. {
  41381. front: {
  41382. height: math.unit(1.9, "meters"),
  41383. name: "Front",
  41384. image: {
  41385. source: "./media/characters/ashgar/front.svg",
  41386. extra: 1177/1146,
  41387. bottom: 99/1276
  41388. }
  41389. },
  41390. back: {
  41391. height: math.unit(1.9, "meters"),
  41392. name: "Back",
  41393. image: {
  41394. source: "./media/characters/ashgar/back.svg",
  41395. extra: 1201/1183,
  41396. bottom: 53/1254
  41397. }
  41398. },
  41399. feral: {
  41400. height: math.unit(1.4, "meters"),
  41401. name: "Feral",
  41402. image: {
  41403. source: "./media/characters/ashgar/feral.svg",
  41404. extra: 370/345,
  41405. bottom: 45/415
  41406. }
  41407. },
  41408. },
  41409. [
  41410. {
  41411. name: "Normal",
  41412. height: math.unit(1.9, "meters"),
  41413. default: true
  41414. },
  41415. ]
  41416. ))
  41417. characterMakers.push(() => makeCharacter(
  41418. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41419. {
  41420. regular: {
  41421. height: math.unit(6, "feet"),
  41422. weight: math.unit(220, "lb"),
  41423. name: "Regular",
  41424. image: {
  41425. source: "./media/characters/phillip/regular.svg",
  41426. extra: 1373/1277,
  41427. bottom: 75/1448
  41428. }
  41429. },
  41430. dressed: {
  41431. height: math.unit(6, "feet"),
  41432. weight: math.unit(220, "lb"),
  41433. name: "Dressed",
  41434. image: {
  41435. source: "./media/characters/phillip/dressed.svg",
  41436. extra: 1373/1277,
  41437. bottom: 75/1448
  41438. }
  41439. },
  41440. paw: {
  41441. height: math.unit(1.44, "feet"),
  41442. name: "Paw",
  41443. image: {
  41444. source: "./media/characters/phillip/paw.svg"
  41445. }
  41446. },
  41447. },
  41448. [
  41449. {
  41450. name: "Normal",
  41451. height: math.unit(6, "feet"),
  41452. default: true
  41453. },
  41454. ]
  41455. ))
  41456. characterMakers.push(() => makeCharacter(
  41457. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41458. {
  41459. side: {
  41460. height: math.unit(42, "feet"),
  41461. name: "Side",
  41462. image: {
  41463. source: "./media/characters/uvula/side.svg",
  41464. extra: 683/586,
  41465. bottom: 60/743
  41466. }
  41467. },
  41468. front: {
  41469. height: math.unit(42, "feet"),
  41470. name: "Front",
  41471. image: {
  41472. source: "./media/characters/uvula/front.svg",
  41473. extra: 705/613,
  41474. bottom: 54/759
  41475. }
  41476. },
  41477. maw: {
  41478. height: math.unit(23.5, "feet"),
  41479. name: "Maw",
  41480. image: {
  41481. source: "./media/characters/uvula/maw.svg"
  41482. }
  41483. },
  41484. },
  41485. [
  41486. {
  41487. name: "Original Size",
  41488. height: math.unit(14, "inches")
  41489. },
  41490. {
  41491. name: "Human Size",
  41492. height: math.unit(6, "feet")
  41493. },
  41494. {
  41495. name: "Big",
  41496. height: math.unit(42, "feet"),
  41497. default: true
  41498. },
  41499. {
  41500. name: "Bigger",
  41501. height: math.unit(100, "feet")
  41502. },
  41503. ]
  41504. ))
  41505. characterMakers.push(() => makeCharacter(
  41506. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41507. {
  41508. front: {
  41509. height: math.unit(5 + 11/12, "feet"),
  41510. name: "Front",
  41511. image: {
  41512. source: "./media/characters/lannah/front.svg",
  41513. extra: 1208/1113,
  41514. bottom: 97/1305
  41515. }
  41516. },
  41517. },
  41518. [
  41519. {
  41520. name: "Normal",
  41521. height: math.unit(5 + 11/12, "feet"),
  41522. default: true
  41523. },
  41524. ]
  41525. ))
  41526. characterMakers.push(() => makeCharacter(
  41527. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41528. {
  41529. front: {
  41530. height: math.unit(6 + 3/12, "feet"),
  41531. weight: math.unit(3.5, "tons"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/emberflame/front.svg",
  41535. extra: 1198/672,
  41536. bottom: 82/1280
  41537. }
  41538. },
  41539. side: {
  41540. height: math.unit(6 + 3/12, "feet"),
  41541. weight: math.unit(3.5, "tons"),
  41542. name: "Side",
  41543. image: {
  41544. source: "./media/characters/emberflame/side.svg",
  41545. extra: 938/527,
  41546. bottom: 56/994
  41547. }
  41548. },
  41549. },
  41550. [
  41551. {
  41552. name: "Normal",
  41553. height: math.unit(6 + 3/12, "feet"),
  41554. default: true
  41555. },
  41556. ]
  41557. ))
  41558. characterMakers.push(() => makeCharacter(
  41559. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41560. {
  41561. side: {
  41562. height: math.unit(17.5, "feet"),
  41563. weight: math.unit(35, "tons"),
  41564. name: "Side",
  41565. image: {
  41566. source: "./media/characters/sophie-ambrose/side.svg",
  41567. extra: 1573/1242,
  41568. bottom: 71/1644
  41569. }
  41570. },
  41571. maw: {
  41572. height: math.unit(7.4, "feet"),
  41573. name: "Maw",
  41574. image: {
  41575. source: "./media/characters/sophie-ambrose/maw.svg"
  41576. }
  41577. },
  41578. },
  41579. [
  41580. {
  41581. name: "Normal",
  41582. height: math.unit(17.5, "feet"),
  41583. default: true
  41584. },
  41585. ]
  41586. ))
  41587. characterMakers.push(() => makeCharacter(
  41588. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41589. {
  41590. front: {
  41591. height: math.unit(280, "feet"),
  41592. weight: math.unit(550, "tons"),
  41593. name: "Front",
  41594. image: {
  41595. source: "./media/characters/king-mugi/front.svg",
  41596. extra: 1102/947,
  41597. bottom: 104/1206
  41598. }
  41599. },
  41600. },
  41601. [
  41602. {
  41603. name: "King Mugi",
  41604. height: math.unit(280, "feet"),
  41605. default: true
  41606. },
  41607. ]
  41608. ))
  41609. characterMakers.push(() => makeCharacter(
  41610. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41611. {
  41612. front: {
  41613. height: math.unit(64, "meters"),
  41614. name: "Front",
  41615. image: {
  41616. source: "./media/characters/nova-fox/front.svg",
  41617. extra: 1310/1246,
  41618. bottom: 65/1375
  41619. }
  41620. },
  41621. },
  41622. [
  41623. {
  41624. name: "Macro",
  41625. height: math.unit(64, "meters"),
  41626. default: true
  41627. },
  41628. ]
  41629. ))
  41630. characterMakers.push(() => makeCharacter(
  41631. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41632. {
  41633. front: {
  41634. height: math.unit(6 + 3/12, "feet"),
  41635. weight: math.unit(170, "lb"),
  41636. name: "Front",
  41637. image: {
  41638. source: "./media/characters/sam-bat/front.svg",
  41639. extra: 1601/1411,
  41640. bottom: 125/1726
  41641. }
  41642. },
  41643. back: {
  41644. height: math.unit(6 + 3/12, "feet"),
  41645. weight: math.unit(170, "lb"),
  41646. name: "Back",
  41647. image: {
  41648. source: "./media/characters/sam-bat/back.svg",
  41649. extra: 1577/1405,
  41650. bottom: 58/1635
  41651. }
  41652. },
  41653. },
  41654. [
  41655. {
  41656. name: "Normal",
  41657. height: math.unit(6 + 3/12, "feet"),
  41658. default: true
  41659. },
  41660. ]
  41661. ))
  41662. characterMakers.push(() => makeCharacter(
  41663. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41664. {
  41665. front: {
  41666. height: math.unit(59, "feet"),
  41667. weight: math.unit(40000, "lb"),
  41668. name: "Front",
  41669. image: {
  41670. source: "./media/characters/inari/front.svg",
  41671. extra: 1884/1350,
  41672. bottom: 95/1979
  41673. }
  41674. },
  41675. },
  41676. [
  41677. {
  41678. name: "Gigantamax",
  41679. height: math.unit(59, "feet"),
  41680. default: true
  41681. },
  41682. ]
  41683. ))
  41684. characterMakers.push(() => makeCharacter(
  41685. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41686. {
  41687. front: {
  41688. height: math.unit(5 + 8/12, "feet"),
  41689. name: "Front",
  41690. image: {
  41691. source: "./media/characters/elizabeth/front.svg",
  41692. extra: 1395/1298,
  41693. bottom: 54/1449
  41694. }
  41695. },
  41696. mouth: {
  41697. height: math.unit(1.97, "feet"),
  41698. name: "Mouth",
  41699. image: {
  41700. source: "./media/characters/elizabeth/mouth.svg"
  41701. }
  41702. },
  41703. foot: {
  41704. height: math.unit(1.17, "feet"),
  41705. name: "Foot",
  41706. image: {
  41707. source: "./media/characters/elizabeth/foot.svg"
  41708. }
  41709. },
  41710. },
  41711. [
  41712. {
  41713. name: "Normal",
  41714. height: math.unit(5 + 8/12, "feet"),
  41715. default: true
  41716. },
  41717. {
  41718. name: "Minimacro",
  41719. height: math.unit(18, "feet")
  41720. },
  41721. {
  41722. name: "Macro",
  41723. height: math.unit(180, "feet")
  41724. },
  41725. ]
  41726. ))
  41727. characterMakers.push(() => makeCharacter(
  41728. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41729. {
  41730. front: {
  41731. height: math.unit(5 + 2/12, "feet"),
  41732. name: "Front",
  41733. image: {
  41734. source: "./media/characters/october-gossamer/front.svg",
  41735. extra: 505/454,
  41736. bottom: 7/512
  41737. }
  41738. },
  41739. back: {
  41740. height: math.unit(5 + 2/12, "feet"),
  41741. name: "Back",
  41742. image: {
  41743. source: "./media/characters/october-gossamer/back.svg",
  41744. extra: 501/454,
  41745. bottom: 11/512
  41746. }
  41747. },
  41748. },
  41749. [
  41750. {
  41751. name: "Normal",
  41752. height: math.unit(5 + 2/12, "feet"),
  41753. default: true
  41754. },
  41755. ]
  41756. ))
  41757. characterMakers.push(() => makeCharacter(
  41758. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41759. {
  41760. front: {
  41761. height: math.unit(5, "feet"),
  41762. name: "Front",
  41763. image: {
  41764. source: "./media/characters/epiglottis/front.svg",
  41765. extra: 923/849,
  41766. bottom: 17/940
  41767. }
  41768. },
  41769. },
  41770. [
  41771. {
  41772. name: "Original Size",
  41773. height: math.unit(10, "inches")
  41774. },
  41775. {
  41776. name: "Human Size",
  41777. height: math.unit(5, "feet"),
  41778. default: true
  41779. },
  41780. {
  41781. name: "Big",
  41782. height: math.unit(25, "feet")
  41783. },
  41784. {
  41785. name: "Bigger",
  41786. height: math.unit(50, "feet")
  41787. },
  41788. {
  41789. name: "oh lawd",
  41790. height: math.unit(75, "feet")
  41791. },
  41792. ]
  41793. ))
  41794. characterMakers.push(() => makeCharacter(
  41795. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41796. {
  41797. front: {
  41798. height: math.unit(2 + 4/12, "feet"),
  41799. weight: math.unit(60, "lb"),
  41800. name: "Front",
  41801. image: {
  41802. source: "./media/characters/lerm/front.svg",
  41803. extra: 796/790,
  41804. bottom: 79/875
  41805. }
  41806. },
  41807. },
  41808. [
  41809. {
  41810. name: "Normal",
  41811. height: math.unit(2 + 4/12, "feet"),
  41812. default: true
  41813. },
  41814. ]
  41815. ))
  41816. characterMakers.push(() => makeCharacter(
  41817. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41818. {
  41819. front: {
  41820. height: math.unit(5.5, "feet"),
  41821. weight: math.unit(130, "lb"),
  41822. name: "Front",
  41823. image: {
  41824. source: "./media/characters/xena-nebadon/front.svg",
  41825. extra: 1828/1730,
  41826. bottom: 79/1907
  41827. }
  41828. },
  41829. },
  41830. [
  41831. {
  41832. name: "Tiny Puppy",
  41833. height: math.unit(3, "inches")
  41834. },
  41835. {
  41836. name: "Normal",
  41837. height: math.unit(5.5, "feet"),
  41838. default: true
  41839. },
  41840. {
  41841. name: "Lotta Lady",
  41842. height: math.unit(12, "feet")
  41843. },
  41844. {
  41845. name: "Pretty Big",
  41846. height: math.unit(100, "feet")
  41847. },
  41848. {
  41849. name: "Big",
  41850. height: math.unit(500, "feet")
  41851. },
  41852. {
  41853. name: "Skyscraper Toys",
  41854. height: math.unit(2500, "feet")
  41855. },
  41856. {
  41857. name: "Plane Catcher",
  41858. height: math.unit(8, "miles")
  41859. },
  41860. {
  41861. name: "Planet Toys",
  41862. height: math.unit(15, "earths")
  41863. },
  41864. {
  41865. name: "Stardust",
  41866. height: math.unit(0.25, "galaxies")
  41867. },
  41868. {
  41869. name: "Snacks",
  41870. height: math.unit(70, "universes")
  41871. },
  41872. ]
  41873. ))
  41874. characterMakers.push(() => makeCharacter(
  41875. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41876. {
  41877. front: {
  41878. height: math.unit(1.6, "meters"),
  41879. weight: math.unit(60, "kg"),
  41880. name: "Front",
  41881. image: {
  41882. source: "./media/characters/bounty/front.svg",
  41883. extra: 1426/1308,
  41884. bottom: 15/1441
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Normal",
  41891. height: math.unit(1.6, "meters"),
  41892. default: true
  41893. },
  41894. {
  41895. name: "Macro",
  41896. height: math.unit(300, "meters")
  41897. },
  41898. ]
  41899. ))
  41900. characterMakers.push(() => makeCharacter(
  41901. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41902. {
  41903. front: {
  41904. height: math.unit(2 + 8/12, "feet"),
  41905. weight: math.unit(15, "lb"),
  41906. name: "Front",
  41907. image: {
  41908. source: "./media/characters/mochi/front.svg",
  41909. extra: 1022/852,
  41910. bottom: 435/1457
  41911. }
  41912. },
  41913. back: {
  41914. height: math.unit(2 + 8/12, "feet"),
  41915. weight: math.unit(15, "lb"),
  41916. name: "Back",
  41917. image: {
  41918. source: "./media/characters/mochi/back.svg",
  41919. extra: 1335/1119,
  41920. bottom: 39/1374
  41921. }
  41922. },
  41923. bird: {
  41924. height: math.unit(2 + 8/12, "feet"),
  41925. weight: math.unit(15, "lb"),
  41926. name: "Bird",
  41927. image: {
  41928. source: "./media/characters/mochi/bird.svg",
  41929. extra: 1251/1113,
  41930. bottom: 178/1429
  41931. }
  41932. },
  41933. kaiju: {
  41934. height: math.unit(154, "feet"),
  41935. weight: math.unit(1e7, "lb"),
  41936. name: "Kaiju",
  41937. image: {
  41938. source: "./media/characters/mochi/kaiju.svg",
  41939. extra: 460/324,
  41940. bottom: 40/500
  41941. }
  41942. },
  41943. head: {
  41944. height: math.unit(1.21, "feet"),
  41945. name: "Head",
  41946. image: {
  41947. source: "./media/characters/mochi/head.svg"
  41948. }
  41949. },
  41950. alternateTail: {
  41951. height: math.unit(2 + 8/12, "feet"),
  41952. weight: math.unit(45, "lb"),
  41953. name: "Alternate Tail",
  41954. image: {
  41955. source: "./media/characters/mochi/alternate-tail.svg",
  41956. extra: 139/76,
  41957. bottom: 45/184
  41958. }
  41959. },
  41960. },
  41961. [
  41962. {
  41963. name: "Micro",
  41964. height: math.unit(2, "inches")
  41965. },
  41966. {
  41967. name: "Normal",
  41968. height: math.unit(2 + 8/12, "feet"),
  41969. default: true
  41970. },
  41971. {
  41972. name: "Macro",
  41973. height: math.unit(106, "feet")
  41974. },
  41975. ]
  41976. ))
  41977. characterMakers.push(() => makeCharacter(
  41978. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  41979. {
  41980. front: {
  41981. height: math.unit(5.67, "feet"),
  41982. weight: math.unit(135, "lb"),
  41983. name: "Front",
  41984. image: {
  41985. source: "./media/characters/sarel/front.svg",
  41986. extra: 865/788,
  41987. bottom: 97/962
  41988. }
  41989. },
  41990. back: {
  41991. height: math.unit(5.67, "feet"),
  41992. weight: math.unit(135, "lb"),
  41993. name: "Back",
  41994. image: {
  41995. source: "./media/characters/sarel/back.svg",
  41996. extra: 857/777,
  41997. bottom: 32/889
  41998. }
  41999. },
  42000. chozoan: {
  42001. height: math.unit(5.67, "feet"),
  42002. weight: math.unit(135, "lb"),
  42003. name: "Chozoan",
  42004. image: {
  42005. source: "./media/characters/sarel/chozoan.svg",
  42006. extra: 865/788,
  42007. bottom: 97/962
  42008. }
  42009. },
  42010. current: {
  42011. height: math.unit(5.67, "feet"),
  42012. weight: math.unit(135, "lb"),
  42013. name: "Current",
  42014. image: {
  42015. source: "./media/characters/sarel/current.svg",
  42016. extra: 865/788,
  42017. bottom: 97/962
  42018. }
  42019. },
  42020. head: {
  42021. height: math.unit(1.77, "feet"),
  42022. name: "Head",
  42023. image: {
  42024. source: "./media/characters/sarel/head.svg"
  42025. }
  42026. },
  42027. claws: {
  42028. height: math.unit(1.8, "feet"),
  42029. name: "Claws",
  42030. image: {
  42031. source: "./media/characters/sarel/claws.svg"
  42032. }
  42033. },
  42034. clawsAlt: {
  42035. height: math.unit(1.8, "feet"),
  42036. name: "Claws-alt",
  42037. image: {
  42038. source: "./media/characters/sarel/claws-alt.svg"
  42039. }
  42040. },
  42041. },
  42042. [
  42043. {
  42044. name: "Normal",
  42045. height: math.unit(5.67, "feet"),
  42046. default: true
  42047. },
  42048. ]
  42049. ))
  42050. characterMakers.push(() => makeCharacter(
  42051. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42052. {
  42053. front: {
  42054. height: math.unit(5500, "feet"),
  42055. name: "Front",
  42056. image: {
  42057. source: "./media/characters/alyonia/front.svg",
  42058. extra: 1200/1135,
  42059. bottom: 29/1229
  42060. }
  42061. },
  42062. back: {
  42063. height: math.unit(5500, "feet"),
  42064. name: "Back",
  42065. image: {
  42066. source: "./media/characters/alyonia/back.svg",
  42067. extra: 1205/1138,
  42068. bottom: 10/1215
  42069. }
  42070. },
  42071. },
  42072. [
  42073. {
  42074. name: "Small",
  42075. height: math.unit(10, "feet")
  42076. },
  42077. {
  42078. name: "Macro",
  42079. height: math.unit(500, "feet")
  42080. },
  42081. {
  42082. name: "Mega Macro",
  42083. height: math.unit(5500, "feet"),
  42084. default: true
  42085. },
  42086. {
  42087. name: "Mega Macro+",
  42088. height: math.unit(500000, "feet")
  42089. },
  42090. {
  42091. name: "Giga Macro",
  42092. height: math.unit(3000, "miles")
  42093. },
  42094. {
  42095. name: "Tera Macro",
  42096. height: math.unit(2.8e6, "miles")
  42097. },
  42098. {
  42099. name: "Galactic",
  42100. height: math.unit(120000, "lightyears")
  42101. },
  42102. ]
  42103. ))
  42104. characterMakers.push(() => makeCharacter(
  42105. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42106. {
  42107. werewolf: {
  42108. height: math.unit(8, "feet"),
  42109. weight: math.unit(425, "lb"),
  42110. name: "Werewolf",
  42111. image: {
  42112. source: "./media/characters/autumn/werewolf.svg",
  42113. extra: 2154/2031,
  42114. bottom: 160/2314
  42115. }
  42116. },
  42117. human: {
  42118. height: math.unit(5 + 8/12, "feet"),
  42119. weight: math.unit(150, "lb"),
  42120. name: "Human",
  42121. image: {
  42122. source: "./media/characters/autumn/human.svg",
  42123. extra: 1200/1149,
  42124. bottom: 30/1230
  42125. }
  42126. },
  42127. },
  42128. [
  42129. {
  42130. name: "Normal",
  42131. height: math.unit(8, "feet"),
  42132. default: true
  42133. },
  42134. ]
  42135. ))
  42136. characterMakers.push(() => makeCharacter(
  42137. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42138. {
  42139. front: {
  42140. height: math.unit(8 + 5/12, "feet"),
  42141. weight: math.unit(825, "lb"),
  42142. name: "Front",
  42143. image: {
  42144. source: "./media/characters/cobalt-charizard/front.svg",
  42145. extra: 1268/1155,
  42146. bottom: 122/1390
  42147. }
  42148. },
  42149. side: {
  42150. height: math.unit(8 + 5/12, "feet"),
  42151. weight: math.unit(825, "lb"),
  42152. name: "Side",
  42153. image: {
  42154. source: "./media/characters/cobalt-charizard/side.svg",
  42155. extra: 1348/1257,
  42156. bottom: 58/1406
  42157. }
  42158. },
  42159. gMax: {
  42160. height: math.unit(134 + 11/12, "feet"),
  42161. name: "G-Max",
  42162. image: {
  42163. source: "./media/characters/cobalt-charizard/g-max.svg",
  42164. extra: 1835/1541,
  42165. bottom: 151/1986
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Normal",
  42172. height: math.unit(8 + 5/12, "feet"),
  42173. default: true
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42179. {
  42180. front: {
  42181. height: math.unit(6 + 3/12, "feet"),
  42182. weight: math.unit(210, "lb"),
  42183. name: "Front",
  42184. image: {
  42185. source: "./media/characters/stella/front.svg",
  42186. extra: 3549/3335,
  42187. bottom: 51/3600
  42188. }
  42189. },
  42190. },
  42191. [
  42192. {
  42193. name: "Normal",
  42194. height: math.unit(6 + 3/12, "feet"),
  42195. default: true
  42196. },
  42197. ]
  42198. ))
  42199. //characters
  42200. function makeCharacters() {
  42201. const results = [];
  42202. characterMakers.forEach(character => {
  42203. results.push(character());
  42204. });
  42205. return results;
  42206. }