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

43622 строки
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. }
  1763. //species
  1764. function getSpeciesInfo(speciesList) {
  1765. let result = new Set();
  1766. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1767. result.add(entry)
  1768. });
  1769. return Array.from(result);
  1770. };
  1771. function getSpeciesInfoHelper(species) {
  1772. if (!speciesData[species]) {
  1773. console.warn(species + " doesn't exist");
  1774. return [];
  1775. }
  1776. if (speciesData[species].parents) {
  1777. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1778. } else {
  1779. return [species];
  1780. }
  1781. }
  1782. characterMakers.push(() => makeCharacter(
  1783. {
  1784. name: "Fen",
  1785. species: ["crux"],
  1786. description: {
  1787. title: "Bio",
  1788. text: "Very furry. Sheds on everything."
  1789. },
  1790. tags: [
  1791. "anthro",
  1792. "goo"
  1793. ]
  1794. },
  1795. {
  1796. back: {
  1797. height: math.unit(2.2428, "meter"),
  1798. weight: math.unit(124.738, "kg"),
  1799. name: "Back",
  1800. image: {
  1801. source: "./media/characters/fen/back.svg",
  1802. },
  1803. info: {
  1804. description: {
  1805. mode: "append",
  1806. text: "\n\nHe is not currently looking at you."
  1807. }
  1808. }
  1809. },
  1810. full: {
  1811. height: math.unit(1.34, "meter"),
  1812. weight: math.unit(225, "kg"),
  1813. name: "Full",
  1814. image: {
  1815. source: "./media/characters/fen/full.svg"
  1816. },
  1817. info: {
  1818. description: {
  1819. mode: "append",
  1820. text: "\n\nMunch."
  1821. }
  1822. }
  1823. },
  1824. kneeling: {
  1825. height: math.unit(5.4, "feet"),
  1826. weight: math.unit(124.738, "kg"),
  1827. name: "Kneeling",
  1828. image: {
  1829. source: "./media/characters/fen/kneeling.svg",
  1830. extra: 563 / 507
  1831. }
  1832. },
  1833. goo: {
  1834. height: math.unit(2.8, "feet"),
  1835. weight: math.unit(125, "kg"),
  1836. capacity: math.unit(1, "people"),
  1837. name: "Goo",
  1838. image: {
  1839. source: "./media/characters/fen/goo.svg",
  1840. bottom: 116 / 613
  1841. }
  1842. },
  1843. lounging: {
  1844. height: math.unit(6.5, "feet"),
  1845. weight: math.unit(125, "kg"),
  1846. name: "Lounging",
  1847. image: {
  1848. source: "./media/characters/fen/lounging.svg"
  1849. }
  1850. },
  1851. },
  1852. [
  1853. {
  1854. name: "Normal",
  1855. height: math.unit(2.2428, "meter")
  1856. },
  1857. {
  1858. name: "Big",
  1859. height: math.unit(12, "feet")
  1860. },
  1861. {
  1862. name: "Minimacro",
  1863. height: math.unit(40, "feet"),
  1864. default: true,
  1865. info: {
  1866. description: {
  1867. mode: "append",
  1868. text: "\n\nTOO DAMN BIG"
  1869. }
  1870. }
  1871. },
  1872. {
  1873. name: "Macro",
  1874. height: math.unit(100, "feet"),
  1875. info: {
  1876. description: {
  1877. mode: "append",
  1878. text: "\n\nTOO DAMN BIG"
  1879. }
  1880. }
  1881. },
  1882. {
  1883. name: "Macro+",
  1884. height: math.unit(300, "feet")
  1885. },
  1886. {
  1887. name: "Megamacro",
  1888. height: math.unit(2, "miles")
  1889. }
  1890. ]
  1891. ))
  1892. characterMakers.push(() => makeCharacter(
  1893. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1894. {
  1895. front: {
  1896. height: math.unit(183, "cm"),
  1897. weight: math.unit(80, "kg"),
  1898. name: "Front",
  1899. image: {
  1900. source: "./media/characters/sofia-fluttertail/front.svg",
  1901. bottom: 0.01,
  1902. extra: 2154 / 2081
  1903. }
  1904. },
  1905. frontAlt: {
  1906. height: math.unit(183, "cm"),
  1907. weight: math.unit(80, "kg"),
  1908. name: "Front (alt)",
  1909. image: {
  1910. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1911. }
  1912. },
  1913. back: {
  1914. height: math.unit(183, "cm"),
  1915. weight: math.unit(80, "kg"),
  1916. name: "Back",
  1917. image: {
  1918. source: "./media/characters/sofia-fluttertail/back.svg"
  1919. }
  1920. },
  1921. kneeling: {
  1922. height: math.unit(125, "cm"),
  1923. weight: math.unit(80, "kg"),
  1924. name: "Kneeling",
  1925. image: {
  1926. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1927. extra: 1033 / 977,
  1928. bottom: 23.7 / 1057
  1929. }
  1930. },
  1931. maw: {
  1932. height: math.unit(183 / 5, "cm"),
  1933. name: "Maw",
  1934. image: {
  1935. source: "./media/characters/sofia-fluttertail/maw.svg"
  1936. }
  1937. },
  1938. mawcloseup: {
  1939. height: math.unit(183 / 5 * 0.41, "cm"),
  1940. name: "Maw (Closeup)",
  1941. image: {
  1942. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1943. }
  1944. },
  1945. paws: {
  1946. height: math.unit(1.17, "feet"),
  1947. name: "Paws",
  1948. image: {
  1949. source: "./media/characters/sofia-fluttertail/paws.svg",
  1950. extra: 851 / 851,
  1951. bottom: 17 / 868
  1952. }
  1953. },
  1954. },
  1955. [
  1956. {
  1957. name: "Normal",
  1958. height: math.unit(1.83, "meter")
  1959. },
  1960. {
  1961. name: "Size Thief",
  1962. height: math.unit(18, "feet")
  1963. },
  1964. {
  1965. name: "50 Foot Collie",
  1966. height: math.unit(50, "feet")
  1967. },
  1968. {
  1969. name: "Macro",
  1970. height: math.unit(96, "feet"),
  1971. default: true
  1972. },
  1973. {
  1974. name: "Megamerger",
  1975. height: math.unit(650, "feet")
  1976. },
  1977. ]
  1978. ))
  1979. characterMakers.push(() => makeCharacter(
  1980. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1981. {
  1982. front: {
  1983. height: math.unit(7, "feet"),
  1984. weight: math.unit(100, "kg"),
  1985. name: "Front",
  1986. image: {
  1987. source: "./media/characters/march/front.svg",
  1988. extra: 1992/1851,
  1989. bottom: 39/2031
  1990. }
  1991. },
  1992. foot: {
  1993. height: math.unit(0.9, "feet"),
  1994. name: "Foot",
  1995. image: {
  1996. source: "./media/characters/march/foot.svg"
  1997. }
  1998. },
  1999. },
  2000. [
  2001. {
  2002. name: "Normal",
  2003. height: math.unit(7.9, "feet")
  2004. },
  2005. {
  2006. name: "Macro",
  2007. height: math.unit(220, "meters")
  2008. },
  2009. {
  2010. name: "Megamacro",
  2011. height: math.unit(2.98, "km"),
  2012. default: true
  2013. },
  2014. {
  2015. name: "Gigamacro",
  2016. height: math.unit(15963, "km")
  2017. },
  2018. {
  2019. name: "Teramacro",
  2020. height: math.unit(2980000000, "km")
  2021. },
  2022. {
  2023. name: "Examacro",
  2024. height: math.unit(250, "parsecs")
  2025. },
  2026. ]
  2027. ))
  2028. characterMakers.push(() => makeCharacter(
  2029. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2030. {
  2031. front: {
  2032. height: math.unit(6, "feet"),
  2033. weight: math.unit(60, "kg"),
  2034. name: "Front",
  2035. image: {
  2036. source: "./media/characters/noir/front.svg",
  2037. extra: 1,
  2038. bottom: 0.032
  2039. }
  2040. },
  2041. },
  2042. [
  2043. {
  2044. name: "Normal",
  2045. height: math.unit(6.6, "feet")
  2046. },
  2047. {
  2048. name: "Macro",
  2049. height: math.unit(500, "feet")
  2050. },
  2051. {
  2052. name: "Megamacro",
  2053. height: math.unit(2.5, "km"),
  2054. default: true
  2055. },
  2056. {
  2057. name: "Gigamacro",
  2058. height: math.unit(22500, "km")
  2059. },
  2060. {
  2061. name: "Teramacro",
  2062. height: math.unit(2500000000, "km")
  2063. },
  2064. {
  2065. name: "Examacro",
  2066. height: math.unit(200, "parsecs")
  2067. },
  2068. ]
  2069. ))
  2070. characterMakers.push(() => makeCharacter(
  2071. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2072. {
  2073. front: {
  2074. height: math.unit(7, "feet"),
  2075. weight: math.unit(100, "kg"),
  2076. name: "Front",
  2077. image: {
  2078. source: "./media/characters/okuri/front.svg",
  2079. extra: 1,
  2080. bottom: 0.037
  2081. }
  2082. },
  2083. back: {
  2084. height: math.unit(7, "feet"),
  2085. weight: math.unit(100, "kg"),
  2086. name: "Back",
  2087. image: {
  2088. source: "./media/characters/okuri/back.svg",
  2089. extra: 1,
  2090. bottom: 0.007
  2091. }
  2092. },
  2093. },
  2094. [
  2095. {
  2096. name: "Megamacro",
  2097. height: math.unit(100, "miles"),
  2098. default: true
  2099. },
  2100. ]
  2101. ))
  2102. characterMakers.push(() => makeCharacter(
  2103. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2104. {
  2105. front: {
  2106. height: math.unit(7, "feet"),
  2107. weight: math.unit(100, "kg"),
  2108. name: "Front",
  2109. image: {
  2110. source: "./media/characters/manny/front.svg",
  2111. extra: 1,
  2112. bottom: 0.06
  2113. }
  2114. },
  2115. back: {
  2116. height: math.unit(7, "feet"),
  2117. weight: math.unit(100, "kg"),
  2118. name: "Back",
  2119. image: {
  2120. source: "./media/characters/manny/back.svg",
  2121. extra: 1,
  2122. bottom: 0.014
  2123. }
  2124. },
  2125. },
  2126. [
  2127. {
  2128. name: "Normal",
  2129. height: math.unit(7, "feet"),
  2130. },
  2131. {
  2132. name: "Macro",
  2133. height: math.unit(78, "feet"),
  2134. default: true
  2135. },
  2136. {
  2137. name: "Macro+",
  2138. height: math.unit(300, "meters")
  2139. },
  2140. {
  2141. name: "Macro++",
  2142. height: math.unit(2400, "meters")
  2143. },
  2144. {
  2145. name: "Megamacro",
  2146. height: math.unit(5167, "meters")
  2147. },
  2148. {
  2149. name: "Gigamacro",
  2150. height: math.unit(41769, "miles")
  2151. },
  2152. ]
  2153. ))
  2154. characterMakers.push(() => makeCharacter(
  2155. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2156. {
  2157. front: {
  2158. height: math.unit(7, "feet"),
  2159. weight: math.unit(100, "kg"),
  2160. name: "Front",
  2161. image: {
  2162. source: "./media/characters/adake/front-1.svg"
  2163. }
  2164. },
  2165. frontAlt: {
  2166. height: math.unit(7, "feet"),
  2167. weight: math.unit(100, "kg"),
  2168. name: "Front (Alt)",
  2169. image: {
  2170. source: "./media/characters/adake/front-2.svg",
  2171. extra: 1,
  2172. bottom: 0.01
  2173. }
  2174. },
  2175. back: {
  2176. height: math.unit(7, "feet"),
  2177. weight: math.unit(100, "kg"),
  2178. name: "Back",
  2179. image: {
  2180. source: "./media/characters/adake/back.svg",
  2181. }
  2182. },
  2183. kneel: {
  2184. height: math.unit(5.385, "feet"),
  2185. weight: math.unit(100, "kg"),
  2186. name: "Kneeling",
  2187. image: {
  2188. source: "./media/characters/adake/kneel.svg",
  2189. bottom: 0.052
  2190. }
  2191. },
  2192. },
  2193. [
  2194. {
  2195. name: "Normal",
  2196. height: math.unit(7, "feet"),
  2197. },
  2198. {
  2199. name: "Macro",
  2200. height: math.unit(78, "feet"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Macro+",
  2205. height: math.unit(300, "meters")
  2206. },
  2207. {
  2208. name: "Macro++",
  2209. height: math.unit(2400, "meters")
  2210. },
  2211. {
  2212. name: "Megamacro",
  2213. height: math.unit(5167, "meters")
  2214. },
  2215. {
  2216. name: "Gigamacro",
  2217. height: math.unit(41769, "miles")
  2218. },
  2219. ]
  2220. ))
  2221. characterMakers.push(() => makeCharacter(
  2222. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2223. {
  2224. front: {
  2225. height: math.unit(1.65, "meters"),
  2226. weight: math.unit(50, "kg"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/elijah/front.svg",
  2230. extra: 858 / 830,
  2231. bottom: 95.5 / 953.8559
  2232. }
  2233. },
  2234. back: {
  2235. height: math.unit(1.65, "meters"),
  2236. weight: math.unit(50, "kg"),
  2237. name: "Back",
  2238. image: {
  2239. source: "./media/characters/elijah/back.svg",
  2240. extra: 895 / 850,
  2241. bottom: 5.3 / 897.956
  2242. }
  2243. },
  2244. frontNsfw: {
  2245. height: math.unit(1.65, "meters"),
  2246. weight: math.unit(50, "kg"),
  2247. name: "Front (NSFW)",
  2248. image: {
  2249. source: "./media/characters/elijah/front-nsfw.svg",
  2250. extra: 858 / 830,
  2251. bottom: 95.5 / 953.8559
  2252. }
  2253. },
  2254. backNsfw: {
  2255. height: math.unit(1.65, "meters"),
  2256. weight: math.unit(50, "kg"),
  2257. name: "Back (NSFW)",
  2258. image: {
  2259. source: "./media/characters/elijah/back-nsfw.svg",
  2260. extra: 895 / 850,
  2261. bottom: 5.3 / 897.956
  2262. }
  2263. },
  2264. dick: {
  2265. height: math.unit(1, "feet"),
  2266. name: "Dick",
  2267. image: {
  2268. source: "./media/characters/elijah/dick.svg"
  2269. }
  2270. },
  2271. beakOpen: {
  2272. height: math.unit(1.25, "feet"),
  2273. name: "Beak (Open)",
  2274. image: {
  2275. source: "./media/characters/elijah/beak-open.svg"
  2276. }
  2277. },
  2278. beakShut: {
  2279. height: math.unit(1.25, "feet"),
  2280. name: "Beak (Shut)",
  2281. image: {
  2282. source: "./media/characters/elijah/beak-shut.svg"
  2283. }
  2284. },
  2285. footFlexing: {
  2286. height: math.unit(1.61, "feet"),
  2287. name: "Foot (Flexing)",
  2288. image: {
  2289. source: "./media/characters/elijah/foot-flexing.svg"
  2290. }
  2291. },
  2292. footStepping: {
  2293. height: math.unit(1.44, "feet"),
  2294. name: "Foot (Stepping)",
  2295. image: {
  2296. source: "./media/characters/elijah/foot-stepping.svg"
  2297. }
  2298. },
  2299. plantigradeLeg: {
  2300. height: math.unit(2.34, "feet"),
  2301. name: "Plantigrade Leg",
  2302. image: {
  2303. source: "./media/characters/elijah/plantigrade-leg.svg"
  2304. }
  2305. },
  2306. plantigradeFootLeft: {
  2307. height: math.unit(0.9, "feet"),
  2308. name: "Plantigrade Foot (Left)",
  2309. image: {
  2310. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2311. }
  2312. },
  2313. plantigradeFootRight: {
  2314. height: math.unit(0.9, "feet"),
  2315. name: "Plantigrade Foot (Right)",
  2316. image: {
  2317. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2318. }
  2319. },
  2320. },
  2321. [
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(1.65, "meters")
  2325. },
  2326. {
  2327. name: "Macro",
  2328. height: math.unit(55, "meters"),
  2329. default: true
  2330. },
  2331. {
  2332. name: "Macro+",
  2333. height: math.unit(105, "meters")
  2334. },
  2335. ]
  2336. ))
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(11, "feet"),
  2342. weight: math.unit(320, "kg"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/rai/front.svg",
  2346. extra: 1802/1696,
  2347. bottom: 68/1870
  2348. }
  2349. },
  2350. frontDressed: {
  2351. height: math.unit(11, "feet"),
  2352. weight: math.unit(320, "kg"),
  2353. name: "Front (Dressed)",
  2354. image: {
  2355. source: "./media/characters/rai/front-dressed.svg",
  2356. extra: 1802/1696,
  2357. bottom: 68/1870
  2358. }
  2359. },
  2360. side: {
  2361. height: math.unit(11, "feet"),
  2362. weight: math.unit(320, "kg"),
  2363. name: "Side",
  2364. image: {
  2365. source: "./media/characters/rai/side.svg",
  2366. extra: 1789/1710,
  2367. bottom: 115/1904
  2368. }
  2369. },
  2370. back: {
  2371. height: math.unit(11, "feet"),
  2372. weight: math.unit(320, "kg"),
  2373. name: "Back",
  2374. image: {
  2375. source: "./media/characters/rai/back.svg",
  2376. extra: 1770/1707,
  2377. bottom: 28/1798
  2378. }
  2379. },
  2380. feral: {
  2381. height: math.unit(11, "feet"),
  2382. weight: math.unit(640, "kg"),
  2383. name: "Feral",
  2384. image: {
  2385. source: "./media/characters/rai/feral.svg",
  2386. extra: 1035/642,
  2387. bottom: 86/1121
  2388. }
  2389. },
  2390. dragon: {
  2391. height: math.unit(23, "feet"),
  2392. weight: math.unit(50000, "lb"),
  2393. name: "Dragon",
  2394. image: {
  2395. source: "./media/characters/rai/dragon.svg",
  2396. extra: 2498 / 2030,
  2397. bottom: 85.2 / 2584
  2398. }
  2399. },
  2400. maw: {
  2401. height: math.unit(6 / 3.81416, "feet"),
  2402. name: "Maw",
  2403. image: {
  2404. source: "./media/characters/rai/maw.svg"
  2405. }
  2406. },
  2407. },
  2408. [
  2409. {
  2410. name: "Normal",
  2411. height: math.unit(11, "feet")
  2412. },
  2413. {
  2414. name: "Macro",
  2415. height: math.unit(302, "feet"),
  2416. default: true
  2417. },
  2418. ]
  2419. ))
  2420. characterMakers.push(() => makeCharacter(
  2421. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2422. {
  2423. frontDressed: {
  2424. height: math.unit(216, "feet"),
  2425. weight: math.unit(7000000, "lb"),
  2426. name: "Front (Dressed)",
  2427. image: {
  2428. source: "./media/characters/jazzy/front-dressed.svg",
  2429. extra: 2738 / 2651,
  2430. bottom: 41.8 / 2786
  2431. }
  2432. },
  2433. backDressed: {
  2434. height: math.unit(216, "feet"),
  2435. weight: math.unit(7000000, "lb"),
  2436. name: "Back (Dressed)",
  2437. image: {
  2438. source: "./media/characters/jazzy/back-dressed.svg",
  2439. extra: 2775 / 2673,
  2440. bottom: 36.8 / 2817
  2441. }
  2442. },
  2443. front: {
  2444. height: math.unit(216, "feet"),
  2445. weight: math.unit(7000000, "lb"),
  2446. name: "Front",
  2447. image: {
  2448. source: "./media/characters/jazzy/front.svg",
  2449. extra: 2738 / 2651,
  2450. bottom: 41.8 / 2786
  2451. }
  2452. },
  2453. back: {
  2454. height: math.unit(216, "feet"),
  2455. weight: math.unit(7000000, "lb"),
  2456. name: "Back",
  2457. image: {
  2458. source: "./media/characters/jazzy/back.svg",
  2459. extra: 2775 / 2673,
  2460. bottom: 36.8 / 2817
  2461. }
  2462. },
  2463. maw: {
  2464. height: math.unit(20, "feet"),
  2465. name: "Maw",
  2466. image: {
  2467. source: "./media/characters/jazzy/maw.svg"
  2468. }
  2469. },
  2470. paws: {
  2471. height: math.unit(27.5, "feet"),
  2472. name: "Paws",
  2473. image: {
  2474. source: "./media/characters/jazzy/paws.svg"
  2475. }
  2476. },
  2477. eye: {
  2478. height: math.unit(4.4, "feet"),
  2479. name: "Eye",
  2480. image: {
  2481. source: "./media/characters/jazzy/eye.svg"
  2482. }
  2483. },
  2484. droneOffense: {
  2485. height: math.unit(9.5, "inches"),
  2486. name: "Drone (Offense)",
  2487. image: {
  2488. source: "./media/characters/jazzy/drone-offense.svg"
  2489. }
  2490. },
  2491. droneRecon: {
  2492. height: math.unit(9.5, "inches"),
  2493. name: "Drone (Recon)",
  2494. image: {
  2495. source: "./media/characters/jazzy/drone-recon.svg"
  2496. }
  2497. },
  2498. droneDefense: {
  2499. height: math.unit(9.5, "inches"),
  2500. name: "Drone (Defense)",
  2501. image: {
  2502. source: "./media/characters/jazzy/drone-defense.svg"
  2503. }
  2504. },
  2505. },
  2506. [
  2507. {
  2508. name: "Macro",
  2509. height: math.unit(216, "feet"),
  2510. default: true
  2511. },
  2512. ]
  2513. ))
  2514. characterMakers.push(() => makeCharacter(
  2515. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2516. {
  2517. front: {
  2518. height: math.unit(9 + 6/12, "feet"),
  2519. weight: math.unit(700, "lb"),
  2520. name: "Front",
  2521. image: {
  2522. source: "./media/characters/flamm/front.svg",
  2523. extra: 1751/1632,
  2524. bottom: 46/1797
  2525. }
  2526. },
  2527. buff: {
  2528. height: math.unit(9 + 6/12, "feet"),
  2529. weight: math.unit(950, "lb"),
  2530. name: "Buff",
  2531. image: {
  2532. source: "./media/characters/flamm/buff.svg",
  2533. extra: 3018/2874,
  2534. bottom: 221/3239
  2535. }
  2536. },
  2537. },
  2538. [
  2539. {
  2540. name: "Normal",
  2541. height: math.unit(9.5, "feet")
  2542. },
  2543. {
  2544. name: "Macro",
  2545. height: math.unit(200, "feet"),
  2546. default: true
  2547. },
  2548. ]
  2549. ))
  2550. characterMakers.push(() => makeCharacter(
  2551. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2552. {
  2553. front: {
  2554. height: math.unit(5 + 3/12, "feet"),
  2555. weight: math.unit(60, "kg"),
  2556. name: "Front",
  2557. image: {
  2558. source: "./media/characters/zephiro/front.svg",
  2559. extra: 2309 / 2162,
  2560. bottom: 0.069
  2561. }
  2562. },
  2563. side: {
  2564. height: math.unit(5 + 3/12, "feet"),
  2565. weight: math.unit(60, "kg"),
  2566. name: "Side",
  2567. image: {
  2568. source: "./media/characters/zephiro/side.svg",
  2569. extra: 2403 / 2279,
  2570. bottom: 0.015
  2571. }
  2572. },
  2573. back: {
  2574. height: math.unit(5 + 3/12, "feet"),
  2575. weight: math.unit(60, "kg"),
  2576. name: "Back",
  2577. image: {
  2578. source: "./media/characters/zephiro/back.svg",
  2579. extra: 2373 / 2244,
  2580. bottom: 0.013
  2581. }
  2582. },
  2583. hand: {
  2584. height: math.unit(0.68, "feet"),
  2585. name: "Hand",
  2586. image: {
  2587. source: "./media/characters/zephiro/hand.svg"
  2588. }
  2589. },
  2590. paw: {
  2591. height: math.unit(1, "feet"),
  2592. name: "Paw",
  2593. image: {
  2594. source: "./media/characters/zephiro/paw.svg"
  2595. }
  2596. },
  2597. beans: {
  2598. height: math.unit(0.93, "feet"),
  2599. name: "Beans",
  2600. image: {
  2601. source: "./media/characters/zephiro/beans.svg"
  2602. }
  2603. },
  2604. },
  2605. [
  2606. {
  2607. name: "Micro",
  2608. height: math.unit(3, "inches")
  2609. },
  2610. {
  2611. name: "Normal",
  2612. height: math.unit(5 + 3 / 12, "feet"),
  2613. default: true
  2614. },
  2615. {
  2616. name: "Macro",
  2617. height: math.unit(118, "feet")
  2618. },
  2619. ]
  2620. ))
  2621. characterMakers.push(() => makeCharacter(
  2622. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2623. {
  2624. front: {
  2625. height: math.unit(5, "feet"),
  2626. weight: math.unit(90, "kg"),
  2627. name: "Front",
  2628. image: {
  2629. source: "./media/characters/fory/front.svg",
  2630. extra: 2862 / 2674,
  2631. bottom: 180 / 3043.8
  2632. }
  2633. },
  2634. back: {
  2635. height: math.unit(5, "feet"),
  2636. weight: math.unit(90, "kg"),
  2637. name: "Back",
  2638. image: {
  2639. source: "./media/characters/fory/back.svg",
  2640. extra: 2962 / 2791,
  2641. bottom: 106 / 3071.8
  2642. }
  2643. },
  2644. foot: {
  2645. height: math.unit(2.14, "feet"),
  2646. name: "Foot",
  2647. image: {
  2648. source: "./media/characters/fory/foot.svg"
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(5, "feet")
  2656. },
  2657. {
  2658. name: "Macro",
  2659. height: math.unit(50, "feet"),
  2660. default: true
  2661. },
  2662. {
  2663. name: "Megamacro",
  2664. height: math.unit(10, "miles")
  2665. },
  2666. {
  2667. name: "Gigamacro",
  2668. height: math.unit(5, "earths")
  2669. },
  2670. ]
  2671. ))
  2672. characterMakers.push(() => makeCharacter(
  2673. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2674. {
  2675. front: {
  2676. height: math.unit(7, "feet"),
  2677. weight: math.unit(90, "kg"),
  2678. name: "Front",
  2679. image: {
  2680. source: "./media/characters/kurrikage/front.svg",
  2681. extra: 1,
  2682. bottom: 0.035
  2683. }
  2684. },
  2685. back: {
  2686. height: math.unit(7, "feet"),
  2687. weight: math.unit(90, "lb"),
  2688. name: "Back",
  2689. image: {
  2690. source: "./media/characters/kurrikage/back.svg"
  2691. }
  2692. },
  2693. paw: {
  2694. height: math.unit(1.5, "feet"),
  2695. name: "Paw",
  2696. image: {
  2697. source: "./media/characters/kurrikage/paw.svg"
  2698. }
  2699. },
  2700. staff: {
  2701. height: math.unit(6.7, "feet"),
  2702. name: "Staff",
  2703. image: {
  2704. source: "./media/characters/kurrikage/staff.svg"
  2705. }
  2706. },
  2707. peek: {
  2708. height: math.unit(1.05, "feet"),
  2709. name: "Peeking",
  2710. image: {
  2711. source: "./media/characters/kurrikage/peek.svg",
  2712. bottom: 0.08
  2713. }
  2714. },
  2715. },
  2716. [
  2717. {
  2718. name: "Normal",
  2719. height: math.unit(12, "feet"),
  2720. default: true
  2721. },
  2722. {
  2723. name: "Big",
  2724. height: math.unit(20, "feet")
  2725. },
  2726. {
  2727. name: "Macro",
  2728. height: math.unit(500, "feet")
  2729. },
  2730. {
  2731. name: "Megamacro",
  2732. height: math.unit(20, "miles")
  2733. },
  2734. ]
  2735. ))
  2736. characterMakers.push(() => makeCharacter(
  2737. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2738. {
  2739. front: {
  2740. height: math.unit(6, "feet"),
  2741. weight: math.unit(75, "kg"),
  2742. name: "Front",
  2743. image: {
  2744. source: "./media/characters/shingo/front.svg",
  2745. extra: 1900/1825,
  2746. bottom: 82/1982
  2747. }
  2748. },
  2749. side: {
  2750. height: math.unit(6, "feet"),
  2751. weight: math.unit(75, "kg"),
  2752. name: "Side",
  2753. image: {
  2754. source: "./media/characters/shingo/side.svg",
  2755. extra: 1930/1865,
  2756. bottom: 16/1946
  2757. }
  2758. },
  2759. back: {
  2760. height: math.unit(6, "feet"),
  2761. weight: math.unit(75, "kg"),
  2762. name: "Back",
  2763. image: {
  2764. source: "./media/characters/shingo/back.svg",
  2765. extra: 1922/1852,
  2766. bottom: 16/1938
  2767. }
  2768. },
  2769. frontDressed: {
  2770. height: math.unit(6, "feet"),
  2771. weight: math.unit(150, "lb"),
  2772. name: "Front-dressed",
  2773. image: {
  2774. source: "./media/characters/shingo/front-dressed.svg",
  2775. extra: 1900/1825,
  2776. bottom: 82/1982
  2777. }
  2778. },
  2779. paw: {
  2780. height: math.unit(1.29, "feet"),
  2781. name: "Paw",
  2782. image: {
  2783. source: "./media/characters/shingo/paw.svg"
  2784. }
  2785. },
  2786. hand: {
  2787. height: math.unit(1.07, "feet"),
  2788. name: "Hand",
  2789. image: {
  2790. source: "./media/characters/shingo/hand.svg"
  2791. }
  2792. },
  2793. frontAlt: {
  2794. height: math.unit(6, "feet"),
  2795. weight: math.unit(75, "kg"),
  2796. name: "Front (Alt)",
  2797. image: {
  2798. source: "./media/characters/shingo/front-alt.svg",
  2799. extra: 3511 / 3338,
  2800. bottom: 0.005
  2801. }
  2802. },
  2803. frontAlt2: {
  2804. height: math.unit(6, "feet"),
  2805. weight: math.unit(75, "kg"),
  2806. name: "Front (Alt 2)",
  2807. image: {
  2808. source: "./media/characters/shingo/front-alt-2.svg",
  2809. extra: 706/681,
  2810. bottom: 11/717
  2811. }
  2812. },
  2813. pawAlt: {
  2814. height: math.unit(1, "feet"),
  2815. name: "Paw (Alt)",
  2816. image: {
  2817. source: "./media/characters/shingo/paw-alt.svg"
  2818. }
  2819. },
  2820. },
  2821. [
  2822. {
  2823. name: "Micro",
  2824. height: math.unit(4, "inches")
  2825. },
  2826. {
  2827. name: "Normal",
  2828. height: math.unit(6, "feet"),
  2829. default: true
  2830. },
  2831. {
  2832. name: "Macro",
  2833. height: math.unit(108, "feet")
  2834. },
  2835. {
  2836. name: "Macro+",
  2837. height: math.unit(1500, "feet")
  2838. },
  2839. ]
  2840. ))
  2841. characterMakers.push(() => makeCharacter(
  2842. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2843. {
  2844. side: {
  2845. height: math.unit(6, "feet"),
  2846. weight: math.unit(75, "kg"),
  2847. name: "Side",
  2848. image: {
  2849. source: "./media/characters/aigey/side.svg"
  2850. }
  2851. },
  2852. },
  2853. [
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(200, "feet"),
  2857. default: true
  2858. },
  2859. {
  2860. name: "Megamacro",
  2861. height: math.unit(100, "miles")
  2862. },
  2863. ]
  2864. )
  2865. )
  2866. characterMakers.push(() => makeCharacter(
  2867. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2868. {
  2869. front: {
  2870. height: math.unit(5 + 5 / 12, "feet"),
  2871. weight: math.unit(75, "kg"),
  2872. name: "Front",
  2873. image: {
  2874. source: "./media/characters/natasha/front.svg",
  2875. extra: 859 / 824,
  2876. bottom: 23 / 879.6
  2877. }
  2878. },
  2879. frontNsfw: {
  2880. height: math.unit(5 + 5 / 12, "feet"),
  2881. weight: math.unit(75, "kg"),
  2882. name: "Front (NSFW)",
  2883. image: {
  2884. source: "./media/characters/natasha/front-nsfw.svg",
  2885. extra: 859 / 824,
  2886. bottom: 23 / 879.6
  2887. }
  2888. },
  2889. frontErect: {
  2890. height: math.unit(5 + 5 / 12, "feet"),
  2891. weight: math.unit(75, "kg"),
  2892. name: "Front (Erect)",
  2893. image: {
  2894. source: "./media/characters/natasha/front-erect.svg",
  2895. extra: 859 / 824,
  2896. bottom: 23 / 879.6
  2897. }
  2898. },
  2899. back: {
  2900. height: math.unit(5 + 5 / 12, "feet"),
  2901. weight: math.unit(75, "kg"),
  2902. name: "Back",
  2903. image: {
  2904. source: "./media/characters/natasha/back.svg",
  2905. extra: 887.9 / 852.6,
  2906. bottom: 9.7 / 896.4
  2907. }
  2908. },
  2909. backAlt: {
  2910. height: math.unit(5 + 5 / 12, "feet"),
  2911. weight: math.unit(75, "kg"),
  2912. name: "Back (Alt)",
  2913. image: {
  2914. source: "./media/characters/natasha/back-alt.svg",
  2915. extra: 1236.7 / 1192,
  2916. bottom: 22.3 / 1258.2
  2917. }
  2918. },
  2919. dick: {
  2920. height: math.unit(1.772, "feet"),
  2921. name: "Dick",
  2922. image: {
  2923. source: "./media/characters/natasha/dick.svg"
  2924. }
  2925. },
  2926. paw: {
  2927. height: math.unit(0.250, "meters"),
  2928. name: "Paw",
  2929. image: {
  2930. source: "./media/characters/natasha/paw.svg"
  2931. }
  2932. },
  2933. },
  2934. [
  2935. {
  2936. name: "Normal",
  2937. height: math.unit(5 + 5 / 12, "feet")
  2938. },
  2939. {
  2940. name: "Large",
  2941. height: math.unit(12, "feet")
  2942. },
  2943. {
  2944. name: "Macro",
  2945. height: math.unit(100, "feet"),
  2946. default: true
  2947. },
  2948. {
  2949. name: "Macro+",
  2950. height: math.unit(260, "feet")
  2951. },
  2952. {
  2953. name: "Macro++",
  2954. height: math.unit(1, "mile")
  2955. },
  2956. ]
  2957. ))
  2958. characterMakers.push(() => makeCharacter(
  2959. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2960. {
  2961. front: {
  2962. height: math.unit(6, "feet"),
  2963. weight: math.unit(75, "kg"),
  2964. name: "Front",
  2965. image: {
  2966. source: "./media/characters/malik/front.svg"
  2967. }
  2968. },
  2969. side: {
  2970. height: math.unit(6, "feet"),
  2971. weight: math.unit(75, "kg"),
  2972. name: "Side",
  2973. image: {
  2974. source: "./media/characters/malik/side.svg",
  2975. extra: 1.1539
  2976. }
  2977. },
  2978. back: {
  2979. height: math.unit(6, "feet"),
  2980. weight: math.unit(75, "kg"),
  2981. name: "Back",
  2982. image: {
  2983. source: "./media/characters/malik/back.svg"
  2984. }
  2985. },
  2986. },
  2987. [
  2988. {
  2989. name: "Macro",
  2990. height: math.unit(156, "feet"),
  2991. default: true
  2992. },
  2993. {
  2994. name: "Macro+",
  2995. height: math.unit(1188, "feet")
  2996. },
  2997. ]
  2998. ))
  2999. characterMakers.push(() => makeCharacter(
  3000. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3001. {
  3002. front: {
  3003. height: math.unit(6, "feet"),
  3004. weight: math.unit(75, "kg"),
  3005. name: "Front",
  3006. image: {
  3007. source: "./media/characters/sefer/front.svg",
  3008. extra: 848 / 659,
  3009. bottom: 28.3 / 876.442
  3010. }
  3011. },
  3012. back: {
  3013. height: math.unit(6, "feet"),
  3014. weight: math.unit(75, "kg"),
  3015. name: "Back",
  3016. image: {
  3017. source: "./media/characters/sefer/back.svg",
  3018. extra: 864 / 695,
  3019. bottom: 10 / 871
  3020. }
  3021. },
  3022. frontDressed: {
  3023. height: math.unit(6, "feet"),
  3024. weight: math.unit(75, "kg"),
  3025. name: "Front (Dressed)",
  3026. image: {
  3027. source: "./media/characters/sefer/front-dressed.svg",
  3028. extra: 839 / 653,
  3029. bottom: 37.6 / 878
  3030. }
  3031. },
  3032. },
  3033. [
  3034. {
  3035. name: "Normal",
  3036. height: math.unit(6, "feet"),
  3037. default: true
  3038. },
  3039. ]
  3040. ))
  3041. characterMakers.push(() => makeCharacter(
  3042. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3043. {
  3044. body: {
  3045. height: math.unit(2.2428, "meter"),
  3046. weight: math.unit(124.738, "kg"),
  3047. name: "Body",
  3048. image: {
  3049. extra: 1225 / 1050,
  3050. source: "./media/characters/north/front.svg"
  3051. }
  3052. }
  3053. },
  3054. [
  3055. {
  3056. name: "Micro",
  3057. height: math.unit(4, "inches")
  3058. },
  3059. {
  3060. name: "Macro",
  3061. height: math.unit(63, "meters")
  3062. },
  3063. {
  3064. name: "Megamacro",
  3065. height: math.unit(101, "miles"),
  3066. default: true
  3067. }
  3068. ]
  3069. ))
  3070. characterMakers.push(() => makeCharacter(
  3071. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3072. {
  3073. angled: {
  3074. height: math.unit(4, "meter"),
  3075. weight: math.unit(150, "kg"),
  3076. name: "Angled",
  3077. image: {
  3078. source: "./media/characters/talan/angled-sfw.svg",
  3079. bottom: 29 / 3734
  3080. }
  3081. },
  3082. angledNsfw: {
  3083. height: math.unit(4, "meter"),
  3084. weight: math.unit(150, "kg"),
  3085. name: "Angled (NSFW)",
  3086. image: {
  3087. source: "./media/characters/talan/angled-nsfw.svg",
  3088. bottom: 29 / 3734
  3089. }
  3090. },
  3091. frontNsfw: {
  3092. height: math.unit(4, "meter"),
  3093. weight: math.unit(150, "kg"),
  3094. name: "Front (NSFW)",
  3095. image: {
  3096. source: "./media/characters/talan/front-nsfw.svg",
  3097. bottom: 29 / 3734
  3098. }
  3099. },
  3100. sideNsfw: {
  3101. height: math.unit(4, "meter"),
  3102. weight: math.unit(150, "kg"),
  3103. name: "Side (NSFW)",
  3104. image: {
  3105. source: "./media/characters/talan/side-nsfw.svg",
  3106. bottom: 29 / 3734
  3107. }
  3108. },
  3109. back: {
  3110. height: math.unit(4, "meter"),
  3111. weight: math.unit(150, "kg"),
  3112. name: "Back",
  3113. image: {
  3114. source: "./media/characters/talan/back.svg"
  3115. }
  3116. },
  3117. dickBottom: {
  3118. height: math.unit(0.621, "meter"),
  3119. name: "Dick (Bottom)",
  3120. image: {
  3121. source: "./media/characters/talan/dick-bottom.svg"
  3122. }
  3123. },
  3124. dickTop: {
  3125. height: math.unit(0.621, "meter"),
  3126. name: "Dick (Top)",
  3127. image: {
  3128. source: "./media/characters/talan/dick-top.svg"
  3129. }
  3130. },
  3131. dickSide: {
  3132. height: math.unit(0.305, "meter"),
  3133. name: "Dick (Side)",
  3134. image: {
  3135. source: "./media/characters/talan/dick-side.svg"
  3136. }
  3137. },
  3138. dickFront: {
  3139. height: math.unit(0.305, "meter"),
  3140. name: "Dick (Front)",
  3141. image: {
  3142. source: "./media/characters/talan/dick-front.svg"
  3143. }
  3144. },
  3145. },
  3146. [
  3147. {
  3148. name: "Normal",
  3149. height: math.unit(4, "meters")
  3150. },
  3151. {
  3152. name: "Macro",
  3153. height: math.unit(100, "meters")
  3154. },
  3155. {
  3156. name: "Megamacro",
  3157. height: math.unit(2, "miles"),
  3158. default: true
  3159. },
  3160. {
  3161. name: "Gigamacro",
  3162. height: math.unit(5000, "miles")
  3163. },
  3164. {
  3165. name: "Teramacro",
  3166. height: math.unit(100, "parsecs")
  3167. }
  3168. ]
  3169. ))
  3170. characterMakers.push(() => makeCharacter(
  3171. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3172. {
  3173. front: {
  3174. height: math.unit(2, "meter"),
  3175. weight: math.unit(90, "kg"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/gael'rathus/front.svg"
  3179. }
  3180. },
  3181. frontAlt: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(90, "kg"),
  3184. name: "Front (alt)",
  3185. image: {
  3186. source: "./media/characters/gael'rathus/front-alt.svg"
  3187. }
  3188. },
  3189. frontAlt2: {
  3190. height: math.unit(2, "meter"),
  3191. weight: math.unit(90, "kg"),
  3192. name: "Front (alt 2)",
  3193. image: {
  3194. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3195. }
  3196. }
  3197. },
  3198. [
  3199. {
  3200. name: "Normal",
  3201. height: math.unit(9, "feet"),
  3202. default: true
  3203. },
  3204. {
  3205. name: "Large",
  3206. height: math.unit(25, "feet")
  3207. },
  3208. {
  3209. name: "Macro",
  3210. height: math.unit(0.25, "miles")
  3211. },
  3212. {
  3213. name: "Megamacro",
  3214. height: math.unit(10, "miles")
  3215. }
  3216. ]
  3217. ))
  3218. characterMakers.push(() => makeCharacter(
  3219. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3220. {
  3221. side: {
  3222. height: math.unit(2, "meter"),
  3223. weight: math.unit(140, "kg"),
  3224. name: "Side",
  3225. image: {
  3226. source: "./media/characters/sosha/side.svg",
  3227. bottom: 0.042
  3228. }
  3229. },
  3230. },
  3231. [
  3232. {
  3233. name: "Normal",
  3234. height: math.unit(12, "feet"),
  3235. default: true
  3236. }
  3237. ]
  3238. ))
  3239. characterMakers.push(() => makeCharacter(
  3240. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3241. {
  3242. side: {
  3243. height: math.unit(5 + 5 / 12, "feet"),
  3244. weight: math.unit(170, "kg"),
  3245. name: "Side",
  3246. image: {
  3247. source: "./media/characters/runnola/side.svg",
  3248. extra: 741 / 448,
  3249. bottom: 0.05
  3250. }
  3251. },
  3252. },
  3253. [
  3254. {
  3255. name: "Small",
  3256. height: math.unit(3, "feet")
  3257. },
  3258. {
  3259. name: "Normal",
  3260. height: math.unit(5 + 5 / 12, "feet"),
  3261. default: true
  3262. },
  3263. {
  3264. name: "Big",
  3265. height: math.unit(10, "feet")
  3266. },
  3267. ]
  3268. ))
  3269. characterMakers.push(() => makeCharacter(
  3270. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3271. {
  3272. front: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(50, "kg"),
  3275. name: "Front",
  3276. image: {
  3277. source: "./media/characters/kurribird/front.svg",
  3278. bottom: 0.015
  3279. }
  3280. },
  3281. frontAlt: {
  3282. height: math.unit(1.5, "meter"),
  3283. weight: math.unit(50, "kg"),
  3284. name: "Front (Alt)",
  3285. image: {
  3286. source: "./media/characters/kurribird/front-alt.svg",
  3287. extra: 1.45
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Normal",
  3294. height: math.unit(7, "feet")
  3295. },
  3296. {
  3297. name: "Big",
  3298. height: math.unit(12, "feet"),
  3299. default: true
  3300. },
  3301. {
  3302. name: "Macro",
  3303. height: math.unit(1500, "feet")
  3304. },
  3305. {
  3306. name: "Megamacro",
  3307. height: math.unit(2, "miles")
  3308. }
  3309. ]
  3310. ))
  3311. characterMakers.push(() => makeCharacter(
  3312. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3313. {
  3314. front: {
  3315. height: math.unit(2, "meter"),
  3316. weight: math.unit(80, "kg"),
  3317. name: "Front",
  3318. image: {
  3319. source: "./media/characters/elbial/front.svg",
  3320. extra: 1643 / 1556,
  3321. bottom: 60.2 / 1696
  3322. }
  3323. },
  3324. side: {
  3325. height: math.unit(2, "meter"),
  3326. weight: math.unit(80, "kg"),
  3327. name: "Side",
  3328. image: {
  3329. source: "./media/characters/elbial/side.svg",
  3330. extra: 1630 / 1565,
  3331. bottom: 71.5 / 1697
  3332. }
  3333. },
  3334. back: {
  3335. height: math.unit(2, "meter"),
  3336. weight: math.unit(80, "kg"),
  3337. name: "Back",
  3338. image: {
  3339. source: "./media/characters/elbial/back.svg",
  3340. extra: 1668 / 1595,
  3341. bottom: 5.6 / 1672
  3342. }
  3343. },
  3344. frontDressed: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(80, "kg"),
  3347. name: "Front (Dressed)",
  3348. image: {
  3349. source: "./media/characters/elbial/front-dressed.svg",
  3350. extra: 1653 / 1584,
  3351. bottom: 57 / 1708
  3352. }
  3353. },
  3354. genitals: {
  3355. height: math.unit(2 / 3.367, "meter"),
  3356. name: "Genitals",
  3357. image: {
  3358. source: "./media/characters/elbial/genitals.svg"
  3359. }
  3360. },
  3361. },
  3362. [
  3363. {
  3364. name: "Large",
  3365. height: math.unit(100, "feet")
  3366. },
  3367. {
  3368. name: "Macro",
  3369. height: math.unit(500, "feet"),
  3370. default: true
  3371. },
  3372. {
  3373. name: "Megamacro",
  3374. height: math.unit(10, "miles")
  3375. },
  3376. {
  3377. name: "Gigamacro",
  3378. height: math.unit(25000, "miles")
  3379. },
  3380. {
  3381. name: "Full-Size",
  3382. height: math.unit(8000000, "gigaparsecs")
  3383. }
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3388. {
  3389. front: {
  3390. height: math.unit(2, "meter"),
  3391. weight: math.unit(60, "kg"),
  3392. name: "Front",
  3393. image: {
  3394. source: "./media/characters/noah/front.svg"
  3395. }
  3396. },
  3397. talons: {
  3398. height: math.unit(0.315, "meter"),
  3399. name: "Talons",
  3400. image: {
  3401. source: "./media/characters/noah/talons.svg"
  3402. }
  3403. }
  3404. },
  3405. [
  3406. {
  3407. name: "Large",
  3408. height: math.unit(50, "feet")
  3409. },
  3410. {
  3411. name: "Macro",
  3412. height: math.unit(750, "feet"),
  3413. default: true
  3414. },
  3415. {
  3416. name: "Megamacro",
  3417. height: math.unit(50, "miles")
  3418. },
  3419. {
  3420. name: "Gigamacro",
  3421. height: math.unit(100000, "miles")
  3422. },
  3423. {
  3424. name: "Full-Size",
  3425. height: math.unit(3000000000, "miles")
  3426. }
  3427. ]
  3428. ))
  3429. characterMakers.push(() => makeCharacter(
  3430. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3431. {
  3432. front: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(80, "kg"),
  3435. name: "Front",
  3436. image: {
  3437. source: "./media/characters/natalya/front.svg"
  3438. }
  3439. },
  3440. back: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(80, "kg"),
  3443. name: "Back",
  3444. image: {
  3445. source: "./media/characters/natalya/back.svg"
  3446. }
  3447. }
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(150, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Megamacro",
  3457. height: math.unit(5, "miles")
  3458. },
  3459. {
  3460. name: "Full-Size",
  3461. height: math.unit(600, "kiloparsecs")
  3462. }
  3463. ]
  3464. ))
  3465. characterMakers.push(() => makeCharacter(
  3466. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3467. {
  3468. front: {
  3469. height: math.unit(2, "meter"),
  3470. weight: math.unit(50, "kg"),
  3471. name: "Front",
  3472. image: {
  3473. source: "./media/characters/erestrebah/front.svg",
  3474. extra: 208 / 193,
  3475. bottom: 0.055
  3476. }
  3477. },
  3478. back: {
  3479. height: math.unit(2, "meter"),
  3480. weight: math.unit(50, "kg"),
  3481. name: "Back",
  3482. image: {
  3483. source: "./media/characters/erestrebah/back.svg",
  3484. extra: 1.3
  3485. }
  3486. }
  3487. },
  3488. [
  3489. {
  3490. name: "Normal",
  3491. height: math.unit(10, "feet")
  3492. },
  3493. {
  3494. name: "Large",
  3495. height: math.unit(50, "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(300, "feet")
  3501. },
  3502. {
  3503. name: "Macro+",
  3504. height: math.unit(750, "feet")
  3505. },
  3506. {
  3507. name: "Megamacro",
  3508. height: math.unit(3, "miles")
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(80, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/jennifer/front.svg",
  3521. bottom: 0.11,
  3522. extra: 1.16
  3523. }
  3524. },
  3525. frontAlt: {
  3526. height: math.unit(2, "meter"),
  3527. weight: math.unit(80, "kg"),
  3528. name: "Front (Alt)",
  3529. image: {
  3530. source: "./media/characters/jennifer/front-alt.svg"
  3531. }
  3532. }
  3533. },
  3534. [
  3535. {
  3536. name: "Canon Height",
  3537. height: math.unit(120, "feet"),
  3538. default: true
  3539. },
  3540. {
  3541. name: "Macro+",
  3542. height: math.unit(300, "feet")
  3543. },
  3544. {
  3545. name: "Megamacro",
  3546. height: math.unit(20000, "feet")
  3547. }
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3552. {
  3553. front: {
  3554. height: math.unit(2, "meter"),
  3555. weight: math.unit(50, "kg"),
  3556. name: "Front",
  3557. image: {
  3558. source: "./media/characters/kalista/front.svg",
  3559. extra: 1947 / 1700,
  3560. bottom: 76.6 / 1412.98
  3561. }
  3562. },
  3563. back: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(50, "kg"),
  3566. name: "Back",
  3567. image: {
  3568. source: "./media/characters/kalista/back.svg",
  3569. extra: 1366 / 1156,
  3570. bottom: 33.9 / 1362.78
  3571. }
  3572. }
  3573. },
  3574. [
  3575. {
  3576. name: "Uncomfortably Small",
  3577. height: math.unit(10, "feet")
  3578. },
  3579. {
  3580. name: "Small",
  3581. height: math.unit(30, "feet")
  3582. },
  3583. {
  3584. name: "Macro",
  3585. height: math.unit(100, "feet"),
  3586. default: true
  3587. },
  3588. {
  3589. name: "Macro+",
  3590. height: math.unit(2000, "feet")
  3591. },
  3592. {
  3593. name: "True Form",
  3594. height: math.unit(8924, "miles")
  3595. }
  3596. ]
  3597. ))
  3598. characterMakers.push(() => makeCharacter(
  3599. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3600. {
  3601. front: {
  3602. height: math.unit(2, "meter"),
  3603. weight: math.unit(120, "kg"),
  3604. name: "Front",
  3605. image: {
  3606. source: "./media/characters/ggv/front.svg"
  3607. }
  3608. },
  3609. side: {
  3610. height: math.unit(2, "meter"),
  3611. weight: math.unit(120, "kg"),
  3612. name: "Side",
  3613. image: {
  3614. source: "./media/characters/ggv/side.svg"
  3615. }
  3616. }
  3617. },
  3618. [
  3619. {
  3620. name: "Extremely Puny",
  3621. height: math.unit(9 + 5 / 12, "feet")
  3622. },
  3623. {
  3624. name: "Horribly Small",
  3625. height: math.unit(47.7, "miles"),
  3626. default: true
  3627. },
  3628. {
  3629. name: "Reasonably Sized",
  3630. height: math.unit(25000, "parsecs")
  3631. },
  3632. {
  3633. name: "Slightly Uncompressed",
  3634. height: math.unit(7.77e31, "parsecs")
  3635. },
  3636. {
  3637. name: "Omniversal",
  3638. height: math.unit(1e300, "meters")
  3639. },
  3640. ]
  3641. ))
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(2, "meter"),
  3647. weight: math.unit(75, "lb"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/napalm/front.svg"
  3651. }
  3652. },
  3653. back: {
  3654. height: math.unit(2, "meter"),
  3655. weight: math.unit(75, "lb"),
  3656. name: "Back",
  3657. image: {
  3658. source: "./media/characters/napalm/back.svg"
  3659. }
  3660. }
  3661. },
  3662. [
  3663. {
  3664. name: "Standard",
  3665. height: math.unit(55, "feet"),
  3666. default: true
  3667. }
  3668. ]
  3669. ))
  3670. characterMakers.push(() => makeCharacter(
  3671. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3672. {
  3673. front: {
  3674. height: math.unit(7 + 5 / 6, "feet"),
  3675. weight: math.unit(325, "lb"),
  3676. name: "Front",
  3677. image: {
  3678. source: "./media/characters/asana/front.svg",
  3679. extra: 1133 / 1060,
  3680. bottom: 15.2 / 1148.6
  3681. }
  3682. },
  3683. back: {
  3684. height: math.unit(7 + 5 / 6, "feet"),
  3685. weight: math.unit(325, "lb"),
  3686. name: "Back",
  3687. image: {
  3688. source: "./media/characters/asana/back.svg",
  3689. extra: 1114 / 1043,
  3690. bottom: 5 / 1120
  3691. }
  3692. },
  3693. dressedDark: {
  3694. height: math.unit(7 + 5 / 6, "feet"),
  3695. weight: math.unit(325, "lb"),
  3696. name: "Dressed (Dark)",
  3697. image: {
  3698. source: "./media/characters/asana/dressed-dark.svg",
  3699. extra: 1133 / 1060,
  3700. bottom: 15.2 / 1148.6
  3701. }
  3702. },
  3703. dressedLight: {
  3704. height: math.unit(7 + 5 / 6, "feet"),
  3705. weight: math.unit(325, "lb"),
  3706. name: "Dressed (Light)",
  3707. image: {
  3708. source: "./media/characters/asana/dressed-light.svg",
  3709. extra: 1133 / 1060,
  3710. bottom: 15.2 / 1148.6
  3711. }
  3712. },
  3713. },
  3714. [
  3715. {
  3716. name: "Standard",
  3717. height: math.unit(7 + 5 / 6, "feet"),
  3718. default: true
  3719. },
  3720. {
  3721. name: "Large",
  3722. height: math.unit(10, "meters")
  3723. },
  3724. {
  3725. name: "Macro",
  3726. height: math.unit(2500, "meters")
  3727. },
  3728. {
  3729. name: "Megamacro",
  3730. height: math.unit(5e6, "meters")
  3731. },
  3732. {
  3733. name: "Examacro",
  3734. height: math.unit(5e12, "lightyears")
  3735. },
  3736. {
  3737. name: "Max Size",
  3738. height: math.unit(1e31, "lightyears")
  3739. }
  3740. ]
  3741. ))
  3742. characterMakers.push(() => makeCharacter(
  3743. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3744. {
  3745. front: {
  3746. height: math.unit(2, "meter"),
  3747. weight: math.unit(60, "kg"),
  3748. name: "Front",
  3749. image: {
  3750. source: "./media/characters/ebony/front.svg",
  3751. bottom: 0.03,
  3752. extra: 1045 / 810 + 0.03
  3753. }
  3754. },
  3755. side: {
  3756. height: math.unit(2, "meter"),
  3757. weight: math.unit(60, "kg"),
  3758. name: "Side",
  3759. image: {
  3760. source: "./media/characters/ebony/side.svg",
  3761. bottom: 0.03,
  3762. extra: 1045 / 810 + 0.03
  3763. }
  3764. },
  3765. back: {
  3766. height: math.unit(2, "meter"),
  3767. weight: math.unit(60, "kg"),
  3768. name: "Back",
  3769. image: {
  3770. source: "./media/characters/ebony/back.svg",
  3771. bottom: 0.01,
  3772. extra: 1045 / 810 + 0.01
  3773. }
  3774. },
  3775. },
  3776. [
  3777. // TODO check why I did this lol
  3778. {
  3779. name: "Standard",
  3780. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3781. default: true
  3782. },
  3783. {
  3784. name: "Macro",
  3785. height: math.unit(200, "feet")
  3786. },
  3787. {
  3788. name: "Gigamacro",
  3789. height: math.unit(13000, "km")
  3790. }
  3791. ]
  3792. ))
  3793. characterMakers.push(() => makeCharacter(
  3794. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3795. {
  3796. front: {
  3797. height: math.unit(6, "feet"),
  3798. weight: math.unit(175, "lb"),
  3799. name: "Front",
  3800. image: {
  3801. source: "./media/characters/mountain/front.svg",
  3802. extra: 972 / 955,
  3803. bottom: 64 / 1036.6
  3804. }
  3805. },
  3806. back: {
  3807. height: math.unit(6, "feet"),
  3808. weight: math.unit(175, "lb"),
  3809. name: "Back",
  3810. image: {
  3811. source: "./media/characters/mountain/back.svg",
  3812. extra: 970 / 950,
  3813. bottom: 28.25 / 999
  3814. }
  3815. },
  3816. },
  3817. [
  3818. {
  3819. name: "Large",
  3820. height: math.unit(20, "meters")
  3821. },
  3822. {
  3823. name: "Macro",
  3824. height: math.unit(300, "meters")
  3825. },
  3826. {
  3827. name: "Gigamacro",
  3828. height: math.unit(10000, "km"),
  3829. default: true
  3830. },
  3831. {
  3832. name: "Examacro",
  3833. height: math.unit(10e9, "lightyears")
  3834. }
  3835. ]
  3836. ))
  3837. characterMakers.push(() => makeCharacter(
  3838. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3839. {
  3840. front: {
  3841. height: math.unit(8, "feet"),
  3842. weight: math.unit(500, "lb"),
  3843. name: "Front",
  3844. image: {
  3845. source: "./media/characters/rick/front.svg"
  3846. }
  3847. }
  3848. },
  3849. [
  3850. {
  3851. name: "Normal",
  3852. height: math.unit(8, "feet"),
  3853. default: true
  3854. },
  3855. {
  3856. name: "Macro",
  3857. height: math.unit(5, "km")
  3858. }
  3859. ]
  3860. ))
  3861. characterMakers.push(() => makeCharacter(
  3862. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3863. {
  3864. front: {
  3865. height: math.unit(8, "feet"),
  3866. weight: math.unit(120, "lb"),
  3867. name: "Front",
  3868. image: {
  3869. source: "./media/characters/ona/front.svg"
  3870. }
  3871. },
  3872. frontAlt: {
  3873. height: math.unit(8, "feet"),
  3874. weight: math.unit(120, "lb"),
  3875. name: "Front (Alt)",
  3876. image: {
  3877. source: "./media/characters/ona/front-alt.svg"
  3878. }
  3879. },
  3880. back: {
  3881. height: math.unit(8, "feet"),
  3882. weight: math.unit(120, "lb"),
  3883. name: "Back",
  3884. image: {
  3885. source: "./media/characters/ona/back.svg"
  3886. }
  3887. },
  3888. foot: {
  3889. height: math.unit(1.1, "feet"),
  3890. name: "Foot",
  3891. image: {
  3892. source: "./media/characters/ona/foot.svg"
  3893. }
  3894. }
  3895. },
  3896. [
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(70, "km"),
  3900. default: true
  3901. },
  3902. {
  3903. name: "Gigamacro",
  3904. height: math.unit(681818, "miles")
  3905. },
  3906. {
  3907. name: "Examacro",
  3908. height: math.unit(3800000, "lightyears")
  3909. },
  3910. ]
  3911. ))
  3912. characterMakers.push(() => makeCharacter(
  3913. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3914. {
  3915. front: {
  3916. height: math.unit(12, "feet"),
  3917. weight: math.unit(3000, "lb"),
  3918. name: "Front",
  3919. image: {
  3920. source: "./media/characters/mech/front.svg",
  3921. extra: 2900 / 2770,
  3922. bottom: 110 / 3010
  3923. }
  3924. },
  3925. back: {
  3926. height: math.unit(12, "feet"),
  3927. weight: math.unit(3000, "lb"),
  3928. name: "Back",
  3929. image: {
  3930. source: "./media/characters/mech/back.svg",
  3931. extra: 3011 / 2890,
  3932. bottom: 94 / 3105
  3933. }
  3934. },
  3935. maw: {
  3936. height: math.unit(3.07, "feet"),
  3937. name: "Maw",
  3938. image: {
  3939. source: "./media/characters/mech/maw.svg"
  3940. }
  3941. },
  3942. head: {
  3943. height: math.unit(2.82, "feet"),
  3944. name: "Head",
  3945. image: {
  3946. source: "./media/characters/mech/head.svg"
  3947. }
  3948. },
  3949. dick: {
  3950. height: math.unit(1.43, "feet"),
  3951. name: "Dick",
  3952. image: {
  3953. source: "./media/characters/mech/dick.svg"
  3954. }
  3955. },
  3956. },
  3957. [
  3958. {
  3959. name: "Normal",
  3960. height: math.unit(12, "feet")
  3961. },
  3962. {
  3963. name: "Macro",
  3964. height: math.unit(300, "feet"),
  3965. default: true
  3966. },
  3967. {
  3968. name: "Macro+",
  3969. height: math.unit(1500, "feet")
  3970. },
  3971. ]
  3972. ))
  3973. characterMakers.push(() => makeCharacter(
  3974. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3975. {
  3976. front: {
  3977. height: math.unit(1.3, "meter"),
  3978. weight: math.unit(30, "kg"),
  3979. name: "Front",
  3980. image: {
  3981. source: "./media/characters/gregory/front.svg",
  3982. }
  3983. }
  3984. },
  3985. [
  3986. {
  3987. name: "Normal",
  3988. height: math.unit(1.3, "meter"),
  3989. default: true
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(20, "meter")
  3994. }
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3999. {
  4000. front: {
  4001. height: math.unit(2.8, "meter"),
  4002. weight: math.unit(200, "kg"),
  4003. name: "Front",
  4004. image: {
  4005. source: "./media/characters/elory/front.svg",
  4006. }
  4007. }
  4008. },
  4009. [
  4010. {
  4011. name: "Normal",
  4012. height: math.unit(2.8, "meter"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(38, "meter")
  4018. }
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4023. {
  4024. front: {
  4025. height: math.unit(470, "feet"),
  4026. weight: math.unit(924, "tons"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/angelpatamon/front.svg",
  4030. }
  4031. }
  4032. },
  4033. [
  4034. {
  4035. name: "Normal",
  4036. height: math.unit(470, "feet"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Deity Size I",
  4041. height: math.unit(28651.2, "km")
  4042. },
  4043. {
  4044. name: "Deity Size II",
  4045. height: math.unit(171907.2, "km")
  4046. }
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4051. {
  4052. side: {
  4053. height: math.unit(7.2, "meter"),
  4054. weight: math.unit(8.2, "tons"),
  4055. name: "Side",
  4056. image: {
  4057. source: "./media/characters/cryae/side.svg",
  4058. extra: 3500 / 1500
  4059. }
  4060. }
  4061. },
  4062. [
  4063. {
  4064. name: "Normal",
  4065. height: math.unit(7.2, "meter"),
  4066. default: true
  4067. }
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(6, "feet"),
  4075. weight: math.unit(175, "lb"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/xera/front.svg",
  4079. extra: 2377 / 1972,
  4080. bottom: 75.5 / 2452
  4081. }
  4082. },
  4083. side: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(175, "lb"),
  4086. name: "Side",
  4087. image: {
  4088. source: "./media/characters/xera/side.svg",
  4089. extra: 2345 / 2019,
  4090. bottom: 39.7 / 2384
  4091. }
  4092. },
  4093. back: {
  4094. height: math.unit(6, "feet"),
  4095. weight: math.unit(175, "lb"),
  4096. name: "Back",
  4097. image: {
  4098. source: "./media/characters/xera/back.svg",
  4099. extra: 2095 / 1984,
  4100. bottom: 67 / 2166
  4101. }
  4102. },
  4103. },
  4104. [
  4105. {
  4106. name: "Small",
  4107. height: math.unit(10, "feet")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(500, "meters"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Macro+",
  4116. height: math.unit(10, "km")
  4117. },
  4118. {
  4119. name: "Gigamacro",
  4120. height: math.unit(25000, "km")
  4121. },
  4122. {
  4123. name: "Teramacro",
  4124. height: math.unit(3e6, "km")
  4125. }
  4126. ]
  4127. ))
  4128. characterMakers.push(() => makeCharacter(
  4129. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4130. {
  4131. front: {
  4132. height: math.unit(6, "feet"),
  4133. weight: math.unit(175, "lb"),
  4134. name: "Front",
  4135. image: {
  4136. source: "./media/characters/nebula/front.svg",
  4137. extra: 2566 / 2362,
  4138. bottom: 81 / 2644
  4139. }
  4140. }
  4141. },
  4142. [
  4143. {
  4144. name: "Small",
  4145. height: math.unit(4.5, "meters")
  4146. },
  4147. {
  4148. name: "Macro",
  4149. height: math.unit(1500, "meters"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Megamacro",
  4154. height: math.unit(150, "km")
  4155. },
  4156. {
  4157. name: "Gigamacro",
  4158. height: math.unit(27000, "km")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(6, "feet"),
  4167. weight: math.unit(225, "lb"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/abysgar/front.svg"
  4171. }
  4172. }
  4173. },
  4174. [
  4175. {
  4176. name: "Small",
  4177. height: math.unit(4.5, "meters")
  4178. },
  4179. {
  4180. name: "Macro",
  4181. height: math.unit(1250, "meters"),
  4182. default: true
  4183. },
  4184. {
  4185. name: "Megamacro",
  4186. height: math.unit(125, "km")
  4187. },
  4188. {
  4189. name: "Gigamacro",
  4190. height: math.unit(26000, "km")
  4191. }
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4196. {
  4197. front: {
  4198. height: math.unit(6, "feet"),
  4199. weight: math.unit(180, "lb"),
  4200. name: "Front",
  4201. image: {
  4202. source: "./media/characters/yakuz/front.svg"
  4203. }
  4204. }
  4205. },
  4206. [
  4207. {
  4208. name: "Small",
  4209. height: math.unit(5, "meters")
  4210. },
  4211. {
  4212. name: "Macro",
  4213. height: math.unit(1500, "meters"),
  4214. default: true
  4215. },
  4216. {
  4217. name: "Megamacro",
  4218. height: math.unit(200, "km")
  4219. },
  4220. {
  4221. name: "Gigamacro",
  4222. height: math.unit(100000, "km")
  4223. }
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4228. {
  4229. front: {
  4230. height: math.unit(6, "feet"),
  4231. weight: math.unit(175, "lb"),
  4232. name: "Front",
  4233. image: {
  4234. source: "./media/characters/mirova/front.svg",
  4235. extra: 3334 / 3071,
  4236. bottom: 42 / 3375.6
  4237. }
  4238. }
  4239. },
  4240. [
  4241. {
  4242. name: "Small",
  4243. height: math.unit(5, "meters")
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(900, "meters"),
  4248. default: true
  4249. },
  4250. {
  4251. name: "Megamacro",
  4252. height: math.unit(135, "km")
  4253. },
  4254. {
  4255. name: "Gigamacro",
  4256. height: math.unit(20000, "km")
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4262. {
  4263. side: {
  4264. height: math.unit(28.35, "feet"),
  4265. weight: math.unit(99.75, "tons"),
  4266. name: "Side",
  4267. image: {
  4268. source: "./media/characters/asana-mech/side.svg",
  4269. extra: 923 / 699,
  4270. bottom: 50 / 975
  4271. }
  4272. },
  4273. chaingun: {
  4274. height: math.unit(7, "feet"),
  4275. weight: math.unit(2400, "lb"),
  4276. name: "Chaingun",
  4277. image: {
  4278. source: "./media/characters/asana-mech/chaingun.svg"
  4279. }
  4280. },
  4281. laser: {
  4282. height: math.unit(7.12, "feet"),
  4283. weight: math.unit(2000, "lb"),
  4284. name: "Laser",
  4285. image: {
  4286. source: "./media/characters/asana-mech/laser.svg"
  4287. }
  4288. },
  4289. },
  4290. [
  4291. {
  4292. name: "Normal",
  4293. height: math.unit(28.35, "feet"),
  4294. default: true
  4295. },
  4296. {
  4297. name: "Macro",
  4298. height: math.unit(2500, "feet")
  4299. },
  4300. {
  4301. name: "Megamacro",
  4302. height: math.unit(25, "miles")
  4303. },
  4304. {
  4305. name: "Examacro",
  4306. height: math.unit(6e8, "lightyears")
  4307. },
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4312. {
  4313. front: {
  4314. height: math.unit(5, "meters"),
  4315. weight: math.unit(1000, "kg"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/asche/front.svg",
  4319. extra: 1258 / 1190,
  4320. bottom: 47 / 1305
  4321. }
  4322. },
  4323. frontUnderwear: {
  4324. height: math.unit(5, "meters"),
  4325. weight: math.unit(1000, "kg"),
  4326. name: "Front (Underwear)",
  4327. image: {
  4328. source: "./media/characters/asche/front-underwear.svg",
  4329. extra: 1258 / 1190,
  4330. bottom: 47 / 1305
  4331. }
  4332. },
  4333. frontDressed: {
  4334. height: math.unit(5, "meters"),
  4335. weight: math.unit(1000, "kg"),
  4336. name: "Front (Dressed)",
  4337. image: {
  4338. source: "./media/characters/asche/front-dressed.svg",
  4339. extra: 1258 / 1190,
  4340. bottom: 47 / 1305
  4341. }
  4342. },
  4343. frontArmor: {
  4344. height: math.unit(5, "meters"),
  4345. weight: math.unit(1000, "kg"),
  4346. name: "Front (Armored)",
  4347. image: {
  4348. source: "./media/characters/asche/front-armored.svg",
  4349. extra: 1374 / 1308,
  4350. bottom: 23 / 1397
  4351. }
  4352. },
  4353. mp724: {
  4354. height: math.unit(0.96, "meters"),
  4355. weight: math.unit(38, "kg"),
  4356. name: "H&K MP724",
  4357. image: {
  4358. source: "./media/characters/asche/h&k-mp724.svg"
  4359. }
  4360. },
  4361. side: {
  4362. height: math.unit(5, "meters"),
  4363. weight: math.unit(1000, "kg"),
  4364. name: "Side",
  4365. image: {
  4366. source: "./media/characters/asche/side.svg",
  4367. extra: 1717 / 1609,
  4368. bottom: 0.005
  4369. }
  4370. },
  4371. back: {
  4372. height: math.unit(5, "meters"),
  4373. weight: math.unit(1000, "kg"),
  4374. name: "Back",
  4375. image: {
  4376. source: "./media/characters/asche/back.svg",
  4377. extra: 1570 / 1501
  4378. }
  4379. },
  4380. },
  4381. [
  4382. {
  4383. name: "DEFCON 5",
  4384. height: math.unit(5, "meters")
  4385. },
  4386. {
  4387. name: "DEFCON 4",
  4388. height: math.unit(500, "meters"),
  4389. default: true
  4390. },
  4391. {
  4392. name: "DEFCON 3",
  4393. height: math.unit(5, "km")
  4394. },
  4395. {
  4396. name: "DEFCON 2",
  4397. height: math.unit(500, "km")
  4398. },
  4399. {
  4400. name: "DEFCON 1",
  4401. height: math.unit(500000, "km")
  4402. },
  4403. {
  4404. name: "DEFCON 0",
  4405. height: math.unit(3, "gigaparsecs")
  4406. },
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(2, "meters"),
  4414. weight: math.unit(76, "kg"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/gale/front.svg"
  4418. }
  4419. },
  4420. frontAlt1: {
  4421. height: math.unit(2, "meters"),
  4422. weight: math.unit(76, "kg"),
  4423. name: "Front (Alt 1)",
  4424. image: {
  4425. source: "./media/characters/gale/front-alt-1.svg"
  4426. }
  4427. },
  4428. frontAlt2: {
  4429. height: math.unit(2, "meters"),
  4430. weight: math.unit(76, "kg"),
  4431. name: "Front (Alt 2)",
  4432. image: {
  4433. source: "./media/characters/gale/front-alt-2.svg"
  4434. }
  4435. },
  4436. },
  4437. [
  4438. {
  4439. name: "Normal",
  4440. height: math.unit(7, "feet")
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(150, "feet"),
  4445. default: true
  4446. },
  4447. {
  4448. name: "Macro+",
  4449. height: math.unit(300, "feet")
  4450. },
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4455. {
  4456. front: {
  4457. height: math.unit(2, "meters"),
  4458. weight: math.unit(76, "kg"),
  4459. name: "Front",
  4460. image: {
  4461. source: "./media/characters/draylen/front.svg"
  4462. }
  4463. }
  4464. },
  4465. [
  4466. {
  4467. name: "Macro",
  4468. height: math.unit(150, "feet"),
  4469. default: true
  4470. }
  4471. ]
  4472. ))
  4473. characterMakers.push(() => makeCharacter(
  4474. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4475. {
  4476. front: {
  4477. height: math.unit(7 + 9 / 12, "feet"),
  4478. weight: math.unit(379, "lbs"),
  4479. name: "Front",
  4480. image: {
  4481. source: "./media/characters/chez/front.svg"
  4482. }
  4483. },
  4484. side: {
  4485. height: math.unit(7 + 9 / 12, "feet"),
  4486. weight: math.unit(379, "lbs"),
  4487. name: "Side",
  4488. image: {
  4489. source: "./media/characters/chez/side.svg"
  4490. }
  4491. }
  4492. },
  4493. [
  4494. {
  4495. name: "Normal",
  4496. height: math.unit(7 + 9 / 12, "feet"),
  4497. default: true
  4498. },
  4499. {
  4500. name: "God King",
  4501. height: math.unit(9750000, "meters")
  4502. }
  4503. ]
  4504. ))
  4505. characterMakers.push(() => makeCharacter(
  4506. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4507. {
  4508. front: {
  4509. height: math.unit(6, "feet"),
  4510. weight: math.unit(275, "lbs"),
  4511. name: "Front",
  4512. image: {
  4513. source: "./media/characters/kaylum/front.svg",
  4514. bottom: 0.01,
  4515. extra: 1166 / 1031
  4516. }
  4517. },
  4518. frontWingless: {
  4519. height: math.unit(6, "feet"),
  4520. weight: math.unit(275, "lbs"),
  4521. name: "Front (Wingless)",
  4522. image: {
  4523. source: "./media/characters/kaylum/front-wingless.svg",
  4524. bottom: 0.01,
  4525. extra: 1117 / 1031
  4526. }
  4527. }
  4528. },
  4529. [
  4530. {
  4531. name: "Normal",
  4532. height: math.unit(3.05, "meters")
  4533. },
  4534. {
  4535. name: "Master",
  4536. height: math.unit(5.5, "meters")
  4537. },
  4538. {
  4539. name: "Rampage",
  4540. height: math.unit(19, "meters")
  4541. },
  4542. {
  4543. name: "Macro Lite",
  4544. height: math.unit(37, "meters")
  4545. },
  4546. {
  4547. name: "Hyper Predator",
  4548. height: math.unit(61, "meters")
  4549. },
  4550. {
  4551. name: "Macro",
  4552. height: math.unit(138, "meters"),
  4553. default: true
  4554. }
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4559. {
  4560. front: {
  4561. height: math.unit(6, "feet"),
  4562. weight: math.unit(150, "lbs"),
  4563. name: "Front",
  4564. image: {
  4565. source: "./media/characters/geta/front.svg"
  4566. }
  4567. }
  4568. },
  4569. [
  4570. {
  4571. name: "Micro",
  4572. height: math.unit(3, "inches"),
  4573. default: true
  4574. },
  4575. {
  4576. name: "Normal",
  4577. height: math.unit(5 + 5 / 12, "feet")
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(6, "feet"),
  4586. weight: math.unit(300, "lbs"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/tyrnn/front.svg"
  4590. }
  4591. }
  4592. },
  4593. [
  4594. {
  4595. name: "Main Height",
  4596. height: math.unit(355, "feet"),
  4597. default: true
  4598. },
  4599. {
  4600. name: "Fave. Height",
  4601. height: math.unit(2400, "feet")
  4602. }
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(6, "feet"),
  4610. weight: math.unit(300, "lbs"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/appledectomy/front.svg"
  4614. }
  4615. }
  4616. },
  4617. [
  4618. {
  4619. name: "Macro",
  4620. height: math.unit(2500, "feet")
  4621. },
  4622. {
  4623. name: "Megamacro",
  4624. height: math.unit(50, "miles"),
  4625. default: true
  4626. },
  4627. {
  4628. name: "Gigamacro",
  4629. height: math.unit(5000, "miles")
  4630. },
  4631. {
  4632. name: "Teramacro",
  4633. height: math.unit(250000, "miles")
  4634. },
  4635. ]
  4636. ))
  4637. characterMakers.push(() => makeCharacter(
  4638. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4639. {
  4640. front: {
  4641. height: math.unit(6, "feet"),
  4642. weight: math.unit(200, "lbs"),
  4643. name: "Front",
  4644. image: {
  4645. source: "./media/characters/vulpes/front.svg",
  4646. extra: 573 / 543,
  4647. bottom: 0.033
  4648. }
  4649. },
  4650. side: {
  4651. height: math.unit(6, "feet"),
  4652. weight: math.unit(200, "lbs"),
  4653. name: "Side",
  4654. image: {
  4655. source: "./media/characters/vulpes/side.svg",
  4656. extra: 577 / 549,
  4657. bottom: 11 / 588
  4658. }
  4659. },
  4660. back: {
  4661. height: math.unit(6, "feet"),
  4662. weight: math.unit(200, "lbs"),
  4663. name: "Back",
  4664. image: {
  4665. source: "./media/characters/vulpes/back.svg",
  4666. extra: 573 / 549,
  4667. bottom: 20 / 593
  4668. }
  4669. },
  4670. feet: {
  4671. height: math.unit(1.276, "feet"),
  4672. name: "Feet",
  4673. image: {
  4674. source: "./media/characters/vulpes/feet.svg"
  4675. }
  4676. },
  4677. maw: {
  4678. height: math.unit(1.18, "feet"),
  4679. name: "Maw",
  4680. image: {
  4681. source: "./media/characters/vulpes/maw.svg"
  4682. }
  4683. },
  4684. },
  4685. [
  4686. {
  4687. name: "Micro",
  4688. height: math.unit(2, "inches")
  4689. },
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(6.3, "feet")
  4693. },
  4694. {
  4695. name: "Macro",
  4696. height: math.unit(850, "feet")
  4697. },
  4698. {
  4699. name: "Megamacro",
  4700. height: math.unit(7500, "feet"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Gigamacro",
  4705. height: math.unit(570000, "miles")
  4706. }
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4711. {
  4712. front: {
  4713. height: math.unit(6, "feet"),
  4714. weight: math.unit(210, "lbs"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/rain-fallen/front.svg"
  4718. }
  4719. },
  4720. side: {
  4721. height: math.unit(6, "feet"),
  4722. weight: math.unit(210, "lbs"),
  4723. name: "Side",
  4724. image: {
  4725. source: "./media/characters/rain-fallen/side.svg"
  4726. }
  4727. },
  4728. back: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(210, "lbs"),
  4731. name: "Back",
  4732. image: {
  4733. source: "./media/characters/rain-fallen/back.svg"
  4734. }
  4735. },
  4736. feral: {
  4737. height: math.unit(9, "feet"),
  4738. weight: math.unit(700, "lbs"),
  4739. name: "Feral",
  4740. image: {
  4741. source: "./media/characters/rain-fallen/feral.svg"
  4742. }
  4743. },
  4744. },
  4745. [
  4746. {
  4747. name: "Meddling with Mortals",
  4748. height: math.unit(8 + 8/12, "feet")
  4749. },
  4750. {
  4751. name: "Normal",
  4752. height: math.unit(5, "meter")
  4753. },
  4754. {
  4755. name: "Macro",
  4756. height: math.unit(150, "meter"),
  4757. default: true
  4758. },
  4759. {
  4760. name: "Megamacro",
  4761. height: math.unit(278e6, "meter")
  4762. },
  4763. {
  4764. name: "Gigamacro",
  4765. height: math.unit(2e9, "meter")
  4766. },
  4767. {
  4768. name: "Teramacro",
  4769. height: math.unit(8e12, "meter")
  4770. },
  4771. {
  4772. name: "Devourer",
  4773. height: math.unit(14, "zettameters")
  4774. },
  4775. {
  4776. name: "Scarlet King",
  4777. height: math.unit(18, "yottameters")
  4778. },
  4779. {
  4780. name: "Void",
  4781. height: math.unit(1e88, "yottameters")
  4782. }
  4783. ]
  4784. ))
  4785. characterMakers.push(() => makeCharacter(
  4786. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4787. {
  4788. standing: {
  4789. height: math.unit(6, "feet"),
  4790. weight: math.unit(180, "lbs"),
  4791. name: "Standing",
  4792. image: {
  4793. source: "./media/characters/zaakira/standing.svg",
  4794. extra: 1599/1504,
  4795. bottom: 39/1638
  4796. }
  4797. },
  4798. laying: {
  4799. height: math.unit(3, "feet"),
  4800. weight: math.unit(180, "lbs"),
  4801. name: "Laying",
  4802. image: {
  4803. source: "./media/characters/zaakira/laying.svg"
  4804. }
  4805. },
  4806. },
  4807. [
  4808. {
  4809. name: "Normal",
  4810. height: math.unit(12, "feet")
  4811. },
  4812. {
  4813. name: "Macro",
  4814. height: math.unit(279, "feet"),
  4815. default: true
  4816. }
  4817. ]
  4818. ))
  4819. characterMakers.push(() => makeCharacter(
  4820. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4821. {
  4822. femSfw: {
  4823. height: math.unit(8, "feet"),
  4824. weight: math.unit(350, "lb"),
  4825. name: "Fem",
  4826. image: {
  4827. source: "./media/characters/sigvald/fem-sfw.svg",
  4828. extra: 182 / 164,
  4829. bottom: 8.7 / 190.5
  4830. }
  4831. },
  4832. femNsfw: {
  4833. height: math.unit(8, "feet"),
  4834. weight: math.unit(350, "lb"),
  4835. name: "Fem (NSFW)",
  4836. image: {
  4837. source: "./media/characters/sigvald/fem-nsfw.svg",
  4838. extra: 182 / 164,
  4839. bottom: 8.7 / 190.5
  4840. }
  4841. },
  4842. maleNsfw: {
  4843. height: math.unit(8, "feet"),
  4844. weight: math.unit(350, "lb"),
  4845. name: "Male (NSFW)",
  4846. image: {
  4847. source: "./media/characters/sigvald/male-nsfw.svg",
  4848. extra: 182 / 164,
  4849. bottom: 8.7 / 190.5
  4850. }
  4851. },
  4852. hermNsfw: {
  4853. height: math.unit(8, "feet"),
  4854. weight: math.unit(350, "lb"),
  4855. name: "Herm (NSFW)",
  4856. image: {
  4857. source: "./media/characters/sigvald/herm-nsfw.svg",
  4858. extra: 182 / 164,
  4859. bottom: 8.7 / 190.5
  4860. }
  4861. },
  4862. dick: {
  4863. height: math.unit(2.36, "feet"),
  4864. name: "Dick",
  4865. image: {
  4866. source: "./media/characters/sigvald/dick.svg"
  4867. }
  4868. },
  4869. eye: {
  4870. height: math.unit(0.31, "feet"),
  4871. name: "Eye",
  4872. image: {
  4873. source: "./media/characters/sigvald/eye.svg"
  4874. }
  4875. },
  4876. mouth: {
  4877. height: math.unit(0.92, "feet"),
  4878. name: "Mouth",
  4879. image: {
  4880. source: "./media/characters/sigvald/mouth.svg"
  4881. }
  4882. },
  4883. paws: {
  4884. height: math.unit(2.2, "feet"),
  4885. name: "Paws",
  4886. image: {
  4887. source: "./media/characters/sigvald/paws.svg"
  4888. }
  4889. }
  4890. },
  4891. [
  4892. {
  4893. name: "Normal",
  4894. height: math.unit(8, "feet")
  4895. },
  4896. {
  4897. name: "Large",
  4898. height: math.unit(12, "feet")
  4899. },
  4900. {
  4901. name: "Larger",
  4902. height: math.unit(20, "feet")
  4903. },
  4904. {
  4905. name: "Macro",
  4906. height: math.unit(150, "feet")
  4907. },
  4908. {
  4909. name: "Macro+",
  4910. height: math.unit(200, "feet"),
  4911. default: true
  4912. },
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4917. {
  4918. side: {
  4919. height: math.unit(12, "feet"),
  4920. weight: math.unit(2000, "kg"),
  4921. name: "Side",
  4922. image: {
  4923. source: "./media/characters/scott/side.svg",
  4924. extra: 754 / 724,
  4925. bottom: 0.069
  4926. }
  4927. },
  4928. upright: {
  4929. height: math.unit(12, "feet"),
  4930. weight: math.unit(2000, "kg"),
  4931. name: "Upright",
  4932. image: {
  4933. source: "./media/characters/scott/upright.svg",
  4934. extra: 3881 / 3722,
  4935. bottom: 0.05
  4936. }
  4937. },
  4938. },
  4939. [
  4940. {
  4941. name: "Normal",
  4942. height: math.unit(12, "feet"),
  4943. default: true
  4944. },
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4949. {
  4950. side: {
  4951. height: math.unit(8, "meters"),
  4952. weight: math.unit(84755, "lbs"),
  4953. name: "Side",
  4954. image: {
  4955. source: "./media/characters/tobias/side.svg",
  4956. extra: 1474 / 1096,
  4957. bottom: 38.9 / 1513.1235
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(8, "meters"),
  4965. default: true
  4966. },
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4971. {
  4972. front: {
  4973. height: math.unit(5.5, "feet"),
  4974. weight: math.unit(400, "lbs"),
  4975. name: "Front",
  4976. image: {
  4977. source: "./media/characters/kieran/front.svg",
  4978. extra: 2694 / 2364,
  4979. bottom: 217 / 2908
  4980. }
  4981. },
  4982. side: {
  4983. height: math.unit(5.5, "feet"),
  4984. weight: math.unit(400, "lbs"),
  4985. name: "Side",
  4986. image: {
  4987. source: "./media/characters/kieran/side.svg",
  4988. extra: 875 / 777,
  4989. bottom: 84.6 / 959
  4990. }
  4991. },
  4992. },
  4993. [
  4994. {
  4995. name: "Normal",
  4996. height: math.unit(5.5, "feet"),
  4997. default: true
  4998. },
  4999. ]
  5000. ))
  5001. characterMakers.push(() => makeCharacter(
  5002. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5003. {
  5004. side: {
  5005. height: math.unit(2, "meters"),
  5006. weight: math.unit(70, "kg"),
  5007. name: "Side",
  5008. image: {
  5009. source: "./media/characters/sanya/side.svg",
  5010. bottom: 0.02,
  5011. extra: 1.02
  5012. }
  5013. },
  5014. },
  5015. [
  5016. {
  5017. name: "Small",
  5018. height: math.unit(2, "meters")
  5019. },
  5020. {
  5021. name: "Normal",
  5022. height: math.unit(3, "meters")
  5023. },
  5024. {
  5025. name: "Macro",
  5026. height: math.unit(16, "meters"),
  5027. default: true
  5028. },
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5033. {
  5034. front: {
  5035. height: math.unit(2, "meters"),
  5036. weight: math.unit(120, "kg"),
  5037. name: "Front",
  5038. image: {
  5039. source: "./media/characters/miranda/front.svg",
  5040. extra: 195 / 185,
  5041. bottom: 10.9 / 206.5
  5042. }
  5043. },
  5044. back: {
  5045. height: math.unit(2, "meters"),
  5046. weight: math.unit(120, "kg"),
  5047. name: "Back",
  5048. image: {
  5049. source: "./media/characters/miranda/back.svg",
  5050. extra: 201 / 193,
  5051. bottom: 2.3 / 203.7
  5052. }
  5053. },
  5054. },
  5055. [
  5056. {
  5057. name: "Normal",
  5058. height: math.unit(10, "feet"),
  5059. default: true
  5060. }
  5061. ]
  5062. ))
  5063. characterMakers.push(() => makeCharacter(
  5064. { name: "James", species: ["deer"], tags: ["anthro"] },
  5065. {
  5066. side: {
  5067. height: math.unit(2, "meters"),
  5068. weight: math.unit(100, "kg"),
  5069. name: "Front",
  5070. image: {
  5071. source: "./media/characters/james/front.svg",
  5072. extra: 10 / 8.5
  5073. }
  5074. },
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(8.5, "feet"),
  5080. default: true
  5081. }
  5082. ]
  5083. ))
  5084. characterMakers.push(() => makeCharacter(
  5085. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5086. {
  5087. side: {
  5088. height: math.unit(9.5, "feet"),
  5089. weight: math.unit(2500, "lbs"),
  5090. name: "Side",
  5091. image: {
  5092. source: "./media/characters/heather/side.svg"
  5093. }
  5094. },
  5095. },
  5096. [
  5097. {
  5098. name: "Normal",
  5099. height: math.unit(9.5, "feet"),
  5100. default: true
  5101. }
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5106. {
  5107. side: {
  5108. height: math.unit(6.5, "feet"),
  5109. weight: math.unit(400, "lbs"),
  5110. name: "Side",
  5111. image: {
  5112. source: "./media/characters/lukas/side.svg",
  5113. extra: 7.25 / 6.5
  5114. }
  5115. },
  5116. },
  5117. [
  5118. {
  5119. name: "Normal",
  5120. height: math.unit(6.5, "feet"),
  5121. default: true
  5122. }
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5127. {
  5128. side: {
  5129. height: math.unit(5, "feet"),
  5130. weight: math.unit(3000, "lbs"),
  5131. name: "Side",
  5132. image: {
  5133. source: "./media/characters/louise/side.svg"
  5134. }
  5135. },
  5136. },
  5137. [
  5138. {
  5139. name: "Normal",
  5140. height: math.unit(5, "feet"),
  5141. default: true
  5142. }
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5147. {
  5148. side: {
  5149. height: math.unit(6, "feet"),
  5150. weight: math.unit(150, "lbs"),
  5151. name: "Side",
  5152. image: {
  5153. source: "./media/characters/ramona/side.svg"
  5154. }
  5155. },
  5156. },
  5157. [
  5158. {
  5159. name: "Normal",
  5160. height: math.unit(5.3, "meters"),
  5161. default: true
  5162. },
  5163. {
  5164. name: "Macro",
  5165. height: math.unit(20, "stories")
  5166. },
  5167. {
  5168. name: "Macro+",
  5169. height: math.unit(50, "stories")
  5170. },
  5171. ]
  5172. ))
  5173. characterMakers.push(() => makeCharacter(
  5174. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5175. {
  5176. standing: {
  5177. height: math.unit(5.75, "feet"),
  5178. weight: math.unit(160, "lbs"),
  5179. name: "Standing",
  5180. image: {
  5181. source: "./media/characters/deerpuff/standing.svg",
  5182. extra: 682 / 624
  5183. }
  5184. },
  5185. sitting: {
  5186. height: math.unit(5.75 / 1.79, "feet"),
  5187. weight: math.unit(160, "lbs"),
  5188. name: "Sitting",
  5189. image: {
  5190. source: "./media/characters/deerpuff/sitting.svg",
  5191. bottom: 44 / 400,
  5192. extra: 1
  5193. }
  5194. },
  5195. taurLaying: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(400, "lbs"),
  5198. name: "Taur (Laying)",
  5199. image: {
  5200. source: "./media/characters/deerpuff/taur-laying.svg"
  5201. }
  5202. },
  5203. },
  5204. [
  5205. {
  5206. name: "Puffball",
  5207. height: math.unit(6, "inches")
  5208. },
  5209. {
  5210. name: "Normalpuff",
  5211. height: math.unit(5.75, "feet")
  5212. },
  5213. {
  5214. name: "Macropuff",
  5215. height: math.unit(1500, "feet"),
  5216. default: true
  5217. },
  5218. {
  5219. name: "Megapuff",
  5220. height: math.unit(500, "miles")
  5221. },
  5222. {
  5223. name: "Gigapuff",
  5224. height: math.unit(250000, "miles")
  5225. },
  5226. {
  5227. name: "Omegapuff",
  5228. height: math.unit(1000, "lightyears")
  5229. },
  5230. ]
  5231. ))
  5232. characterMakers.push(() => makeCharacter(
  5233. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5234. {
  5235. stomping: {
  5236. height: math.unit(6, "feet"),
  5237. weight: math.unit(170, "lbs"),
  5238. name: "Stomping",
  5239. image: {
  5240. source: "./media/characters/vivian/stomping.svg"
  5241. }
  5242. },
  5243. sitting: {
  5244. height: math.unit(6 / 1.75, "feet"),
  5245. weight: math.unit(170, "lbs"),
  5246. name: "Sitting",
  5247. image: {
  5248. source: "./media/characters/vivian/sitting.svg",
  5249. bottom: 1 / 6.4,
  5250. extra: 1,
  5251. }
  5252. },
  5253. },
  5254. [
  5255. {
  5256. name: "Normal",
  5257. height: math.unit(7, "feet"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Macro",
  5262. height: math.unit(10, "stories")
  5263. },
  5264. {
  5265. name: "Macro+",
  5266. height: math.unit(30, "stories")
  5267. },
  5268. {
  5269. name: "Megamacro",
  5270. height: math.unit(10, "miles")
  5271. },
  5272. {
  5273. name: "Megamacro+",
  5274. height: math.unit(2750000, "meters")
  5275. },
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5280. {
  5281. front: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(160, "lbs"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/prince/front.svg",
  5287. extra: 3400 / 3000
  5288. }
  5289. },
  5290. jumping: {
  5291. height: math.unit(6, "feet"),
  5292. weight: math.unit(160, "lbs"),
  5293. name: "Jumping",
  5294. image: {
  5295. source: "./media/characters/prince/jump.svg",
  5296. extra: 2555 / 2134
  5297. }
  5298. },
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(7.75, "feet"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Not cute",
  5308. height: math.unit(17, "feet")
  5309. },
  5310. {
  5311. name: "I said NOT",
  5312. height: math.unit(91, "feet")
  5313. },
  5314. {
  5315. name: "Please stop",
  5316. height: math.unit(560, "feet")
  5317. },
  5318. {
  5319. name: "What have you done",
  5320. height: math.unit(2200, "feet")
  5321. },
  5322. {
  5323. name: "Deer God",
  5324. height: math.unit(3.6, "miles")
  5325. },
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5330. {
  5331. standing: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(300, "lbs"),
  5334. name: "Standing",
  5335. image: {
  5336. source: "./media/characters/psymon/standing.svg",
  5337. extra: 1888 / 1810,
  5338. bottom: 0.05
  5339. }
  5340. },
  5341. slithering: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(300, "lbs"),
  5344. name: "Slithering",
  5345. image: {
  5346. source: "./media/characters/psymon/slithering.svg",
  5347. extra: 1330 / 1224
  5348. }
  5349. },
  5350. slitheringAlt: {
  5351. height: math.unit(6, "feet"),
  5352. weight: math.unit(300, "lbs"),
  5353. name: "Slithering (Alt)",
  5354. image: {
  5355. source: "./media/characters/psymon/slithering-alt.svg",
  5356. extra: 1330 / 1224
  5357. }
  5358. },
  5359. },
  5360. [
  5361. {
  5362. name: "Normal",
  5363. height: math.unit(11.25, "feet"),
  5364. default: true
  5365. },
  5366. {
  5367. name: "Large",
  5368. height: math.unit(27, "feet")
  5369. },
  5370. {
  5371. name: "Giant",
  5372. height: math.unit(87, "feet")
  5373. },
  5374. {
  5375. name: "Macro",
  5376. height: math.unit(365, "feet")
  5377. },
  5378. {
  5379. name: "Megamacro",
  5380. height: math.unit(3, "miles")
  5381. },
  5382. {
  5383. name: "World Serpent",
  5384. height: math.unit(8000, "miles")
  5385. },
  5386. ]
  5387. ))
  5388. characterMakers.push(() => makeCharacter(
  5389. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5390. {
  5391. front: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(180, "lbs"),
  5394. name: "Front",
  5395. image: {
  5396. source: "./media/characters/daimos/front.svg",
  5397. extra: 4160 / 3897,
  5398. bottom: 0.021
  5399. }
  5400. }
  5401. },
  5402. [
  5403. {
  5404. name: "Normal",
  5405. height: math.unit(8, "feet"),
  5406. default: true
  5407. },
  5408. {
  5409. name: "Big Dog",
  5410. height: math.unit(22, "feet")
  5411. },
  5412. {
  5413. name: "Macro",
  5414. height: math.unit(127, "feet")
  5415. },
  5416. {
  5417. name: "Megamacro",
  5418. height: math.unit(3600, "feet")
  5419. },
  5420. ]
  5421. ))
  5422. characterMakers.push(() => makeCharacter(
  5423. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5424. {
  5425. side: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(180, "lbs"),
  5428. name: "Side",
  5429. image: {
  5430. source: "./media/characters/blake/side.svg",
  5431. extra: 1212 / 1120,
  5432. bottom: 0.05
  5433. }
  5434. },
  5435. crouched: {
  5436. height: math.unit(6 * 0.57, "feet"),
  5437. weight: math.unit(180, "lbs"),
  5438. name: "Crouched",
  5439. image: {
  5440. source: "./media/characters/blake/crouched.svg",
  5441. extra: 840 / 587,
  5442. bottom: 0.04
  5443. }
  5444. },
  5445. bent: {
  5446. height: math.unit(6 * 0.75, "feet"),
  5447. weight: math.unit(180, "lbs"),
  5448. name: "Bent",
  5449. image: {
  5450. source: "./media/characters/blake/bent.svg",
  5451. extra: 592 / 544,
  5452. bottom: 0.035
  5453. }
  5454. },
  5455. },
  5456. [
  5457. {
  5458. name: "Normal",
  5459. height: math.unit(8 + 1 / 6, "feet"),
  5460. default: true
  5461. },
  5462. {
  5463. name: "Big Backside",
  5464. height: math.unit(37, "feet")
  5465. },
  5466. {
  5467. name: "Subway Shredder",
  5468. height: math.unit(72, "feet")
  5469. },
  5470. {
  5471. name: "City Carver",
  5472. height: math.unit(1675, "feet")
  5473. },
  5474. {
  5475. name: "Tectonic Tweaker",
  5476. height: math.unit(2300, "miles")
  5477. },
  5478. ]
  5479. ))
  5480. characterMakers.push(() => makeCharacter(
  5481. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5482. {
  5483. front: {
  5484. height: math.unit(6, "feet"),
  5485. weight: math.unit(180, "lbs"),
  5486. name: "Front",
  5487. image: {
  5488. source: "./media/characters/guisetto/front.svg",
  5489. extra: 856 / 817,
  5490. bottom: 0.06
  5491. }
  5492. },
  5493. airborne: {
  5494. height: math.unit(6, "feet"),
  5495. weight: math.unit(180, "lbs"),
  5496. name: "Airborne",
  5497. image: {
  5498. source: "./media/characters/guisetto/airborne.svg",
  5499. extra: 584 / 525
  5500. }
  5501. },
  5502. },
  5503. [
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(10 + 11 / 12, "feet"),
  5507. default: true
  5508. },
  5509. {
  5510. name: "Large",
  5511. height: math.unit(35, "feet")
  5512. },
  5513. {
  5514. name: "Macro",
  5515. height: math.unit(475, "feet")
  5516. },
  5517. ]
  5518. ))
  5519. characterMakers.push(() => makeCharacter(
  5520. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5521. {
  5522. front: {
  5523. height: math.unit(6, "feet"),
  5524. weight: math.unit(180, "lbs"),
  5525. name: "Front",
  5526. image: {
  5527. source: "./media/characters/luxor/front.svg",
  5528. extra: 2940 / 2152
  5529. }
  5530. },
  5531. back: {
  5532. height: math.unit(6, "feet"),
  5533. weight: math.unit(180, "lbs"),
  5534. name: "Back",
  5535. image: {
  5536. source: "./media/characters/luxor/back.svg",
  5537. extra: 1083 / 960
  5538. }
  5539. },
  5540. },
  5541. [
  5542. {
  5543. name: "Normal",
  5544. height: math.unit(5 + 5 / 6, "feet"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Lamp",
  5549. height: math.unit(50, "feet")
  5550. },
  5551. {
  5552. name: "Lämp",
  5553. height: math.unit(300, "feet")
  5554. },
  5555. {
  5556. name: "The sun is a lamp",
  5557. height: math.unit(250000, "miles")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5563. {
  5564. front: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(50, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/huoyan/front.svg"
  5570. }
  5571. },
  5572. side: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(180, "lbs"),
  5575. name: "Side",
  5576. image: {
  5577. source: "./media/characters/huoyan/side.svg"
  5578. }
  5579. },
  5580. },
  5581. [
  5582. {
  5583. name: "Chef",
  5584. height: math.unit(9, "feet")
  5585. },
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(65, "feet"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Macro",
  5593. height: math.unit(780, "feet")
  5594. },
  5595. {
  5596. name: "Flaming Mountain",
  5597. height: math.unit(4.8, "miles")
  5598. },
  5599. {
  5600. name: "Celestial",
  5601. height: math.unit(765000, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(5 + 3 / 4, "feet"),
  5610. weight: math.unit(120, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/tails/front.svg"
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(5 + 3 / 4, "feet"),
  5621. default: true
  5622. }
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5627. {
  5628. front: {
  5629. height: math.unit(4, "feet"),
  5630. weight: math.unit(50, "lbs"),
  5631. name: "Front",
  5632. image: {
  5633. source: "./media/characters/rainy/front.svg"
  5634. }
  5635. }
  5636. },
  5637. [
  5638. {
  5639. name: "Macro",
  5640. height: math.unit(800, "feet"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(150, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/rainier/front.svg"
  5654. }
  5655. }
  5656. },
  5657. [
  5658. {
  5659. name: "Micro",
  5660. height: math.unit(2, "mm"),
  5661. default: true
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(8 + 4/12, "feet"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/andy-renard/front.svg",
  5673. extra: 1839/1726,
  5674. bottom: 134/1973
  5675. }
  5676. },
  5677. back: {
  5678. height: math.unit(8 + 4/12, "feet"),
  5679. name: "Back",
  5680. image: {
  5681. source: "./media/characters/andy-renard/back.svg",
  5682. extra: 1838/1710,
  5683. bottom: 105/1943
  5684. }
  5685. },
  5686. },
  5687. [
  5688. {
  5689. name: "Tall",
  5690. height: math.unit(8 + 4/12, "feet")
  5691. },
  5692. {
  5693. name: "Mini Macro",
  5694. height: math.unit(15, "feet"),
  5695. default: true
  5696. },
  5697. {
  5698. name: "Macro",
  5699. height: math.unit(100, "feet")
  5700. },
  5701. {
  5702. name: "Mega Macro",
  5703. height: math.unit(1000, "feet")
  5704. },
  5705. {
  5706. name: "Giga Macro",
  5707. height: math.unit(10, "miles")
  5708. },
  5709. {
  5710. name: "God Macro",
  5711. height: math.unit(1, "multiverse")
  5712. },
  5713. ]
  5714. ))
  5715. characterMakers.push(() => makeCharacter(
  5716. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5717. {
  5718. front: {
  5719. height: math.unit(6, "feet"),
  5720. weight: math.unit(210, "lbs"),
  5721. name: "Front",
  5722. image: {
  5723. source: "./media/characters/cimmaron/front-sfw.svg",
  5724. extra: 701 / 676,
  5725. bottom: 0.046
  5726. }
  5727. },
  5728. back: {
  5729. height: math.unit(6, "feet"),
  5730. weight: math.unit(210, "lbs"),
  5731. name: "Back",
  5732. image: {
  5733. source: "./media/characters/cimmaron/back-sfw.svg",
  5734. extra: 701 / 676,
  5735. bottom: 0.046
  5736. }
  5737. },
  5738. frontNsfw: {
  5739. height: math.unit(6, "feet"),
  5740. weight: math.unit(210, "lbs"),
  5741. name: "Front (NSFW)",
  5742. image: {
  5743. source: "./media/characters/cimmaron/front-nsfw.svg",
  5744. extra: 701 / 676,
  5745. bottom: 0.046
  5746. }
  5747. },
  5748. backNsfw: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(210, "lbs"),
  5751. name: "Back (NSFW)",
  5752. image: {
  5753. source: "./media/characters/cimmaron/back-nsfw.svg",
  5754. extra: 701 / 676,
  5755. bottom: 0.046
  5756. }
  5757. },
  5758. dick: {
  5759. height: math.unit(1.714, "feet"),
  5760. name: "Dick",
  5761. image: {
  5762. source: "./media/characters/cimmaron/dick.svg"
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(6, "feet"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Macro Mayor",
  5774. height: math.unit(350, "meters")
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(200, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/akari/front.svg",
  5787. extra: 962 / 901,
  5788. bottom: 0.04
  5789. }
  5790. }
  5791. },
  5792. [
  5793. {
  5794. name: "Micro",
  5795. height: math.unit(5, "inches"),
  5796. default: true
  5797. },
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(7, "feet")
  5801. },
  5802. ]
  5803. ))
  5804. characterMakers.push(() => makeCharacter(
  5805. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5806. {
  5807. front: {
  5808. height: math.unit(6, "feet"),
  5809. weight: math.unit(140, "lbs"),
  5810. name: "Front",
  5811. image: {
  5812. source: "./media/characters/cynosura/front.svg",
  5813. extra: 896 / 847
  5814. }
  5815. },
  5816. back: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(140, "lbs"),
  5819. name: "Back",
  5820. image: {
  5821. source: "./media/characters/cynosura/back.svg",
  5822. extra: 1365 / 1250
  5823. }
  5824. },
  5825. },
  5826. [
  5827. {
  5828. name: "Micro",
  5829. height: math.unit(4, "inches")
  5830. },
  5831. {
  5832. name: "Normal",
  5833. height: math.unit(5.75, "feet"),
  5834. default: true
  5835. },
  5836. {
  5837. name: "Tall",
  5838. height: math.unit(10, "feet")
  5839. },
  5840. {
  5841. name: "Big",
  5842. height: math.unit(20, "feet")
  5843. },
  5844. {
  5845. name: "Macro",
  5846. height: math.unit(50, "feet")
  5847. },
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5852. {
  5853. front: {
  5854. height: math.unit(13 + 2/12, "feet"),
  5855. weight: math.unit(800, "kg"),
  5856. name: "Front",
  5857. image: {
  5858. source: "./media/characters/gin/front.svg",
  5859. extra: 1312/1191,
  5860. bottom: 45/1357
  5861. }
  5862. },
  5863. mouth: {
  5864. height: math.unit(2.39 * 1.8, "feet"),
  5865. name: "Mouth",
  5866. image: {
  5867. source: "./media/characters/gin/mouth.svg"
  5868. }
  5869. },
  5870. hand: {
  5871. height: math.unit(1.57 * 2.19, "feet"),
  5872. name: "Hand",
  5873. image: {
  5874. source: "./media/characters/gin/hand.svg"
  5875. }
  5876. },
  5877. foot: {
  5878. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5879. name: "Foot",
  5880. image: {
  5881. source: "./media/characters/gin/foot.svg"
  5882. }
  5883. },
  5884. sole: {
  5885. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5886. name: "Sole",
  5887. image: {
  5888. source: "./media/characters/gin/sole.svg"
  5889. }
  5890. },
  5891. },
  5892. [
  5893. {
  5894. name: "Very Small",
  5895. height: math.unit(13 + 2 / 12, "feet")
  5896. },
  5897. {
  5898. name: "Micro",
  5899. height: math.unit(600, "miles")
  5900. },
  5901. {
  5902. name: "Regular",
  5903. height: math.unit(20, "earths"),
  5904. default: true
  5905. },
  5906. {
  5907. name: "Macro",
  5908. height: math.unit(2.2, "solarradii")
  5909. },
  5910. {
  5911. name: "Teramacro",
  5912. height: math.unit(1.2, "galaxies")
  5913. },
  5914. {
  5915. name: "Omegamacro",
  5916. height: math.unit(200, "universes")
  5917. },
  5918. ]
  5919. ))
  5920. characterMakers.push(() => makeCharacter(
  5921. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5922. {
  5923. front: {
  5924. height: math.unit(6 + 1 / 6, "feet"),
  5925. weight: math.unit(178, "lbs"),
  5926. name: "Front",
  5927. image: {
  5928. source: "./media/characters/guy/front.svg"
  5929. }
  5930. }
  5931. },
  5932. [
  5933. {
  5934. name: "Normal",
  5935. height: math.unit(6 + 1 / 6, "feet"),
  5936. default: true
  5937. },
  5938. {
  5939. name: "Large",
  5940. height: math.unit(25 + 7 / 12, "feet")
  5941. },
  5942. {
  5943. name: "Macro",
  5944. height: math.unit(60 + 9 / 12, "feet")
  5945. },
  5946. {
  5947. name: "Macro+",
  5948. height: math.unit(246, "feet")
  5949. },
  5950. {
  5951. name: "Macro++",
  5952. height: math.unit(878, "feet")
  5953. }
  5954. ]
  5955. ))
  5956. characterMakers.push(() => makeCharacter(
  5957. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5958. {
  5959. front: {
  5960. height: math.unit(9, "feet"),
  5961. weight: math.unit(800, "lbs"),
  5962. name: "Front",
  5963. image: {
  5964. source: "./media/characters/tiberius/front.svg",
  5965. extra: 2295 / 2071
  5966. }
  5967. },
  5968. back: {
  5969. height: math.unit(9, "feet"),
  5970. weight: math.unit(800, "lbs"),
  5971. name: "Back",
  5972. image: {
  5973. source: "./media/characters/tiberius/back.svg",
  5974. extra: 2373 / 2160
  5975. }
  5976. },
  5977. },
  5978. [
  5979. {
  5980. name: "Normal",
  5981. height: math.unit(9, "feet"),
  5982. default: true
  5983. }
  5984. ]
  5985. ))
  5986. characterMakers.push(() => makeCharacter(
  5987. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5988. {
  5989. front: {
  5990. height: math.unit(6, "feet"),
  5991. weight: math.unit(600, "lbs"),
  5992. name: "Front",
  5993. image: {
  5994. source: "./media/characters/surgo/front.svg",
  5995. extra: 3591 / 2227
  5996. }
  5997. },
  5998. back: {
  5999. height: math.unit(6, "feet"),
  6000. weight: math.unit(600, "lbs"),
  6001. name: "Back",
  6002. image: {
  6003. source: "./media/characters/surgo/back.svg",
  6004. extra: 3557 / 2228
  6005. }
  6006. },
  6007. laying: {
  6008. height: math.unit(6 * 0.85, "feet"),
  6009. weight: math.unit(600, "lbs"),
  6010. name: "Laying",
  6011. image: {
  6012. source: "./media/characters/surgo/laying.svg"
  6013. }
  6014. },
  6015. },
  6016. [
  6017. {
  6018. name: "Normal",
  6019. height: math.unit(6, "feet"),
  6020. default: true
  6021. }
  6022. ]
  6023. ))
  6024. characterMakers.push(() => makeCharacter(
  6025. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6026. {
  6027. side: {
  6028. height: math.unit(6, "feet"),
  6029. weight: math.unit(150, "lbs"),
  6030. name: "Side",
  6031. image: {
  6032. source: "./media/characters/cibus/side.svg",
  6033. extra: 800 / 400
  6034. }
  6035. },
  6036. },
  6037. [
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(6, "feet"),
  6041. default: true
  6042. }
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6047. {
  6048. front: {
  6049. height: math.unit(6, "feet"),
  6050. weight: math.unit(240, "lbs"),
  6051. name: "Front",
  6052. image: {
  6053. source: "./media/characters/nibbles/front.svg"
  6054. }
  6055. },
  6056. side: {
  6057. height: math.unit(6, "feet"),
  6058. weight: math.unit(240, "lbs"),
  6059. name: "Side",
  6060. image: {
  6061. source: "./media/characters/nibbles/side.svg"
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Normal",
  6068. height: math.unit(9, "feet"),
  6069. default: true
  6070. }
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6075. {
  6076. side: {
  6077. height: math.unit(5 + 1 / 6, "feet"),
  6078. weight: math.unit(130, "lbs"),
  6079. name: "Side",
  6080. image: {
  6081. source: "./media/characters/rikky/side.svg",
  6082. extra: 851 / 801
  6083. }
  6084. },
  6085. },
  6086. [
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(5 + 1 / 6, "feet")
  6090. },
  6091. {
  6092. name: "Macro",
  6093. height: math.unit(152, "feet"),
  6094. default: true
  6095. },
  6096. {
  6097. name: "Megamacro",
  6098. height: math.unit(7, "miles")
  6099. }
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6104. {
  6105. side: {
  6106. height: math.unit(370, "cm"),
  6107. weight: math.unit(350, "lbs"),
  6108. name: "Side",
  6109. image: {
  6110. source: "./media/characters/malfressa/side.svg"
  6111. }
  6112. },
  6113. walking: {
  6114. height: math.unit(370, "cm"),
  6115. weight: math.unit(350, "lbs"),
  6116. name: "Walking",
  6117. image: {
  6118. source: "./media/characters/malfressa/walking.svg"
  6119. }
  6120. },
  6121. feral: {
  6122. height: math.unit(2500, "cm"),
  6123. weight: math.unit(100000, "lbs"),
  6124. name: "Feral",
  6125. image: {
  6126. source: "./media/characters/malfressa/feral.svg",
  6127. extra: 2108 / 837,
  6128. bottom: 0.02
  6129. }
  6130. },
  6131. },
  6132. [
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(370, "cm")
  6136. },
  6137. {
  6138. name: "Macro",
  6139. height: math.unit(300, "meters"),
  6140. default: true
  6141. }
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6146. {
  6147. front: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(60, "kg"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/jaro/front.svg"
  6153. }
  6154. },
  6155. back: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(60, "kg"),
  6158. name: "Back",
  6159. image: {
  6160. source: "./media/characters/jaro/back.svg"
  6161. }
  6162. },
  6163. },
  6164. [
  6165. {
  6166. name: "Micro",
  6167. height: math.unit(7, "inches")
  6168. },
  6169. {
  6170. name: "Normal",
  6171. height: math.unit(5.5, "feet"),
  6172. default: true
  6173. },
  6174. {
  6175. name: "Minimacro",
  6176. height: math.unit(20, "feet")
  6177. },
  6178. {
  6179. name: "Macro",
  6180. height: math.unit(200, "meters")
  6181. }
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6186. {
  6187. front: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(195, "lb"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/rogue/front.svg"
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(90, "feet"),
  6200. default: true
  6201. },
  6202. ]
  6203. ))
  6204. characterMakers.push(() => makeCharacter(
  6205. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6206. {
  6207. front: {
  6208. height: math.unit(5 + 8 / 12, "feet"),
  6209. weight: math.unit(140, "lb"),
  6210. name: "Front",
  6211. image: {
  6212. source: "./media/characters/piper/front.svg",
  6213. extra: 3948/3655,
  6214. bottom: 0/3948
  6215. }
  6216. },
  6217. },
  6218. [
  6219. {
  6220. name: "Micro",
  6221. height: math.unit(2, "inches")
  6222. },
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(5 + 8 / 12, "feet")
  6226. },
  6227. {
  6228. name: "Macro",
  6229. height: math.unit(250, "feet"),
  6230. default: true
  6231. },
  6232. {
  6233. name: "Megamacro",
  6234. height: math.unit(7, "miles")
  6235. },
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6240. {
  6241. front: {
  6242. height: math.unit(6, "feet"),
  6243. weight: math.unit(220, "lb"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/gemini/front.svg"
  6247. }
  6248. },
  6249. back: {
  6250. height: math.unit(6, "feet"),
  6251. weight: math.unit(220, "lb"),
  6252. name: "Back",
  6253. image: {
  6254. source: "./media/characters/gemini/back.svg"
  6255. }
  6256. },
  6257. kneeling: {
  6258. height: math.unit(6 / 1.5, "feet"),
  6259. weight: math.unit(220, "lb"),
  6260. name: "Kneeling",
  6261. image: {
  6262. source: "./media/characters/gemini/kneeling.svg",
  6263. bottom: 0.02
  6264. }
  6265. },
  6266. },
  6267. [
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(300, "meters"),
  6271. default: true
  6272. },
  6273. {
  6274. name: "Megamacro",
  6275. height: math.unit(6900, "meters")
  6276. },
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6281. {
  6282. anthro: {
  6283. height: math.unit(2.35, "meters"),
  6284. weight: math.unit(73, "kg"),
  6285. name: "Anthro",
  6286. image: {
  6287. source: "./media/characters/alicia/anthro.svg",
  6288. extra: 2571 / 2385,
  6289. bottom: 75 / 2648
  6290. }
  6291. },
  6292. paw: {
  6293. height: math.unit(1.32, "feet"),
  6294. name: "Paw",
  6295. image: {
  6296. source: "./media/characters/alicia/paw.svg"
  6297. }
  6298. },
  6299. feral: {
  6300. height: math.unit(1.69, "meters"),
  6301. weight: math.unit(73, "kg"),
  6302. name: "Feral",
  6303. image: {
  6304. source: "./media/characters/alicia/feral.svg",
  6305. extra: 2123 / 1715,
  6306. bottom: 222 / 2349
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(2.35, "meters")
  6314. },
  6315. {
  6316. name: "Macro",
  6317. height: math.unit(60, "meters"),
  6318. default: true
  6319. },
  6320. {
  6321. name: "Megamacro",
  6322. height: math.unit(10000, "kilometers")
  6323. },
  6324. ]
  6325. ))
  6326. characterMakers.push(() => makeCharacter(
  6327. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6328. {
  6329. front: {
  6330. height: math.unit(7, "feet"),
  6331. weight: math.unit(250, "lbs"),
  6332. name: "Front",
  6333. image: {
  6334. source: "./media/characters/archy/front.svg"
  6335. }
  6336. }
  6337. },
  6338. [
  6339. {
  6340. name: "Micro",
  6341. height: math.unit(1, "inch")
  6342. },
  6343. {
  6344. name: "Shorty",
  6345. height: math.unit(5, "feet")
  6346. },
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(7, "feet")
  6350. },
  6351. {
  6352. name: "Macro",
  6353. height: math.unit(600, "meters"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Megamacro",
  6358. height: math.unit(1, "mile")
  6359. },
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6364. {
  6365. front: {
  6366. height: math.unit(1.65, "meters"),
  6367. weight: math.unit(74, "kg"),
  6368. name: "Front",
  6369. image: {
  6370. source: "./media/characters/berri/front.svg",
  6371. extra: 857 / 837,
  6372. bottom: 18 / 877
  6373. }
  6374. },
  6375. bum: {
  6376. height: math.unit(1.46, "feet"),
  6377. name: "Bum",
  6378. image: {
  6379. source: "./media/characters/berri/bum.svg"
  6380. }
  6381. },
  6382. mouth: {
  6383. height: math.unit(0.44, "feet"),
  6384. name: "Mouth",
  6385. image: {
  6386. source: "./media/characters/berri/mouth.svg"
  6387. }
  6388. },
  6389. paw: {
  6390. height: math.unit(0.826, "feet"),
  6391. name: "Paw",
  6392. image: {
  6393. source: "./media/characters/berri/paw.svg"
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(1.65, "meters")
  6401. },
  6402. {
  6403. name: "Macro",
  6404. height: math.unit(60, "m"),
  6405. default: true
  6406. },
  6407. {
  6408. name: "Megamacro",
  6409. height: math.unit(9.213, "km")
  6410. },
  6411. {
  6412. name: "Planet Eater",
  6413. height: math.unit(489, "megameters")
  6414. },
  6415. {
  6416. name: "Teramacro",
  6417. height: math.unit(2471635000000, "meters")
  6418. },
  6419. {
  6420. name: "Examacro",
  6421. height: math.unit(8.0624e+26, "meters")
  6422. }
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6427. {
  6428. front: {
  6429. height: math.unit(1.72, "meters"),
  6430. weight: math.unit(68, "kg"),
  6431. name: "Front",
  6432. image: {
  6433. source: "./media/characters/lexi/front.svg"
  6434. }
  6435. }
  6436. },
  6437. [
  6438. {
  6439. name: "Very Smol",
  6440. height: math.unit(10, "mm")
  6441. },
  6442. {
  6443. name: "Micro",
  6444. height: math.unit(6.8, "cm"),
  6445. default: true
  6446. },
  6447. {
  6448. name: "Normal",
  6449. height: math.unit(1.72, "m")
  6450. }
  6451. ]
  6452. ))
  6453. characterMakers.push(() => makeCharacter(
  6454. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6455. {
  6456. front: {
  6457. height: math.unit(1.69, "meters"),
  6458. weight: math.unit(68, "kg"),
  6459. name: "Front",
  6460. image: {
  6461. source: "./media/characters/martin/front.svg",
  6462. extra: 596 / 581
  6463. }
  6464. }
  6465. },
  6466. [
  6467. {
  6468. name: "Micro",
  6469. height: math.unit(6.85, "cm"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Normal",
  6474. height: math.unit(1.69, "m")
  6475. }
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(1.69, "meters"),
  6483. weight: math.unit(68, "kg"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/juno/front.svg"
  6487. }
  6488. }
  6489. },
  6490. [
  6491. {
  6492. name: "Micro",
  6493. height: math.unit(7, "cm")
  6494. },
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(1.89, "m")
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(353, "meters"),
  6502. default: true
  6503. }
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6508. {
  6509. front: {
  6510. height: math.unit(1.93, "meters"),
  6511. weight: math.unit(83, "kg"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/samantha/front.svg"
  6515. }
  6516. },
  6517. frontClothed: {
  6518. height: math.unit(1.93, "meters"),
  6519. weight: math.unit(83, "kg"),
  6520. name: "Front (Clothed)",
  6521. image: {
  6522. source: "./media/characters/samantha/front-clothed.svg"
  6523. }
  6524. },
  6525. back: {
  6526. height: math.unit(1.93, "meters"),
  6527. weight: math.unit(83, "kg"),
  6528. name: "Back",
  6529. image: {
  6530. source: "./media/characters/samantha/back.svg"
  6531. }
  6532. },
  6533. },
  6534. [
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(1.93, "m")
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(74, "meters"),
  6542. default: true
  6543. },
  6544. {
  6545. name: "Macro+",
  6546. height: math.unit(223, "meters"),
  6547. },
  6548. {
  6549. name: "Megamacro",
  6550. height: math.unit(8381, "meters"),
  6551. },
  6552. {
  6553. name: "Megamacro+",
  6554. height: math.unit(12000, "kilometers")
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(1.92, "meters"),
  6563. weight: math.unit(80, "kg"),
  6564. name: "Front",
  6565. image: {
  6566. source: "./media/characters/dr-clay/front.svg"
  6567. }
  6568. },
  6569. frontClothed: {
  6570. height: math.unit(1.92, "meters"),
  6571. weight: math.unit(80, "kg"),
  6572. name: "Front (Clothed)",
  6573. image: {
  6574. source: "./media/characters/dr-clay/front-clothed.svg"
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(1.92, "m")
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(214, "meters"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Macro+",
  6590. height: math.unit(12.237, "meters"),
  6591. },
  6592. {
  6593. name: "Megamacro",
  6594. height: math.unit(557, "megameters"),
  6595. },
  6596. {
  6597. name: "Unimaginable",
  6598. height: math.unit(120e9, "lightyears")
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(2, "meters"),
  6607. weight: math.unit(80, "kg"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6611. }
  6612. }
  6613. },
  6614. [
  6615. {
  6616. name: "Teramacro",
  6617. height: math.unit(500000, "lightyears"),
  6618. default: true
  6619. },
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6624. {
  6625. crux: {
  6626. height: math.unit(2, "meters"),
  6627. weight: math.unit(150, "kg"),
  6628. name: "Crux",
  6629. image: {
  6630. source: "./media/characters/vemus/crux.svg",
  6631. extra: 1074/936,
  6632. bottom: 23/1097
  6633. }
  6634. },
  6635. skunkTanuki: {
  6636. height: math.unit(2, "meters"),
  6637. weight: math.unit(150, "kg"),
  6638. name: "Skunk-Tanuki",
  6639. image: {
  6640. source: "./media/characters/vemus/skunk-tanuki.svg",
  6641. extra: 926/893,
  6642. bottom: 20/946
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Normal",
  6649. height: math.unit(3.75, "meters"),
  6650. default: true
  6651. },
  6652. {
  6653. name: "Big",
  6654. height: math.unit(8, "meters")
  6655. },
  6656. {
  6657. name: "Macro",
  6658. height: math.unit(100, "meters")
  6659. },
  6660. {
  6661. name: "Macro+",
  6662. height: math.unit(1500, "meters")
  6663. },
  6664. {
  6665. name: "Stellar",
  6666. height: math.unit(14e8, "meters")
  6667. },
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6672. {
  6673. front: {
  6674. height: math.unit(2, "meters"),
  6675. weight: math.unit(70, "kg"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/beherit/front.svg",
  6679. extra: 1408 / 1242
  6680. }
  6681. }
  6682. },
  6683. [
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(6, "feet")
  6687. },
  6688. {
  6689. name: "Lorg",
  6690. height: math.unit(25, "feet"),
  6691. default: true
  6692. },
  6693. {
  6694. name: "Lorger",
  6695. height: math.unit(75, "feet")
  6696. },
  6697. {
  6698. name: "Macro",
  6699. height: math.unit(200, "meters")
  6700. },
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(2, "meters"),
  6708. weight: math.unit(150, "kg"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/everett/front.svg",
  6712. extra: 2038 / 1737,
  6713. bottom: 0.03
  6714. }
  6715. },
  6716. paw: {
  6717. height: math.unit(2 / 3.6, "meters"),
  6718. name: "Paw",
  6719. image: {
  6720. source: "./media/characters/everett/paw.svg"
  6721. }
  6722. },
  6723. },
  6724. [
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(15, "feet"),
  6728. default: true
  6729. },
  6730. {
  6731. name: "Lorg",
  6732. height: math.unit(70, "feet"),
  6733. default: true
  6734. },
  6735. {
  6736. name: "Lorger",
  6737. height: math.unit(250, "feet")
  6738. },
  6739. {
  6740. name: "Macro",
  6741. height: math.unit(500, "meters")
  6742. },
  6743. ]
  6744. ))
  6745. characterMakers.push(() => makeCharacter(
  6746. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6747. {
  6748. front: {
  6749. height: math.unit(2, "meters"),
  6750. weight: math.unit(86, "kg"),
  6751. name: "Front",
  6752. image: {
  6753. source: "./media/characters/rose/front.svg",
  6754. extra: 1785/1636,
  6755. bottom: 30/1815
  6756. }
  6757. },
  6758. frontSporty: {
  6759. height: math.unit(2, "meters"),
  6760. weight: math.unit(86, "kg"),
  6761. name: "Front (Sporty)",
  6762. image: {
  6763. source: "./media/characters/rose/front-sporty.svg",
  6764. extra: 350/335,
  6765. bottom: 10/360
  6766. }
  6767. },
  6768. frontAlt: {
  6769. height: math.unit(1.6, "meters"),
  6770. weight: math.unit(86, "kg"),
  6771. name: "Front (Alt)",
  6772. image: {
  6773. source: "./media/characters/rose/front-alt.svg",
  6774. extra: 299/283,
  6775. bottom: 3/302
  6776. }
  6777. },
  6778. plush: {
  6779. height: math.unit(2, "meters"),
  6780. weight: math.unit(86/3, "kg"),
  6781. name: "Plush",
  6782. image: {
  6783. source: "./media/characters/rose/plush.svg",
  6784. extra: 361/337,
  6785. bottom: 11/372
  6786. }
  6787. },
  6788. },
  6789. [
  6790. {
  6791. name: "True Micro",
  6792. height: math.unit(9, "cm")
  6793. },
  6794. {
  6795. name: "Micro",
  6796. height: math.unit(16, "cm")
  6797. },
  6798. {
  6799. name: "Normal",
  6800. height: math.unit(1.85, "meters"),
  6801. default: true
  6802. },
  6803. {
  6804. name: "Mini-Macro",
  6805. height: math.unit(5, "meters")
  6806. },
  6807. {
  6808. name: "Macro",
  6809. height: math.unit(15, "meters")
  6810. },
  6811. {
  6812. name: "True Macro",
  6813. height: math.unit(40, "meters")
  6814. },
  6815. {
  6816. name: "City Scale",
  6817. height: math.unit(1, "km")
  6818. },
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6823. {
  6824. front: {
  6825. height: math.unit(2, "meters"),
  6826. weight: math.unit(350, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/regal/front.svg"
  6830. }
  6831. },
  6832. back: {
  6833. height: math.unit(2, "meters"),
  6834. weight: math.unit(350, "lbs"),
  6835. name: "Back",
  6836. image: {
  6837. source: "./media/characters/regal/back.svg"
  6838. }
  6839. },
  6840. },
  6841. [
  6842. {
  6843. name: "Macro",
  6844. height: math.unit(350, "feet"),
  6845. default: true
  6846. }
  6847. ]
  6848. ))
  6849. characterMakers.push(() => makeCharacter(
  6850. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6851. {
  6852. front: {
  6853. height: math.unit(4 + 11 / 12, "feet"),
  6854. weight: math.unit(100, "lbs"),
  6855. name: "Front",
  6856. image: {
  6857. source: "./media/characters/opal/front.svg"
  6858. }
  6859. },
  6860. frontAlt: {
  6861. height: math.unit(4 + 11 / 12, "feet"),
  6862. weight: math.unit(100, "lbs"),
  6863. name: "Front (Alt)",
  6864. image: {
  6865. source: "./media/characters/opal/front-alt.svg"
  6866. }
  6867. },
  6868. },
  6869. [
  6870. {
  6871. name: "Small",
  6872. height: math.unit(4 + 11 / 12, "feet")
  6873. },
  6874. {
  6875. name: "Normal",
  6876. height: math.unit(20, "feet"),
  6877. default: true
  6878. },
  6879. {
  6880. name: "Macro",
  6881. height: math.unit(120, "feet")
  6882. },
  6883. {
  6884. name: "Megamacro",
  6885. height: math.unit(80, "miles")
  6886. },
  6887. {
  6888. name: "True Size",
  6889. height: math.unit(100000, "lightyears")
  6890. },
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(6, "feet"),
  6898. weight: math.unit(200, "lbs"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/vector-wuff/front.svg"
  6902. }
  6903. }
  6904. },
  6905. [
  6906. {
  6907. name: "Normal",
  6908. height: math.unit(2.8, "meters")
  6909. },
  6910. {
  6911. name: "Macro",
  6912. height: math.unit(450, "meters"),
  6913. default: true
  6914. },
  6915. {
  6916. name: "Megamacro",
  6917. height: math.unit(15, "kilometers")
  6918. }
  6919. ]
  6920. ))
  6921. characterMakers.push(() => makeCharacter(
  6922. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6923. {
  6924. front: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(256, "lbs"),
  6927. name: "Front",
  6928. image: {
  6929. source: "./media/characters/dannik/front.svg"
  6930. }
  6931. }
  6932. },
  6933. [
  6934. {
  6935. name: "Macro",
  6936. height: math.unit(69.57, "meters"),
  6937. default: true
  6938. },
  6939. ]
  6940. ))
  6941. characterMakers.push(() => makeCharacter(
  6942. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6943. {
  6944. front: {
  6945. height: math.unit(6, "feet"),
  6946. weight: math.unit(120, "lbs"),
  6947. name: "Front",
  6948. image: {
  6949. source: "./media/characters/azura-saharah/front.svg"
  6950. }
  6951. },
  6952. back: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(120, "lbs"),
  6955. name: "Back",
  6956. image: {
  6957. source: "./media/characters/azura-saharah/back.svg"
  6958. }
  6959. },
  6960. },
  6961. [
  6962. {
  6963. name: "Macro",
  6964. height: math.unit(100, "feet"),
  6965. default: true
  6966. },
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6971. {
  6972. side: {
  6973. height: math.unit(5 + 4 / 12, "feet"),
  6974. weight: math.unit(163, "lbs"),
  6975. name: "Side",
  6976. image: {
  6977. source: "./media/characters/kennedy/side.svg"
  6978. }
  6979. }
  6980. },
  6981. [
  6982. {
  6983. name: "Standard Doggo",
  6984. height: math.unit(5 + 4 / 12, "feet")
  6985. },
  6986. {
  6987. name: "Big Doggo",
  6988. height: math.unit(25 + 3 / 12, "feet"),
  6989. default: true
  6990. },
  6991. ]
  6992. ))
  6993. characterMakers.push(() => makeCharacter(
  6994. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6995. {
  6996. front: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(90, "lbs"),
  6999. name: "Front",
  7000. image: {
  7001. source: "./media/characters/odi-lunar/front.svg"
  7002. }
  7003. }
  7004. },
  7005. [
  7006. {
  7007. name: "Micro",
  7008. height: math.unit(3, "inches"),
  7009. default: true
  7010. },
  7011. {
  7012. name: "Normal",
  7013. height: math.unit(5.5, "feet")
  7014. }
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7019. {
  7020. back: {
  7021. height: math.unit(6, "feet"),
  7022. weight: math.unit(220, "lbs"),
  7023. name: "Back",
  7024. image: {
  7025. source: "./media/characters/mandake/back.svg"
  7026. }
  7027. }
  7028. },
  7029. [
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(7, "feet"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Macro",
  7037. height: math.unit(78, "feet")
  7038. },
  7039. {
  7040. name: "Macro+",
  7041. height: math.unit(300, "meters")
  7042. },
  7043. {
  7044. name: "Macro++",
  7045. height: math.unit(2400, "feet")
  7046. },
  7047. {
  7048. name: "Megamacro",
  7049. height: math.unit(5167, "meters")
  7050. },
  7051. {
  7052. name: "Gigamacro",
  7053. height: math.unit(41769, "miles")
  7054. },
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7059. {
  7060. front: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(120, "lbs"),
  7063. name: "Front",
  7064. image: {
  7065. source: "./media/characters/yozey/front.svg"
  7066. }
  7067. },
  7068. frontAlt: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(120, "lbs"),
  7071. name: "Front (Alt)",
  7072. image: {
  7073. source: "./media/characters/yozey/front-alt.svg"
  7074. }
  7075. },
  7076. side: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(120, "lbs"),
  7079. name: "Side",
  7080. image: {
  7081. source: "./media/characters/yozey/side.svg"
  7082. }
  7083. },
  7084. },
  7085. [
  7086. {
  7087. name: "Micro",
  7088. height: math.unit(3, "inches"),
  7089. default: true
  7090. },
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(6, "feet")
  7094. }
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7099. {
  7100. front: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(103, "lbs"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/valeska-voss/front.svg"
  7106. }
  7107. }
  7108. },
  7109. [
  7110. {
  7111. name: "Mini-Sized Sub",
  7112. height: math.unit(3.1, "inches")
  7113. },
  7114. {
  7115. name: "Mid-Sized Sub",
  7116. height: math.unit(6.2, "inches")
  7117. },
  7118. {
  7119. name: "Full-Sized Sub",
  7120. height: math.unit(9.3, "inches")
  7121. },
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(5 + 2 / 12, "foot"),
  7125. default: true
  7126. },
  7127. ]
  7128. ))
  7129. characterMakers.push(() => makeCharacter(
  7130. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7131. {
  7132. front: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(160, "lbs"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/gene-zeta/front.svg",
  7138. extra: 3006 / 2826,
  7139. bottom: 182 / 3188
  7140. }
  7141. }
  7142. },
  7143. [
  7144. {
  7145. name: "Micro",
  7146. height: math.unit(6, "inches")
  7147. },
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(5 + 11 / 12, "foot"),
  7151. default: true
  7152. },
  7153. {
  7154. name: "Macro",
  7155. height: math.unit(140, "feet")
  7156. },
  7157. {
  7158. name: "Supercharged",
  7159. height: math.unit(2500, "feet")
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(350, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/razinox/front.svg",
  7172. extra: 1686 / 1548,
  7173. bottom: 28.2 / 1868
  7174. }
  7175. },
  7176. back: {
  7177. height: math.unit(6, "feet"),
  7178. weight: math.unit(350, "lbs"),
  7179. name: "Back",
  7180. image: {
  7181. source: "./media/characters/razinox/back.svg",
  7182. extra: 1660 / 1590,
  7183. bottom: 15 / 1665
  7184. }
  7185. },
  7186. },
  7187. [
  7188. {
  7189. name: "Normal",
  7190. height: math.unit(10 + 8 / 12, "foot")
  7191. },
  7192. {
  7193. name: "Minimacro",
  7194. height: math.unit(15, "foot")
  7195. },
  7196. {
  7197. name: "Macro",
  7198. height: math.unit(60, "foot"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Megamacro",
  7203. height: math.unit(5, "miles")
  7204. },
  7205. {
  7206. name: "Gigamacro",
  7207. height: math.unit(6000, "miles")
  7208. },
  7209. ]
  7210. ))
  7211. characterMakers.push(() => makeCharacter(
  7212. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7213. {
  7214. front: {
  7215. height: math.unit(6, "feet"),
  7216. weight: math.unit(150, "lbs"),
  7217. name: "Front",
  7218. image: {
  7219. source: "./media/characters/cobalt/front.svg"
  7220. }
  7221. }
  7222. },
  7223. [
  7224. {
  7225. name: "Normal",
  7226. height: math.unit(8 + 1 / 12, "foot")
  7227. },
  7228. {
  7229. name: "Macro",
  7230. height: math.unit(111, "foot"),
  7231. default: true
  7232. },
  7233. {
  7234. name: "Supracosmic",
  7235. height: math.unit(1e42, "feet")
  7236. },
  7237. ]
  7238. ))
  7239. characterMakers.push(() => makeCharacter(
  7240. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7241. {
  7242. front: {
  7243. height: math.unit(6, "feet"),
  7244. weight: math.unit(140, "lbs"),
  7245. name: "Front",
  7246. image: {
  7247. source: "./media/characters/amanda/front.svg"
  7248. }
  7249. }
  7250. },
  7251. [
  7252. {
  7253. name: "Micro",
  7254. height: math.unit(5, "inches"),
  7255. default: true
  7256. },
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7261. {
  7262. front: {
  7263. height: math.unit(2.75, "meters"),
  7264. weight: math.unit(1200, "lb"),
  7265. name: "Front",
  7266. image: {
  7267. source: "./media/characters/teal/front.svg",
  7268. extra: 2463 / 2320,
  7269. bottom: 166 / 2629
  7270. }
  7271. },
  7272. back: {
  7273. height: math.unit(2.75, "meters"),
  7274. weight: math.unit(1200, "lb"),
  7275. name: "Back",
  7276. image: {
  7277. source: "./media/characters/teal/back.svg",
  7278. extra: 2580 / 2489,
  7279. bottom: 151 / 2731
  7280. }
  7281. },
  7282. sitting: {
  7283. height: math.unit(1.9, "meters"),
  7284. weight: math.unit(1200, "lb"),
  7285. name: "Sitting",
  7286. image: {
  7287. source: "./media/characters/teal/sitting.svg",
  7288. extra: 623 / 590,
  7289. bottom: 121 / 744
  7290. }
  7291. },
  7292. standing: {
  7293. height: math.unit(2.75, "meters"),
  7294. weight: math.unit(1200, "lb"),
  7295. name: "Standing",
  7296. image: {
  7297. source: "./media/characters/teal/standing.svg",
  7298. extra: 923 / 893,
  7299. bottom: 60 / 983
  7300. }
  7301. },
  7302. stretching: {
  7303. height: math.unit(3.65, "meters"),
  7304. weight: math.unit(1200, "lb"),
  7305. name: "Stretching",
  7306. image: {
  7307. source: "./media/characters/teal/stretching.svg",
  7308. extra: 1276 / 1244,
  7309. bottom: 0 / 1276
  7310. }
  7311. },
  7312. legged: {
  7313. height: math.unit(1.3, "meters"),
  7314. weight: math.unit(100, "lb"),
  7315. name: "Legged",
  7316. image: {
  7317. source: "./media/characters/teal/legged.svg",
  7318. extra: 462 / 437,
  7319. bottom: 24 / 486
  7320. }
  7321. },
  7322. naga: {
  7323. height: math.unit(5.4, "meters"),
  7324. weight: math.unit(4000, "lb"),
  7325. name: "Naga",
  7326. image: {
  7327. source: "./media/characters/teal/naga.svg",
  7328. extra: 1902 / 1858,
  7329. bottom: 0 / 1902
  7330. }
  7331. },
  7332. hand: {
  7333. height: math.unit(0.52, "meters"),
  7334. name: "Hand",
  7335. image: {
  7336. source: "./media/characters/teal/hand.svg"
  7337. }
  7338. },
  7339. maw: {
  7340. height: math.unit(0.43, "meters"),
  7341. name: "Maw",
  7342. image: {
  7343. source: "./media/characters/teal/maw.svg"
  7344. }
  7345. },
  7346. slit: {
  7347. height: math.unit(0.25, "meters"),
  7348. name: "Slit",
  7349. image: {
  7350. source: "./media/characters/teal/slit.svg"
  7351. }
  7352. },
  7353. },
  7354. [
  7355. {
  7356. name: "Normal",
  7357. height: math.unit(2.75, "meters"),
  7358. default: true
  7359. },
  7360. {
  7361. name: "Macro",
  7362. height: math.unit(300, "feet")
  7363. },
  7364. {
  7365. name: "Macro+",
  7366. height: math.unit(2000, "feet")
  7367. },
  7368. ]
  7369. ))
  7370. characterMakers.push(() => makeCharacter(
  7371. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7372. {
  7373. frontCat: {
  7374. height: math.unit(6, "feet"),
  7375. weight: math.unit(180, "lbs"),
  7376. name: "Front (Cat)",
  7377. image: {
  7378. source: "./media/characters/ravin-amulet/front-cat.svg"
  7379. }
  7380. },
  7381. frontCatAlt: {
  7382. height: math.unit(6, "feet"),
  7383. weight: math.unit(180, "lbs"),
  7384. name: "Front (Alt, Cat)",
  7385. image: {
  7386. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7387. }
  7388. },
  7389. frontWerewolf: {
  7390. height: math.unit(6 * 1.2, "feet"),
  7391. weight: math.unit(225, "lbs"),
  7392. name: "Front (Werewolf)",
  7393. image: {
  7394. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7395. }
  7396. },
  7397. backWerewolf: {
  7398. height: math.unit(6 * 1.2, "feet"),
  7399. weight: math.unit(225, "lbs"),
  7400. name: "Back (Werewolf)",
  7401. image: {
  7402. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7403. }
  7404. },
  7405. },
  7406. [
  7407. {
  7408. name: "Nano",
  7409. height: math.unit(1, "micrometer")
  7410. },
  7411. {
  7412. name: "Micro",
  7413. height: math.unit(1, "inch")
  7414. },
  7415. {
  7416. name: "Normal",
  7417. height: math.unit(6, "feet"),
  7418. default: true
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(60, "feet")
  7423. }
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7428. {
  7429. front: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(165, "lbs"),
  7432. name: "Front",
  7433. image: {
  7434. source: "./media/characters/fluoresce/front.svg"
  7435. }
  7436. }
  7437. },
  7438. [
  7439. {
  7440. name: "Micro",
  7441. height: math.unit(6, "cm")
  7442. },
  7443. {
  7444. name: "Normal",
  7445. height: math.unit(5 + 7 / 12, "feet"),
  7446. default: true
  7447. },
  7448. {
  7449. name: "Macro",
  7450. height: math.unit(56, "feet")
  7451. },
  7452. {
  7453. name: "Megamacro",
  7454. height: math.unit(1.9, "miles")
  7455. },
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(9 + 6 / 12, "feet"),
  7463. weight: math.unit(523, "lbs"),
  7464. name: "Side",
  7465. image: {
  7466. source: "./media/characters/aurora/side.svg"
  7467. }
  7468. }
  7469. },
  7470. [
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(9 + 6 / 12, "feet")
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(96, "feet"),
  7478. default: true
  7479. },
  7480. {
  7481. name: "Macro+",
  7482. height: math.unit(243, "feet")
  7483. },
  7484. ]
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7488. {
  7489. front: {
  7490. height: math.unit(194, "cm"),
  7491. weight: math.unit(90, "kg"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/ranek/front.svg"
  7495. }
  7496. },
  7497. side: {
  7498. height: math.unit(194, "cm"),
  7499. weight: math.unit(90, "kg"),
  7500. name: "Side",
  7501. image: {
  7502. source: "./media/characters/ranek/side.svg"
  7503. }
  7504. },
  7505. back: {
  7506. height: math.unit(194, "cm"),
  7507. weight: math.unit(90, "kg"),
  7508. name: "Back",
  7509. image: {
  7510. source: "./media/characters/ranek/back.svg"
  7511. }
  7512. },
  7513. feral: {
  7514. height: math.unit(30, "cm"),
  7515. weight: math.unit(1.6, "lbs"),
  7516. name: "Feral",
  7517. image: {
  7518. source: "./media/characters/ranek/feral.svg"
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(194, "cm"),
  7526. default: true
  7527. },
  7528. {
  7529. name: "Macro",
  7530. height: math.unit(100, "meters")
  7531. },
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(5 + 6 / 12, "feet"),
  7539. weight: math.unit(153, "lbs"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/andrew-cooper/front.svg"
  7543. }
  7544. },
  7545. },
  7546. [
  7547. {
  7548. name: "Nano",
  7549. height: math.unit(1, "mm")
  7550. },
  7551. {
  7552. name: "Micro",
  7553. height: math.unit(2, "inches")
  7554. },
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(5 + 6 / 12, "feet"),
  7558. default: true
  7559. }
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(180, "lbs"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/akane-sato/front.svg",
  7571. extra: 1219 / 1140
  7572. }
  7573. },
  7574. back: {
  7575. height: math.unit(6, "feet"),
  7576. weight: math.unit(180, "lbs"),
  7577. name: "Back",
  7578. image: {
  7579. source: "./media/characters/akane-sato/back.svg",
  7580. extra: 1219 / 1170
  7581. }
  7582. },
  7583. },
  7584. [
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(2.5, "meters")
  7588. },
  7589. {
  7590. name: "Macro",
  7591. height: math.unit(250, "meters"),
  7592. default: true
  7593. },
  7594. {
  7595. name: "Megamacro",
  7596. height: math.unit(25, "km")
  7597. },
  7598. ]
  7599. ))
  7600. characterMakers.push(() => makeCharacter(
  7601. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7602. {
  7603. front: {
  7604. height: math.unit(6, "feet"),
  7605. weight: math.unit(65, "kg"),
  7606. name: "Front",
  7607. image: {
  7608. source: "./media/characters/rook/front.svg",
  7609. extra: 960 / 950
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(8.8, "feet")
  7617. },
  7618. {
  7619. name: "Macro",
  7620. height: math.unit(88, "feet"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Megamacro",
  7625. height: math.unit(8, "miles")
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(12 + 2 / 12, "feet"),
  7634. weight: math.unit(808, "lbs"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/prodigy/front.svg"
  7638. }
  7639. }
  7640. },
  7641. [
  7642. {
  7643. name: "Normal",
  7644. height: math.unit(12 + 2 / 12, "feet"),
  7645. default: true
  7646. },
  7647. {
  7648. name: "Macro",
  7649. height: math.unit(143, "feet")
  7650. },
  7651. {
  7652. name: "Macro+",
  7653. height: math.unit(400, "feet")
  7654. },
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7659. {
  7660. front: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(225, "lbs"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/daniel/front.svg"
  7666. }
  7667. },
  7668. leaning: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(225, "lbs"),
  7671. name: "Leaning",
  7672. image: {
  7673. source: "./media/characters/daniel/leaning.svg"
  7674. }
  7675. },
  7676. },
  7677. [
  7678. {
  7679. name: "Macro",
  7680. height: math.unit(1000, "feet"),
  7681. default: true
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(6, "feet"),
  7690. weight: math.unit(88, "lbs"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/chiros/front.svg",
  7694. extra: 306 / 226
  7695. }
  7696. },
  7697. side: {
  7698. height: math.unit(6, "feet"),
  7699. weight: math.unit(88, "lbs"),
  7700. name: "Side",
  7701. image: {
  7702. source: "./media/characters/chiros/side.svg",
  7703. extra: 306 / 226
  7704. }
  7705. },
  7706. },
  7707. [
  7708. {
  7709. name: "Normal",
  7710. height: math.unit(6, "cm"),
  7711. default: true
  7712. },
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7717. {
  7718. front: {
  7719. height: math.unit(6, "feet"),
  7720. weight: math.unit(100, "lbs"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/selka/front.svg",
  7724. extra: 947 / 887
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(5, "cm"),
  7732. default: true
  7733. },
  7734. ]
  7735. ))
  7736. characterMakers.push(() => makeCharacter(
  7737. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7738. {
  7739. front: {
  7740. height: math.unit(8 + 3 / 12, "feet"),
  7741. weight: math.unit(424, "lbs"),
  7742. name: "Front",
  7743. image: {
  7744. source: "./media/characters/verin/front.svg",
  7745. extra: 1845 / 1550
  7746. }
  7747. },
  7748. frontArmored: {
  7749. height: math.unit(8 + 3 / 12, "feet"),
  7750. weight: math.unit(424, "lbs"),
  7751. name: "Front (Armored)",
  7752. image: {
  7753. source: "./media/characters/verin/front-armor.svg",
  7754. extra: 1845 / 1550,
  7755. bottom: 0.01
  7756. }
  7757. },
  7758. back: {
  7759. height: math.unit(8 + 3 / 12, "feet"),
  7760. weight: math.unit(424, "lbs"),
  7761. name: "Back",
  7762. image: {
  7763. source: "./media/characters/verin/back.svg",
  7764. bottom: 0.1,
  7765. extra: 1
  7766. }
  7767. },
  7768. foot: {
  7769. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7770. name: "Foot",
  7771. image: {
  7772. source: "./media/characters/verin/foot.svg"
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(8 + 3 / 12, "feet")
  7780. },
  7781. {
  7782. name: "Minimacro",
  7783. height: math.unit(21, "feet"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Macro",
  7788. height: math.unit(626, "feet")
  7789. },
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(2.718, "meters"),
  7797. weight: math.unit(150, "lbs"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/sovrim-terraquian/front.svg"
  7801. }
  7802. },
  7803. back: {
  7804. height: math.unit(2.718, "meters"),
  7805. weight: math.unit(150, "lbs"),
  7806. name: "Back",
  7807. image: {
  7808. source: "./media/characters/sovrim-terraquian/back.svg"
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(2, "inches")
  7816. },
  7817. {
  7818. name: "Small",
  7819. height: math.unit(1, "meter")
  7820. },
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(Math.E, "meters"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Macro",
  7828. height: math.unit(20, "meters")
  7829. },
  7830. {
  7831. name: "Macro+",
  7832. height: math.unit(400, "meters")
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(7, "feet"),
  7841. weight: math.unit(489, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/reece-silvermane/front.svg",
  7845. bottom: 0.02,
  7846. extra: 1
  7847. }
  7848. },
  7849. },
  7850. [
  7851. {
  7852. name: "Macro",
  7853. height: math.unit(1.5, "miles"),
  7854. default: true
  7855. },
  7856. ]
  7857. ))
  7858. characterMakers.push(() => makeCharacter(
  7859. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7860. {
  7861. front: {
  7862. height: math.unit(6, "feet"),
  7863. weight: math.unit(78, "kg"),
  7864. name: "Front",
  7865. image: {
  7866. source: "./media/characters/kane/front.svg",
  7867. extra: 978 / 899
  7868. }
  7869. },
  7870. },
  7871. [
  7872. {
  7873. name: "Normal",
  7874. height: math.unit(2.1, "m"),
  7875. },
  7876. {
  7877. name: "Macro",
  7878. height: math.unit(1, "km"),
  7879. default: true
  7880. },
  7881. ]
  7882. ))
  7883. characterMakers.push(() => makeCharacter(
  7884. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7885. {
  7886. front: {
  7887. height: math.unit(6, "feet"),
  7888. weight: math.unit(200, "kg"),
  7889. name: "Front",
  7890. image: {
  7891. source: "./media/characters/tegon/front.svg",
  7892. bottom: 0.01,
  7893. extra: 1
  7894. }
  7895. },
  7896. },
  7897. [
  7898. {
  7899. name: "Micro",
  7900. height: math.unit(1, "inch")
  7901. },
  7902. {
  7903. name: "Normal",
  7904. height: math.unit(6 + 3 / 12, "feet"),
  7905. default: true
  7906. },
  7907. {
  7908. name: "Macro",
  7909. height: math.unit(300, "feet")
  7910. },
  7911. {
  7912. name: "Megamacro",
  7913. height: math.unit(69, "miles")
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7919. {
  7920. side: {
  7921. height: math.unit(6, "feet"),
  7922. weight: math.unit(2304, "lbs"),
  7923. name: "Side",
  7924. image: {
  7925. source: "./media/characters/arcturax/side.svg",
  7926. extra: 790 / 376,
  7927. bottom: 0.01
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Micro",
  7934. height: math.unit(2, "inch")
  7935. },
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(6, "feet")
  7939. },
  7940. {
  7941. name: "Macro",
  7942. height: math.unit(39, "feet"),
  7943. default: true
  7944. },
  7945. {
  7946. name: "Megamacro",
  7947. height: math.unit(7, "miles")
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7953. {
  7954. front: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(50, "lbs"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/sentri/front.svg",
  7960. extra: 1750 / 1570,
  7961. bottom: 0.025
  7962. }
  7963. },
  7964. frontAlt: {
  7965. height: math.unit(6, "feet"),
  7966. weight: math.unit(50, "lbs"),
  7967. name: "Front (Alt)",
  7968. image: {
  7969. source: "./media/characters/sentri/front-alt.svg",
  7970. extra: 1750 / 1570,
  7971. bottom: 0.025
  7972. }
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "Normal",
  7978. height: math.unit(15, "feet"),
  7979. default: true
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(2500, "feet")
  7984. }
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(5 + 8 / 12, "feet"),
  7992. weight: math.unit(130, "lbs"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/corvin/front.svg",
  7996. extra: 1803 / 1629
  7997. }
  7998. },
  7999. frontShirt: {
  8000. height: math.unit(5 + 8 / 12, "feet"),
  8001. weight: math.unit(130, "lbs"),
  8002. name: "Front (Shirt)",
  8003. image: {
  8004. source: "./media/characters/corvin/front-shirt.svg",
  8005. extra: 1803 / 1629
  8006. }
  8007. },
  8008. frontPoncho: {
  8009. height: math.unit(5 + 8 / 12, "feet"),
  8010. weight: math.unit(130, "lbs"),
  8011. name: "Front (Poncho)",
  8012. image: {
  8013. source: "./media/characters/corvin/front-poncho.svg",
  8014. extra: 1803 / 1629
  8015. }
  8016. },
  8017. side: {
  8018. height: math.unit(5 + 8 / 12, "feet"),
  8019. weight: math.unit(130, "lbs"),
  8020. name: "Side",
  8021. image: {
  8022. source: "./media/characters/corvin/side.svg",
  8023. extra: 1012 / 945
  8024. }
  8025. },
  8026. back: {
  8027. height: math.unit(5 + 8 / 12, "feet"),
  8028. weight: math.unit(130, "lbs"),
  8029. name: "Back",
  8030. image: {
  8031. source: "./media/characters/corvin/back.svg",
  8032. extra: 1803 / 1629
  8033. }
  8034. },
  8035. },
  8036. [
  8037. {
  8038. name: "Micro",
  8039. height: math.unit(3, "inches")
  8040. },
  8041. {
  8042. name: "Normal",
  8043. height: math.unit(5 + 8 / 12, "feet")
  8044. },
  8045. {
  8046. name: "Macro",
  8047. height: math.unit(300, "feet"),
  8048. default: true
  8049. },
  8050. {
  8051. name: "Megamacro",
  8052. height: math.unit(500, "miles")
  8053. }
  8054. ]
  8055. ))
  8056. characterMakers.push(() => makeCharacter(
  8057. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8058. {
  8059. front: {
  8060. height: math.unit(6, "feet"),
  8061. weight: math.unit(135, "lbs"),
  8062. name: "Front",
  8063. image: {
  8064. source: "./media/characters/q/front.svg",
  8065. extra: 854 / 752,
  8066. bottom: 0.005
  8067. }
  8068. },
  8069. back: {
  8070. height: math.unit(6, "feet"),
  8071. weight: math.unit(130, "lbs"),
  8072. name: "Back",
  8073. image: {
  8074. source: "./media/characters/q/back.svg",
  8075. extra: 854 / 752
  8076. }
  8077. },
  8078. },
  8079. [
  8080. {
  8081. name: "Macro",
  8082. height: math.unit(90, "feet"),
  8083. default: true
  8084. },
  8085. {
  8086. name: "Extra Macro",
  8087. height: math.unit(300, "feet"),
  8088. },
  8089. {
  8090. name: "BIG WALF",
  8091. height: math.unit(750, "feet"),
  8092. },
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8097. {
  8098. front: {
  8099. height: math.unit(6, "feet"),
  8100. weight: math.unit(150, "lbs"),
  8101. name: "Front",
  8102. image: {
  8103. source: "./media/characters/carley/front.svg",
  8104. extra: 3927 / 3540,
  8105. bottom: 29.2 / 735
  8106. }
  8107. }
  8108. },
  8109. [
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(6 + 3 / 12, "feet")
  8113. },
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(185, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Megamacro",
  8121. height: math.unit(8, "miles"),
  8122. },
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8127. {
  8128. front: {
  8129. height: math.unit(3, "feet"),
  8130. weight: math.unit(28, "lbs"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/citrine/front.svg"
  8134. }
  8135. }
  8136. },
  8137. [
  8138. {
  8139. name: "Normal",
  8140. height: math.unit(3, "feet"),
  8141. default: true
  8142. }
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8147. {
  8148. front: {
  8149. height: math.unit(14, "feet"),
  8150. weight: math.unit(1450, "kg"),
  8151. capacity: math.unit(15, "people"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/aura-starwind/front.svg",
  8155. extra: 1455 / 1335
  8156. }
  8157. },
  8158. side: {
  8159. height: math.unit(14, "feet"),
  8160. weight: math.unit(1450, "kg"),
  8161. capacity: math.unit(15, "people"),
  8162. name: "Side",
  8163. image: {
  8164. source: "./media/characters/aura-starwind/side.svg",
  8165. extra: 1654 / 1497
  8166. }
  8167. },
  8168. taur: {
  8169. height: math.unit(18, "feet"),
  8170. weight: math.unit(5500, "kg"),
  8171. capacity: math.unit(50, "people"),
  8172. name: "Taur",
  8173. image: {
  8174. source: "./media/characters/aura-starwind/taur.svg",
  8175. extra: 1760 / 1650
  8176. }
  8177. },
  8178. feral: {
  8179. height: math.unit(46, "feet"),
  8180. weight: math.unit(25000, "kg"),
  8181. capacity: math.unit(120, "people"),
  8182. name: "Feral",
  8183. image: {
  8184. source: "./media/characters/aura-starwind/feral.svg"
  8185. }
  8186. },
  8187. },
  8188. [
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(14, "feet"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Macro",
  8196. height: math.unit(50, "meters")
  8197. },
  8198. {
  8199. name: "Megamacro",
  8200. height: math.unit(5000, "meters")
  8201. },
  8202. {
  8203. name: "Gigamacro",
  8204. height: math.unit(100000, "kilometers")
  8205. },
  8206. ]
  8207. ))
  8208. characterMakers.push(() => makeCharacter(
  8209. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8210. {
  8211. front: {
  8212. height: math.unit(2 + 7 / 12, "feet"),
  8213. weight: math.unit(32, "lbs"),
  8214. name: "Front",
  8215. image: {
  8216. source: "./media/characters/rivet/front.svg",
  8217. extra: 1716 / 1658,
  8218. bottom: 0.03
  8219. }
  8220. },
  8221. foot: {
  8222. height: math.unit(0.551, "feet"),
  8223. name: "Rivet's Foot",
  8224. image: {
  8225. source: "./media/characters/rivet/foot.svg"
  8226. },
  8227. rename: true
  8228. }
  8229. },
  8230. [
  8231. {
  8232. name: "Micro",
  8233. height: math.unit(1.5, "inches"),
  8234. },
  8235. {
  8236. name: "Normal",
  8237. height: math.unit(2 + 7 / 12, "feet"),
  8238. default: true
  8239. },
  8240. {
  8241. name: "Macro",
  8242. height: math.unit(85, "feet")
  8243. },
  8244. {
  8245. name: "Megamacro",
  8246. height: math.unit(2.2, "km")
  8247. }
  8248. ]
  8249. ))
  8250. characterMakers.push(() => makeCharacter(
  8251. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8252. {
  8253. front: {
  8254. height: math.unit(5 + 9 / 12, "feet"),
  8255. weight: math.unit(150, "lbs"),
  8256. name: "Front",
  8257. image: {
  8258. source: "./media/characters/coffee/front.svg",
  8259. extra: 3666 / 3032,
  8260. bottom: 0.04
  8261. }
  8262. },
  8263. foot: {
  8264. height: math.unit(1.29, "feet"),
  8265. name: "Foot",
  8266. image: {
  8267. source: "./media/characters/coffee/foot.svg"
  8268. }
  8269. },
  8270. },
  8271. [
  8272. {
  8273. name: "Micro",
  8274. height: math.unit(2, "inches"),
  8275. },
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(5 + 9 / 12, "feet"),
  8279. default: true
  8280. },
  8281. {
  8282. name: "Macro",
  8283. height: math.unit(800, "feet")
  8284. },
  8285. {
  8286. name: "Megamacro",
  8287. height: math.unit(25, "miles")
  8288. }
  8289. ]
  8290. ))
  8291. characterMakers.push(() => makeCharacter(
  8292. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8293. {
  8294. front: {
  8295. height: math.unit(6, "feet"),
  8296. weight: math.unit(200, "lbs"),
  8297. name: "Front",
  8298. image: {
  8299. source: "./media/characters/chari-gal/front.svg",
  8300. extra: 1568 / 1385,
  8301. bottom: 0.047
  8302. }
  8303. },
  8304. gigantamax: {
  8305. height: math.unit(6 * 16, "feet"),
  8306. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8307. name: "Gigantamax",
  8308. image: {
  8309. source: "./media/characters/chari-gal/gigantamax.svg",
  8310. extra: 1124 / 888,
  8311. bottom: 0.03
  8312. }
  8313. },
  8314. },
  8315. [
  8316. {
  8317. name: "Normal",
  8318. height: math.unit(5 + 7 / 12, "feet")
  8319. },
  8320. {
  8321. name: "Macro",
  8322. height: math.unit(200, "feet"),
  8323. default: true
  8324. }
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8329. {
  8330. front: {
  8331. height: math.unit(6, "feet"),
  8332. weight: math.unit(150, "lbs"),
  8333. name: "Front",
  8334. image: {
  8335. source: "./media/characters/nova/front.svg",
  8336. extra: 5000 / 4722,
  8337. bottom: 0.02
  8338. }
  8339. }
  8340. },
  8341. [
  8342. {
  8343. name: "Micro-",
  8344. height: math.unit(0.8, "inches")
  8345. },
  8346. {
  8347. name: "Micro",
  8348. height: math.unit(2, "inches"),
  8349. default: true
  8350. },
  8351. ]
  8352. ))
  8353. characterMakers.push(() => makeCharacter(
  8354. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8355. {
  8356. front: {
  8357. height: math.unit(3 + 1 / 12, "feet"),
  8358. weight: math.unit(21.7, "lbs"),
  8359. name: "Front",
  8360. image: {
  8361. source: "./media/characters/argent/front.svg",
  8362. extra: 1471 / 1331,
  8363. bottom: 100.8 / 1575.5
  8364. }
  8365. }
  8366. },
  8367. [
  8368. {
  8369. name: "Micro",
  8370. height: math.unit(2, "inches")
  8371. },
  8372. {
  8373. name: "Normal",
  8374. height: math.unit(3 + 1 / 12, "feet"),
  8375. default: true
  8376. },
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(120, "feet")
  8380. },
  8381. ]
  8382. ))
  8383. characterMakers.push(() => makeCharacter(
  8384. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8385. {
  8386. lamp: {
  8387. height: math.unit(7 * 1559 / 989, "feet"),
  8388. name: "Magic Lamp",
  8389. image: {
  8390. source: "./media/characters/mira-al-cul/lamp.svg",
  8391. extra: 1617 / 1559
  8392. }
  8393. },
  8394. front: {
  8395. height: math.unit(7, "feet"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/mira-al-cul/front.svg",
  8399. extra: 1044 / 990
  8400. }
  8401. },
  8402. },
  8403. [
  8404. {
  8405. name: "Heavily Restricted",
  8406. height: math.unit(7 * 1559 / 989, "feet")
  8407. },
  8408. {
  8409. name: "Freshly Freed",
  8410. height: math.unit(50 * 1559 / 989, "feet")
  8411. },
  8412. {
  8413. name: "World Encompassing",
  8414. height: math.unit(10000 * 1559 / 989, "miles")
  8415. },
  8416. {
  8417. name: "Galactic",
  8418. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8419. },
  8420. {
  8421. name: "Palmed Universe",
  8422. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Multiversal Matriarch",
  8427. height: math.unit(8.87e10, "yottameters")
  8428. },
  8429. {
  8430. name: "Void Mother",
  8431. height: math.unit(3.14e110, "yottaparsecs")
  8432. },
  8433. {
  8434. name: "Toying with Transcendence",
  8435. height: math.unit(1e307, "meters")
  8436. },
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8441. {
  8442. front: {
  8443. height: math.unit(17 + 1 / 12, "feet"),
  8444. weight: math.unit(476.2 * 5, "lbs"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/kuro-shi-uchū/front.svg",
  8448. extra: 2329 / 1835,
  8449. bottom: 0.02
  8450. }
  8451. },
  8452. },
  8453. [
  8454. {
  8455. name: "Micro",
  8456. height: math.unit(2, "inches")
  8457. },
  8458. {
  8459. name: "Normal",
  8460. height: math.unit(12, "meters")
  8461. },
  8462. {
  8463. name: "Planetary",
  8464. height: math.unit(0.00929, "AU"),
  8465. default: true
  8466. },
  8467. {
  8468. name: "Universal",
  8469. height: math.unit(20, "gigaparsecs")
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8475. {
  8476. front: {
  8477. height: math.unit(5 + 2 / 12, "feet"),
  8478. weight: math.unit(120, "lbs"),
  8479. name: "Front",
  8480. image: {
  8481. source: "./media/characters/katherine/front.svg",
  8482. extra: 2075 / 1969
  8483. }
  8484. },
  8485. dress: {
  8486. height: math.unit(5 + 2 / 12, "feet"),
  8487. weight: math.unit(120, "lbs"),
  8488. name: "Dress",
  8489. image: {
  8490. source: "./media/characters/katherine/dress.svg",
  8491. extra: 2258 / 2064
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Micro",
  8498. height: math.unit(1, "inches"),
  8499. default: true
  8500. },
  8501. {
  8502. name: "Normal",
  8503. height: math.unit(5 + 2 / 12, "feet")
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(100, "meters")
  8508. },
  8509. {
  8510. name: "Megamacro",
  8511. height: math.unit(80, "miles")
  8512. },
  8513. ]
  8514. ))
  8515. characterMakers.push(() => makeCharacter(
  8516. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8517. {
  8518. front: {
  8519. height: math.unit(7 + 8 / 12, "feet"),
  8520. weight: math.unit(250, "lbs"),
  8521. name: "Front",
  8522. image: {
  8523. source: "./media/characters/yevis/front.svg",
  8524. extra: 1938 / 1755
  8525. }
  8526. }
  8527. },
  8528. [
  8529. {
  8530. name: "Mortal",
  8531. height: math.unit(7 + 8 / 12, "feet")
  8532. },
  8533. {
  8534. name: "Battle",
  8535. height: math.unit(25 + 11 / 12, "feet")
  8536. },
  8537. {
  8538. name: "Wrath",
  8539. height: math.unit(1654 + 11 / 12, "feet")
  8540. },
  8541. {
  8542. name: "Planet Destroyer",
  8543. height: math.unit(12000, "miles")
  8544. },
  8545. {
  8546. name: "Galaxy Conqueror",
  8547. height: math.unit(1.45, "zettameters"),
  8548. default: true
  8549. },
  8550. {
  8551. name: "Universal War",
  8552. height: math.unit(184, "gigaparsecs")
  8553. },
  8554. {
  8555. name: "Eternity War",
  8556. height: math.unit(1.98e55, "yottaparsecs")
  8557. },
  8558. ]
  8559. ))
  8560. characterMakers.push(() => makeCharacter(
  8561. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8562. {
  8563. front: {
  8564. height: math.unit(5 + 8 / 12, "feet"),
  8565. weight: math.unit(63, "kg"),
  8566. name: "Front",
  8567. image: {
  8568. source: "./media/characters/xavier/front.svg",
  8569. extra: 944 / 883
  8570. }
  8571. },
  8572. frontStretch: {
  8573. height: math.unit(5 + 8 / 12, "feet"),
  8574. weight: math.unit(63, "kg"),
  8575. name: "Stretching",
  8576. image: {
  8577. source: "./media/characters/xavier/front-stretch.svg",
  8578. extra: 962 / 820
  8579. }
  8580. },
  8581. },
  8582. [
  8583. {
  8584. name: "Normal",
  8585. height: math.unit(5 + 8 / 12, "feet")
  8586. },
  8587. {
  8588. name: "Macro",
  8589. height: math.unit(100, "meters"),
  8590. default: true
  8591. },
  8592. {
  8593. name: "McLargeHuge",
  8594. height: math.unit(10, "miles")
  8595. },
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8600. {
  8601. front: {
  8602. height: math.unit(5 + 5 / 12, "feet"),
  8603. weight: math.unit(150, "lb"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/joshii/front.svg",
  8607. extra: 765 / 653,
  8608. bottom: 51 / 816
  8609. }
  8610. },
  8611. foot: {
  8612. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8613. name: "Foot",
  8614. image: {
  8615. source: "./media/characters/joshii/foot.svg"
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Micro",
  8622. height: math.unit(2, "inches"),
  8623. default: true
  8624. },
  8625. {
  8626. name: "Normal",
  8627. height: math.unit(5 + 5 / 12, "feet")
  8628. },
  8629. {
  8630. name: "Macro",
  8631. height: math.unit(785, "feet")
  8632. },
  8633. {
  8634. name: "Megamacro",
  8635. height: math.unit(24.5, "miles")
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8641. {
  8642. front: {
  8643. height: math.unit(6, "feet"),
  8644. weight: math.unit(150, "lb"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/goddess-elizabeth/front.svg",
  8648. extra: 1800 / 1525,
  8649. bottom: 0.005
  8650. }
  8651. },
  8652. foot: {
  8653. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8654. name: "Foot",
  8655. image: {
  8656. source: "./media/characters/goddess-elizabeth/foot.svg"
  8657. }
  8658. },
  8659. mouth: {
  8660. height: math.unit(6, "feet"),
  8661. name: "Mouth",
  8662. image: {
  8663. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Micro",
  8670. height: math.unit(12, "feet")
  8671. },
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(80, "miles"),
  8675. default: true
  8676. },
  8677. {
  8678. name: "Macro",
  8679. height: math.unit(15000, "parsecs")
  8680. },
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8685. {
  8686. front: {
  8687. height: math.unit(5 + 9 / 12, "feet"),
  8688. weight: math.unit(144, "lb"),
  8689. name: "Front",
  8690. image: {
  8691. source: "./media/characters/kara/front.svg"
  8692. }
  8693. },
  8694. feet: {
  8695. height: math.unit(6 / 6.765, "feet"),
  8696. name: "Kara's Feet",
  8697. rename: true,
  8698. image: {
  8699. source: "./media/characters/kara/feet.svg"
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(5 + 9 / 12, "feet")
  8707. },
  8708. {
  8709. name: "Macro",
  8710. height: math.unit(174, "feet"),
  8711. default: true
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(18, "feet"),
  8720. weight: math.unit(4050, "lb"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/tyrone/front.svg",
  8724. extra: 2405 / 2270,
  8725. bottom: 182 / 2587
  8726. }
  8727. },
  8728. },
  8729. [
  8730. {
  8731. name: "Normal",
  8732. height: math.unit(18, "feet"),
  8733. default: true
  8734. },
  8735. {
  8736. name: "Macro",
  8737. height: math.unit(300, "feet")
  8738. },
  8739. {
  8740. name: "Megamacro",
  8741. height: math.unit(15, "km")
  8742. },
  8743. {
  8744. name: "Gigamacro",
  8745. height: math.unit(500, "km")
  8746. },
  8747. {
  8748. name: "Teramacro",
  8749. height: math.unit(0.5, "gigameters")
  8750. },
  8751. {
  8752. name: "Omnimacro",
  8753. height: math.unit(1e252, "yottauniverse")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(7 + 8 / 12, "feet"),
  8762. weight: math.unit(120, "lb"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/danny/front.svg",
  8766. extra: 1490 / 1350
  8767. }
  8768. },
  8769. back: {
  8770. height: math.unit(7 + 8 / 12, "feet"),
  8771. weight: math.unit(120, "lb"),
  8772. name: "Back",
  8773. image: {
  8774. source: "./media/characters/danny/back.svg",
  8775. extra: 1490 / 1350
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Normal",
  8782. height: math.unit(7 + 8 / 12, "feet"),
  8783. default: true
  8784. },
  8785. ]
  8786. ))
  8787. characterMakers.push(() => makeCharacter(
  8788. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8789. {
  8790. front: {
  8791. height: math.unit(3.5, "inches"),
  8792. weight: math.unit(19, "grams"),
  8793. name: "Front",
  8794. image: {
  8795. source: "./media/characters/mallow/front.svg",
  8796. extra: 471 / 431
  8797. }
  8798. },
  8799. back: {
  8800. height: math.unit(3.5, "inches"),
  8801. weight: math.unit(19, "grams"),
  8802. name: "Back",
  8803. image: {
  8804. source: "./media/characters/mallow/back.svg",
  8805. extra: 471 / 431
  8806. }
  8807. },
  8808. },
  8809. [
  8810. {
  8811. name: "Normal",
  8812. height: math.unit(3.5, "inches"),
  8813. default: true
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(9, "feet"),
  8822. weight: math.unit(230, "kg"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/starry-aqua/front.svg"
  8826. }
  8827. },
  8828. back: {
  8829. height: math.unit(9, "feet"),
  8830. weight: math.unit(230, "kg"),
  8831. name: "Back",
  8832. image: {
  8833. source: "./media/characters/starry-aqua/back.svg"
  8834. }
  8835. },
  8836. hand: {
  8837. height: math.unit(9 * 0.1168, "feet"),
  8838. name: "Hand",
  8839. image: {
  8840. source: "./media/characters/starry-aqua/hand.svg"
  8841. }
  8842. },
  8843. foot: {
  8844. height: math.unit(9 * 0.18, "feet"),
  8845. name: "Foot",
  8846. image: {
  8847. source: "./media/characters/starry-aqua/foot.svg"
  8848. }
  8849. }
  8850. },
  8851. [
  8852. {
  8853. name: "Micro",
  8854. height: math.unit(3, "inches")
  8855. },
  8856. {
  8857. name: "Normal",
  8858. height: math.unit(9, "feet")
  8859. },
  8860. {
  8861. name: "Macro",
  8862. height: math.unit(300, "feet"),
  8863. default: true
  8864. },
  8865. {
  8866. name: "Megamacro",
  8867. height: math.unit(3200, "feet")
  8868. }
  8869. ]
  8870. ))
  8871. characterMakers.push(() => makeCharacter(
  8872. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8873. {
  8874. front: {
  8875. height: math.unit(6, "feet"),
  8876. weight: math.unit(230, "lb"),
  8877. name: "Front",
  8878. image: {
  8879. source: "./media/characters/luka/front.svg",
  8880. extra: 1,
  8881. bottom: 0.025
  8882. }
  8883. },
  8884. },
  8885. [
  8886. {
  8887. name: "Normal",
  8888. height: math.unit(12 + 8 / 12, "feet"),
  8889. default: true
  8890. },
  8891. {
  8892. name: "Minimacro",
  8893. height: math.unit(20, "feet")
  8894. },
  8895. {
  8896. name: "Macro",
  8897. height: math.unit(250, "feet")
  8898. },
  8899. {
  8900. name: "Megamacro",
  8901. height: math.unit(5, "miles")
  8902. },
  8903. {
  8904. name: "Gigamacro",
  8905. height: math.unit(8000, "miles")
  8906. },
  8907. ]
  8908. ))
  8909. characterMakers.push(() => makeCharacter(
  8910. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8911. {
  8912. front: {
  8913. height: math.unit(6, "feet"),
  8914. weight: math.unit(150, "lb"),
  8915. name: "Front",
  8916. image: {
  8917. source: "./media/characters/natalie-nightring/front.svg",
  8918. extra: 1,
  8919. bottom: 0.06
  8920. }
  8921. },
  8922. },
  8923. [
  8924. {
  8925. name: "Uh Oh",
  8926. height: math.unit(0.1, "mm")
  8927. },
  8928. {
  8929. name: "Small",
  8930. height: math.unit(3, "inches")
  8931. },
  8932. {
  8933. name: "Human Scale",
  8934. height: math.unit(6, "feet")
  8935. },
  8936. {
  8937. name: "Librarian",
  8938. height: math.unit(50, "feet"),
  8939. default: true
  8940. },
  8941. {
  8942. name: "Immense",
  8943. height: math.unit(200, "miles")
  8944. },
  8945. ]
  8946. ))
  8947. characterMakers.push(() => makeCharacter(
  8948. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8949. {
  8950. front: {
  8951. height: math.unit(6, "feet"),
  8952. weight: math.unit(180, "lbs"),
  8953. name: "Front",
  8954. image: {
  8955. source: "./media/characters/danni-rosie/front.svg",
  8956. extra: 1260 / 1128,
  8957. bottom: 0.022
  8958. }
  8959. },
  8960. },
  8961. [
  8962. {
  8963. name: "Micro",
  8964. height: math.unit(2, "inches"),
  8965. default: true
  8966. },
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(5 + 9 / 12, "feet"),
  8974. weight: math.unit(220, "lb"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/samantha-kruse/front.svg",
  8978. extra: (985 / 935),
  8979. bottom: 0.03
  8980. }
  8981. },
  8982. frontUndressed: {
  8983. height: math.unit(5 + 9 / 12, "feet"),
  8984. weight: math.unit(220, "lb"),
  8985. name: "Front (Undressed)",
  8986. image: {
  8987. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8988. extra: (973 / 923),
  8989. bottom: 0.025
  8990. }
  8991. },
  8992. fat: {
  8993. height: math.unit(5 + 9 / 12, "feet"),
  8994. weight: math.unit(900, "lb"),
  8995. name: "Front (Fat)",
  8996. image: {
  8997. source: "./media/characters/samantha-kruse/fat.svg",
  8998. extra: 2688 / 2561
  8999. }
  9000. },
  9001. },
  9002. [
  9003. {
  9004. name: "Normal",
  9005. height: math.unit(5 + 9 / 12, "feet"),
  9006. default: true
  9007. }
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9012. {
  9013. back: {
  9014. height: math.unit(5 + 4 / 12, "feet"),
  9015. weight: math.unit(4963, "lb"),
  9016. name: "Back",
  9017. image: {
  9018. source: "./media/characters/amelia-rosie/back.svg",
  9019. extra: 1113 / 963,
  9020. bottom: 0.01
  9021. }
  9022. },
  9023. },
  9024. [
  9025. {
  9026. name: "Level 0",
  9027. height: math.unit(5 + 4 / 12, "feet")
  9028. },
  9029. {
  9030. name: "Level 1",
  9031. height: math.unit(164597, "feet"),
  9032. default: true
  9033. },
  9034. {
  9035. name: "Level 2",
  9036. height: math.unit(956243, "miles")
  9037. },
  9038. {
  9039. name: "Level 3",
  9040. height: math.unit(29421709423, "miles")
  9041. },
  9042. {
  9043. name: "Level 4",
  9044. height: math.unit(154, "lightyears")
  9045. },
  9046. {
  9047. name: "Level 5",
  9048. height: math.unit(4738272, "lightyears")
  9049. },
  9050. {
  9051. name: "Level 6",
  9052. height: math.unit(145787152896, "lightyears")
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9058. {
  9059. front: {
  9060. height: math.unit(5 + 11 / 12, "feet"),
  9061. weight: math.unit(65, "kg"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/rook-kitara/front.svg",
  9065. extra: 1347 / 1274,
  9066. bottom: 0.005
  9067. }
  9068. },
  9069. },
  9070. [
  9071. {
  9072. name: "Totally Unfair",
  9073. height: math.unit(1.8, "mm")
  9074. },
  9075. {
  9076. name: "Lap Rookie",
  9077. height: math.unit(1.4, "feet")
  9078. },
  9079. {
  9080. name: "Normal",
  9081. height: math.unit(5 + 11 / 12, "feet"),
  9082. default: true
  9083. },
  9084. {
  9085. name: "How Did This Happen",
  9086. height: math.unit(80, "miles")
  9087. }
  9088. ]
  9089. ))
  9090. characterMakers.push(() => makeCharacter(
  9091. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9092. {
  9093. front: {
  9094. height: math.unit(7, "feet"),
  9095. weight: math.unit(300, "lb"),
  9096. name: "Front",
  9097. image: {
  9098. source: "./media/characters/pisces/front.svg",
  9099. extra: 2255 / 2115,
  9100. bottom: 0.03
  9101. }
  9102. },
  9103. back: {
  9104. height: math.unit(7, "feet"),
  9105. weight: math.unit(300, "lb"),
  9106. name: "Back",
  9107. image: {
  9108. source: "./media/characters/pisces/back.svg",
  9109. extra: 2146 / 2055,
  9110. bottom: 0.04
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Normal",
  9117. height: math.unit(7, "feet"),
  9118. default: true
  9119. },
  9120. {
  9121. name: "Swimming Pool",
  9122. height: math.unit(12.2, "meters")
  9123. },
  9124. {
  9125. name: "Olympic Swimming Pool",
  9126. height: math.unit(56.3, "meters")
  9127. },
  9128. {
  9129. name: "Lake Superior",
  9130. height: math.unit(93900, "meters")
  9131. },
  9132. {
  9133. name: "Mediterranean Sea",
  9134. height: math.unit(644457, "meters")
  9135. },
  9136. {
  9137. name: "World's Oceans",
  9138. height: math.unit(4567491, "meters")
  9139. },
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9144. {
  9145. front: {
  9146. height: math.unit(2.3, "meters"),
  9147. weight: math.unit(120, "kg"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/zelas/front.svg"
  9151. }
  9152. },
  9153. side: {
  9154. height: math.unit(2.3, "meters"),
  9155. weight: math.unit(120, "kg"),
  9156. name: "Side",
  9157. image: {
  9158. source: "./media/characters/zelas/side.svg"
  9159. }
  9160. },
  9161. back: {
  9162. height: math.unit(2.3, "meters"),
  9163. weight: math.unit(120, "kg"),
  9164. name: "Back",
  9165. image: {
  9166. source: "./media/characters/zelas/back.svg"
  9167. }
  9168. },
  9169. foot: {
  9170. height: math.unit(1.116, "feet"),
  9171. name: "Foot",
  9172. image: {
  9173. source: "./media/characters/zelas/foot.svg"
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(2.3, "meters")
  9181. },
  9182. {
  9183. name: "Macro",
  9184. height: math.unit(30, "meters"),
  9185. default: true
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9191. {
  9192. front: {
  9193. height: math.unit(1, "inch"),
  9194. weight: math.unit(0.21, "grams"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/talbot/front.svg",
  9198. extra: 594 / 544
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Micro",
  9205. height: math.unit(1, "inch"),
  9206. default: true
  9207. },
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9212. {
  9213. front: {
  9214. height: math.unit(3 + 3 / 12, "feet"),
  9215. weight: math.unit(51.8, "lb"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/fliss/front.svg",
  9219. extra: 840 / 640
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Teeny Tiny",
  9226. height: math.unit(1, "mm")
  9227. },
  9228. {
  9229. name: "Small",
  9230. height: math.unit(1, "inch"),
  9231. default: true
  9232. },
  9233. {
  9234. name: "Standard Sylveon",
  9235. height: math.unit(3 + 3 / 12, "feet")
  9236. },
  9237. {
  9238. name: "Large Nuisance",
  9239. height: math.unit(33, "feet")
  9240. },
  9241. {
  9242. name: "City Filler",
  9243. height: math.unit(3000, "feet")
  9244. },
  9245. {
  9246. name: "New Horizon",
  9247. height: math.unit(6000, "miles")
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9253. {
  9254. front: {
  9255. height: math.unit(5, "cm"),
  9256. weight: math.unit(1.94, "g"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/fleta/front.svg",
  9260. extra: 835 / 803
  9261. }
  9262. },
  9263. back: {
  9264. height: math.unit(5, "cm"),
  9265. weight: math.unit(1.94, "g"),
  9266. name: "Back",
  9267. image: {
  9268. source: "./media/characters/fleta/back.svg",
  9269. extra: 835 / 803
  9270. }
  9271. },
  9272. },
  9273. [
  9274. {
  9275. name: "Micro",
  9276. height: math.unit(5, "cm"),
  9277. default: true
  9278. },
  9279. ]
  9280. ))
  9281. characterMakers.push(() => makeCharacter(
  9282. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9283. {
  9284. front: {
  9285. height: math.unit(6, "feet"),
  9286. weight: math.unit(225, "lb"),
  9287. name: "Front",
  9288. image: {
  9289. source: "./media/characters/dominic/front.svg",
  9290. extra: 1770 / 1620,
  9291. bottom: 0.025
  9292. }
  9293. },
  9294. back: {
  9295. height: math.unit(6, "feet"),
  9296. weight: math.unit(225, "lb"),
  9297. name: "Back",
  9298. image: {
  9299. source: "./media/characters/dominic/back.svg",
  9300. extra: 1745 / 1620,
  9301. bottom: 0.065
  9302. }
  9303. },
  9304. },
  9305. [
  9306. {
  9307. name: "Nano",
  9308. height: math.unit(0.1, "mm")
  9309. },
  9310. {
  9311. name: "Micro-",
  9312. height: math.unit(1, "mm")
  9313. },
  9314. {
  9315. name: "Micro",
  9316. height: math.unit(4, "inches")
  9317. },
  9318. {
  9319. name: "Normal",
  9320. height: math.unit(6 + 4 / 12, "feet"),
  9321. default: true
  9322. },
  9323. {
  9324. name: "Macro",
  9325. height: math.unit(115, "feet")
  9326. },
  9327. {
  9328. name: "Macro+",
  9329. height: math.unit(955, "feet")
  9330. },
  9331. {
  9332. name: "Megamacro",
  9333. height: math.unit(8990, "feet")
  9334. },
  9335. {
  9336. name: "Gigmacro",
  9337. height: math.unit(9310, "miles")
  9338. },
  9339. {
  9340. name: "Teramacro",
  9341. height: math.unit(1567005010, "miles")
  9342. },
  9343. {
  9344. name: "Examacro",
  9345. height: math.unit(1425, "parsecs")
  9346. },
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9351. {
  9352. front: {
  9353. height: math.unit(400, "feet"),
  9354. weight: math.unit(44444444, "lb"),
  9355. name: "Front",
  9356. image: {
  9357. source: "./media/characters/major-colonel/front.svg"
  9358. }
  9359. },
  9360. back: {
  9361. height: math.unit(400, "feet"),
  9362. weight: math.unit(44444444, "lb"),
  9363. name: "Back",
  9364. image: {
  9365. source: "./media/characters/major-colonel/back.svg"
  9366. }
  9367. },
  9368. },
  9369. [
  9370. {
  9371. name: "Macro",
  9372. height: math.unit(400, "feet"),
  9373. default: true
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9379. {
  9380. catFront: {
  9381. height: math.unit(6, "feet"),
  9382. weight: math.unit(120, "lb"),
  9383. name: "Front (Cat Side)",
  9384. image: {
  9385. source: "./media/characters/axel-lycan/cat-front.svg",
  9386. extra: 430 / 402,
  9387. bottom: 43 / 472.35
  9388. }
  9389. },
  9390. catBack: {
  9391. height: math.unit(6, "feet"),
  9392. weight: math.unit(120, "lb"),
  9393. name: "Back (Cat Side)",
  9394. image: {
  9395. source: "./media/characters/axel-lycan/cat-back.svg",
  9396. extra: 447 / 419,
  9397. bottom: 23.3 / 469
  9398. }
  9399. },
  9400. wolfFront: {
  9401. height: math.unit(6, "feet"),
  9402. weight: math.unit(120, "lb"),
  9403. name: "Front (Wolf Side)",
  9404. image: {
  9405. source: "./media/characters/axel-lycan/wolf-front.svg",
  9406. extra: 485 / 456,
  9407. bottom: 19 / 504
  9408. }
  9409. },
  9410. wolfBack: {
  9411. height: math.unit(6, "feet"),
  9412. weight: math.unit(120, "lb"),
  9413. name: "Back (Wolf Side)",
  9414. image: {
  9415. source: "./media/characters/axel-lycan/wolf-back.svg",
  9416. extra: 475 / 438,
  9417. bottom: 39.2 / 514
  9418. }
  9419. },
  9420. },
  9421. [
  9422. {
  9423. name: "Macro",
  9424. height: math.unit(1, "km"),
  9425. default: true
  9426. },
  9427. ]
  9428. ))
  9429. characterMakers.push(() => makeCharacter(
  9430. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9431. {
  9432. front: {
  9433. height: math.unit(5 + 9 / 12, "feet"),
  9434. weight: math.unit(175, "lb"),
  9435. name: "Front",
  9436. image: {
  9437. source: "./media/characters/vanrel-hyena/front.svg",
  9438. extra: 1086 / 1010,
  9439. bottom: 0.04
  9440. }
  9441. },
  9442. },
  9443. [
  9444. {
  9445. name: "Normal",
  9446. height: math.unit(5 + 9 / 12, "feet"),
  9447. default: true
  9448. },
  9449. ]
  9450. ))
  9451. characterMakers.push(() => makeCharacter(
  9452. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9453. {
  9454. front: {
  9455. height: math.unit(6, "feet"),
  9456. weight: math.unit(103, "lb"),
  9457. name: "Front",
  9458. image: {
  9459. source: "./media/characters/abbott-absol/front.svg",
  9460. extra: 2010 / 1842
  9461. }
  9462. },
  9463. },
  9464. [
  9465. {
  9466. name: "Megamicro",
  9467. height: math.unit(0.1, "mm")
  9468. },
  9469. {
  9470. name: "Micro",
  9471. height: math.unit(1, "inch")
  9472. },
  9473. {
  9474. name: "Normal",
  9475. height: math.unit(6, "feet"),
  9476. default: true
  9477. },
  9478. ]
  9479. ))
  9480. characterMakers.push(() => makeCharacter(
  9481. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9482. {
  9483. front: {
  9484. height: math.unit(6, "feet"),
  9485. weight: math.unit(264, "lb"),
  9486. name: "Front",
  9487. image: {
  9488. source: "./media/characters/hector/front.svg",
  9489. extra: 2280 / 2130,
  9490. bottom: 0.07
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(12.25, "foot"),
  9498. default: true
  9499. },
  9500. {
  9501. name: "Macro",
  9502. height: math.unit(160, "feet")
  9503. },
  9504. ]
  9505. ))
  9506. characterMakers.push(() => makeCharacter(
  9507. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9508. {
  9509. front: {
  9510. height: math.unit(6, "feet"),
  9511. weight: math.unit(150, "lb"),
  9512. name: "Front",
  9513. image: {
  9514. source: "./media/characters/sal/front.svg",
  9515. extra: 1846 / 1699,
  9516. bottom: 0.04
  9517. }
  9518. },
  9519. },
  9520. [
  9521. {
  9522. name: "Megamacro",
  9523. height: math.unit(10, "miles"),
  9524. default: true
  9525. },
  9526. ]
  9527. ))
  9528. characterMakers.push(() => makeCharacter(
  9529. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9530. {
  9531. front: {
  9532. height: math.unit(3, "meters"),
  9533. weight: math.unit(450, "kg"),
  9534. name: "front",
  9535. image: {
  9536. source: "./media/characters/ranger/front.svg",
  9537. extra: 2401 / 2243,
  9538. bottom: 0.05
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Normal",
  9545. height: math.unit(3, "meters"),
  9546. default: true
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9552. {
  9553. front: {
  9554. height: math.unit(14, "feet"),
  9555. weight: math.unit(800, "kg"),
  9556. name: "Front",
  9557. image: {
  9558. source: "./media/characters/theresa/front.svg",
  9559. extra: 3575 / 3346,
  9560. bottom: 0.03
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Normal",
  9567. height: math.unit(14, "feet"),
  9568. default: true
  9569. },
  9570. ]
  9571. ))
  9572. characterMakers.push(() => makeCharacter(
  9573. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9574. {
  9575. front: {
  9576. height: math.unit(6, "feet"),
  9577. weight: math.unit(3, "kg"),
  9578. name: "Front",
  9579. image: {
  9580. source: "./media/characters/ine/front.svg",
  9581. extra: 678 / 539,
  9582. bottom: 0.023
  9583. }
  9584. },
  9585. },
  9586. [
  9587. {
  9588. name: "Normal",
  9589. height: math.unit(2.265, "feet"),
  9590. default: true
  9591. },
  9592. ]
  9593. ))
  9594. characterMakers.push(() => makeCharacter(
  9595. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9596. {
  9597. front: {
  9598. height: math.unit(5, "feet"),
  9599. weight: math.unit(30, "kg"),
  9600. name: "Front",
  9601. image: {
  9602. source: "./media/characters/vial/front.svg",
  9603. extra: 1365 / 1277,
  9604. bottom: 0.04
  9605. }
  9606. },
  9607. },
  9608. [
  9609. {
  9610. name: "Normal",
  9611. height: math.unit(5, "feet"),
  9612. default: true
  9613. },
  9614. ]
  9615. ))
  9616. characterMakers.push(() => makeCharacter(
  9617. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9618. {
  9619. side: {
  9620. height: math.unit(3.4, "meters"),
  9621. weight: math.unit(1000, "lb"),
  9622. name: "Side",
  9623. image: {
  9624. source: "./media/characters/rovoska/side.svg",
  9625. extra: 4403 / 1515
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Normal",
  9632. height: math.unit(3.4, "meters"),
  9633. default: true
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9639. {
  9640. front: {
  9641. height: math.unit(8, "feet"),
  9642. weight: math.unit(315, "lb"),
  9643. name: "Front",
  9644. image: {
  9645. source: "./media/characters/gunner-rotthbauer/front.svg"
  9646. }
  9647. },
  9648. back: {
  9649. height: math.unit(8, "feet"),
  9650. weight: math.unit(315, "lb"),
  9651. name: "Back",
  9652. image: {
  9653. source: "./media/characters/gunner-rotthbauer/back.svg"
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Micro",
  9660. height: math.unit(3.5, "inches")
  9661. },
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(8, "feet"),
  9665. default: true
  9666. },
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(250, "feet")
  9670. },
  9671. {
  9672. name: "Megamacro",
  9673. height: math.unit(1, "AU")
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9679. {
  9680. front: {
  9681. height: math.unit(5 + 5 / 12, "feet"),
  9682. weight: math.unit(140, "lb"),
  9683. name: "Front",
  9684. image: {
  9685. source: "./media/characters/allatia/front.svg",
  9686. extra: 1227 / 1180,
  9687. bottom: 0.027
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Normal",
  9694. height: math.unit(5 + 5 / 12, "feet")
  9695. },
  9696. {
  9697. name: "Macro",
  9698. height: math.unit(250, "feet"),
  9699. default: true
  9700. },
  9701. {
  9702. name: "Megamacro",
  9703. height: math.unit(8, "miles")
  9704. }
  9705. ]
  9706. ))
  9707. characterMakers.push(() => makeCharacter(
  9708. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9709. {
  9710. front: {
  9711. height: math.unit(6, "feet"),
  9712. weight: math.unit(120, "lb"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/tene/front.svg",
  9716. extra: 1728 / 1578,
  9717. bottom: 0.022
  9718. }
  9719. },
  9720. stomping: {
  9721. height: math.unit(2.025, "meters"),
  9722. weight: math.unit(120, "lb"),
  9723. name: "Stomping",
  9724. image: {
  9725. source: "./media/characters/tene/stomping.svg",
  9726. extra: 938 / 873,
  9727. bottom: 0.01
  9728. }
  9729. },
  9730. sitting: {
  9731. height: math.unit(1, "meter"),
  9732. weight: math.unit(120, "lb"),
  9733. name: "Sitting",
  9734. image: {
  9735. source: "./media/characters/tene/sitting.svg",
  9736. extra: 437 / 415,
  9737. bottom: 0.1
  9738. }
  9739. },
  9740. feral: {
  9741. height: math.unit(3.9, "feet"),
  9742. weight: math.unit(250, "lb"),
  9743. name: "Feral",
  9744. image: {
  9745. source: "./media/characters/tene/feral.svg",
  9746. extra: 717 / 458,
  9747. bottom: 0.179
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(6, "feet")
  9755. },
  9756. {
  9757. name: "Macro",
  9758. height: math.unit(300, "feet"),
  9759. default: true
  9760. },
  9761. {
  9762. name: "Megamacro",
  9763. height: math.unit(5, "miles")
  9764. },
  9765. ]
  9766. ))
  9767. characterMakers.push(() => makeCharacter(
  9768. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9769. {
  9770. side: {
  9771. height: math.unit(6, "feet"),
  9772. name: "Side",
  9773. image: {
  9774. source: "./media/characters/evander/side.svg",
  9775. extra: 877 / 477
  9776. }
  9777. },
  9778. },
  9779. [
  9780. {
  9781. name: "Normal",
  9782. height: math.unit(0.83, "meters"),
  9783. default: true
  9784. },
  9785. ]
  9786. ))
  9787. characterMakers.push(() => makeCharacter(
  9788. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9789. {
  9790. front: {
  9791. height: math.unit(12, "feet"),
  9792. weight: math.unit(1000, "lb"),
  9793. name: "Front",
  9794. image: {
  9795. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9796. extra: 1762 / 1611
  9797. }
  9798. },
  9799. back: {
  9800. height: math.unit(12, "feet"),
  9801. weight: math.unit(1000, "lb"),
  9802. name: "Back",
  9803. image: {
  9804. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9805. extra: 1762 / 1611
  9806. }
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(12, "feet"),
  9813. default: true
  9814. },
  9815. {
  9816. name: "Kaiju",
  9817. height: math.unit(150, "feet")
  9818. },
  9819. ]
  9820. ))
  9821. characterMakers.push(() => makeCharacter(
  9822. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9823. {
  9824. front: {
  9825. height: math.unit(6, "feet"),
  9826. weight: math.unit(150, "lb"),
  9827. name: "Front",
  9828. image: {
  9829. source: "./media/characters/zero-alurus/front.svg"
  9830. }
  9831. },
  9832. back: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(150, "lb"),
  9835. name: "Back",
  9836. image: {
  9837. source: "./media/characters/zero-alurus/back.svg"
  9838. }
  9839. },
  9840. },
  9841. [
  9842. {
  9843. name: "Normal",
  9844. height: math.unit(5 + 10 / 12, "feet")
  9845. },
  9846. {
  9847. name: "Macro",
  9848. height: math.unit(60, "feet"),
  9849. default: true
  9850. },
  9851. {
  9852. name: "Macro+",
  9853. height: math.unit(450, "feet")
  9854. },
  9855. ]
  9856. ))
  9857. characterMakers.push(() => makeCharacter(
  9858. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9859. {
  9860. front: {
  9861. height: math.unit(6, "feet"),
  9862. weight: math.unit(200, "lb"),
  9863. name: "Front",
  9864. image: {
  9865. source: "./media/characters/mega-shi/front.svg",
  9866. extra: 1279 / 1250,
  9867. bottom: 0.02
  9868. }
  9869. },
  9870. back: {
  9871. height: math.unit(6, "feet"),
  9872. weight: math.unit(200, "lb"),
  9873. name: "Back",
  9874. image: {
  9875. source: "./media/characters/mega-shi/back.svg",
  9876. extra: 1279 / 1250,
  9877. bottom: 0.02
  9878. }
  9879. },
  9880. },
  9881. [
  9882. {
  9883. name: "Micro",
  9884. height: math.unit(16 + 6 / 12, "feet")
  9885. },
  9886. {
  9887. name: "Third Dimension",
  9888. height: math.unit(40, "meters")
  9889. },
  9890. {
  9891. name: "Normal",
  9892. height: math.unit(660, "feet"),
  9893. default: true
  9894. },
  9895. {
  9896. name: "Megamacro",
  9897. height: math.unit(10, "miles")
  9898. },
  9899. {
  9900. name: "Planetary Launch",
  9901. height: math.unit(500, "miles")
  9902. },
  9903. {
  9904. name: "Interstellar",
  9905. height: math.unit(1e9, "miles")
  9906. },
  9907. {
  9908. name: "Leaving the Universe",
  9909. height: math.unit(1, "gigaparsec")
  9910. },
  9911. {
  9912. name: "Travelling Universes",
  9913. height: math.unit(30e15, "parsecs")
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9919. {
  9920. front: {
  9921. height: math.unit(6, "feet"),
  9922. weight: math.unit(150, "lb"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/odyssey/front.svg",
  9926. extra: 1782 / 1582,
  9927. bottom: 0.01
  9928. }
  9929. },
  9930. side: {
  9931. height: math.unit(5.7, "feet"),
  9932. weight: math.unit(140, "lb"),
  9933. name: "Side",
  9934. image: {
  9935. source: "./media/characters/odyssey/side.svg",
  9936. extra: 6462 / 5700
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Normal",
  9943. height: math.unit(5 + 4 / 12, "feet")
  9944. },
  9945. {
  9946. name: "Macro",
  9947. height: math.unit(1, "km")
  9948. },
  9949. {
  9950. name: "Megamacro",
  9951. height: math.unit(3000, "km")
  9952. },
  9953. {
  9954. name: "Gigamacro",
  9955. height: math.unit(1, "AU"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Omniversal",
  9960. height: math.unit(100e14, "lightyears")
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(6, "feet"),
  9969. weight: math.unit(300, "lb"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/mekuto/front.svg",
  9973. extra: 921 / 832,
  9974. bottom: 0.03
  9975. }
  9976. },
  9977. hand: {
  9978. height: math.unit(6 / 10.24, "feet"),
  9979. name: "Hand",
  9980. image: {
  9981. source: "./media/characters/mekuto/hand.svg"
  9982. }
  9983. },
  9984. foot: {
  9985. height: math.unit(6 / 5.05, "feet"),
  9986. name: "Foot",
  9987. image: {
  9988. source: "./media/characters/mekuto/foot.svg"
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Minimicro",
  9995. height: math.unit(0.2, "inches")
  9996. },
  9997. {
  9998. name: "Micro",
  9999. height: math.unit(1.5, "inches")
  10000. },
  10001. {
  10002. name: "Normal",
  10003. height: math.unit(5 + 11 / 12, "feet"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Minimacro",
  10008. height: math.unit(17 + 9 / 12, "feet")
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(177.5, "feet")
  10013. },
  10014. {
  10015. name: "Megamacro",
  10016. height: math.unit(152, "miles")
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10022. {
  10023. front: {
  10024. height: math.unit(6.5, "inches"),
  10025. weight: math.unit(13, "oz"),
  10026. name: "Front",
  10027. image: {
  10028. source: "./media/characters/dafydd-tomos/front.svg",
  10029. extra: 2990 / 2603,
  10030. bottom: 0.03
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Micro",
  10037. height: math.unit(6.5, "inches"),
  10038. default: true
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10044. {
  10045. front: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(150, "lb"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/splinter/front.svg",
  10051. extra: 2990 / 2882,
  10052. bottom: 0.04
  10053. }
  10054. },
  10055. back: {
  10056. height: math.unit(6, "feet"),
  10057. weight: math.unit(150, "lb"),
  10058. name: "Back",
  10059. image: {
  10060. source: "./media/characters/splinter/back.svg",
  10061. extra: 2990 / 2882,
  10062. bottom: 0.04
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(6, "feet")
  10070. },
  10071. {
  10072. name: "Macro",
  10073. height: math.unit(230, "meters"),
  10074. default: true
  10075. },
  10076. ]
  10077. ))
  10078. characterMakers.push(() => makeCharacter(
  10079. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10080. {
  10081. front: {
  10082. height: math.unit(4 + 10 / 12, "feet"),
  10083. weight: math.unit(480, "lb"),
  10084. name: "Front",
  10085. image: {
  10086. source: "./media/characters/snow-gabumon/front.svg",
  10087. extra: 1140 / 963,
  10088. bottom: 0.058
  10089. }
  10090. },
  10091. back: {
  10092. height: math.unit(4 + 10 / 12, "feet"),
  10093. weight: math.unit(480, "lb"),
  10094. name: "Back",
  10095. image: {
  10096. source: "./media/characters/snow-gabumon/back.svg",
  10097. extra: 1115 / 962,
  10098. bottom: 0.041
  10099. }
  10100. },
  10101. frontUndresed: {
  10102. height: math.unit(4 + 10 / 12, "feet"),
  10103. weight: math.unit(480, "lb"),
  10104. name: "Front (Undressed)",
  10105. image: {
  10106. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10107. extra: 1061 / 960,
  10108. bottom: 0.045
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Micro",
  10115. height: math.unit(1, "inch")
  10116. },
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(4 + 10 / 12, "feet"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Macro",
  10124. height: math.unit(200, "feet")
  10125. },
  10126. {
  10127. name: "Megamacro",
  10128. height: math.unit(120, "miles")
  10129. },
  10130. {
  10131. name: "Gigamacro",
  10132. height: math.unit(9800, "miles")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(1.7, "meters"),
  10141. weight: math.unit(140, "lb"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/moody/front.svg",
  10145. extra: 3226 / 3007,
  10146. bottom: 0.087
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Micro",
  10153. height: math.unit(1, "mm")
  10154. },
  10155. {
  10156. name: "Normal",
  10157. height: math.unit(1.7, "meters"),
  10158. default: true
  10159. },
  10160. {
  10161. name: "Macro",
  10162. height: math.unit(80, "meters")
  10163. },
  10164. {
  10165. name: "Macro+",
  10166. height: math.unit(500, "meters")
  10167. },
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10172. {
  10173. front: {
  10174. height: math.unit(6, "feet"),
  10175. weight: math.unit(150, "lb"),
  10176. name: "Front",
  10177. image: {
  10178. source: "./media/characters/zyas/front.svg",
  10179. extra: 1180 / 1120,
  10180. bottom: 0.045
  10181. }
  10182. },
  10183. },
  10184. [
  10185. {
  10186. name: "Normal",
  10187. height: math.unit(10, "feet"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "Macro",
  10192. height: math.unit(500, "feet")
  10193. },
  10194. {
  10195. name: "Megamacro",
  10196. height: math.unit(5, "miles")
  10197. },
  10198. {
  10199. name: "Teramacro",
  10200. height: math.unit(150000, "miles")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(6, "feet"),
  10209. weight: math.unit(150, "lb"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/cuon/front.svg",
  10213. extra: 1390 / 1320,
  10214. bottom: 0.008
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Micro",
  10221. height: math.unit(3, "inches")
  10222. },
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(18 + 9 / 12, "feet"),
  10226. default: true
  10227. },
  10228. {
  10229. name: "Macro",
  10230. height: math.unit(360, "feet")
  10231. },
  10232. {
  10233. name: "Megamacro",
  10234. height: math.unit(360, "miles")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(2.4, "meters"),
  10243. weight: math.unit(70, "kg"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/nyanuxk/front.svg",
  10247. extra: 1172 / 1084,
  10248. bottom: 0.065
  10249. }
  10250. },
  10251. side: {
  10252. height: math.unit(2.4, "meters"),
  10253. weight: math.unit(70, "kg"),
  10254. name: "Side",
  10255. image: {
  10256. source: "./media/characters/nyanuxk/side.svg",
  10257. extra: 1190 / 1132,
  10258. bottom: 0.007
  10259. }
  10260. },
  10261. back: {
  10262. height: math.unit(2.4, "meters"),
  10263. weight: math.unit(70, "kg"),
  10264. name: "Back",
  10265. image: {
  10266. source: "./media/characters/nyanuxk/back.svg",
  10267. extra: 1200 / 1141,
  10268. bottom: 0.015
  10269. }
  10270. },
  10271. foot: {
  10272. height: math.unit(0.52, "meters"),
  10273. name: "Foot",
  10274. image: {
  10275. source: "./media/characters/nyanuxk/foot.svg"
  10276. }
  10277. },
  10278. },
  10279. [
  10280. {
  10281. name: "Micro",
  10282. height: math.unit(2, "cm")
  10283. },
  10284. {
  10285. name: "Normal",
  10286. height: math.unit(2.4, "meters"),
  10287. default: true
  10288. },
  10289. {
  10290. name: "Smaller Macro",
  10291. height: math.unit(120, "meters")
  10292. },
  10293. {
  10294. name: "Bigger Macro",
  10295. height: math.unit(1.2, "km")
  10296. },
  10297. {
  10298. name: "Megamacro",
  10299. height: math.unit(15, "kilometers")
  10300. },
  10301. {
  10302. name: "Gigamacro",
  10303. height: math.unit(2000, "km")
  10304. },
  10305. {
  10306. name: "Teramacro",
  10307. height: math.unit(500000, "km")
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10313. {
  10314. side: {
  10315. height: math.unit(6, "feet"),
  10316. name: "Side",
  10317. image: {
  10318. source: "./media/characters/ailbhe/side.svg",
  10319. extra: 757 / 464,
  10320. bottom: 0.041
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(1.07, "meters"),
  10328. default: true
  10329. },
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10334. {
  10335. front: {
  10336. height: math.unit(6, "feet"),
  10337. weight: math.unit(120, "kg"),
  10338. name: "Front",
  10339. image: {
  10340. source: "./media/characters/zevulfius/front.svg",
  10341. extra: 965 / 903
  10342. }
  10343. },
  10344. side: {
  10345. height: math.unit(6, "feet"),
  10346. weight: math.unit(120, "kg"),
  10347. name: "Side",
  10348. image: {
  10349. source: "./media/characters/zevulfius/side.svg",
  10350. extra: 939 / 900
  10351. }
  10352. },
  10353. back: {
  10354. height: math.unit(6, "feet"),
  10355. weight: math.unit(120, "kg"),
  10356. name: "Back",
  10357. image: {
  10358. source: "./media/characters/zevulfius/back.svg",
  10359. extra: 918 / 854,
  10360. bottom: 0.005
  10361. }
  10362. },
  10363. foot: {
  10364. height: math.unit(6 / 3.72, "feet"),
  10365. name: "Foot",
  10366. image: {
  10367. source: "./media/characters/zevulfius/foot.svg"
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Macro",
  10374. height: math.unit(750, "meters")
  10375. },
  10376. {
  10377. name: "Megamacro",
  10378. height: math.unit(20, "km"),
  10379. default: true
  10380. },
  10381. {
  10382. name: "Gigamacro",
  10383. height: math.unit(2000, "km")
  10384. },
  10385. {
  10386. name: "Teramacro",
  10387. height: math.unit(250000, "km")
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10393. {
  10394. front: {
  10395. height: math.unit(100, "feet"),
  10396. weight: math.unit(350, "kg"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/rikes/front.svg",
  10400. extra: 1565 / 1483,
  10401. bottom: 0.017
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Macro",
  10408. height: math.unit(100, "feet"),
  10409. default: true
  10410. },
  10411. ]
  10412. ))
  10413. characterMakers.push(() => makeCharacter(
  10414. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10415. {
  10416. anthro: {
  10417. height: math.unit(8, "feet"),
  10418. weight: math.unit(120, "kg"),
  10419. name: "Anthro",
  10420. image: {
  10421. source: "./media/characters/adam-silver-mane/anthro.svg",
  10422. extra: 5743 / 5339,
  10423. bottom: 0.07
  10424. }
  10425. },
  10426. taur: {
  10427. height: math.unit(16, "feet"),
  10428. weight: math.unit(1500, "kg"),
  10429. name: "Taur",
  10430. image: {
  10431. source: "./media/characters/adam-silver-mane/taur.svg",
  10432. extra: 1713 / 1571,
  10433. bottom: 0.01
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(8, "feet")
  10441. },
  10442. {
  10443. name: "Minimacro",
  10444. height: math.unit(80, "feet")
  10445. },
  10446. {
  10447. name: "Macro",
  10448. height: math.unit(800, "feet"),
  10449. default: true
  10450. },
  10451. {
  10452. name: "Megamacro",
  10453. height: math.unit(8000, "feet")
  10454. },
  10455. {
  10456. name: "Gigamacro",
  10457. height: math.unit(800, "miles")
  10458. },
  10459. {
  10460. name: "Teramacro",
  10461. height: math.unit(80000, "miles")
  10462. },
  10463. {
  10464. name: "Celestial",
  10465. height: math.unit(8e6, "miles")
  10466. },
  10467. {
  10468. name: "Star Dragon",
  10469. height: math.unit(800000, "parsecs")
  10470. },
  10471. {
  10472. name: "Godly",
  10473. height: math.unit(800, "teraparsecs")
  10474. },
  10475. ]
  10476. ))
  10477. characterMakers.push(() => makeCharacter(
  10478. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10479. {
  10480. front: {
  10481. height: math.unit(6, "feet"),
  10482. weight: math.unit(150, "lb"),
  10483. name: "Front",
  10484. image: {
  10485. source: "./media/characters/ky'owin/front.svg",
  10486. extra: 3888 / 3068,
  10487. bottom: 0.015
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Normal",
  10494. height: math.unit(6 + 8 / 12, "feet")
  10495. },
  10496. {
  10497. name: "Large",
  10498. height: math.unit(68, "feet")
  10499. },
  10500. {
  10501. name: "Macro",
  10502. height: math.unit(132, "feet")
  10503. },
  10504. {
  10505. name: "Macro+",
  10506. height: math.unit(340, "feet")
  10507. },
  10508. {
  10509. name: "Macro++",
  10510. height: math.unit(680, "feet"),
  10511. default: true
  10512. },
  10513. {
  10514. name: "Megamacro",
  10515. height: math.unit(1, "mile")
  10516. },
  10517. {
  10518. name: "Megamacro+",
  10519. height: math.unit(10, "miles")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10525. {
  10526. front: {
  10527. height: math.unit(4, "feet"),
  10528. weight: math.unit(50, "lb"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/mal/front.svg",
  10532. extra: 785 / 724,
  10533. bottom: 0.07
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Micro",
  10540. height: math.unit(4, "inches")
  10541. },
  10542. {
  10543. name: "Normal",
  10544. height: math.unit(4, "feet"),
  10545. default: true
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(200, "feet")
  10550. },
  10551. ]
  10552. ))
  10553. characterMakers.push(() => makeCharacter(
  10554. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10555. {
  10556. front: {
  10557. height: math.unit(6, "feet"),
  10558. weight: math.unit(150, "lb"),
  10559. name: "Front",
  10560. image: {
  10561. source: "./media/characters/jordan-deware/front.svg",
  10562. extra: 1191 / 1012
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Nano",
  10569. height: math.unit(0.01, "mm")
  10570. },
  10571. {
  10572. name: "Minimicro",
  10573. height: math.unit(1, "mm")
  10574. },
  10575. {
  10576. name: "Micro",
  10577. height: math.unit(0.5, "inches")
  10578. },
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(4, "feet"),
  10582. default: true
  10583. },
  10584. {
  10585. name: "Minimacro",
  10586. height: math.unit(40, "meters")
  10587. },
  10588. {
  10589. name: "Small Macro",
  10590. height: math.unit(400, "meters")
  10591. },
  10592. {
  10593. name: "Macro",
  10594. height: math.unit(4, "miles")
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(40, "miles")
  10599. },
  10600. {
  10601. name: "Megamacro+",
  10602. height: math.unit(400, "miles")
  10603. },
  10604. {
  10605. name: "Gigamacro",
  10606. height: math.unit(400000, "miles")
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10612. {
  10613. side: {
  10614. height: math.unit(6, "feet"),
  10615. weight: math.unit(150, "lb"),
  10616. name: "Side",
  10617. image: {
  10618. source: "./media/characters/kimiko/side.svg",
  10619. extra: 600 / 358
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Normal",
  10626. height: math.unit(15, "feet"),
  10627. default: true
  10628. },
  10629. {
  10630. name: "Macro",
  10631. height: math.unit(220, "feet")
  10632. },
  10633. {
  10634. name: "Macro+",
  10635. height: math.unit(1450, "feet")
  10636. },
  10637. {
  10638. name: "Megamacro",
  10639. height: math.unit(11500, "feet")
  10640. },
  10641. {
  10642. name: "Gigamacro",
  10643. height: math.unit(9500, "miles")
  10644. },
  10645. {
  10646. name: "Teramacro",
  10647. height: math.unit(2208005005, "miles")
  10648. },
  10649. {
  10650. name: "Examacro",
  10651. height: math.unit(2750, "parsecs")
  10652. },
  10653. {
  10654. name: "Zettamacro",
  10655. height: math.unit(101500, "parsecs")
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(70, "kg"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/andrew-sleepy/front.svg"
  10668. }
  10669. },
  10670. side: {
  10671. height: math.unit(6, "feet"),
  10672. weight: math.unit(70, "kg"),
  10673. name: "Side",
  10674. image: {
  10675. source: "./media/characters/andrew-sleepy/side.svg"
  10676. }
  10677. },
  10678. },
  10679. [
  10680. {
  10681. name: "Micro",
  10682. height: math.unit(1, "mm"),
  10683. default: true
  10684. },
  10685. ]
  10686. ))
  10687. characterMakers.push(() => makeCharacter(
  10688. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10689. {
  10690. front: {
  10691. height: math.unit(6, "feet"),
  10692. weight: math.unit(150, "lb"),
  10693. name: "Front",
  10694. image: {
  10695. source: "./media/characters/judio/front.svg",
  10696. extra: 1258 / 1110
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(5 + 6 / 12, "feet")
  10704. },
  10705. {
  10706. name: "Macro",
  10707. height: math.unit(1000, "feet"),
  10708. default: true
  10709. },
  10710. {
  10711. name: "Megamacro",
  10712. height: math.unit(10, "miles")
  10713. },
  10714. ]
  10715. ))
  10716. characterMakers.push(() => makeCharacter(
  10717. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10718. {
  10719. front: {
  10720. height: math.unit(6, "feet"),
  10721. weight: math.unit(68, "kg"),
  10722. name: "Front",
  10723. image: {
  10724. source: "./media/characters/nomaxice/front.svg",
  10725. extra: 1498 / 1073,
  10726. bottom: 0.075
  10727. }
  10728. },
  10729. foot: {
  10730. height: math.unit(1.1, "feet"),
  10731. name: "Foot",
  10732. image: {
  10733. source: "./media/characters/nomaxice/foot.svg"
  10734. }
  10735. },
  10736. },
  10737. [
  10738. {
  10739. name: "Micro",
  10740. height: math.unit(8, "cm")
  10741. },
  10742. {
  10743. name: "Norm",
  10744. height: math.unit(1.82, "m")
  10745. },
  10746. {
  10747. name: "Norm+",
  10748. height: math.unit(8.8, "feet")
  10749. },
  10750. {
  10751. name: "Big",
  10752. height: math.unit(8, "meters"),
  10753. default: true
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(18, "meters")
  10758. },
  10759. {
  10760. name: "Macro+",
  10761. height: math.unit(88, "meters")
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(12, "feet"),
  10770. weight: math.unit(1.5, "tons"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/dydros/front.svg",
  10774. extra: 863 / 800,
  10775. bottom: 0.015
  10776. }
  10777. },
  10778. back: {
  10779. height: math.unit(12, "feet"),
  10780. weight: math.unit(1.5, "tons"),
  10781. name: "Back",
  10782. image: {
  10783. source: "./media/characters/dydros/back.svg",
  10784. extra: 900 / 843,
  10785. bottom: 0.005
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(12, "feet"),
  10793. default: true
  10794. },
  10795. ]
  10796. ))
  10797. characterMakers.push(() => makeCharacter(
  10798. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10799. {
  10800. front: {
  10801. height: math.unit(6, "feet"),
  10802. weight: math.unit(100, "kg"),
  10803. name: "Front",
  10804. image: {
  10805. source: "./media/characters/riggi/front.svg",
  10806. extra: 5787 / 5303
  10807. }
  10808. },
  10809. hyper: {
  10810. height: math.unit(6 * 5 / 3, "feet"),
  10811. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10812. name: "Hyper",
  10813. image: {
  10814. source: "./media/characters/riggi/hyper.svg",
  10815. extra: 3595 / 3485
  10816. }
  10817. },
  10818. },
  10819. [
  10820. {
  10821. name: "Small Macro",
  10822. height: math.unit(50, "feet")
  10823. },
  10824. {
  10825. name: "Default",
  10826. height: math.unit(200, "feet"),
  10827. default: true
  10828. },
  10829. {
  10830. name: "Loom",
  10831. height: math.unit(10000, "feet")
  10832. },
  10833. {
  10834. name: "Cruising Altitude",
  10835. height: math.unit(30000, "feet")
  10836. },
  10837. {
  10838. name: "Megamacro",
  10839. height: math.unit(100, "miles")
  10840. },
  10841. {
  10842. name: "Continent Sized",
  10843. height: math.unit(2800, "miles")
  10844. },
  10845. {
  10846. name: "Earth Sized",
  10847. height: math.unit(8000, "miles")
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(6, "feet"),
  10856. weight: math.unit(250, "lb"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/alexi/front.svg",
  10860. extra: 3483 / 3291,
  10861. bottom: 0.04
  10862. }
  10863. },
  10864. back: {
  10865. height: math.unit(6, "feet"),
  10866. weight: math.unit(250, "lb"),
  10867. name: "Back",
  10868. image: {
  10869. source: "./media/characters/alexi/back.svg",
  10870. extra: 3533 / 3356,
  10871. bottom: 0.021
  10872. }
  10873. },
  10874. frontTransforming: {
  10875. height: math.unit(8.58, "feet"),
  10876. weight: math.unit(1300, "lb"),
  10877. name: "Transforming",
  10878. image: {
  10879. source: "./media/characters/alexi/front-transforming.svg",
  10880. extra: 437 / 409,
  10881. bottom: 19 / 458.66
  10882. }
  10883. },
  10884. frontTransformed: {
  10885. height: math.unit(12.5, "feet"),
  10886. weight: math.unit(4000, "lb"),
  10887. name: "Transformed",
  10888. image: {
  10889. source: "./media/characters/alexi/front-transformed.svg",
  10890. extra: 639 / 614,
  10891. bottom: 30.55 / 671
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(14, "feet"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Minimacro",
  10903. height: math.unit(30, "meters")
  10904. },
  10905. {
  10906. name: "Macro",
  10907. height: math.unit(500, "meters")
  10908. },
  10909. {
  10910. name: "Megamacro",
  10911. height: math.unit(9000, "km")
  10912. },
  10913. {
  10914. name: "Teramacro",
  10915. height: math.unit(384000, "km")
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10921. {
  10922. front: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(150, "lb"),
  10925. name: "Front",
  10926. image: {
  10927. source: "./media/characters/kayroo/front.svg",
  10928. extra: 1153 / 1038,
  10929. bottom: 0.06
  10930. }
  10931. },
  10932. foot: {
  10933. height: math.unit(6, "feet"),
  10934. weight: math.unit(150, "lb"),
  10935. name: "Foot",
  10936. image: {
  10937. source: "./media/characters/kayroo/foot.svg"
  10938. }
  10939. },
  10940. },
  10941. [
  10942. {
  10943. name: "Normal",
  10944. height: math.unit(8, "feet"),
  10945. default: true
  10946. },
  10947. {
  10948. name: "Minimacro",
  10949. height: math.unit(250, "feet")
  10950. },
  10951. {
  10952. name: "Macro",
  10953. height: math.unit(2800, "feet")
  10954. },
  10955. {
  10956. name: "Megamacro",
  10957. height: math.unit(5200, "feet")
  10958. },
  10959. {
  10960. name: "Gigamacro",
  10961. height: math.unit(27000, "feet")
  10962. },
  10963. {
  10964. name: "Omega",
  10965. height: math.unit(45000, "feet")
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10971. {
  10972. front: {
  10973. height: math.unit(18, "feet"),
  10974. weight: math.unit(5800, "lb"),
  10975. name: "Front",
  10976. image: {
  10977. source: "./media/characters/rhys/front.svg",
  10978. extra: 3386 / 3090,
  10979. bottom: 0.07
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Normal",
  10986. height: math.unit(18, "feet"),
  10987. default: true
  10988. },
  10989. {
  10990. name: "Working Size",
  10991. height: math.unit(200, "feet")
  10992. },
  10993. {
  10994. name: "Demolition Size",
  10995. height: math.unit(2000, "feet")
  10996. },
  10997. {
  10998. name: "Maximum Licensed Size",
  10999. height: math.unit(5, "miles")
  11000. },
  11001. {
  11002. name: "Maximum Observed Size",
  11003. height: math.unit(10, "yottameters")
  11004. },
  11005. ]
  11006. ))
  11007. characterMakers.push(() => makeCharacter(
  11008. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11009. {
  11010. front: {
  11011. height: math.unit(6, "feet"),
  11012. weight: math.unit(250, "lb"),
  11013. name: "Front",
  11014. image: {
  11015. source: "./media/characters/toto/front.svg",
  11016. extra: 527 / 479,
  11017. bottom: 0.05
  11018. }
  11019. },
  11020. },
  11021. [
  11022. {
  11023. name: "Micro",
  11024. height: math.unit(3, "feet")
  11025. },
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(10, "feet")
  11029. },
  11030. {
  11031. name: "Macro",
  11032. height: math.unit(150, "feet"),
  11033. default: true
  11034. },
  11035. {
  11036. name: "Megamacro",
  11037. height: math.unit(1200, "feet")
  11038. },
  11039. ]
  11040. ))
  11041. characterMakers.push(() => makeCharacter(
  11042. { name: "King", species: ["lion"], tags: ["anthro"] },
  11043. {
  11044. back: {
  11045. height: math.unit(6, "feet"),
  11046. weight: math.unit(150, "lb"),
  11047. name: "Back",
  11048. image: {
  11049. source: "./media/characters/king/back.svg"
  11050. }
  11051. },
  11052. },
  11053. [
  11054. {
  11055. name: "Micro",
  11056. height: math.unit(2, "inches")
  11057. },
  11058. {
  11059. name: "Normal",
  11060. height: math.unit(8, "feet")
  11061. },
  11062. {
  11063. name: "Macro",
  11064. height: math.unit(200, "feet"),
  11065. default: true
  11066. },
  11067. {
  11068. name: "Megamacro",
  11069. height: math.unit(50, "miles")
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11075. {
  11076. anthro: {
  11077. height: math.unit(6 + 5 / 12, "feet"),
  11078. weight: math.unit(280, "lb"),
  11079. name: "Anthro",
  11080. image: {
  11081. source: "./media/characters/cordite/anthro.svg",
  11082. extra: 1986 / 1905,
  11083. bottom: 0.025
  11084. }
  11085. },
  11086. feral: {
  11087. height: math.unit(2, "feet"),
  11088. weight: math.unit(90, "lb"),
  11089. name: "Feral",
  11090. image: {
  11091. source: "./media/characters/cordite/feral.svg",
  11092. extra: 1260 / 755,
  11093. bottom: 0.05
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Normal",
  11100. height: math.unit(6 + 5 / 12, "feet"),
  11101. default: true
  11102. },
  11103. ]
  11104. ))
  11105. characterMakers.push(() => makeCharacter(
  11106. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11107. {
  11108. front: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(150, "lb"),
  11111. name: "Front",
  11112. image: {
  11113. source: "./media/characters/pianostrong/front.svg",
  11114. extra: 6577 / 6254,
  11115. bottom: 0.02
  11116. }
  11117. },
  11118. side: {
  11119. height: math.unit(6, "feet"),
  11120. weight: math.unit(150, "lb"),
  11121. name: "Side",
  11122. image: {
  11123. source: "./media/characters/pianostrong/side.svg",
  11124. extra: 6106 / 5730
  11125. }
  11126. },
  11127. back: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(150, "lb"),
  11130. name: "Back",
  11131. image: {
  11132. source: "./media/characters/pianostrong/back.svg",
  11133. extra: 6085 / 5733,
  11134. bottom: 0.01
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Macro",
  11141. height: math.unit(100, "feet")
  11142. },
  11143. {
  11144. name: "Macro+",
  11145. height: math.unit(300, "feet"),
  11146. default: true
  11147. },
  11148. {
  11149. name: "Macro++",
  11150. height: math.unit(1000, "feet")
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11156. {
  11157. front: {
  11158. height: math.unit(6, "feet"),
  11159. weight: math.unit(150, "lb"),
  11160. name: "Front",
  11161. image: {
  11162. source: "./media/characters/kona/front.svg",
  11163. extra: 2960 / 2629,
  11164. bottom: 0.005
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Normal",
  11171. height: math.unit(11 + 8 / 12, "feet")
  11172. },
  11173. {
  11174. name: "Macro",
  11175. height: math.unit(850, "feet"),
  11176. default: true
  11177. },
  11178. {
  11179. name: "Macro+",
  11180. height: math.unit(1.5, "km"),
  11181. default: true
  11182. },
  11183. {
  11184. name: "Megamacro",
  11185. height: math.unit(80, "miles")
  11186. },
  11187. {
  11188. name: "Gigamacro",
  11189. height: math.unit(3500, "miles")
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11195. {
  11196. side: {
  11197. height: math.unit(1.9, "meters"),
  11198. weight: math.unit(326, "kg"),
  11199. name: "Side",
  11200. image: {
  11201. source: "./media/characters/levi/side.svg",
  11202. extra: 1704 / 1334,
  11203. bottom: 0.02
  11204. }
  11205. },
  11206. },
  11207. [
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(1.9, "meters"),
  11211. default: true
  11212. },
  11213. {
  11214. name: "Macro",
  11215. height: math.unit(20, "meters")
  11216. },
  11217. {
  11218. name: "Macro+",
  11219. height: math.unit(200, "meters")
  11220. },
  11221. {
  11222. name: "Megamacro",
  11223. height: math.unit(2, "km")
  11224. },
  11225. {
  11226. name: "Megamacro+",
  11227. height: math.unit(20, "km")
  11228. },
  11229. {
  11230. name: "Gigamacro",
  11231. height: math.unit(2500, "km")
  11232. },
  11233. {
  11234. name: "Gigamacro+",
  11235. height: math.unit(120000, "km")
  11236. },
  11237. {
  11238. name: "Teramacro",
  11239. height: math.unit(7.77e6, "km")
  11240. },
  11241. ]
  11242. ))
  11243. characterMakers.push(() => makeCharacter(
  11244. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11245. {
  11246. front: {
  11247. height: math.unit(6 + 4/12, "feet"),
  11248. weight: math.unit(190, "lb"),
  11249. name: "Front",
  11250. image: {
  11251. source: "./media/characters/bmc/front.svg",
  11252. extra: 1626/1472,
  11253. bottom: 79/1705
  11254. }
  11255. },
  11256. back: {
  11257. height: math.unit(6 + 4/12, "feet"),
  11258. weight: math.unit(190, "lb"),
  11259. name: "Back",
  11260. image: {
  11261. source: "./media/characters/bmc/back.svg",
  11262. extra: 1640/1479,
  11263. bottom: 45/1685
  11264. }
  11265. },
  11266. frontArmor: {
  11267. height: math.unit(6 + 4/12, "feet"),
  11268. weight: math.unit(190, "lb"),
  11269. name: "Front-armor",
  11270. image: {
  11271. source: "./media/characters/bmc/front-armor.svg",
  11272. extra: 1538/1468,
  11273. bottom: 79/1617
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Human-sized",
  11280. height: math.unit(6 + 4 / 12, "feet")
  11281. },
  11282. {
  11283. name: "Interactive Size",
  11284. height: math.unit(25, "feet")
  11285. },
  11286. {
  11287. name: "Small",
  11288. height: math.unit(250, "feet")
  11289. },
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(1250, "feet"),
  11293. default: true
  11294. },
  11295. {
  11296. name: "Good Day",
  11297. height: math.unit(88, "miles")
  11298. },
  11299. {
  11300. name: "Largest Measured Size",
  11301. height: math.unit(105.960, "galaxies")
  11302. },
  11303. ]
  11304. ))
  11305. characterMakers.push(() => makeCharacter(
  11306. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11307. {
  11308. front: {
  11309. height: math.unit(20, "feet"),
  11310. weight: math.unit(2016, "kg"),
  11311. name: "Front",
  11312. image: {
  11313. source: "./media/characters/sven-the-kaiju/front.svg",
  11314. extra: 1277/1250,
  11315. bottom: 35/1312
  11316. }
  11317. },
  11318. mouth: {
  11319. height: math.unit(1.85, "feet"),
  11320. name: "Mouth",
  11321. image: {
  11322. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Fairy",
  11329. height: math.unit(6, "inches")
  11330. },
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(20, "feet"),
  11334. default: true
  11335. },
  11336. {
  11337. name: "Rampage",
  11338. height: math.unit(200, "feet")
  11339. },
  11340. {
  11341. name: "Archfey Forest Guardian",
  11342. height: math.unit(1, "mile")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(4, "meters"),
  11351. weight: math.unit(2, "tons"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/marik/front.svg",
  11355. extra: 1057 / 1003,
  11356. bottom: 0.08
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Normal",
  11363. height: math.unit(4, "meters"),
  11364. default: true
  11365. },
  11366. {
  11367. name: "Macro",
  11368. height: math.unit(20, "meters")
  11369. },
  11370. {
  11371. name: "Megamacro",
  11372. height: math.unit(50, "km")
  11373. },
  11374. {
  11375. name: "Gigamacro",
  11376. height: math.unit(100, "km")
  11377. },
  11378. {
  11379. name: "Alpha Macro",
  11380. height: math.unit(7.88e7, "yottameters")
  11381. },
  11382. ]
  11383. ))
  11384. characterMakers.push(() => makeCharacter(
  11385. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11386. {
  11387. front: {
  11388. height: math.unit(6, "feet"),
  11389. weight: math.unit(110, "lb"),
  11390. name: "Front",
  11391. image: {
  11392. source: "./media/characters/mel/front.svg",
  11393. extra: 736 / 617,
  11394. bottom: 0.017
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Pico",
  11401. height: math.unit(3, "pm")
  11402. },
  11403. {
  11404. name: "Nano",
  11405. height: math.unit(3, "nm")
  11406. },
  11407. {
  11408. name: "Micro",
  11409. height: math.unit(0.3, "mm"),
  11410. default: true
  11411. },
  11412. {
  11413. name: "Micro+",
  11414. height: math.unit(3, "mm")
  11415. },
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(5 + 10.5 / 12, "feet")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11424. {
  11425. kaiju: {
  11426. height: math.unit(1.75, "meters"),
  11427. weight: math.unit(55, "kg"),
  11428. name: "Kaiju",
  11429. image: {
  11430. source: "./media/characters/lykonous/kaiju.svg",
  11431. extra: 1055 / 946,
  11432. bottom: 0.135
  11433. }
  11434. },
  11435. },
  11436. [
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(2.5, "meters"),
  11440. default: true
  11441. },
  11442. {
  11443. name: "Kaiju Dragon",
  11444. height: math.unit(60, "meters")
  11445. },
  11446. {
  11447. name: "Mega Kaiju",
  11448. height: math.unit(120, "km")
  11449. },
  11450. {
  11451. name: "Giga Kaiju",
  11452. height: math.unit(200, "megameters")
  11453. },
  11454. {
  11455. name: "Terra Kaiju",
  11456. height: math.unit(400, "gigameters")
  11457. },
  11458. {
  11459. name: "Kaiju Dragon God",
  11460. height: math.unit(13000, "exaparsecs")
  11461. },
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11466. {
  11467. front: {
  11468. height: math.unit(6, "feet"),
  11469. weight: math.unit(150, "lb"),
  11470. name: "Front",
  11471. image: {
  11472. source: "./media/characters/blü/front.svg",
  11473. extra: 1883 / 1564,
  11474. bottom: 0.031
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(13, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Big Boi",
  11486. height: math.unit(150, "meters")
  11487. },
  11488. {
  11489. name: "Mini Stomper",
  11490. height: math.unit(300, "meters")
  11491. },
  11492. {
  11493. name: "Macro",
  11494. height: math.unit(1000, "meters")
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(11000, "meters")
  11499. },
  11500. {
  11501. name: "Gigamacro",
  11502. height: math.unit(11000, "km")
  11503. },
  11504. {
  11505. name: "Teramacro",
  11506. height: math.unit(420000, "km")
  11507. },
  11508. {
  11509. name: "Examacro",
  11510. height: math.unit(120, "parsecs")
  11511. },
  11512. {
  11513. name: "God Tho",
  11514. height: math.unit(98000000000, "parsecs")
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11520. {
  11521. taurFront: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(200, "lb"),
  11524. name: "Taur (Front)",
  11525. image: {
  11526. source: "./media/characters/scales/taur-front.svg",
  11527. extra: 1,
  11528. bottom: 0.05
  11529. }
  11530. },
  11531. taurBack: {
  11532. height: math.unit(6, "feet"),
  11533. weight: math.unit(200, "lb"),
  11534. name: "Taur (Back)",
  11535. image: {
  11536. source: "./media/characters/scales/taur-back.svg",
  11537. extra: 1,
  11538. bottom: 0.08
  11539. }
  11540. },
  11541. anthro: {
  11542. height: math.unit(6 * 7 / 12, "feet"),
  11543. weight: math.unit(100, "lb"),
  11544. name: "Anthro",
  11545. image: {
  11546. source: "./media/characters/scales/anthro.svg",
  11547. extra: 1,
  11548. bottom: 0.06
  11549. }
  11550. },
  11551. },
  11552. [
  11553. {
  11554. name: "Normal",
  11555. height: math.unit(12, "feet"),
  11556. default: true
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11562. {
  11563. front: {
  11564. height: math.unit(6, "feet"),
  11565. weight: math.unit(150, "lb"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/koragos/front.svg",
  11569. extra: 841 / 794,
  11570. bottom: 0.035
  11571. }
  11572. },
  11573. back: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(150, "lb"),
  11576. name: "Back",
  11577. image: {
  11578. source: "./media/characters/koragos/back.svg",
  11579. extra: 841 / 810,
  11580. bottom: 0.022
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(6 + 11 / 12, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Macro",
  11592. height: math.unit(490, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(10, "miles")
  11597. },
  11598. {
  11599. name: "Gigamacro",
  11600. height: math.unit(50, "miles")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(6, "feet"),
  11609. weight: math.unit(250, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/xylrem/front.svg",
  11613. extra: 3323 / 3050,
  11614. bottom: 0.065
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Micro",
  11621. height: math.unit(4, "feet")
  11622. },
  11623. {
  11624. name: "Normal",
  11625. height: math.unit(16, "feet"),
  11626. default: true
  11627. },
  11628. {
  11629. name: "Macro",
  11630. height: math.unit(2720, "feet")
  11631. },
  11632. {
  11633. name: "Megamacro",
  11634. height: math.unit(25000, "miles")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(8, "feet"),
  11643. weight: math.unit(250, "kg"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/ikideru/front.svg",
  11647. extra: 930 / 870,
  11648. bottom: 0.087
  11649. }
  11650. },
  11651. back: {
  11652. height: math.unit(8, "feet"),
  11653. weight: math.unit(250, "kg"),
  11654. name: "Back",
  11655. image: {
  11656. source: "./media/characters/ikideru/back.svg",
  11657. extra: 919 / 852,
  11658. bottom: 0.055
  11659. }
  11660. },
  11661. },
  11662. [
  11663. {
  11664. name: "Rare",
  11665. height: math.unit(8, "feet"),
  11666. default: true
  11667. },
  11668. {
  11669. name: "Playful Loom",
  11670. height: math.unit(80, "feet")
  11671. },
  11672. {
  11673. name: "City Leaner",
  11674. height: math.unit(230, "feet")
  11675. },
  11676. {
  11677. name: "Megamacro",
  11678. height: math.unit(2500, "feet")
  11679. },
  11680. {
  11681. name: "Gigamacro",
  11682. height: math.unit(26400, "feet")
  11683. },
  11684. {
  11685. name: "Tectonic Shifter",
  11686. height: math.unit(1.7, "megameters")
  11687. },
  11688. {
  11689. name: "Planet Carer",
  11690. height: math.unit(21, "megameters")
  11691. },
  11692. {
  11693. name: "God",
  11694. height: math.unit(11157.22, "parsecs")
  11695. },
  11696. ]
  11697. ))
  11698. characterMakers.push(() => makeCharacter(
  11699. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11700. {
  11701. front: {
  11702. height: math.unit(6, "feet"),
  11703. weight: math.unit(120, "lb"),
  11704. name: "Front",
  11705. image: {
  11706. source: "./media/characters/neo/front.svg"
  11707. }
  11708. },
  11709. },
  11710. [
  11711. {
  11712. name: "Micro",
  11713. height: math.unit(2, "inches"),
  11714. default: true
  11715. },
  11716. {
  11717. name: "Human Size",
  11718. height: math.unit(5 + 8 / 12, "feet")
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(13 + 10 / 12, "feet"),
  11727. weight: math.unit(5320, "lb"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/chauncey-chantz/front.svg",
  11731. extra: 1587 / 1435,
  11732. bottom: 0.02
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(13 + 10 / 12, "feet"),
  11740. default: true
  11741. },
  11742. {
  11743. name: "Macro",
  11744. height: math.unit(45, "feet")
  11745. },
  11746. {
  11747. name: "Megamacro",
  11748. height: math.unit(250, "miles")
  11749. },
  11750. {
  11751. name: "Planetary",
  11752. height: math.unit(10000, "miles")
  11753. },
  11754. {
  11755. name: "Galactic",
  11756. height: math.unit(40000, "parsecs")
  11757. },
  11758. {
  11759. name: "Universal",
  11760. height: math.unit(1, "yottameter")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11766. {
  11767. front: {
  11768. height: math.unit(6, "feet"),
  11769. weight: math.unit(150, "lb"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/epifox/front.svg",
  11773. extra: 1,
  11774. bottom: 0.075
  11775. }
  11776. },
  11777. },
  11778. [
  11779. {
  11780. name: "Micro",
  11781. height: math.unit(6, "inches")
  11782. },
  11783. {
  11784. name: "Normal",
  11785. height: math.unit(12, "feet"),
  11786. default: true
  11787. },
  11788. {
  11789. name: "Macro",
  11790. height: math.unit(3810, "feet")
  11791. },
  11792. {
  11793. name: "Megamacro",
  11794. height: math.unit(500, "miles")
  11795. },
  11796. ]
  11797. ))
  11798. characterMakers.push(() => makeCharacter(
  11799. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11800. {
  11801. front: {
  11802. height: math.unit(1.8796, "m"),
  11803. weight: math.unit(230, "lb"),
  11804. name: "Front",
  11805. image: {
  11806. source: "./media/characters/colin-t/front.svg",
  11807. extra: 1272 / 1193,
  11808. bottom: 0.07
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Micro",
  11815. height: math.unit(0.571, "meters")
  11816. },
  11817. {
  11818. name: "Normal",
  11819. height: math.unit(1.8796, "meters"),
  11820. default: true
  11821. },
  11822. {
  11823. name: "Tall",
  11824. height: math.unit(4, "meters")
  11825. },
  11826. {
  11827. name: "Macro",
  11828. height: math.unit(67.241, "meters")
  11829. },
  11830. {
  11831. name: "Megamacro",
  11832. height: math.unit(371.856, "meters")
  11833. },
  11834. {
  11835. name: "Planetary",
  11836. height: math.unit(12631.5689, "km")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(1.85, "meters"),
  11845. weight: math.unit(80, "kg"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/matvei/front.svg",
  11849. extra: 614 / 594,
  11850. bottom: 0.01
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(1.85, "meters"),
  11858. default: true
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(5 + 9 / 12, "feet"),
  11867. weight: math.unit(70, "lb"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/quincy/front.svg",
  11871. extra: 3041 / 2751
  11872. }
  11873. },
  11874. back: {
  11875. height: math.unit(5 + 9 / 12, "feet"),
  11876. weight: math.unit(70, "lb"),
  11877. name: "Back",
  11878. image: {
  11879. source: "./media/characters/quincy/back.svg",
  11880. extra: 3041 / 2751
  11881. }
  11882. },
  11883. flying: {
  11884. height: math.unit(5 + 4 / 12, "feet"),
  11885. weight: math.unit(70, "lb"),
  11886. name: "Flying",
  11887. image: {
  11888. source: "./media/characters/quincy/flying.svg",
  11889. extra: 1044 / 930
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Micro",
  11896. height: math.unit(3, "cm")
  11897. },
  11898. {
  11899. name: "Normal",
  11900. height: math.unit(5 + 9 / 12, "feet")
  11901. },
  11902. {
  11903. name: "Macro",
  11904. height: math.unit(200, "meters"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Megamacro",
  11909. height: math.unit(1000, "meters")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(3 + 11/12, "feet"),
  11918. weight: math.unit(50, "lb"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/vanrel/front.svg",
  11922. extra: 1104/949,
  11923. bottom: 52/1156
  11924. }
  11925. },
  11926. back: {
  11927. height: math.unit(3 + 11/12, "feet"),
  11928. weight: math.unit(50, "lb"),
  11929. name: "Back",
  11930. image: {
  11931. source: "./media/characters/vanrel/back.svg",
  11932. extra: 1119/976,
  11933. bottom: 37/1156
  11934. }
  11935. },
  11936. tome: {
  11937. height: math.unit(1.35, "feet"),
  11938. weight: math.unit(10, "lb"),
  11939. name: "Vanrel's Tome",
  11940. rename: true,
  11941. image: {
  11942. source: "./media/characters/vanrel/tome.svg"
  11943. }
  11944. },
  11945. beans: {
  11946. height: math.unit(0.89, "feet"),
  11947. name: "Beans",
  11948. image: {
  11949. source: "./media/characters/vanrel/beans.svg"
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "Normal",
  11956. height: math.unit(3 + 11/12, "feet"),
  11957. default: true
  11958. },
  11959. ]
  11960. ))
  11961. characterMakers.push(() => makeCharacter(
  11962. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11963. {
  11964. front: {
  11965. height: math.unit(7 + 5 / 12, "feet"),
  11966. name: "Front",
  11967. image: {
  11968. source: "./media/characters/kuiper-vanrel/front.svg",
  11969. extra: 1219/1169,
  11970. bottom: 69/1288
  11971. }
  11972. },
  11973. back: {
  11974. height: math.unit(7 + 5 / 12, "feet"),
  11975. name: "Back",
  11976. image: {
  11977. source: "./media/characters/kuiper-vanrel/back.svg",
  11978. extra: 1236/1193,
  11979. bottom: 27/1263
  11980. }
  11981. },
  11982. foot: {
  11983. height: math.unit(0.55, "meters"),
  11984. name: "Foot",
  11985. image: {
  11986. source: "./media/characters/kuiper-vanrel/foot.svg",
  11987. }
  11988. },
  11989. battle: {
  11990. height: math.unit(6.824, "feet"),
  11991. name: "Battle",
  11992. image: {
  11993. source: "./media/characters/kuiper-vanrel/battle.svg",
  11994. extra: 1466 / 1327,
  11995. bottom: 29 / 1492.5
  11996. }
  11997. },
  11998. meerkui: {
  11999. height: math.unit(18, "inches"),
  12000. name: "Meerkui",
  12001. image: {
  12002. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12003. extra: 1354/1289,
  12004. bottom: 69/1423
  12005. }
  12006. },
  12007. },
  12008. [
  12009. {
  12010. name: "Normal",
  12011. height: math.unit(7 + 5 / 12, "feet"),
  12012. default: true
  12013. },
  12014. ]
  12015. ))
  12016. characterMakers.push(() => makeCharacter(
  12017. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12018. {
  12019. front: {
  12020. height: math.unit(8 + 5 / 12, "feet"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/keset-vanrel/front.svg",
  12024. extra: 1231/1148,
  12025. bottom: 82/1313
  12026. }
  12027. },
  12028. back: {
  12029. height: math.unit(8 + 5 / 12, "feet"),
  12030. name: "Back",
  12031. image: {
  12032. source: "./media/characters/keset-vanrel/back.svg",
  12033. extra: 1240/1174,
  12034. bottom: 33/1273
  12035. }
  12036. },
  12037. hand: {
  12038. height: math.unit(0.6, "meters"),
  12039. name: "Hand",
  12040. image: {
  12041. source: "./media/characters/keset-vanrel/hand.svg"
  12042. }
  12043. },
  12044. foot: {
  12045. height: math.unit(0.94978, "meters"),
  12046. name: "Foot",
  12047. image: {
  12048. source: "./media/characters/keset-vanrel/foot.svg"
  12049. }
  12050. },
  12051. battle: {
  12052. height: math.unit(7.408, "feet"),
  12053. name: "Battle",
  12054. image: {
  12055. source: "./media/characters/keset-vanrel/battle.svg",
  12056. extra: 1890 / 1386,
  12057. bottom: 73.28 / 1970
  12058. }
  12059. },
  12060. },
  12061. [
  12062. {
  12063. name: "Normal",
  12064. height: math.unit(8 + 5 / 12, "feet"),
  12065. default: true
  12066. },
  12067. ]
  12068. ))
  12069. characterMakers.push(() => makeCharacter(
  12070. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12071. {
  12072. front: {
  12073. height: math.unit(6, "feet"),
  12074. weight: math.unit(150, "lb"),
  12075. name: "Front",
  12076. image: {
  12077. source: "./media/characters/neos/front.svg",
  12078. extra: 1696 / 992,
  12079. bottom: 0.14
  12080. }
  12081. },
  12082. },
  12083. [
  12084. {
  12085. name: "Normal",
  12086. height: math.unit(54, "cm"),
  12087. default: true
  12088. },
  12089. {
  12090. name: "Macro",
  12091. height: math.unit(100, "m")
  12092. },
  12093. {
  12094. name: "Megamacro",
  12095. height: math.unit(10, "km")
  12096. },
  12097. {
  12098. name: "Megamacro+",
  12099. height: math.unit(100, "km")
  12100. },
  12101. {
  12102. name: "Gigamacro",
  12103. height: math.unit(100, "Mm")
  12104. },
  12105. {
  12106. name: "Teramacro",
  12107. height: math.unit(100, "Gm")
  12108. },
  12109. {
  12110. name: "Examacro",
  12111. height: math.unit(100, "Em")
  12112. },
  12113. {
  12114. name: "Godly",
  12115. height: math.unit(10000, "Ym")
  12116. },
  12117. {
  12118. name: "Beyond Godly",
  12119. height: math.unit(25, "multiverses")
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12125. {
  12126. feminine: {
  12127. height: math.unit(5, "feet"),
  12128. weight: math.unit(100, "lb"),
  12129. name: "Feminine",
  12130. image: {
  12131. source: "./media/characters/sammy-mouse/feminine.svg",
  12132. extra: 2526 / 2425,
  12133. bottom: 0.123
  12134. }
  12135. },
  12136. masculine: {
  12137. height: math.unit(5, "feet"),
  12138. weight: math.unit(100, "lb"),
  12139. name: "Masculine",
  12140. image: {
  12141. source: "./media/characters/sammy-mouse/masculine.svg",
  12142. extra: 2526 / 2425,
  12143. bottom: 0.123
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Micro",
  12150. height: math.unit(5, "inches")
  12151. },
  12152. {
  12153. name: "Normal",
  12154. height: math.unit(5, "feet"),
  12155. default: true
  12156. },
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(60, "feet")
  12160. },
  12161. ]
  12162. ))
  12163. characterMakers.push(() => makeCharacter(
  12164. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12165. {
  12166. front: {
  12167. height: math.unit(4, "feet"),
  12168. weight: math.unit(50, "lb"),
  12169. name: "Front",
  12170. image: {
  12171. source: "./media/characters/kole/front.svg",
  12172. extra: 1423 / 1303,
  12173. bottom: 0.025
  12174. }
  12175. },
  12176. back: {
  12177. height: math.unit(4, "feet"),
  12178. weight: math.unit(50, "lb"),
  12179. name: "Back",
  12180. image: {
  12181. source: "./media/characters/kole/back.svg",
  12182. extra: 1426 / 1280,
  12183. bottom: 0.02
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Normal",
  12190. height: math.unit(4, "feet"),
  12191. default: true
  12192. },
  12193. ]
  12194. ))
  12195. characterMakers.push(() => makeCharacter(
  12196. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12197. {
  12198. front: {
  12199. height: math.unit(2.5, "feet"),
  12200. weight: math.unit(32, "lb"),
  12201. name: "Front",
  12202. image: {
  12203. source: "./media/characters/rufran/front.svg",
  12204. extra: 1313/885,
  12205. bottom: 94/1407
  12206. }
  12207. },
  12208. side: {
  12209. height: math.unit(2.5, "feet"),
  12210. weight: math.unit(32, "lb"),
  12211. name: "Side",
  12212. image: {
  12213. source: "./media/characters/rufran/side.svg",
  12214. extra: 1109/852,
  12215. bottom: 118/1227
  12216. }
  12217. },
  12218. back: {
  12219. height: math.unit(2.5, "feet"),
  12220. weight: math.unit(32, "lb"),
  12221. name: "Back",
  12222. image: {
  12223. source: "./media/characters/rufran/back.svg",
  12224. extra: 1280/878,
  12225. bottom: 131/1411
  12226. }
  12227. },
  12228. mouth: {
  12229. height: math.unit(1.13, "feet"),
  12230. name: "Mouth",
  12231. image: {
  12232. source: "./media/characters/rufran/mouth.svg"
  12233. }
  12234. },
  12235. foot: {
  12236. height: math.unit(1.33, "feet"),
  12237. name: "Foot",
  12238. image: {
  12239. source: "./media/characters/rufran/foot.svg"
  12240. }
  12241. },
  12242. koboldFront: {
  12243. height: math.unit(2 + 6 / 12, "feet"),
  12244. weight: math.unit(20, "lb"),
  12245. name: "Front (Kobold)",
  12246. image: {
  12247. source: "./media/characters/rufran/kobold-front.svg",
  12248. extra: 2041 / 1839,
  12249. bottom: 0.055
  12250. }
  12251. },
  12252. koboldBack: {
  12253. height: math.unit(2 + 6 / 12, "feet"),
  12254. weight: math.unit(20, "lb"),
  12255. name: "Back (Kobold)",
  12256. image: {
  12257. source: "./media/characters/rufran/kobold-back.svg",
  12258. extra: 2054 / 1839,
  12259. bottom: 0.01
  12260. }
  12261. },
  12262. koboldHand: {
  12263. height: math.unit(0.2166, "meters"),
  12264. name: "Hand (Kobold)",
  12265. image: {
  12266. source: "./media/characters/rufran/kobold-hand.svg"
  12267. }
  12268. },
  12269. koboldFoot: {
  12270. height: math.unit(0.185, "meters"),
  12271. name: "Foot (Kobold)",
  12272. image: {
  12273. source: "./media/characters/rufran/kobold-foot.svg"
  12274. }
  12275. },
  12276. },
  12277. [
  12278. {
  12279. name: "Micro",
  12280. height: math.unit(1, "inch")
  12281. },
  12282. {
  12283. name: "Normal",
  12284. height: math.unit(2 + 6 / 12, "feet"),
  12285. default: true
  12286. },
  12287. {
  12288. name: "Big",
  12289. height: math.unit(60, "feet")
  12290. },
  12291. {
  12292. name: "Macro",
  12293. height: math.unit(325, "feet")
  12294. },
  12295. ]
  12296. ))
  12297. characterMakers.push(() => makeCharacter(
  12298. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12299. {
  12300. front: {
  12301. height: math.unit(0.3, "meters"),
  12302. weight: math.unit(3.5, "kg"),
  12303. name: "Front",
  12304. image: {
  12305. source: "./media/characters/chip/front.svg",
  12306. extra: 748 / 674
  12307. }
  12308. },
  12309. },
  12310. [
  12311. {
  12312. name: "Micro",
  12313. height: math.unit(1, "inch"),
  12314. default: true
  12315. },
  12316. ]
  12317. ))
  12318. characterMakers.push(() => makeCharacter(
  12319. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12320. {
  12321. side: {
  12322. height: math.unit(2.3, "meters"),
  12323. weight: math.unit(3500, "lb"),
  12324. name: "Side",
  12325. image: {
  12326. source: "./media/characters/torvid/side.svg",
  12327. extra: 1972 / 722,
  12328. bottom: 0.035
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Normal",
  12335. height: math.unit(2.3, "meters"),
  12336. default: true
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(2, "meters"),
  12345. weight: math.unit(150.5, "kg"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/susan/front.svg",
  12349. extra: 693 / 635,
  12350. bottom: 0.05
  12351. }
  12352. },
  12353. },
  12354. [
  12355. {
  12356. name: "Megamacro",
  12357. height: math.unit(505, "miles"),
  12358. default: true
  12359. },
  12360. ]
  12361. ))
  12362. characterMakers.push(() => makeCharacter(
  12363. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12364. {
  12365. front: {
  12366. height: math.unit(6, "feet"),
  12367. weight: math.unit(150, "lb"),
  12368. name: "Front",
  12369. image: {
  12370. source: "./media/characters/raindrops/front.svg",
  12371. extra: 2655 / 2461,
  12372. bottom: 49 / 2705
  12373. }
  12374. },
  12375. back: {
  12376. height: math.unit(6, "feet"),
  12377. weight: math.unit(150, "lb"),
  12378. name: "Back",
  12379. image: {
  12380. source: "./media/characters/raindrops/back.svg",
  12381. extra: 2574 / 2400,
  12382. bottom: 65 / 2634
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Micro",
  12389. height: math.unit(6, "inches")
  12390. },
  12391. {
  12392. name: "Normal",
  12393. height: math.unit(6 + 2 / 12, "feet")
  12394. },
  12395. {
  12396. name: "Macro",
  12397. height: math.unit(131, "feet"),
  12398. default: true
  12399. },
  12400. {
  12401. name: "Megamacro",
  12402. height: math.unit(15, "miles")
  12403. },
  12404. {
  12405. name: "Gigamacro",
  12406. height: math.unit(4000, "miles")
  12407. },
  12408. {
  12409. name: "Teramacro",
  12410. height: math.unit(315000, "miles")
  12411. },
  12412. ]
  12413. ))
  12414. characterMakers.push(() => makeCharacter(
  12415. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12416. {
  12417. front: {
  12418. height: math.unit(2.794, "meters"),
  12419. weight: math.unit(325, "kg"),
  12420. name: "Front",
  12421. image: {
  12422. source: "./media/characters/tezwa/front.svg",
  12423. extra: 2083 / 1906,
  12424. bottom: 0.031
  12425. }
  12426. },
  12427. foot: {
  12428. height: math.unit(0.687, "meters"),
  12429. name: "Foot",
  12430. image: {
  12431. source: "./media/characters/tezwa/foot.svg"
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(9 + 2 / 12, "feet"),
  12439. default: true
  12440. },
  12441. ]
  12442. ))
  12443. characterMakers.push(() => makeCharacter(
  12444. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12445. {
  12446. front: {
  12447. height: math.unit(58, "feet"),
  12448. weight: math.unit(89000, "lb"),
  12449. name: "Front",
  12450. image: {
  12451. source: "./media/characters/typhus/front.svg",
  12452. extra: 816 / 800,
  12453. bottom: 0.065
  12454. }
  12455. },
  12456. },
  12457. [
  12458. {
  12459. name: "Macro",
  12460. height: math.unit(58, "feet"),
  12461. default: true
  12462. },
  12463. ]
  12464. ))
  12465. characterMakers.push(() => makeCharacter(
  12466. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12467. {
  12468. front: {
  12469. height: math.unit(12, "feet"),
  12470. weight: math.unit(6, "tonnes"),
  12471. name: "Front",
  12472. image: {
  12473. source: "./media/characters/lyra-von-wulf/front.svg",
  12474. extra: 1,
  12475. bottom: 0.10
  12476. }
  12477. },
  12478. frontMecha: {
  12479. height: math.unit(12, "feet"),
  12480. weight: math.unit(12, "tonnes"),
  12481. name: "Front (Mecha)",
  12482. image: {
  12483. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12484. extra: 1,
  12485. bottom: 0.042
  12486. }
  12487. },
  12488. maw: {
  12489. height: math.unit(2.2, "feet"),
  12490. name: "Maw",
  12491. image: {
  12492. source: "./media/characters/lyra-von-wulf/maw.svg"
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(12, "feet"),
  12500. default: true
  12501. },
  12502. {
  12503. name: "Classic",
  12504. height: math.unit(50, "feet")
  12505. },
  12506. {
  12507. name: "Macro",
  12508. height: math.unit(500, "feet")
  12509. },
  12510. {
  12511. name: "Megamacro",
  12512. height: math.unit(1, "mile")
  12513. },
  12514. {
  12515. name: "Gigamacro",
  12516. height: math.unit(400, "miles")
  12517. },
  12518. {
  12519. name: "Teramacro",
  12520. height: math.unit(22000, "miles")
  12521. },
  12522. {
  12523. name: "Solarmacro",
  12524. height: math.unit(8600000, "miles")
  12525. },
  12526. {
  12527. name: "Galactic",
  12528. height: math.unit(1057000, "lightyears")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(6 + 10 / 12, "feet"),
  12537. weight: math.unit(150, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/dixon/front.svg",
  12541. extra: 3361 / 3209,
  12542. bottom: 0.01
  12543. }
  12544. },
  12545. },
  12546. [
  12547. {
  12548. name: "Normal",
  12549. height: math.unit(6 + 10 / 12, "feet"),
  12550. default: true
  12551. },
  12552. {
  12553. name: "Big",
  12554. height: math.unit(12, "meters")
  12555. },
  12556. {
  12557. name: "Macro",
  12558. height: math.unit(500, "meters")
  12559. },
  12560. {
  12561. name: "Megamacro",
  12562. height: math.unit(2, "km")
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12568. {
  12569. front: {
  12570. height: math.unit(185, "cm"),
  12571. weight: math.unit(68, "kg"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/kauko/front.svg",
  12575. extra: 1455 / 1421,
  12576. bottom: 0.03
  12577. }
  12578. },
  12579. back: {
  12580. height: math.unit(185, "cm"),
  12581. weight: math.unit(68, "kg"),
  12582. name: "Back",
  12583. image: {
  12584. source: "./media/characters/kauko/back.svg",
  12585. extra: 1455 / 1421,
  12586. bottom: 0.004
  12587. }
  12588. },
  12589. },
  12590. [
  12591. {
  12592. name: "Normal",
  12593. height: math.unit(185, "cm"),
  12594. default: true
  12595. },
  12596. ]
  12597. ))
  12598. characterMakers.push(() => makeCharacter(
  12599. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12600. {
  12601. front: {
  12602. height: math.unit(6, "feet"),
  12603. weight: math.unit(150, "kg"),
  12604. name: "Front",
  12605. image: {
  12606. source: "./media/characters/varg/front.svg",
  12607. extra: 1108 / 1018,
  12608. bottom: 0.0375
  12609. }
  12610. },
  12611. },
  12612. [
  12613. {
  12614. name: "Normal",
  12615. height: math.unit(5, "meters")
  12616. },
  12617. {
  12618. name: "Macro",
  12619. height: math.unit(200, "meters")
  12620. },
  12621. {
  12622. name: "Megamacro",
  12623. height: math.unit(20, "kilometers")
  12624. },
  12625. {
  12626. name: "True Size",
  12627. height: math.unit(211, "km"),
  12628. default: true
  12629. },
  12630. {
  12631. name: "Gigamacro",
  12632. height: math.unit(1000, "km")
  12633. },
  12634. {
  12635. name: "Gigamacro+",
  12636. height: math.unit(8000, "km")
  12637. },
  12638. {
  12639. name: "Teramacro",
  12640. height: math.unit(1000000, "km")
  12641. },
  12642. ]
  12643. ))
  12644. characterMakers.push(() => makeCharacter(
  12645. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12646. {
  12647. front: {
  12648. height: math.unit(7 + 7 / 12, "feet"),
  12649. weight: math.unit(267, "lb"),
  12650. name: "Front",
  12651. image: {
  12652. source: "./media/characters/dayza/front.svg",
  12653. extra: 1262 / 1200,
  12654. bottom: 0.035
  12655. }
  12656. },
  12657. side: {
  12658. height: math.unit(7 + 7 / 12, "feet"),
  12659. weight: math.unit(267, "lb"),
  12660. name: "Side",
  12661. image: {
  12662. source: "./media/characters/dayza/side.svg",
  12663. extra: 1295 / 1245,
  12664. bottom: 0.05
  12665. }
  12666. },
  12667. back: {
  12668. height: math.unit(7 + 7 / 12, "feet"),
  12669. weight: math.unit(267, "lb"),
  12670. name: "Back",
  12671. image: {
  12672. source: "./media/characters/dayza/back.svg",
  12673. extra: 1241 / 1170
  12674. }
  12675. },
  12676. },
  12677. [
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(7 + 7 / 12, "feet"),
  12681. default: true
  12682. },
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(155, "feet")
  12686. },
  12687. ]
  12688. ))
  12689. characterMakers.push(() => makeCharacter(
  12690. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12691. {
  12692. front: {
  12693. height: math.unit(6 + 5 / 12, "feet"),
  12694. weight: math.unit(160, "lb"),
  12695. name: "Front",
  12696. image: {
  12697. source: "./media/characters/xanthos/front.svg",
  12698. extra: 1,
  12699. bottom: 0.04
  12700. }
  12701. },
  12702. back: {
  12703. height: math.unit(6 + 5 / 12, "feet"),
  12704. weight: math.unit(160, "lb"),
  12705. name: "Back",
  12706. image: {
  12707. source: "./media/characters/xanthos/back.svg",
  12708. extra: 1,
  12709. bottom: 0.03
  12710. }
  12711. },
  12712. hand: {
  12713. height: math.unit(0.928, "feet"),
  12714. name: "Hand",
  12715. image: {
  12716. source: "./media/characters/xanthos/hand.svg"
  12717. }
  12718. },
  12719. foot: {
  12720. height: math.unit(1.286, "feet"),
  12721. name: "Foot",
  12722. image: {
  12723. source: "./media/characters/xanthos/foot.svg"
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(6 + 5 / 12, "feet"),
  12731. default: true
  12732. },
  12733. {
  12734. name: "Normal+",
  12735. height: math.unit(6, "meters")
  12736. },
  12737. {
  12738. name: "Macro",
  12739. height: math.unit(40, "feet")
  12740. },
  12741. {
  12742. name: "Macro+",
  12743. height: math.unit(200, "meters")
  12744. },
  12745. {
  12746. name: "Megamacro",
  12747. height: math.unit(20, "km")
  12748. },
  12749. {
  12750. name: "Megamacro+",
  12751. height: math.unit(100, "km")
  12752. },
  12753. {
  12754. name: "Gigamacro",
  12755. height: math.unit(200, "megameters")
  12756. },
  12757. {
  12758. name: "Gigamacro+",
  12759. height: math.unit(1.5, "gigameters")
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6 + 3 / 12, "feet"),
  12768. weight: math.unit(215, "lb"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/grynn/front.svg",
  12772. extra: 4627 / 4209,
  12773. bottom: 0.047
  12774. }
  12775. },
  12776. },
  12777. [
  12778. {
  12779. name: "Micro",
  12780. height: math.unit(6, "inches")
  12781. },
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(6 + 3 / 12, "feet"),
  12785. default: true
  12786. },
  12787. {
  12788. name: "Big",
  12789. height: math.unit(104, "feet")
  12790. },
  12791. {
  12792. name: "Macro",
  12793. height: math.unit(944, "feet")
  12794. },
  12795. {
  12796. name: "Macro+",
  12797. height: math.unit(9480, "feet")
  12798. },
  12799. {
  12800. name: "Megamacro",
  12801. height: math.unit(78752, "feet")
  12802. },
  12803. {
  12804. name: "Megamacro+",
  12805. height: math.unit(630128, "feet")
  12806. },
  12807. {
  12808. name: "Megamacro++",
  12809. height: math.unit(3150695, "feet")
  12810. },
  12811. ]
  12812. ))
  12813. characterMakers.push(() => makeCharacter(
  12814. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12815. {
  12816. front: {
  12817. height: math.unit(7 + 5 / 12, "feet"),
  12818. weight: math.unit(450, "lb"),
  12819. name: "Front",
  12820. image: {
  12821. source: "./media/characters/mocha-aura/front.svg",
  12822. extra: 1907 / 1817,
  12823. bottom: 0.04
  12824. }
  12825. },
  12826. back: {
  12827. height: math.unit(7 + 5 / 12, "feet"),
  12828. weight: math.unit(450, "lb"),
  12829. name: "Back",
  12830. image: {
  12831. source: "./media/characters/mocha-aura/back.svg",
  12832. extra: 1900 / 1825,
  12833. bottom: 0.045
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Nano",
  12840. height: math.unit(1, "nm")
  12841. },
  12842. {
  12843. name: "Megamicro",
  12844. height: math.unit(1, "mm")
  12845. },
  12846. {
  12847. name: "Micro",
  12848. height: math.unit(3, "inches")
  12849. },
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(7 + 5 / 12, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Macro",
  12857. height: math.unit(30, "feet")
  12858. },
  12859. {
  12860. name: "Megamacro",
  12861. height: math.unit(3500, "feet")
  12862. },
  12863. {
  12864. name: "Teramacro",
  12865. height: math.unit(500000, "miles")
  12866. },
  12867. {
  12868. name: "Petamacro",
  12869. height: math.unit(50000000000000000, "parsecs")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(6, "feet"),
  12878. weight: math.unit(150, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/ilisha-devya/front.svg",
  12882. extra: 1,
  12883. bottom: 0.175
  12884. }
  12885. },
  12886. back: {
  12887. height: math.unit(6, "feet"),
  12888. weight: math.unit(150, "lb"),
  12889. name: "Back",
  12890. image: {
  12891. source: "./media/characters/ilisha-devya/back.svg",
  12892. extra: 1,
  12893. bottom: 0.015
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Macro",
  12900. height: math.unit(500, "feet"),
  12901. default: true
  12902. },
  12903. {
  12904. name: "Megamacro",
  12905. height: math.unit(10, "miles")
  12906. },
  12907. {
  12908. name: "Gigamacro",
  12909. height: math.unit(100000, "miles")
  12910. },
  12911. {
  12912. name: "Examacro",
  12913. height: math.unit(1e9, "lightyears")
  12914. },
  12915. {
  12916. name: "Omniversal",
  12917. height: math.unit(1e33, "lightyears")
  12918. },
  12919. {
  12920. name: "Beyond Infinite",
  12921. height: math.unit(1e100, "lightyears")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12927. {
  12928. Side: {
  12929. height: math.unit(6, "feet"),
  12930. weight: math.unit(150, "lb"),
  12931. name: "Side",
  12932. image: {
  12933. source: "./media/characters/mira/side.svg",
  12934. extra: 900 / 799,
  12935. bottom: 0.02
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Human Size",
  12942. height: math.unit(6, "feet")
  12943. },
  12944. {
  12945. name: "Macro",
  12946. height: math.unit(100, "feet"),
  12947. default: true
  12948. },
  12949. {
  12950. name: "Megamacro",
  12951. height: math.unit(10, "miles")
  12952. },
  12953. {
  12954. name: "Gigamacro",
  12955. height: math.unit(25000, "miles")
  12956. },
  12957. {
  12958. name: "Teramacro",
  12959. height: math.unit(300, "AU")
  12960. },
  12961. {
  12962. name: "Full Size",
  12963. height: math.unit(4.5e10, "lightyears")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(150, "lb"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/holly/front.svg",
  12976. extra: 639 / 606
  12977. }
  12978. },
  12979. back: {
  12980. height: math.unit(6, "feet"),
  12981. weight: math.unit(150, "lb"),
  12982. name: "Back",
  12983. image: {
  12984. source: "./media/characters/holly/back.svg",
  12985. extra: 623 / 598
  12986. }
  12987. },
  12988. frontWorking: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(150, "lb"),
  12991. name: "Front (Working)",
  12992. image: {
  12993. source: "./media/characters/holly/front-working.svg",
  12994. extra: 607 / 577,
  12995. bottom: 0.048
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Normal",
  13002. height: math.unit(12 + 3 / 12, "feet"),
  13003. default: true
  13004. },
  13005. ]
  13006. ))
  13007. characterMakers.push(() => makeCharacter(
  13008. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13009. {
  13010. front: {
  13011. height: math.unit(6, "feet"),
  13012. weight: math.unit(150, "lb"),
  13013. name: "Front",
  13014. image: {
  13015. source: "./media/characters/porter/front.svg",
  13016. extra: 1,
  13017. bottom: 0.01
  13018. }
  13019. },
  13020. frontRobes: {
  13021. height: math.unit(6, "feet"),
  13022. weight: math.unit(150, "lb"),
  13023. name: "Front (Robes)",
  13024. image: {
  13025. source: "./media/characters/porter/front-robes.svg",
  13026. extra: 1.01,
  13027. bottom: 0.01
  13028. }
  13029. },
  13030. },
  13031. [
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(11 + 9 / 12, "feet"),
  13035. default: true
  13036. },
  13037. ]
  13038. ))
  13039. characterMakers.push(() => makeCharacter(
  13040. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13041. {
  13042. legendary: {
  13043. height: math.unit(6, "feet"),
  13044. weight: math.unit(150, "lb"),
  13045. name: "Legendary",
  13046. image: {
  13047. source: "./media/characters/lucy/legendary.svg",
  13048. extra: 1355 / 1100,
  13049. bottom: 0.045
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Legendary",
  13056. height: math.unit(86882 * 2, "miles"),
  13057. default: true
  13058. },
  13059. ]
  13060. ))
  13061. characterMakers.push(() => makeCharacter(
  13062. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13063. {
  13064. front: {
  13065. height: math.unit(6, "feet"),
  13066. weight: math.unit(150, "lb"),
  13067. name: "Front",
  13068. image: {
  13069. source: "./media/characters/drusilla/front.svg",
  13070. extra: 678 / 635,
  13071. bottom: 0.03
  13072. }
  13073. },
  13074. back: {
  13075. height: math.unit(6, "feet"),
  13076. weight: math.unit(150, "lb"),
  13077. name: "Back",
  13078. image: {
  13079. source: "./media/characters/drusilla/back.svg",
  13080. extra: 678 / 635,
  13081. bottom: 0.005
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Macro",
  13088. height: math.unit(100, "feet")
  13089. },
  13090. {
  13091. name: "Canon Height",
  13092. height: math.unit(2000, "feet"),
  13093. default: true
  13094. },
  13095. ]
  13096. ))
  13097. characterMakers.push(() => makeCharacter(
  13098. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13099. {
  13100. front: {
  13101. height: math.unit(6, "feet"),
  13102. weight: math.unit(180, "lb"),
  13103. name: "Front",
  13104. image: {
  13105. source: "./media/characters/renard-thatch/front.svg",
  13106. extra: 2411 / 2275,
  13107. bottom: 0.01
  13108. }
  13109. },
  13110. frontPosing: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(180, "lb"),
  13113. name: "Front (Posing)",
  13114. image: {
  13115. source: "./media/characters/renard-thatch/front-posing.svg",
  13116. extra: 2381 / 2261,
  13117. bottom: 0.01
  13118. }
  13119. },
  13120. back: {
  13121. height: math.unit(6, "feet"),
  13122. weight: math.unit(180, "lb"),
  13123. name: "Back",
  13124. image: {
  13125. source: "./media/characters/renard-thatch/back.svg",
  13126. extra: 2428 / 2288
  13127. }
  13128. },
  13129. },
  13130. [
  13131. {
  13132. name: "Micro",
  13133. height: math.unit(3, "inches")
  13134. },
  13135. {
  13136. name: "Default",
  13137. height: math.unit(6, "feet"),
  13138. default: true
  13139. },
  13140. {
  13141. name: "Macro",
  13142. height: math.unit(75, "feet")
  13143. },
  13144. ]
  13145. ))
  13146. characterMakers.push(() => makeCharacter(
  13147. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13148. {
  13149. front: {
  13150. height: math.unit(1450, "feet"),
  13151. weight: math.unit(1.21e6, "tons"),
  13152. name: "Front",
  13153. image: {
  13154. source: "./media/characters/sekvra/front.svg",
  13155. extra: 1,
  13156. bottom: 0.03
  13157. }
  13158. },
  13159. frontClothed: {
  13160. height: math.unit(1450, "feet"),
  13161. weight: math.unit(1.21e6, "tons"),
  13162. name: "Front (Clothed)",
  13163. image: {
  13164. source: "./media/characters/sekvra/front-clothed.svg",
  13165. extra: 1,
  13166. bottom: 0.03
  13167. }
  13168. },
  13169. side: {
  13170. height: math.unit(1450, "feet"),
  13171. weight: math.unit(1.21e6, "tons"),
  13172. name: "Side",
  13173. image: {
  13174. source: "./media/characters/sekvra/side.svg",
  13175. extra: 1,
  13176. bottom: 0.025
  13177. }
  13178. },
  13179. back: {
  13180. height: math.unit(1450, "feet"),
  13181. weight: math.unit(1.21e6, "tons"),
  13182. name: "Back",
  13183. image: {
  13184. source: "./media/characters/sekvra/back.svg",
  13185. extra: 1,
  13186. bottom: 0.005
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Macro",
  13193. height: math.unit(1450, "feet"),
  13194. default: true
  13195. },
  13196. {
  13197. name: "Megamacro",
  13198. height: math.unit(15000, "feet")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/carmine/front.svg",
  13211. extra: 1,
  13212. bottom: 0.035
  13213. }
  13214. },
  13215. frontArmor: {
  13216. height: math.unit(6, "feet"),
  13217. weight: math.unit(150, "lb"),
  13218. name: "Front (Armor)",
  13219. image: {
  13220. source: "./media/characters/carmine/front-armor.svg",
  13221. extra: 1,
  13222. bottom: 0.035
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Large",
  13229. height: math.unit(1, "mile")
  13230. },
  13231. {
  13232. name: "Huge",
  13233. height: math.unit(40, "miles"),
  13234. default: true
  13235. },
  13236. {
  13237. name: "Colossal",
  13238. height: math.unit(2500, "miles")
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13244. {
  13245. front: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Front",
  13249. image: {
  13250. source: "./media/characters/elyssia/front.svg",
  13251. extra: 2201 / 2035,
  13252. bottom: 0.05
  13253. }
  13254. },
  13255. frontClothed: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(150, "lb"),
  13258. name: "Front (Clothed)",
  13259. image: {
  13260. source: "./media/characters/elyssia/front-clothed.svg",
  13261. extra: 2201 / 2035,
  13262. bottom: 0.05
  13263. }
  13264. },
  13265. back: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(150, "lb"),
  13268. name: "Back",
  13269. image: {
  13270. source: "./media/characters/elyssia/back.svg",
  13271. extra: 2201 / 2035,
  13272. bottom: 0.013
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Smaller",
  13279. height: math.unit(150, "feet")
  13280. },
  13281. {
  13282. name: "Standard",
  13283. height: math.unit(1400, "feet"),
  13284. default: true
  13285. },
  13286. {
  13287. name: "Distracted",
  13288. height: math.unit(15000, "feet")
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13294. {
  13295. front: {
  13296. height: math.unit(7 + 4 / 12, "feet"),
  13297. weight: math.unit(500, "lb"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/geno-maxwell/front.svg",
  13301. extra: 2207 / 2040,
  13302. bottom: 0.015
  13303. }
  13304. },
  13305. },
  13306. [
  13307. {
  13308. name: "Micro",
  13309. height: math.unit(3, "inches")
  13310. },
  13311. {
  13312. name: "Normal",
  13313. height: math.unit(7 + 4 / 12, "feet"),
  13314. default: true
  13315. },
  13316. {
  13317. name: "Macro",
  13318. height: math.unit(220, "feet")
  13319. },
  13320. {
  13321. name: "Megamacro",
  13322. height: math.unit(11, "miles")
  13323. },
  13324. ]
  13325. ))
  13326. characterMakers.push(() => makeCharacter(
  13327. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13328. {
  13329. front: {
  13330. height: math.unit(7 + 4 / 12, "feet"),
  13331. weight: math.unit(500, "lb"),
  13332. name: "Front",
  13333. image: {
  13334. source: "./media/characters/regena-maxwell/front.svg",
  13335. extra: 3115 / 2770,
  13336. bottom: 0.02
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Normal",
  13343. height: math.unit(7 + 4 / 12, "feet"),
  13344. default: true
  13345. },
  13346. {
  13347. name: "Macro",
  13348. height: math.unit(220, "feet")
  13349. },
  13350. {
  13351. name: "Megamacro",
  13352. height: math.unit(11, "miles")
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13358. {
  13359. front: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(150, "lb"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13365. extra: 860 / 690,
  13366. bottom: 0.03
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(1.7, "meters"),
  13374. default: true
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13380. {
  13381. front: {
  13382. height: math.unit(6, "feet"),
  13383. weight: math.unit(150, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/quilly/front.svg",
  13387. extra: 890 / 776
  13388. }
  13389. },
  13390. },
  13391. [
  13392. {
  13393. name: "Gigamacro",
  13394. height: math.unit(404090, "miles"),
  13395. default: true
  13396. },
  13397. ]
  13398. ))
  13399. characterMakers.push(() => makeCharacter(
  13400. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13401. {
  13402. front: {
  13403. height: math.unit(7 + 8 / 12, "feet"),
  13404. weight: math.unit(350, "lb"),
  13405. name: "Front",
  13406. image: {
  13407. source: "./media/characters/tempest/front.svg",
  13408. extra: 1175 / 1086,
  13409. bottom: 0.02
  13410. }
  13411. },
  13412. },
  13413. [
  13414. {
  13415. name: "Normal",
  13416. height: math.unit(7 + 8 / 12, "feet"),
  13417. default: true
  13418. },
  13419. ]
  13420. ))
  13421. characterMakers.push(() => makeCharacter(
  13422. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13423. {
  13424. side: {
  13425. height: math.unit(4 + 5 / 12, "feet"),
  13426. weight: math.unit(80, "lb"),
  13427. name: "Side",
  13428. image: {
  13429. source: "./media/characters/rodger/side.svg",
  13430. extra: 1235 / 1118
  13431. }
  13432. },
  13433. },
  13434. [
  13435. {
  13436. name: "Micro",
  13437. height: math.unit(1, "inch")
  13438. },
  13439. {
  13440. name: "Normal",
  13441. height: math.unit(4 + 5 / 12, "feet"),
  13442. default: true
  13443. },
  13444. {
  13445. name: "Macro",
  13446. height: math.unit(120, "feet")
  13447. },
  13448. ]
  13449. ))
  13450. characterMakers.push(() => makeCharacter(
  13451. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13452. {
  13453. front: {
  13454. height: math.unit(6, "feet"),
  13455. weight: math.unit(150, "lb"),
  13456. name: "Front",
  13457. image: {
  13458. source: "./media/characters/danyel/front.svg",
  13459. extra: 1185 / 1123,
  13460. bottom: 0.05
  13461. }
  13462. },
  13463. },
  13464. [
  13465. {
  13466. name: "Shrunken",
  13467. height: math.unit(0.5, "mm")
  13468. },
  13469. {
  13470. name: "Micro",
  13471. height: math.unit(1, "mm"),
  13472. default: true
  13473. },
  13474. {
  13475. name: "Upsized",
  13476. height: math.unit(5 + 5 / 12, "feet")
  13477. },
  13478. ]
  13479. ))
  13480. characterMakers.push(() => makeCharacter(
  13481. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13482. {
  13483. front: {
  13484. height: math.unit(5 + 6 / 12, "feet"),
  13485. weight: math.unit(200, "lb"),
  13486. name: "Front",
  13487. image: {
  13488. source: "./media/characters/vivian-bijoux/front.svg",
  13489. extra: 1,
  13490. bottom: 0.072
  13491. }
  13492. },
  13493. },
  13494. [
  13495. {
  13496. name: "Normal",
  13497. height: math.unit(5 + 6 / 12, "feet"),
  13498. default: true
  13499. },
  13500. {
  13501. name: "Bad Dream",
  13502. height: math.unit(500, "feet")
  13503. },
  13504. {
  13505. name: "Nightmare",
  13506. height: math.unit(500, "miles")
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6 + 1 / 12, "feet"),
  13515. weight: math.unit(260, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/zeta/front.svg",
  13519. extra: 1968 / 1889,
  13520. bottom: 0.06
  13521. }
  13522. },
  13523. back: {
  13524. height: math.unit(6 + 1 / 12, "feet"),
  13525. weight: math.unit(260, "lb"),
  13526. name: "Back",
  13527. image: {
  13528. source: "./media/characters/zeta/back.svg",
  13529. extra: 1944 / 1858,
  13530. bottom: 0.03
  13531. }
  13532. },
  13533. hand: {
  13534. height: math.unit(1.112, "feet"),
  13535. name: "Hand",
  13536. image: {
  13537. source: "./media/characters/zeta/hand.svg"
  13538. }
  13539. },
  13540. foot: {
  13541. height: math.unit(1.48, "feet"),
  13542. name: "Foot",
  13543. image: {
  13544. source: "./media/characters/zeta/foot.svg"
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Micro",
  13551. height: math.unit(6, "inches")
  13552. },
  13553. {
  13554. name: "Normal",
  13555. height: math.unit(6 + 1 / 12, "feet"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Macro",
  13560. height: math.unit(20, "feet")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(6, "feet"),
  13569. weight: math.unit(150, "lb"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/jamie-larsen/front.svg",
  13573. extra: 962 / 933,
  13574. bottom: 0.02
  13575. }
  13576. },
  13577. back: {
  13578. height: math.unit(6, "feet"),
  13579. weight: math.unit(150, "lb"),
  13580. name: "Back",
  13581. image: {
  13582. source: "./media/characters/jamie-larsen/back.svg",
  13583. extra: 997 / 946
  13584. }
  13585. },
  13586. },
  13587. [
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(28 + 7 / 12, "feet"),
  13591. default: true
  13592. },
  13593. {
  13594. name: "Macro+",
  13595. height: math.unit(180, "feet")
  13596. },
  13597. {
  13598. name: "Megamacro",
  13599. height: math.unit(10, "miles")
  13600. },
  13601. {
  13602. name: "Gigamacro",
  13603. height: math.unit(200000, "miles")
  13604. },
  13605. ]
  13606. ))
  13607. characterMakers.push(() => makeCharacter(
  13608. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13609. {
  13610. front: {
  13611. height: math.unit(6, "feet"),
  13612. weight: math.unit(120, "lb"),
  13613. name: "Front",
  13614. image: {
  13615. source: "./media/characters/vance/front.svg",
  13616. extra: 1980 / 1890,
  13617. bottom: 0.09
  13618. }
  13619. },
  13620. back: {
  13621. height: math.unit(6, "feet"),
  13622. weight: math.unit(120, "lb"),
  13623. name: "Back",
  13624. image: {
  13625. source: "./media/characters/vance/back.svg",
  13626. extra: 2081 / 1994,
  13627. bottom: 0.014
  13628. }
  13629. },
  13630. hand: {
  13631. height: math.unit(0.88, "feet"),
  13632. name: "Hand",
  13633. image: {
  13634. source: "./media/characters/vance/hand.svg"
  13635. }
  13636. },
  13637. foot: {
  13638. height: math.unit(0.64, "feet"),
  13639. name: "Foot",
  13640. image: {
  13641. source: "./media/characters/vance/foot.svg"
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Small",
  13648. height: math.unit(90, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(100, "meters")
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(15, "miles")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(180, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/xochitl/front.svg",
  13670. extra: 2297 / 2261,
  13671. bottom: 0.065
  13672. }
  13673. },
  13674. back: {
  13675. height: math.unit(6, "feet"),
  13676. weight: math.unit(180, "lb"),
  13677. name: "Back",
  13678. image: {
  13679. source: "./media/characters/xochitl/back.svg",
  13680. extra: 2386 / 2354,
  13681. bottom: 0.01
  13682. }
  13683. },
  13684. foot: {
  13685. height: math.unit(6 / 5 * 1.15, "feet"),
  13686. weight: math.unit(150, "lb"),
  13687. name: "Foot",
  13688. image: {
  13689. source: "./media/characters/xochitl/foot.svg"
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Macro",
  13696. height: math.unit(80, "feet")
  13697. },
  13698. {
  13699. name: "Macro+",
  13700. height: math.unit(400, "feet"),
  13701. default: true
  13702. },
  13703. {
  13704. name: "Gigamacro",
  13705. height: math.unit(80000, "miles")
  13706. },
  13707. {
  13708. name: "Gigamacro+",
  13709. height: math.unit(400000, "miles")
  13710. },
  13711. {
  13712. name: "Teramacro",
  13713. height: math.unit(300, "AU")
  13714. },
  13715. ]
  13716. ))
  13717. characterMakers.push(() => makeCharacter(
  13718. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13719. {
  13720. front: {
  13721. height: math.unit(6, "feet"),
  13722. weight: math.unit(150, "lb"),
  13723. name: "Front",
  13724. image: {
  13725. source: "./media/characters/vincent/front.svg",
  13726. extra: 1130 / 1080,
  13727. bottom: 0.055
  13728. }
  13729. },
  13730. beak: {
  13731. height: math.unit(6 * 0.1, "feet"),
  13732. name: "Beak",
  13733. image: {
  13734. source: "./media/characters/vincent/beak.svg"
  13735. }
  13736. },
  13737. hand: {
  13738. height: math.unit(6 * 0.85, "feet"),
  13739. weight: math.unit(150, "lb"),
  13740. name: "Hand",
  13741. image: {
  13742. source: "./media/characters/vincent/hand.svg"
  13743. }
  13744. },
  13745. foot: {
  13746. height: math.unit(6 * 0.19, "feet"),
  13747. weight: math.unit(150, "lb"),
  13748. name: "Foot",
  13749. image: {
  13750. source: "./media/characters/vincent/foot.svg"
  13751. }
  13752. },
  13753. },
  13754. [
  13755. {
  13756. name: "Base",
  13757. height: math.unit(6 + 5 / 12, "feet"),
  13758. default: true
  13759. },
  13760. {
  13761. name: "Macro",
  13762. height: math.unit(300, "feet")
  13763. },
  13764. {
  13765. name: "Megamacro",
  13766. height: math.unit(2, "miles")
  13767. },
  13768. {
  13769. name: "Gigamacro",
  13770. height: math.unit(1000, "miles")
  13771. },
  13772. ]
  13773. ))
  13774. characterMakers.push(() => makeCharacter(
  13775. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13776. {
  13777. front: {
  13778. height: math.unit(2, "meters"),
  13779. weight: math.unit(500, "kg"),
  13780. name: "Front",
  13781. image: {
  13782. source: "./media/characters/coatl/front.svg",
  13783. extra: 3948 / 3500,
  13784. bottom: 0.082
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Normal",
  13791. height: math.unit(4, "meters")
  13792. },
  13793. {
  13794. name: "Macro",
  13795. height: math.unit(100, "meters"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Macro+",
  13800. height: math.unit(300, "meters")
  13801. },
  13802. {
  13803. name: "Megamacro",
  13804. height: math.unit(3, "gigameters")
  13805. },
  13806. {
  13807. name: "Megamacro+",
  13808. height: math.unit(300, "terameters")
  13809. },
  13810. {
  13811. name: "Megamacro++",
  13812. height: math.unit(3, "lightyears")
  13813. },
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13818. {
  13819. front: {
  13820. height: math.unit(6, "feet"),
  13821. weight: math.unit(50, "kg"),
  13822. name: "front",
  13823. image: {
  13824. source: "./media/characters/shiroryu/front.svg",
  13825. extra: 1990 / 1935
  13826. }
  13827. },
  13828. },
  13829. [
  13830. {
  13831. name: "Mortal Mingling",
  13832. height: math.unit(3, "meters")
  13833. },
  13834. {
  13835. name: "Kaiju-ish",
  13836. height: math.unit(250, "meters")
  13837. },
  13838. {
  13839. name: "Somewhat Godly",
  13840. height: math.unit(400, "km"),
  13841. default: true
  13842. },
  13843. {
  13844. name: "Planetary",
  13845. height: math.unit(300, "megameters")
  13846. },
  13847. {
  13848. name: "Galaxy-dwarfing",
  13849. height: math.unit(450, "kiloparsecs")
  13850. },
  13851. {
  13852. name: "Universe Eater",
  13853. height: math.unit(150, "gigaparsecs")
  13854. },
  13855. {
  13856. name: "Almost Immeasurable",
  13857. height: math.unit(1.3e266, "yottaparsecs")
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13863. {
  13864. front: {
  13865. height: math.unit(6, "feet"),
  13866. weight: math.unit(150, "lb"),
  13867. name: "Front",
  13868. image: {
  13869. source: "./media/characters/umeko/front.svg",
  13870. extra: 1,
  13871. bottom: 0.019
  13872. }
  13873. },
  13874. frontArmored: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(150, "lb"),
  13877. name: "Front (Armored)",
  13878. image: {
  13879. source: "./media/characters/umeko/front-armored.svg",
  13880. extra: 1,
  13881. bottom: 0.021
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Macro",
  13888. height: math.unit(220, "feet"),
  13889. default: true
  13890. },
  13891. {
  13892. name: "Guardian Dragon",
  13893. height: math.unit(50, "miles")
  13894. },
  13895. {
  13896. name: "Cosmic",
  13897. height: math.unit(800000, "miles")
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(6, "feet"),
  13906. weight: math.unit(150, "lb"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/cassidy/front.svg",
  13910. extra: 1,
  13911. bottom: 0.043
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Canon Height",
  13918. height: math.unit(120, "feet"),
  13919. default: true
  13920. },
  13921. {
  13922. name: "Macro+",
  13923. height: math.unit(400, "feet")
  13924. },
  13925. {
  13926. name: "Macro++",
  13927. height: math.unit(4000, "feet")
  13928. },
  13929. {
  13930. name: "Megamacro",
  13931. height: math.unit(3, "miles")
  13932. },
  13933. ]
  13934. ))
  13935. characterMakers.push(() => makeCharacter(
  13936. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13937. {
  13938. front: {
  13939. height: math.unit(6, "feet"),
  13940. weight: math.unit(150, "lb"),
  13941. name: "Front",
  13942. image: {
  13943. source: "./media/characters/isaac/front.svg",
  13944. extra: 896 / 815,
  13945. bottom: 0.11
  13946. }
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Human Size",
  13952. height: math.unit(8, "feet"),
  13953. default: true
  13954. },
  13955. {
  13956. name: "Macro",
  13957. height: math.unit(400, "feet")
  13958. },
  13959. {
  13960. name: "Megamacro",
  13961. height: math.unit(50, "miles")
  13962. },
  13963. {
  13964. name: "Canon Height",
  13965. height: math.unit(200, "AU")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(6, "feet"),
  13974. weight: math.unit(72, "kg"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/sleekit/front.svg",
  13978. extra: 4693 / 4487,
  13979. bottom: 0.012
  13980. }
  13981. },
  13982. },
  13983. [
  13984. {
  13985. name: "Minimum Height",
  13986. height: math.unit(10, "meters")
  13987. },
  13988. {
  13989. name: "Smaller",
  13990. height: math.unit(25, "meters")
  13991. },
  13992. {
  13993. name: "Larger",
  13994. height: math.unit(38, "meters"),
  13995. default: true
  13996. },
  13997. {
  13998. name: "Maximum height",
  13999. height: math.unit(100, "meters")
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14005. {
  14006. front: {
  14007. height: math.unit(6, "feet"),
  14008. weight: math.unit(150, "lb"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/nillia/front.svg",
  14012. extra: 2195 / 2037,
  14013. bottom: 0.005
  14014. }
  14015. },
  14016. back: {
  14017. height: math.unit(6, "feet"),
  14018. weight: math.unit(150, "lb"),
  14019. name: "Back",
  14020. image: {
  14021. source: "./media/characters/nillia/back.svg",
  14022. extra: 2195 / 2037,
  14023. bottom: 0.005
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Canon Height",
  14030. height: math.unit(489, "feet"),
  14031. default: true
  14032. }
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14037. {
  14038. front: {
  14039. height: math.unit(6, "feet"),
  14040. weight: math.unit(150, "lb"),
  14041. name: "Front",
  14042. image: {
  14043. source: "./media/characters/mesmyriza/front.svg",
  14044. extra: 2067 / 1784,
  14045. bottom: 0.035
  14046. }
  14047. },
  14048. foot: {
  14049. height: math.unit(6 / (250 / 35), "feet"),
  14050. name: "Foot",
  14051. image: {
  14052. source: "./media/characters/mesmyriza/foot.svg"
  14053. }
  14054. },
  14055. },
  14056. [
  14057. {
  14058. name: "Macro",
  14059. height: math.unit(457, "meters"),
  14060. default: true
  14061. },
  14062. {
  14063. name: "Megamacro",
  14064. height: math.unit(8, "megameters")
  14065. },
  14066. ]
  14067. ))
  14068. characterMakers.push(() => makeCharacter(
  14069. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14070. {
  14071. front: {
  14072. height: math.unit(6, "feet"),
  14073. weight: math.unit(250, "lb"),
  14074. name: "Front",
  14075. image: {
  14076. source: "./media/characters/saudade/front.svg",
  14077. extra: 1172 / 1139,
  14078. bottom: 0.035
  14079. }
  14080. },
  14081. },
  14082. [
  14083. {
  14084. name: "Micro",
  14085. height: math.unit(3, "inches")
  14086. },
  14087. {
  14088. name: "Normal",
  14089. height: math.unit(6, "feet"),
  14090. default: true
  14091. },
  14092. {
  14093. name: "Macro",
  14094. height: math.unit(50, "feet")
  14095. },
  14096. {
  14097. name: "Megamacro",
  14098. height: math.unit(2800, "feet")
  14099. },
  14100. ]
  14101. ))
  14102. characterMakers.push(() => makeCharacter(
  14103. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14104. {
  14105. front: {
  14106. height: math.unit(5 + 4 / 12, "feet"),
  14107. weight: math.unit(100, "lb"),
  14108. name: "Front",
  14109. image: {
  14110. source: "./media/characters/keireer/front.svg",
  14111. extra: 716 / 666,
  14112. bottom: 0.05
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Normal",
  14119. height: math.unit(5 + 4 / 12, "feet"),
  14120. default: true
  14121. },
  14122. ]
  14123. ))
  14124. characterMakers.push(() => makeCharacter(
  14125. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14126. {
  14127. front: {
  14128. height: math.unit(6, "feet"),
  14129. weight: math.unit(90, "kg"),
  14130. name: "Front",
  14131. image: {
  14132. source: "./media/characters/mirja/front.svg",
  14133. extra: 1789 / 1683,
  14134. bottom: 0.05
  14135. }
  14136. },
  14137. frontDressed: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(90, "lb"),
  14140. name: "Front (Dressed)",
  14141. image: {
  14142. source: "./media/characters/mirja/front-dressed.svg",
  14143. extra: 1789 / 1683,
  14144. bottom: 0.05
  14145. }
  14146. },
  14147. back: {
  14148. height: math.unit(6, "feet"),
  14149. weight: math.unit(90, "lb"),
  14150. name: "Back",
  14151. image: {
  14152. source: "./media/characters/mirja/back.svg",
  14153. extra: 953 / 917,
  14154. bottom: 0.017
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "\"Incognito\"",
  14161. height: math.unit(3, "meters")
  14162. },
  14163. {
  14164. name: "Strolling Size",
  14165. height: math.unit(15, "km")
  14166. },
  14167. {
  14168. name: "Larger Strolling Size",
  14169. height: math.unit(400, "km")
  14170. },
  14171. {
  14172. name: "Preferred Size",
  14173. height: math.unit(5000, "km")
  14174. },
  14175. {
  14176. name: "True Size",
  14177. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14178. default: true
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14184. {
  14185. front: {
  14186. height: math.unit(15, "feet"),
  14187. weight: math.unit(880, "kg"),
  14188. name: "Front",
  14189. image: {
  14190. source: "./media/characters/nightraver/front.svg",
  14191. extra: 2444 / 2160,
  14192. bottom: 0.027
  14193. }
  14194. },
  14195. back: {
  14196. height: math.unit(15, "feet"),
  14197. weight: math.unit(880, "kg"),
  14198. name: "Back",
  14199. image: {
  14200. source: "./media/characters/nightraver/back.svg",
  14201. extra: 2309 / 2180,
  14202. bottom: 0.005
  14203. }
  14204. },
  14205. sole: {
  14206. height: math.unit(2.878, "feet"),
  14207. name: "Sole",
  14208. image: {
  14209. source: "./media/characters/nightraver/sole.svg"
  14210. }
  14211. },
  14212. foot: {
  14213. height: math.unit(2.285, "feet"),
  14214. name: "Foot",
  14215. image: {
  14216. source: "./media/characters/nightraver/foot.svg"
  14217. }
  14218. },
  14219. maw: {
  14220. height: math.unit(2.67, "feet"),
  14221. name: "Maw",
  14222. image: {
  14223. source: "./media/characters/nightraver/maw.svg"
  14224. }
  14225. },
  14226. },
  14227. [
  14228. {
  14229. name: "Micro",
  14230. height: math.unit(1, "cm")
  14231. },
  14232. {
  14233. name: "Normal",
  14234. height: math.unit(15, "feet"),
  14235. default: true
  14236. },
  14237. {
  14238. name: "Macro",
  14239. height: math.unit(300, "feet")
  14240. },
  14241. {
  14242. name: "Megamacro",
  14243. height: math.unit(300, "miles")
  14244. },
  14245. {
  14246. name: "Gigamacro",
  14247. height: math.unit(10000, "miles")
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14253. {
  14254. side: {
  14255. height: math.unit(2, "inches"),
  14256. weight: math.unit(5, "grams"),
  14257. name: "Side",
  14258. image: {
  14259. source: "./media/characters/arc/side.svg"
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Micro",
  14266. height: math.unit(2, "inches"),
  14267. default: true
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(1.1938, "meters"),
  14276. weight: math.unit(54, "kg"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/nebula-shahar/front.svg",
  14280. extra: 1642 / 1436,
  14281. bottom: 0.06
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Megamicro",
  14288. height: math.unit(0.3, "mm")
  14289. },
  14290. {
  14291. name: "Micro",
  14292. height: math.unit(3, "cm")
  14293. },
  14294. {
  14295. name: "Normal",
  14296. height: math.unit(138, "cm"),
  14297. default: true
  14298. },
  14299. {
  14300. name: "Macro",
  14301. height: math.unit(30, "m")
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(5.24, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/shayla/front.svg",
  14314. extra: 1512 / 1414,
  14315. bottom: 0.01
  14316. }
  14317. },
  14318. back: {
  14319. height: math.unit(5.24, "feet"),
  14320. weight: math.unit(150, "lb"),
  14321. name: "Back",
  14322. image: {
  14323. source: "./media/characters/shayla/back.svg",
  14324. extra: 1512 / 1414
  14325. }
  14326. },
  14327. hand: {
  14328. height: math.unit(0.7781496062992126, "feet"),
  14329. name: "Hand",
  14330. image: {
  14331. source: "./media/characters/shayla/hand.svg"
  14332. }
  14333. },
  14334. foot: {
  14335. height: math.unit(1.4206036745406823, "feet"),
  14336. name: "Foot",
  14337. image: {
  14338. source: "./media/characters/shayla/foot.svg"
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Micro",
  14345. height: math.unit(0.32, "feet")
  14346. },
  14347. {
  14348. name: "Normal",
  14349. height: math.unit(5.24, "feet"),
  14350. default: true
  14351. },
  14352. {
  14353. name: "Macro",
  14354. height: math.unit(492.12, "feet")
  14355. },
  14356. {
  14357. name: "Megamacro",
  14358. height: math.unit(186.41, "miles")
  14359. },
  14360. ]
  14361. ))
  14362. characterMakers.push(() => makeCharacter(
  14363. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14364. {
  14365. front: {
  14366. height: math.unit(2.2, "m"),
  14367. weight: math.unit(120, "kg"),
  14368. name: "Front",
  14369. image: {
  14370. source: "./media/characters/pia-jr/front.svg",
  14371. extra: 1000 / 970,
  14372. bottom: 0.035
  14373. }
  14374. },
  14375. hand: {
  14376. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14377. name: "Hand",
  14378. image: {
  14379. source: "./media/characters/pia-jr/hand.svg"
  14380. }
  14381. },
  14382. paw: {
  14383. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14384. name: "Paw",
  14385. image: {
  14386. source: "./media/characters/pia-jr/paw.svg"
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Micro",
  14393. height: math.unit(1.2, "cm")
  14394. },
  14395. {
  14396. name: "Normal",
  14397. height: math.unit(2.2, "m"),
  14398. default: true
  14399. },
  14400. {
  14401. name: "Macro",
  14402. height: math.unit(180, "m")
  14403. },
  14404. {
  14405. name: "Megamacro",
  14406. height: math.unit(420, "km")
  14407. },
  14408. ]
  14409. ))
  14410. characterMakers.push(() => makeCharacter(
  14411. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14412. {
  14413. front: {
  14414. height: math.unit(2, "m"),
  14415. weight: math.unit(115, "kg"),
  14416. name: "Front",
  14417. image: {
  14418. source: "./media/characters/pia-sr/front.svg",
  14419. extra: 760 / 730,
  14420. bottom: 0.015
  14421. }
  14422. },
  14423. back: {
  14424. height: math.unit(2, "m"),
  14425. weight: math.unit(115, "kg"),
  14426. name: "Back",
  14427. image: {
  14428. source: "./media/characters/pia-sr/back.svg",
  14429. extra: 760 / 730,
  14430. bottom: 0.01
  14431. }
  14432. },
  14433. hand: {
  14434. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14435. name: "Hand",
  14436. image: {
  14437. source: "./media/characters/pia-sr/hand.svg"
  14438. }
  14439. },
  14440. foot: {
  14441. height: math.unit(1.83, "feet"),
  14442. name: "Foot",
  14443. image: {
  14444. source: "./media/characters/pia-sr/foot.svg"
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Micro",
  14451. height: math.unit(88, "mm")
  14452. },
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(2, "m"),
  14456. default: true
  14457. },
  14458. {
  14459. name: "Macro",
  14460. height: math.unit(200, "m")
  14461. },
  14462. {
  14463. name: "Megamacro",
  14464. height: math.unit(420, "km")
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14470. {
  14471. front: {
  14472. height: math.unit(8 + 2 / 12, "feet"),
  14473. weight: math.unit(300, "lb"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/kibibyte/front.svg",
  14477. extra: 2221 / 2098,
  14478. bottom: 0.04
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(8 + 2 / 12, "feet"),
  14486. default: true
  14487. },
  14488. {
  14489. name: "Socialable Macro",
  14490. height: math.unit(50, "feet")
  14491. },
  14492. {
  14493. name: "Macro",
  14494. height: math.unit(300, "feet")
  14495. },
  14496. {
  14497. name: "Megamacro",
  14498. height: math.unit(500, "miles")
  14499. },
  14500. ]
  14501. ))
  14502. characterMakers.push(() => makeCharacter(
  14503. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14504. {
  14505. front: {
  14506. height: math.unit(6, "feet"),
  14507. weight: math.unit(150, "lb"),
  14508. name: "Front",
  14509. image: {
  14510. source: "./media/characters/felix/front.svg",
  14511. extra: 762 / 722,
  14512. bottom: 0.02
  14513. }
  14514. },
  14515. frontClothed: {
  14516. height: math.unit(6, "feet"),
  14517. weight: math.unit(150, "lb"),
  14518. name: "Front (Clothed)",
  14519. image: {
  14520. source: "./media/characters/felix/front-clothed.svg",
  14521. extra: 762 / 722,
  14522. bottom: 0.02
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(6 + 8 / 12, "feet"),
  14530. default: true
  14531. },
  14532. {
  14533. name: "Macro",
  14534. height: math.unit(2600, "feet")
  14535. },
  14536. {
  14537. name: "Megamacro",
  14538. height: math.unit(450, "miles")
  14539. },
  14540. ]
  14541. ))
  14542. characterMakers.push(() => makeCharacter(
  14543. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14544. {
  14545. front: {
  14546. height: math.unit(6 + 1 / 12, "feet"),
  14547. weight: math.unit(250, "lb"),
  14548. name: "Front",
  14549. image: {
  14550. source: "./media/characters/tobo/front.svg",
  14551. extra: 608 / 586,
  14552. bottom: 0.023
  14553. }
  14554. },
  14555. back: {
  14556. height: math.unit(6 + 1 / 12, "feet"),
  14557. weight: math.unit(250, "lb"),
  14558. name: "Back",
  14559. image: {
  14560. source: "./media/characters/tobo/back.svg",
  14561. extra: 608 / 586
  14562. }
  14563. },
  14564. },
  14565. [
  14566. {
  14567. name: "Nano",
  14568. height: math.unit(2, "nm")
  14569. },
  14570. {
  14571. name: "Megamicro",
  14572. height: math.unit(0.1, "mm")
  14573. },
  14574. {
  14575. name: "Micro",
  14576. height: math.unit(1, "inch"),
  14577. default: true
  14578. },
  14579. {
  14580. name: "Human-sized",
  14581. height: math.unit(6 + 1 / 12, "feet")
  14582. },
  14583. {
  14584. name: "Macro",
  14585. height: math.unit(250, "feet")
  14586. },
  14587. {
  14588. name: "Megamacro",
  14589. height: math.unit(75, "miles")
  14590. },
  14591. {
  14592. name: "Texas-sized",
  14593. height: math.unit(750, "miles")
  14594. },
  14595. {
  14596. name: "Teramacro",
  14597. height: math.unit(50000, "miles")
  14598. },
  14599. ]
  14600. ))
  14601. characterMakers.push(() => makeCharacter(
  14602. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14603. {
  14604. front: {
  14605. height: math.unit(6, "feet"),
  14606. weight: math.unit(269, "lb"),
  14607. name: "Front",
  14608. image: {
  14609. source: "./media/characters/danny-kapowsky/front.svg",
  14610. extra: 766 / 736,
  14611. bottom: 0.044
  14612. }
  14613. },
  14614. back: {
  14615. height: math.unit(6, "feet"),
  14616. weight: math.unit(269, "lb"),
  14617. name: "Back",
  14618. image: {
  14619. source: "./media/characters/danny-kapowsky/back.svg",
  14620. extra: 797 / 760,
  14621. bottom: 0.025
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Macro",
  14628. height: math.unit(150, "feet"),
  14629. default: true
  14630. },
  14631. {
  14632. name: "Macro+",
  14633. height: math.unit(200, "feet")
  14634. },
  14635. {
  14636. name: "Macro++",
  14637. height: math.unit(300, "feet")
  14638. },
  14639. {
  14640. name: "Macro+++",
  14641. height: math.unit(400, "feet")
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14647. {
  14648. side: {
  14649. height: math.unit(6, "feet"),
  14650. weight: math.unit(170, "lb"),
  14651. name: "Side",
  14652. image: {
  14653. source: "./media/characters/finn/side.svg",
  14654. extra: 1953 / 1807,
  14655. bottom: 0.057
  14656. }
  14657. },
  14658. },
  14659. [
  14660. {
  14661. name: "Megamacro",
  14662. height: math.unit(14445, "feet"),
  14663. default: true
  14664. },
  14665. ]
  14666. ))
  14667. characterMakers.push(() => makeCharacter(
  14668. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14669. {
  14670. front: {
  14671. height: math.unit(5 + 6 / 12, "feet"),
  14672. weight: math.unit(125, "lb"),
  14673. name: "Front",
  14674. image: {
  14675. source: "./media/characters/roy/front.svg",
  14676. extra: 1,
  14677. bottom: 0.11
  14678. }
  14679. },
  14680. },
  14681. [
  14682. {
  14683. name: "Micro",
  14684. height: math.unit(3, "inches"),
  14685. default: true
  14686. },
  14687. {
  14688. name: "Normal",
  14689. height: math.unit(5 + 6 / 12, "feet")
  14690. },
  14691. {
  14692. name: "Lesser Macro",
  14693. height: math.unit(60, "feet")
  14694. },
  14695. {
  14696. name: "Greater Macro",
  14697. height: math.unit(120, "feet")
  14698. },
  14699. ]
  14700. ))
  14701. characterMakers.push(() => makeCharacter(
  14702. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14703. {
  14704. front: {
  14705. height: math.unit(6, "feet"),
  14706. weight: math.unit(100, "lb"),
  14707. name: "Front",
  14708. image: {
  14709. source: "./media/characters/aevsivs/front.svg",
  14710. extra: 1,
  14711. bottom: 0.03
  14712. }
  14713. },
  14714. back: {
  14715. height: math.unit(6, "feet"),
  14716. weight: math.unit(100, "lb"),
  14717. name: "Back",
  14718. image: {
  14719. source: "./media/characters/aevsivs/back.svg"
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Micro",
  14726. height: math.unit(2, "inches"),
  14727. default: true
  14728. },
  14729. {
  14730. name: "Normal",
  14731. height: math.unit(5, "feet")
  14732. },
  14733. ]
  14734. ))
  14735. characterMakers.push(() => makeCharacter(
  14736. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14737. {
  14738. front: {
  14739. height: math.unit(5 + 7 / 12, "feet"),
  14740. weight: math.unit(159, "lb"),
  14741. name: "Front",
  14742. image: {
  14743. source: "./media/characters/hildegard/front.svg",
  14744. extra: 289 / 269,
  14745. bottom: 7.63 / 297.8
  14746. }
  14747. },
  14748. back: {
  14749. height: math.unit(5 + 7 / 12, "feet"),
  14750. weight: math.unit(159, "lb"),
  14751. name: "Back",
  14752. image: {
  14753. source: "./media/characters/hildegard/back.svg",
  14754. extra: 280 / 260,
  14755. bottom: 2.3 / 282
  14756. }
  14757. },
  14758. },
  14759. [
  14760. {
  14761. name: "Normal",
  14762. height: math.unit(5 + 7 / 12, "feet"),
  14763. default: true
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14769. {
  14770. bernard: {
  14771. height: math.unit(2 + 7 / 12, "feet"),
  14772. weight: math.unit(66, "lb"),
  14773. name: "Bernard",
  14774. rename: true,
  14775. image: {
  14776. source: "./media/characters/bernard-wilder/bernard.svg",
  14777. extra: 192 / 128,
  14778. bottom: 0.05
  14779. }
  14780. },
  14781. wilder: {
  14782. height: math.unit(5 + 8 / 12, "feet"),
  14783. weight: math.unit(143, "lb"),
  14784. name: "Wilder",
  14785. rename: true,
  14786. image: {
  14787. source: "./media/characters/bernard-wilder/wilder.svg",
  14788. extra: 361 / 312,
  14789. bottom: 0.02
  14790. }
  14791. },
  14792. },
  14793. [
  14794. {
  14795. name: "Normal",
  14796. height: math.unit(2 + 7 / 12, "feet"),
  14797. default: true
  14798. },
  14799. ]
  14800. ))
  14801. characterMakers.push(() => makeCharacter(
  14802. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14803. {
  14804. anthro: {
  14805. height: math.unit(6 + 1 / 12, "feet"),
  14806. weight: math.unit(155, "lb"),
  14807. name: "Anthro",
  14808. image: {
  14809. source: "./media/characters/hearth/anthro.svg",
  14810. extra: 260 / 250,
  14811. bottom: 0.02
  14812. }
  14813. },
  14814. feral: {
  14815. height: math.unit(3.78, "feet"),
  14816. weight: math.unit(35, "kg"),
  14817. name: "Feral",
  14818. image: {
  14819. source: "./media/characters/hearth/feral.svg",
  14820. extra: 153 / 135,
  14821. bottom: 0.03
  14822. }
  14823. },
  14824. },
  14825. [
  14826. {
  14827. name: "Normal",
  14828. height: math.unit(6 + 1 / 12, "feet"),
  14829. default: true
  14830. },
  14831. ]
  14832. ))
  14833. characterMakers.push(() => makeCharacter(
  14834. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14835. {
  14836. front: {
  14837. height: math.unit(6, "feet"),
  14838. weight: math.unit(182, "lb"),
  14839. name: "Front",
  14840. image: {
  14841. source: "./media/characters/ingrid/front.svg",
  14842. extra: 294 / 268,
  14843. bottom: 0.027
  14844. }
  14845. },
  14846. },
  14847. [
  14848. {
  14849. name: "Normal",
  14850. height: math.unit(6, "feet"),
  14851. default: true
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14857. {
  14858. eevee: {
  14859. height: math.unit(2 + 10 / 12, "feet"),
  14860. weight: math.unit(86, "lb"),
  14861. name: "Malgam",
  14862. image: {
  14863. source: "./media/characters/malgam/eevee.svg",
  14864. extra: 218 / 180,
  14865. bottom: 0.2
  14866. }
  14867. },
  14868. sylveon: {
  14869. height: math.unit(4, "feet"),
  14870. weight: math.unit(101, "lb"),
  14871. name: "Future Malgam",
  14872. rename: true,
  14873. image: {
  14874. source: "./media/characters/malgam/sylveon.svg",
  14875. extra: 371 / 325,
  14876. bottom: 0.015
  14877. }
  14878. },
  14879. gigantamax: {
  14880. height: math.unit(50, "feet"),
  14881. name: "Gigantamax Malgam",
  14882. rename: true,
  14883. image: {
  14884. source: "./media/characters/malgam/gigantamax.svg"
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(2 + 10 / 12, "feet"),
  14892. default: true
  14893. },
  14894. ]
  14895. ))
  14896. characterMakers.push(() => makeCharacter(
  14897. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14898. {
  14899. front: {
  14900. height: math.unit(5 + 11 / 12, "feet"),
  14901. weight: math.unit(188, "lb"),
  14902. name: "Front",
  14903. image: {
  14904. source: "./media/characters/fleur/front.svg",
  14905. extra: 309 / 283,
  14906. bottom: 0.007
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Normal",
  14913. height: math.unit(5 + 11 / 12, "feet"),
  14914. default: true
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14920. {
  14921. front: {
  14922. height: math.unit(5 + 4 / 12, "feet"),
  14923. weight: math.unit(122, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/jude/front.svg",
  14927. extra: 288 / 273,
  14928. bottom: 0.03
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Normal",
  14935. height: math.unit(5 + 4 / 12, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(5 + 11 / 12, "feet"),
  14945. weight: math.unit(190, "lb"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/seara/front.svg",
  14949. extra: 1,
  14950. bottom: 0.05
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Normal",
  14957. height: math.unit(5 + 11 / 12, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(16 + 5 / 12, "feet"),
  14967. weight: math.unit(524, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/caspian/front.svg",
  14971. extra: 1,
  14972. bottom: 0.04
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Normal",
  14979. height: math.unit(16 + 5 / 12, "feet"),
  14980. default: true
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14986. {
  14987. front: {
  14988. height: math.unit(5 + 7 / 12, "feet"),
  14989. weight: math.unit(170, "lb"),
  14990. name: "Front",
  14991. image: {
  14992. source: "./media/characters/mika/front.svg",
  14993. extra: 1,
  14994. bottom: 0.016
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(5 + 7 / 12, "feet"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(6 + 2 / 12, "feet"),
  15011. weight: math.unit(268, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/sol/front.svg",
  15015. extra: 247 / 231,
  15016. bottom: 0.05
  15017. }
  15018. },
  15019. },
  15020. [
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(6 + 2 / 12, "feet"),
  15024. default: true
  15025. },
  15026. ]
  15027. ))
  15028. characterMakers.push(() => makeCharacter(
  15029. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15030. {
  15031. buizel: {
  15032. height: math.unit(2 + 5 / 12, "feet"),
  15033. weight: math.unit(87, "lb"),
  15034. name: "Buizel",
  15035. image: {
  15036. source: "./media/characters/umiko/buizel.svg",
  15037. extra: 172 / 157,
  15038. bottom: 0.01
  15039. }
  15040. },
  15041. floatzel: {
  15042. height: math.unit(5 + 9 / 12, "feet"),
  15043. weight: math.unit(250, "lb"),
  15044. name: "Floatzel",
  15045. image: {
  15046. source: "./media/characters/umiko/floatzel.svg",
  15047. extra: 262 / 248
  15048. }
  15049. },
  15050. },
  15051. [
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(2 + 5 / 12, "feet"),
  15055. default: true
  15056. },
  15057. ]
  15058. ))
  15059. characterMakers.push(() => makeCharacter(
  15060. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15061. {
  15062. front: {
  15063. height: math.unit(6 + 2 / 12, "feet"),
  15064. weight: math.unit(146, "lb"),
  15065. name: "Front",
  15066. image: {
  15067. source: "./media/characters/iliac/front.svg",
  15068. extra: 389 / 365,
  15069. bottom: 0.035
  15070. }
  15071. },
  15072. },
  15073. [
  15074. {
  15075. name: "Normal",
  15076. height: math.unit(6 + 2 / 12, "feet"),
  15077. default: true
  15078. },
  15079. ]
  15080. ))
  15081. characterMakers.push(() => makeCharacter(
  15082. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15083. {
  15084. front: {
  15085. height: math.unit(6, "feet"),
  15086. weight: math.unit(170, "lb"),
  15087. name: "Front",
  15088. image: {
  15089. source: "./media/characters/topaz/front.svg",
  15090. extra: 317 / 303,
  15091. bottom: 0.055
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(6, "feet"),
  15099. default: true
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(5 + 11 / 12, "feet"),
  15108. weight: math.unit(144, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/gabriel/front.svg",
  15112. extra: 285 / 262,
  15113. bottom: 0.004
  15114. }
  15115. },
  15116. },
  15117. [
  15118. {
  15119. name: "Normal",
  15120. height: math.unit(5 + 11 / 12, "feet"),
  15121. default: true
  15122. },
  15123. ]
  15124. ))
  15125. characterMakers.push(() => makeCharacter(
  15126. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15127. {
  15128. side: {
  15129. height: math.unit(6 + 5 / 12, "feet"),
  15130. weight: math.unit(300, "lb"),
  15131. name: "Side",
  15132. image: {
  15133. source: "./media/characters/tempest-suicune/side.svg",
  15134. extra: 195 / 154,
  15135. bottom: 0.04
  15136. }
  15137. },
  15138. },
  15139. [
  15140. {
  15141. name: "Normal",
  15142. height: math.unit(6 + 5 / 12, "feet"),
  15143. default: true
  15144. },
  15145. ]
  15146. ))
  15147. characterMakers.push(() => makeCharacter(
  15148. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15149. {
  15150. front: {
  15151. height: math.unit(7 + 2 / 12, "feet"),
  15152. weight: math.unit(322, "lb"),
  15153. name: "Front",
  15154. image: {
  15155. source: "./media/characters/vulcan/front.svg",
  15156. extra: 154 / 147,
  15157. bottom: 0.04
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(7 + 2 / 12, "feet"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(5 + 10 / 12, "feet"),
  15174. weight: math.unit(264, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/gault/front.svg",
  15178. extra: 161 / 140,
  15179. bottom: 0.028
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Normal",
  15186. height: math.unit(5 + 10 / 12, "feet"),
  15187. default: true
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15193. {
  15194. front: {
  15195. height: math.unit(6, "feet"),
  15196. weight: math.unit(150, "lb"),
  15197. name: "Front",
  15198. image: {
  15199. source: "./media/characters/shard/front.svg",
  15200. extra: 273 / 238,
  15201. bottom: 0.02
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(3 + 6 / 12, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(5 + 11 / 12, "feet"),
  15218. weight: math.unit(146, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/ashe/front.svg",
  15222. extra: 400 / 373,
  15223. bottom: 0.01
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(5 + 11 / 12, "feet"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(5 + 5 / 12, "feet"),
  15240. weight: math.unit(135, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/beatrix/front.svg",
  15244. extra: 392 / 379,
  15245. bottom: 0.01
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(6, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(6, "feet"),
  15262. weight: math.unit(150, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/ignatius/front.svg",
  15266. extra: 245 / 222,
  15267. bottom: 0.01
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(5 + 5 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(6 + 2 / 12, "feet"),
  15284. weight: math.unit(138, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/mei-li/front.svg",
  15288. extra: 237 / 229,
  15289. bottom: 0.03
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(6 + 2 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(2 + 4 / 12, "feet"),
  15306. weight: math.unit(62, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/puru/front.svg",
  15310. extra: 206 / 149,
  15311. bottom: 0.06
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(2 + 4 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15325. {
  15326. anthro: {
  15327. height: math.unit(5 + 8/12, "feet"),
  15328. weight: math.unit(200, "lb"),
  15329. energyNeed: math.unit(2000, "kcal"),
  15330. name: "Anthro",
  15331. image: {
  15332. source: "./media/characters/kee/anthro.svg",
  15333. extra: 3251/3184,
  15334. bottom: 250/3501
  15335. }
  15336. },
  15337. taur: {
  15338. height: math.unit(11, "feet"),
  15339. weight: math.unit(500, "lb"),
  15340. energyNeed: math.unit(5000, "kcal"),
  15341. name: "Taur",
  15342. image: {
  15343. source: "./media/characters/kee/taur.svg",
  15344. extra: 1362/1320,
  15345. bottom: 83/1445
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Normal",
  15352. height: math.unit(5 + 8/12, "feet"),
  15353. default: true
  15354. },
  15355. {
  15356. name: "Macro",
  15357. height: math.unit(35, "feet")
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15363. {
  15364. anthro: {
  15365. height: math.unit(7, "feet"),
  15366. weight: math.unit(190, "lb"),
  15367. name: "Anthro",
  15368. image: {
  15369. source: "./media/characters/cobalt-dracha/anthro.svg",
  15370. extra: 231 / 225,
  15371. bottom: 0.04
  15372. }
  15373. },
  15374. feral: {
  15375. height: math.unit(9 + 7 / 12, "feet"),
  15376. weight: math.unit(294, "lb"),
  15377. name: "Feral",
  15378. image: {
  15379. source: "./media/characters/cobalt-dracha/feral.svg",
  15380. extra: 692 / 633,
  15381. bottom: 0.05
  15382. }
  15383. },
  15384. },
  15385. [
  15386. {
  15387. name: "Normal",
  15388. height: math.unit(7, "feet"),
  15389. default: true
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15395. {
  15396. fallen: {
  15397. height: math.unit(11 + 8 / 12, "feet"),
  15398. weight: math.unit(485, "lb"),
  15399. name: "Java (Fallen)",
  15400. rename: true,
  15401. image: {
  15402. source: "./media/characters/java/fallen.svg",
  15403. extra: 226 / 208,
  15404. bottom: 0.005
  15405. }
  15406. },
  15407. godkin: {
  15408. height: math.unit(10 + 6 / 12, "feet"),
  15409. weight: math.unit(328, "lb"),
  15410. name: "Java (Godkin)",
  15411. rename: true,
  15412. image: {
  15413. source: "./media/characters/java/godkin.svg",
  15414. extra: 270 / 262,
  15415. bottom: 0.02
  15416. }
  15417. },
  15418. },
  15419. [
  15420. {
  15421. name: "Normal",
  15422. height: math.unit(11 + 8 / 12, "feet"),
  15423. default: true
  15424. },
  15425. ]
  15426. ))
  15427. characterMakers.push(() => makeCharacter(
  15428. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15429. {
  15430. front: {
  15431. height: math.unit(7 + 8 / 12, "feet"),
  15432. weight: math.unit(320, "lb"),
  15433. name: "Front",
  15434. image: {
  15435. source: "./media/characters/skoll/front.svg",
  15436. extra: 232 / 220,
  15437. bottom: 0.02
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(7 + 8 / 12, "feet"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15451. {
  15452. front: {
  15453. height: math.unit(5 + 9 / 12, "feet"),
  15454. weight: math.unit(170, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/purna/front.svg",
  15458. extra: 239 / 229,
  15459. bottom: 0.01
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Normal",
  15466. height: math.unit(5 + 9 / 12, "feet"),
  15467. default: true
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15473. {
  15474. front: {
  15475. height: math.unit(5 + 9 / 12, "feet"),
  15476. weight: math.unit(142, "lb"),
  15477. name: "Front",
  15478. image: {
  15479. source: "./media/characters/kuva/front.svg",
  15480. extra: 281 / 271,
  15481. bottom: 0.006
  15482. }
  15483. },
  15484. },
  15485. [
  15486. {
  15487. name: "Normal",
  15488. height: math.unit(5 + 9 / 12, "feet"),
  15489. default: true
  15490. },
  15491. ]
  15492. ))
  15493. characterMakers.push(() => makeCharacter(
  15494. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15495. {
  15496. anthro: {
  15497. height: math.unit(9 + 2 / 12, "feet"),
  15498. weight: math.unit(270, "lb"),
  15499. name: "Anthro",
  15500. image: {
  15501. source: "./media/characters/embra/anthro.svg",
  15502. extra: 200 / 187,
  15503. bottom: 0.02
  15504. }
  15505. },
  15506. feral: {
  15507. height: math.unit(18 + 8 / 12, "feet"),
  15508. weight: math.unit(576, "lb"),
  15509. name: "Feral",
  15510. image: {
  15511. source: "./media/characters/embra/feral.svg",
  15512. extra: 152 / 137,
  15513. bottom: 0.037
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(9 + 2 / 12, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15527. {
  15528. anthro: {
  15529. height: math.unit(10 + 9 / 12, "feet"),
  15530. weight: math.unit(224, "lb"),
  15531. name: "Anthro",
  15532. image: {
  15533. source: "./media/characters/grottos/anthro.svg",
  15534. extra: 350 / 332,
  15535. bottom: 0.045
  15536. }
  15537. },
  15538. feral: {
  15539. height: math.unit(20 + 7 / 12, "feet"),
  15540. weight: math.unit(629, "lb"),
  15541. name: "Feral",
  15542. image: {
  15543. source: "./media/characters/grottos/feral.svg",
  15544. extra: 207 / 190,
  15545. bottom: 0.05
  15546. }
  15547. },
  15548. },
  15549. [
  15550. {
  15551. name: "Normal",
  15552. height: math.unit(10 + 9 / 12, "feet"),
  15553. default: true
  15554. },
  15555. ]
  15556. ))
  15557. characterMakers.push(() => makeCharacter(
  15558. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15559. {
  15560. anthro: {
  15561. height: math.unit(9 + 6 / 12, "feet"),
  15562. weight: math.unit(298, "lb"),
  15563. name: "Anthro",
  15564. image: {
  15565. source: "./media/characters/frifna/anthro.svg",
  15566. extra: 282 / 269,
  15567. bottom: 0.015
  15568. }
  15569. },
  15570. feral: {
  15571. height: math.unit(16 + 2 / 12, "feet"),
  15572. weight: math.unit(624, "lb"),
  15573. name: "Feral",
  15574. image: {
  15575. source: "./media/characters/frifna/feral.svg"
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(9 + 6 / 12, "feet"),
  15583. default: true
  15584. },
  15585. ]
  15586. ))
  15587. characterMakers.push(() => makeCharacter(
  15588. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15589. {
  15590. front: {
  15591. height: math.unit(6 + 2 / 12, "feet"),
  15592. weight: math.unit(168, "lb"),
  15593. name: "Front",
  15594. image: {
  15595. source: "./media/characters/elise/front.svg",
  15596. extra: 276 / 271
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "Normal",
  15603. height: math.unit(6 + 2 / 12, "feet"),
  15604. default: true
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15610. {
  15611. front: {
  15612. height: math.unit(5 + 10 / 12, "feet"),
  15613. weight: math.unit(210, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/glade/front.svg",
  15617. extra: 258 / 247,
  15618. bottom: 0.008
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(5 + 10 / 12, "feet"),
  15626. default: true
  15627. },
  15628. ]
  15629. ))
  15630. characterMakers.push(() => makeCharacter(
  15631. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15632. {
  15633. front: {
  15634. height: math.unit(5 + 10 / 12, "feet"),
  15635. weight: math.unit(129, "lb"),
  15636. name: "Front",
  15637. image: {
  15638. source: "./media/characters/rina/front.svg",
  15639. extra: 266 / 255,
  15640. bottom: 0.005
  15641. }
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Normal",
  15647. height: math.unit(5 + 10 / 12, "feet"),
  15648. default: true
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(6 + 1 / 12, "feet"),
  15657. weight: math.unit(192, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/veronica/front.svg",
  15661. extra: 319 / 309,
  15662. bottom: 0.005
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(6 + 1 / 12, "feet"),
  15670. default: true
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15676. {
  15677. front: {
  15678. height: math.unit(9 + 3 / 12, "feet"),
  15679. weight: math.unit(1100, "lb"),
  15680. name: "Front",
  15681. image: {
  15682. source: "./media/characters/braxton/front.svg",
  15683. extra: 1057 / 984,
  15684. bottom: 0.05
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(9 + 3 / 12, "feet")
  15692. },
  15693. {
  15694. name: "Giant",
  15695. height: math.unit(300, "feet"),
  15696. default: true
  15697. },
  15698. {
  15699. name: "Macro",
  15700. height: math.unit(700, "feet")
  15701. },
  15702. {
  15703. name: "Megamacro",
  15704. height: math.unit(6000, "feet")
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(6 + 7 / 12, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/blue-feyonics/front.svg",
  15717. extra: 1403 / 1306,
  15718. bottom: 0.047
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(6 + 7 / 12, "feet"),
  15726. default: true
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(1.8, "meters"),
  15735. weight: math.unit(60, "kg"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/maxwell/front.svg",
  15739. extra: 2060 / 1873
  15740. }
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Micro",
  15746. height: math.unit(1, "mm")
  15747. },
  15748. {
  15749. name: "Normal",
  15750. height: math.unit(1.8, "meter"),
  15751. default: true
  15752. },
  15753. {
  15754. name: "Macro",
  15755. height: math.unit(30, "meters")
  15756. },
  15757. {
  15758. name: "Megamacro",
  15759. height: math.unit(10, "km")
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15765. {
  15766. front: {
  15767. height: math.unit(6, "feet"),
  15768. weight: math.unit(150, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/jack/front.svg",
  15772. extra: 1754 / 1640,
  15773. bottom: 0.01
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Normal",
  15780. height: math.unit(80000, "feet"),
  15781. default: true
  15782. },
  15783. {
  15784. name: "Max size",
  15785. height: math.unit(10, "lightyears")
  15786. },
  15787. ]
  15788. ))
  15789. characterMakers.push(() => makeCharacter(
  15790. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15791. {
  15792. urban: {
  15793. height: math.unit(5, "feet"),
  15794. weight: math.unit(240, "lb"),
  15795. name: "Urban",
  15796. image: {
  15797. source: "./media/characters/cafat/urban.svg",
  15798. extra: 1223/1126,
  15799. bottom: 205/1428
  15800. }
  15801. },
  15802. summer: {
  15803. height: math.unit(5, "feet"),
  15804. weight: math.unit(240, "lb"),
  15805. name: "Summer",
  15806. image: {
  15807. source: "./media/characters/cafat/summer.svg",
  15808. extra: 1223/1126,
  15809. bottom: 205/1428
  15810. }
  15811. },
  15812. winter: {
  15813. height: math.unit(5, "feet"),
  15814. weight: math.unit(240, "lb"),
  15815. name: "Winter",
  15816. image: {
  15817. source: "./media/characters/cafat/winter.svg",
  15818. extra: 1223/1126,
  15819. bottom: 205/1428
  15820. }
  15821. },
  15822. lingerie: {
  15823. height: math.unit(5, "feet"),
  15824. weight: math.unit(240, "lb"),
  15825. name: "Lingerie",
  15826. image: {
  15827. source: "./media/characters/cafat/lingerie.svg",
  15828. extra: 1223/1126,
  15829. bottom: 205/1428
  15830. }
  15831. },
  15832. upright: {
  15833. height: math.unit(6.3, "feet"),
  15834. weight: math.unit(240, "lb"),
  15835. name: "Upright",
  15836. image: {
  15837. source: "./media/characters/cafat/upright.svg",
  15838. bottom: 0.01
  15839. }
  15840. },
  15841. uprightFull: {
  15842. height: math.unit(6.3, "feet"),
  15843. weight: math.unit(240, "lb"),
  15844. name: "Upright (Full)",
  15845. image: {
  15846. source: "./media/characters/cafat/upright-full.svg",
  15847. bottom: 0.01
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Small",
  15854. height: math.unit(5, "feet"),
  15855. default: true
  15856. },
  15857. {
  15858. name: "Large",
  15859. height: math.unit(13, "feet")
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(6, "feet"),
  15868. weight: math.unit(150, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/verin-raharra/front.svg",
  15872. extra: 5019 / 4835,
  15873. bottom: 0.023
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(7 + 5 / 12, "feet"),
  15881. default: true
  15882. },
  15883. {
  15884. name: "Upsized",
  15885. height: math.unit(20, "feet")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(7, "feet"),
  15894. weight: math.unit(230, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/nakata/front.svg",
  15898. extra: 1.005,
  15899. bottom: 0.01
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(7, "feet"),
  15907. default: true
  15908. },
  15909. {
  15910. name: "Big",
  15911. height: math.unit(14, "feet")
  15912. },
  15913. {
  15914. name: "Macro",
  15915. height: math.unit(400, "feet")
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(4.91, "feet"),
  15924. weight: math.unit(100, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/lily/front.svg",
  15928. extra: 1585 / 1415,
  15929. bottom: 0.02
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(4.91, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15943. {
  15944. laying: {
  15945. height: math.unit(4 + 4 / 12, "feet"),
  15946. weight: math.unit(600, "lb"),
  15947. name: "Laying",
  15948. image: {
  15949. source: "./media/characters/sheila/laying.svg",
  15950. extra: 1333 / 1265,
  15951. bottom: 0.16
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(4 + 4 / 12, "feet"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(6, "feet"),
  15968. weight: math.unit(190, "lb"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/sax/front.svg",
  15972. extra: 1187 / 973,
  15973. bottom: 0.042
  15974. }
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Micro",
  15980. height: math.unit(4, "inches"),
  15981. default: true
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15987. {
  15988. front: {
  15989. height: math.unit(6, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/pandora/front.svg",
  15994. extra: 2720 / 2556,
  15995. bottom: 0.015
  15996. }
  15997. },
  15998. back: {
  15999. height: math.unit(6, "feet"),
  16000. weight: math.unit(150, "lb"),
  16001. name: "Back",
  16002. image: {
  16003. source: "./media/characters/pandora/back.svg",
  16004. extra: 2720 / 2556,
  16005. bottom: 0.01
  16006. }
  16007. },
  16008. beans: {
  16009. height: math.unit(6 / 8, "feet"),
  16010. name: "Beans",
  16011. image: {
  16012. source: "./media/characters/pandora/beans.svg"
  16013. }
  16014. },
  16015. collar: {
  16016. height: math.unit(0.31, "feet"),
  16017. name: "Collar",
  16018. image: {
  16019. source: "./media/characters/pandora/collar.svg"
  16020. }
  16021. },
  16022. skirt: {
  16023. height: math.unit(6, "feet"),
  16024. weight: math.unit(150, "lb"),
  16025. name: "Skirt",
  16026. image: {
  16027. source: "./media/characters/pandora/skirt.svg",
  16028. extra: 1622 / 1525,
  16029. bottom: 0.015
  16030. }
  16031. },
  16032. hoodie: {
  16033. height: math.unit(6, "feet"),
  16034. weight: math.unit(150, "lb"),
  16035. name: "Hoodie",
  16036. image: {
  16037. source: "./media/characters/pandora/hoodie.svg",
  16038. extra: 1622 / 1525,
  16039. bottom: 0.015
  16040. }
  16041. },
  16042. casual: {
  16043. height: math.unit(6, "feet"),
  16044. weight: math.unit(150, "lb"),
  16045. name: "Casual",
  16046. image: {
  16047. source: "./media/characters/pandora/casual.svg",
  16048. extra: 1622 / 1525,
  16049. bottom: 0.015
  16050. }
  16051. },
  16052. },
  16053. [
  16054. {
  16055. name: "Normal",
  16056. height: math.unit(6, "feet")
  16057. },
  16058. {
  16059. name: "Big Steppy",
  16060. height: math.unit(1, "km"),
  16061. default: true
  16062. },
  16063. {
  16064. name: "Galactic Steppy",
  16065. height: math.unit(2, "gigameters")
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16071. {
  16072. side: {
  16073. height: math.unit(10, "feet"),
  16074. weight: math.unit(800, "kg"),
  16075. name: "Side",
  16076. image: {
  16077. source: "./media/characters/venio-darcony/side.svg",
  16078. extra: 1373 / 1003,
  16079. bottom: 0.037
  16080. }
  16081. },
  16082. front: {
  16083. height: math.unit(19, "feet"),
  16084. weight: math.unit(800, "kg"),
  16085. name: "Front",
  16086. image: {
  16087. source: "./media/characters/venio-darcony/front.svg"
  16088. }
  16089. },
  16090. back: {
  16091. height: math.unit(19, "feet"),
  16092. weight: math.unit(800, "kg"),
  16093. name: "Back",
  16094. image: {
  16095. source: "./media/characters/venio-darcony/back.svg"
  16096. }
  16097. },
  16098. sideNsfw: {
  16099. height: math.unit(10, "feet"),
  16100. weight: math.unit(800, "kg"),
  16101. name: "Side (NSFW)",
  16102. image: {
  16103. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16104. extra: 1373 / 1003,
  16105. bottom: 0.037
  16106. }
  16107. },
  16108. frontNsfw: {
  16109. height: math.unit(19, "feet"),
  16110. weight: math.unit(800, "kg"),
  16111. name: "Front (NSFW)",
  16112. image: {
  16113. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16114. }
  16115. },
  16116. backNsfw: {
  16117. height: math.unit(19, "feet"),
  16118. weight: math.unit(800, "kg"),
  16119. name: "Back (NSFW)",
  16120. image: {
  16121. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16122. }
  16123. },
  16124. sideArmored: {
  16125. height: math.unit(10, "feet"),
  16126. weight: math.unit(800, "kg"),
  16127. name: "Side (Armored)",
  16128. image: {
  16129. source: "./media/characters/venio-darcony/side-armored.svg",
  16130. extra: 1373 / 1003,
  16131. bottom: 0.037
  16132. }
  16133. },
  16134. frontArmored: {
  16135. height: math.unit(19, "feet"),
  16136. weight: math.unit(900, "kg"),
  16137. name: "Front (Armored)",
  16138. image: {
  16139. source: "./media/characters/venio-darcony/front-armored.svg"
  16140. }
  16141. },
  16142. backArmored: {
  16143. height: math.unit(19, "feet"),
  16144. weight: math.unit(900, "kg"),
  16145. name: "Back (Armored)",
  16146. image: {
  16147. source: "./media/characters/venio-darcony/back-armored.svg"
  16148. }
  16149. },
  16150. sword: {
  16151. height: math.unit(10, "feet"),
  16152. weight: math.unit(50, "lb"),
  16153. name: "Sword",
  16154. image: {
  16155. source: "./media/characters/venio-darcony/sword.svg"
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Normal",
  16162. height: math.unit(10, "feet")
  16163. },
  16164. {
  16165. name: "Macro",
  16166. height: math.unit(130, "feet"),
  16167. default: true
  16168. },
  16169. {
  16170. name: "Macro+",
  16171. height: math.unit(240, "feet")
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16177. {
  16178. front: {
  16179. height: math.unit(6, "feet"),
  16180. weight: math.unit(150, "lb"),
  16181. name: "Front",
  16182. image: {
  16183. source: "./media/characters/veski/front.svg",
  16184. extra: 1299 / 1225,
  16185. bottom: 0.04
  16186. }
  16187. },
  16188. back: {
  16189. height: math.unit(6, "feet"),
  16190. weight: math.unit(150, "lb"),
  16191. name: "Back",
  16192. image: {
  16193. source: "./media/characters/veski/back.svg",
  16194. extra: 1299 / 1225,
  16195. bottom: 0.008
  16196. }
  16197. },
  16198. maw: {
  16199. height: math.unit(1.5 * 1.21, "feet"),
  16200. name: "Maw",
  16201. image: {
  16202. source: "./media/characters/veski/maw.svg"
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Macro",
  16209. height: math.unit(2, "km"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(5 + 7 / 12, "feet"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/isabelle/front.svg",
  16222. extra: 2130 / 1976,
  16223. bottom: 0.05
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Supermicro",
  16230. height: math.unit(10, "micrometers")
  16231. },
  16232. {
  16233. name: "Micro",
  16234. height: math.unit(1, "inch")
  16235. },
  16236. {
  16237. name: "Tiny",
  16238. height: math.unit(5, "inches")
  16239. },
  16240. {
  16241. name: "Standard",
  16242. height: math.unit(5 + 7 / 12, "inches")
  16243. },
  16244. {
  16245. name: "Macro",
  16246. height: math.unit(80, "meters"),
  16247. default: true
  16248. },
  16249. {
  16250. name: "Megamacro",
  16251. height: math.unit(250, "meters")
  16252. },
  16253. {
  16254. name: "Gigamacro",
  16255. height: math.unit(5, "km")
  16256. },
  16257. {
  16258. name: "Cosmic",
  16259. height: math.unit(2.5e6, "miles")
  16260. },
  16261. ]
  16262. ))
  16263. characterMakers.push(() => makeCharacter(
  16264. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16265. {
  16266. front: {
  16267. height: math.unit(6, "feet"),
  16268. weight: math.unit(150, "lb"),
  16269. name: "Front",
  16270. image: {
  16271. source: "./media/characters/hanzo/front.svg",
  16272. extra: 374 / 344,
  16273. bottom: 0.02
  16274. }
  16275. },
  16276. },
  16277. [
  16278. {
  16279. name: "Normal",
  16280. height: math.unit(8, "feet"),
  16281. default: true
  16282. },
  16283. ]
  16284. ))
  16285. characterMakers.push(() => makeCharacter(
  16286. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16287. {
  16288. front: {
  16289. height: math.unit(7, "feet"),
  16290. weight: math.unit(130, "lb"),
  16291. name: "Front",
  16292. image: {
  16293. source: "./media/characters/anna/front.svg",
  16294. extra: 169 / 145,
  16295. bottom: 0.06
  16296. }
  16297. },
  16298. full: {
  16299. height: math.unit(4.96, "feet"),
  16300. weight: math.unit(220, "lb"),
  16301. name: "Full",
  16302. image: {
  16303. source: "./media/characters/anna/full.svg",
  16304. extra: 138 / 114,
  16305. bottom: 0.15
  16306. }
  16307. },
  16308. tongue: {
  16309. height: math.unit(2.53, "feet"),
  16310. name: "Tongue",
  16311. image: {
  16312. source: "./media/characters/anna/tongue.svg"
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(7, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(7, "feet"),
  16329. weight: math.unit(150, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/ian-corvid/front.svg",
  16333. extra: 150 / 142,
  16334. bottom: 0.02
  16335. }
  16336. },
  16337. back: {
  16338. height: math.unit(7, "feet"),
  16339. weight: math.unit(150, "lb"),
  16340. name: "Back",
  16341. image: {
  16342. source: "./media/characters/ian-corvid/back.svg",
  16343. extra: 150 / 143,
  16344. bottom: 0.01
  16345. }
  16346. },
  16347. stomping: {
  16348. height: math.unit(7, "feet"),
  16349. weight: math.unit(150, "lb"),
  16350. name: "Stomping",
  16351. image: {
  16352. source: "./media/characters/ian-corvid/stomping.svg",
  16353. extra: 76 / 72
  16354. }
  16355. },
  16356. sitting: {
  16357. height: math.unit(7 / 1.8, "feet"),
  16358. weight: math.unit(150, "lb"),
  16359. name: "Sitting",
  16360. image: {
  16361. source: "./media/characters/ian-corvid/sitting.svg",
  16362. extra: 1400 / 1269,
  16363. bottom: 0.15
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Tiny Microw",
  16370. height: math.unit(1, "inch")
  16371. },
  16372. {
  16373. name: "Microw",
  16374. height: math.unit(6, "inches")
  16375. },
  16376. {
  16377. name: "Crow",
  16378. height: math.unit(7 + 1 / 12, "feet"),
  16379. default: true
  16380. },
  16381. {
  16382. name: "Macrow",
  16383. height: math.unit(176, "feet")
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(5 + 7 / 12, "feet"),
  16392. weight: math.unit(147, "lb"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/natalie-kellon/front.svg",
  16396. extra: 1214 / 1141,
  16397. bottom: 0.02
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Micro",
  16404. height: math.unit(1 / 16, "inch")
  16405. },
  16406. {
  16407. name: "Tiny",
  16408. height: math.unit(4, "inches")
  16409. },
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(5 + 7 / 12, "feet"),
  16413. default: true
  16414. },
  16415. {
  16416. name: "Amazon",
  16417. height: math.unit(12, "feet")
  16418. },
  16419. {
  16420. name: "Giantess",
  16421. height: math.unit(160, "meters")
  16422. },
  16423. {
  16424. name: "Titaness",
  16425. height: math.unit(800, "meters")
  16426. },
  16427. ]
  16428. ))
  16429. characterMakers.push(() => makeCharacter(
  16430. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16431. {
  16432. front: {
  16433. height: math.unit(6, "feet"),
  16434. weight: math.unit(150, "lb"),
  16435. name: "Front",
  16436. image: {
  16437. source: "./media/characters/alluria/front.svg",
  16438. extra: 806 / 738,
  16439. bottom: 0.01
  16440. }
  16441. },
  16442. side: {
  16443. height: math.unit(6, "feet"),
  16444. weight: math.unit(150, "lb"),
  16445. name: "Side",
  16446. image: {
  16447. source: "./media/characters/alluria/side.svg",
  16448. extra: 800 / 750,
  16449. }
  16450. },
  16451. back: {
  16452. height: math.unit(6, "feet"),
  16453. weight: math.unit(150, "lb"),
  16454. name: "Back",
  16455. image: {
  16456. source: "./media/characters/alluria/back.svg",
  16457. extra: 806 / 738,
  16458. }
  16459. },
  16460. frontMaid: {
  16461. height: math.unit(6, "feet"),
  16462. weight: math.unit(150, "lb"),
  16463. name: "Front (Maid)",
  16464. image: {
  16465. source: "./media/characters/alluria/front-maid.svg",
  16466. extra: 806 / 738,
  16467. bottom: 0.01
  16468. }
  16469. },
  16470. sideMaid: {
  16471. height: math.unit(6, "feet"),
  16472. weight: math.unit(150, "lb"),
  16473. name: "Side (Maid)",
  16474. image: {
  16475. source: "./media/characters/alluria/side-maid.svg",
  16476. extra: 800 / 750,
  16477. bottom: 0.005
  16478. }
  16479. },
  16480. backMaid: {
  16481. height: math.unit(6, "feet"),
  16482. weight: math.unit(150, "lb"),
  16483. name: "Back (Maid)",
  16484. image: {
  16485. source: "./media/characters/alluria/back-maid.svg",
  16486. extra: 806 / 738,
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Micro",
  16493. height: math.unit(6, "inches"),
  16494. default: true
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16500. {
  16501. front: {
  16502. height: math.unit(6, "feet"),
  16503. weight: math.unit(150, "lb"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/kyle/front.svg",
  16507. extra: 1069 / 962,
  16508. bottom: 77.228 / 1727.45
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Macro",
  16515. height: math.unit(150, "feet"),
  16516. default: true
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(6, "feet"),
  16525. weight: math.unit(300, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/duncan/front.svg",
  16529. extra: 1650 / 1482,
  16530. bottom: 0.05
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Macro",
  16537. height: math.unit(100, "feet"),
  16538. default: true
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16544. {
  16545. front: {
  16546. height: math.unit(5 + 4 / 12, "feet"),
  16547. weight: math.unit(220, "lb"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/memory/front.svg",
  16551. extra: 3641 / 3545,
  16552. bottom: 0.03
  16553. }
  16554. },
  16555. back: {
  16556. height: math.unit(5 + 4 / 12, "feet"),
  16557. weight: math.unit(220, "lb"),
  16558. name: "Back",
  16559. image: {
  16560. source: "./media/characters/memory/back.svg",
  16561. extra: 3641 / 3545,
  16562. bottom: 0.025
  16563. }
  16564. },
  16565. frontSkirt: {
  16566. height: math.unit(5 + 4 / 12, "feet"),
  16567. weight: math.unit(220, "lb"),
  16568. name: "Front (Skirt)",
  16569. image: {
  16570. source: "./media/characters/memory/front-skirt.svg",
  16571. extra: 3641 / 3545,
  16572. bottom: 0.03
  16573. }
  16574. },
  16575. frontDress: {
  16576. height: math.unit(5 + 4 / 12, "feet"),
  16577. weight: math.unit(220, "lb"),
  16578. name: "Front (Dress)",
  16579. image: {
  16580. source: "./media/characters/memory/front-dress.svg",
  16581. extra: 3641 / 3545,
  16582. bottom: 0.03
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Micro",
  16589. height: math.unit(6, "inches"),
  16590. default: true
  16591. },
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(5 + 4 / 12, "feet")
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16600. {
  16601. front: {
  16602. height: math.unit(4 + 11 / 12, "feet"),
  16603. weight: math.unit(100, "lb"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/luno/front.svg",
  16607. extra: 1535 / 1487,
  16608. bottom: 0.03
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Micro",
  16615. height: math.unit(3, "inches")
  16616. },
  16617. {
  16618. name: "Normal",
  16619. height: math.unit(4 + 11 / 12, "feet"),
  16620. default: true
  16621. },
  16622. {
  16623. name: "Macro",
  16624. height: math.unit(300, "feet")
  16625. },
  16626. {
  16627. name: "Megamacro",
  16628. height: math.unit(700, "miles")
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(6 + 2 / 12, "feet"),
  16637. weight: math.unit(170, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/jamesy/front.svg",
  16641. extra: 440 / 382,
  16642. bottom: 0.005
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Micro",
  16649. height: math.unit(3, "inches")
  16650. },
  16651. {
  16652. name: "Normal",
  16653. height: math.unit(6 + 2 / 12, "feet"),
  16654. default: true
  16655. },
  16656. {
  16657. name: "Macro",
  16658. height: math.unit(300, "feet")
  16659. },
  16660. {
  16661. name: "Megamacro",
  16662. height: math.unit(700, "miles")
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16668. {
  16669. front: {
  16670. height: math.unit(6, "feet"),
  16671. weight: math.unit(160, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/mark/front.svg",
  16675. extra: 3300 / 3100,
  16676. bottom: 136.42 / 3440.47
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Macro",
  16683. height: math.unit(120, "meters")
  16684. },
  16685. {
  16686. name: "Bigger Macro",
  16687. height: math.unit(350, "meters")
  16688. },
  16689. {
  16690. name: "Megamacro",
  16691. height: math.unit(8, "km"),
  16692. default: true
  16693. },
  16694. {
  16695. name: "Continental",
  16696. height: math.unit(4550, "km")
  16697. },
  16698. {
  16699. name: "Planetary",
  16700. height: math.unit(65000, "km")
  16701. },
  16702. ]
  16703. ))
  16704. characterMakers.push(() => makeCharacter(
  16705. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16706. {
  16707. front: {
  16708. height: math.unit(6, "feet"),
  16709. weight: math.unit(400, "lb"),
  16710. name: "Front",
  16711. image: {
  16712. source: "./media/characters/mac/front.svg",
  16713. extra: 1048 / 987.7,
  16714. bottom: 60 / 1107.6,
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Macro",
  16721. height: math.unit(500, "feet"),
  16722. default: true
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16728. {
  16729. front: {
  16730. height: math.unit(5 + 2 / 12, "feet"),
  16731. weight: math.unit(190, "lb"),
  16732. name: "Front",
  16733. image: {
  16734. source: "./media/characters/bari/front.svg",
  16735. extra: 3156 / 2880,
  16736. bottom: 0.03
  16737. }
  16738. },
  16739. back: {
  16740. height: math.unit(5 + 2 / 12, "feet"),
  16741. weight: math.unit(190, "lb"),
  16742. name: "Back",
  16743. image: {
  16744. source: "./media/characters/bari/back.svg",
  16745. extra: 3260 / 2834,
  16746. bottom: 0.025
  16747. }
  16748. },
  16749. frontPlush: {
  16750. height: math.unit(5 + 2 / 12, "feet"),
  16751. weight: math.unit(190, "lb"),
  16752. name: "Front (Plush)",
  16753. image: {
  16754. source: "./media/characters/bari/front-plush.svg",
  16755. extra: 1112 / 1061,
  16756. bottom: 0.002
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Micro",
  16763. height: math.unit(3, "inches")
  16764. },
  16765. {
  16766. name: "Normal",
  16767. height: math.unit(5 + 2 / 12, "feet"),
  16768. default: true
  16769. },
  16770. {
  16771. name: "Macro",
  16772. height: math.unit(20, "feet")
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16778. {
  16779. front: {
  16780. height: math.unit(6 + 1 / 12, "feet"),
  16781. weight: math.unit(275, "lb"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/hunter-misha-raven/front.svg"
  16785. }
  16786. },
  16787. },
  16788. [
  16789. {
  16790. name: "Mortal",
  16791. height: math.unit(6 + 1 / 12, "feet")
  16792. },
  16793. {
  16794. name: "Divine",
  16795. height: math.unit(1.12134e34, "parsecs"),
  16796. default: true
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16802. {
  16803. front: {
  16804. height: math.unit(6 + 3 / 12, "feet"),
  16805. weight: math.unit(220, "lb"),
  16806. name: "Front",
  16807. image: {
  16808. source: "./media/characters/max-calore/front.svg",
  16809. extra: 1700 / 1648,
  16810. bottom: 0.01
  16811. }
  16812. },
  16813. back: {
  16814. height: math.unit(6 + 3 / 12, "feet"),
  16815. weight: math.unit(220, "lb"),
  16816. name: "Back",
  16817. image: {
  16818. source: "./media/characters/max-calore/back.svg",
  16819. extra: 1700 / 1648,
  16820. bottom: 0.01
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(6 + 3 / 12, "feet"),
  16828. default: true
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16834. {
  16835. side: {
  16836. height: math.unit(2 + 8 / 12, "feet"),
  16837. weight: math.unit(99, "lb"),
  16838. name: "Side",
  16839. image: {
  16840. source: "./media/characters/aspen/side.svg",
  16841. extra: 152 / 138,
  16842. bottom: 0.032
  16843. }
  16844. },
  16845. },
  16846. [
  16847. {
  16848. name: "Normal",
  16849. height: math.unit(2 + 8 / 12, "feet"),
  16850. default: true
  16851. },
  16852. ]
  16853. ))
  16854. characterMakers.push(() => makeCharacter(
  16855. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16856. {
  16857. side: {
  16858. height: math.unit(3 + 2 / 12, "feet"),
  16859. weight: math.unit(224, "lb"),
  16860. name: "Side",
  16861. image: {
  16862. source: "./media/characters/sheila-feral-wolf/side.svg",
  16863. extra: 179 / 166,
  16864. bottom: 0.03
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(3 + 2 / 12, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16878. {
  16879. side: {
  16880. height: math.unit(1 + 9 / 12, "feet"),
  16881. weight: math.unit(38, "lb"),
  16882. name: "Side",
  16883. image: {
  16884. source: "./media/characters/michelle/side.svg",
  16885. extra: 147 / 136.7,
  16886. bottom: 0.03
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(1 + 9 / 12, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16900. {
  16901. front: {
  16902. height: math.unit(1 + 1 / 12, "feet"),
  16903. weight: math.unit(18, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/nino/front.svg"
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Normal",
  16913. height: math.unit(1 + 1 / 12, "feet"),
  16914. default: true
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16920. {
  16921. front: {
  16922. height: math.unit(1, "feet"),
  16923. weight: math.unit(16, "lb"),
  16924. name: "Front",
  16925. image: {
  16926. source: "./media/characters/viola/front.svg"
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(1, "feet"),
  16934. default: true
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16940. {
  16941. front: {
  16942. height: math.unit(6 + 5 / 12, "feet"),
  16943. weight: math.unit(580, "lb"),
  16944. name: "Front",
  16945. image: {
  16946. source: "./media/characters/atlas/front.svg",
  16947. extra: 298.5 / 290,
  16948. bottom: 0.015
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Normal",
  16955. height: math.unit(6 + 5 / 12, "feet"),
  16956. default: true
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16962. {
  16963. side: {
  16964. height: math.unit(1 + 10 / 12, "feet"),
  16965. weight: math.unit(25, "lb"),
  16966. name: "Side",
  16967. image: {
  16968. source: "./media/characters/davy/side.svg",
  16969. extra: 200 / 170,
  16970. bottom: 0.01
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(1 + 10 / 12, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16984. {
  16985. side: {
  16986. height: math.unit(4 + 8 / 12, "feet"),
  16987. weight: math.unit(166, "lb"),
  16988. name: "Side",
  16989. image: {
  16990. source: "./media/characters/fiona/side.svg",
  16991. extra: 232 / 220,
  16992. bottom: 0.03
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(4 + 8 / 12, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17006. {
  17007. front: {
  17008. height: math.unit(2, "feet"),
  17009. weight: math.unit(62, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/lyla/front.svg",
  17013. bottom: 0.1
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(2, "feet"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17027. {
  17028. side: {
  17029. height: math.unit(1.8, "feet"),
  17030. weight: math.unit(44, "lb"),
  17031. name: "Side",
  17032. image: {
  17033. source: "./media/characters/perseus/side.svg",
  17034. bottom: 0.21
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(1.8, "feet"),
  17042. default: true
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17048. {
  17049. side: {
  17050. height: math.unit(4 + 2 / 12, "feet"),
  17051. weight: math.unit(20, "lb"),
  17052. name: "Side",
  17053. image: {
  17054. source: "./media/characters/remus/side.svg"
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(4 + 2 / 12, "feet"),
  17062. default: true
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17068. {
  17069. front: {
  17070. height: math.unit(4 + 11 / 12, "feet"),
  17071. weight: math.unit(114, "lb"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/raf/front.svg",
  17075. bottom: 20.5 / 1863
  17076. }
  17077. },
  17078. side: {
  17079. height: math.unit(4 + 11 / 12, "feet"),
  17080. weight: math.unit(114, "lb"),
  17081. name: "Side",
  17082. image: {
  17083. source: "./media/characters/raf/side.svg",
  17084. bottom: 22 / 1822
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Micro",
  17091. height: math.unit(2, "inches")
  17092. },
  17093. {
  17094. name: "Normal",
  17095. height: math.unit(4 + 11 / 12, "feet"),
  17096. default: true
  17097. },
  17098. {
  17099. name: "Macro",
  17100. height: math.unit(70, "feet")
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17106. {
  17107. front: {
  17108. height: math.unit(1.5, "meters"),
  17109. weight: math.unit(68, "kg"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/liam-einarr/front.svg",
  17113. extra: 2822 / 2666
  17114. }
  17115. },
  17116. back: {
  17117. height: math.unit(1.5, "meters"),
  17118. weight: math.unit(68, "kg"),
  17119. name: "Back",
  17120. image: {
  17121. source: "./media/characters/liam-einarr/back.svg",
  17122. extra: 2822 / 2666,
  17123. bottom: 0.015
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(1.5, "meters"),
  17131. default: true
  17132. },
  17133. {
  17134. name: "Macro",
  17135. height: math.unit(150, "meters")
  17136. },
  17137. {
  17138. name: "Megamacro",
  17139. height: math.unit(35, "km")
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(6, "feet"),
  17148. weight: math.unit(75, "kg"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/linda/front.svg",
  17152. extra: 930 / 874,
  17153. bottom: 0.004
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(6, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17167. {
  17168. front: {
  17169. height: math.unit(6 + 8 / 12, "feet"),
  17170. weight: math.unit(220, "lb"),
  17171. name: "Front",
  17172. image: {
  17173. source: "./media/characters/caylex/front.svg",
  17174. extra: 821 / 772,
  17175. bottom: 0.07
  17176. }
  17177. },
  17178. back: {
  17179. height: math.unit(6 + 8 / 12, "feet"),
  17180. weight: math.unit(220, "lb"),
  17181. name: "Back",
  17182. image: {
  17183. source: "./media/characters/caylex/back.svg",
  17184. extra: 821 / 772,
  17185. bottom: 0.022
  17186. }
  17187. },
  17188. hand: {
  17189. height: math.unit(1.25, "feet"),
  17190. name: "Hand",
  17191. image: {
  17192. source: "./media/characters/caylex/hand.svg"
  17193. }
  17194. },
  17195. foot: {
  17196. height: math.unit(1.6, "feet"),
  17197. name: "Foot",
  17198. image: {
  17199. source: "./media/characters/caylex/foot.svg"
  17200. }
  17201. },
  17202. armored: {
  17203. height: math.unit(6 + 8 / 12, "feet"),
  17204. weight: math.unit(250, "lb"),
  17205. name: "Armored",
  17206. image: {
  17207. source: "./media/characters/caylex/armored.svg",
  17208. extra: 1420 / 1310,
  17209. bottom: 0.045
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(6 + 8 / 12, "feet"),
  17217. default: true
  17218. },
  17219. {
  17220. name: "Normal+",
  17221. height: math.unit(12, "feet")
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17227. {
  17228. front: {
  17229. height: math.unit(7 + 6 / 12, "feet"),
  17230. weight: math.unit(288, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/alana/front.svg",
  17234. extra: 679 / 653,
  17235. bottom: 22.5 / 701
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(7 + 6 / 12, "feet")
  17243. },
  17244. {
  17245. name: "Large",
  17246. height: math.unit(50, "feet")
  17247. },
  17248. {
  17249. name: "Macro",
  17250. height: math.unit(100, "feet"),
  17251. default: true
  17252. },
  17253. {
  17254. name: "Macro+",
  17255. height: math.unit(200, "feet")
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17261. {
  17262. front: {
  17263. height: math.unit(6 + 1 / 12, "feet"),
  17264. weight: math.unit(210, "lb"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/hasani/front.svg",
  17268. extra: 244 / 232,
  17269. bottom: 0.01
  17270. }
  17271. },
  17272. back: {
  17273. height: math.unit(6 + 1 / 12, "feet"),
  17274. weight: math.unit(210, "lb"),
  17275. name: "Back",
  17276. image: {
  17277. source: "./media/characters/hasani/back.svg",
  17278. extra: 244 / 232,
  17279. bottom: 0.01
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(6 + 1 / 12, "feet")
  17287. },
  17288. {
  17289. name: "Macro",
  17290. height: math.unit(175, "feet"),
  17291. default: true
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(1.82, "meters"),
  17300. weight: math.unit(140, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/nita/front.svg",
  17304. extra: 2473 / 2363,
  17305. bottom: 0.01
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(1.82, "m")
  17313. },
  17314. {
  17315. name: "Macro",
  17316. height: math.unit(300, "m")
  17317. },
  17318. {
  17319. name: "Mistake Canon",
  17320. height: math.unit(0.5, "miles"),
  17321. default: true
  17322. },
  17323. {
  17324. name: "Big Mistake",
  17325. height: math.unit(13, "miles")
  17326. },
  17327. {
  17328. name: "Playing God",
  17329. height: math.unit(2450, "miles")
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17335. {
  17336. front: {
  17337. height: math.unit(4, "feet"),
  17338. weight: math.unit(120, "lb"),
  17339. name: "Front",
  17340. image: {
  17341. source: "./media/characters/shiriko/front.svg",
  17342. extra: 970/934,
  17343. bottom: 5/975
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Normal",
  17350. height: math.unit(4, "feet"),
  17351. default: true
  17352. },
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17357. {
  17358. front: {
  17359. height: math.unit(6, "feet"),
  17360. name: "front",
  17361. image: {
  17362. source: "./media/characters/deja/front.svg",
  17363. extra: 926 / 840,
  17364. bottom: 0.07
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Planck Length",
  17371. height: math.unit(1.6e-35, "meters")
  17372. },
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(30.48, "meters"),
  17376. default: true
  17377. },
  17378. {
  17379. name: "Universal",
  17380. height: math.unit(8.8e26, "meters")
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17386. {
  17387. side: {
  17388. height: math.unit(8, "feet"),
  17389. weight: math.unit(6300, "lb"),
  17390. name: "Side",
  17391. image: {
  17392. source: "./media/characters/anima/side.svg",
  17393. bottom: 0.035
  17394. }
  17395. },
  17396. },
  17397. [
  17398. {
  17399. name: "Normal",
  17400. height: math.unit(8, "feet"),
  17401. default: true
  17402. },
  17403. ]
  17404. ))
  17405. characterMakers.push(() => makeCharacter(
  17406. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17407. {
  17408. front: {
  17409. height: math.unit(8, "feet"),
  17410. weight: math.unit(350, "lb"),
  17411. name: "Front",
  17412. image: {
  17413. source: "./media/characters/bianca/front.svg",
  17414. extra: 234 / 225,
  17415. bottom: 0.03
  17416. }
  17417. },
  17418. },
  17419. [
  17420. {
  17421. name: "Normal",
  17422. height: math.unit(8, "feet"),
  17423. default: true
  17424. },
  17425. ]
  17426. ))
  17427. characterMakers.push(() => makeCharacter(
  17428. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17429. {
  17430. front: {
  17431. height: math.unit(6, "feet"),
  17432. weight: math.unit(150, "lb"),
  17433. name: "Front",
  17434. image: {
  17435. source: "./media/characters/adinia/front.svg",
  17436. extra: 1845 / 1672,
  17437. bottom: 0.02
  17438. }
  17439. },
  17440. back: {
  17441. height: math.unit(6, "feet"),
  17442. weight: math.unit(150, "lb"),
  17443. name: "Back",
  17444. image: {
  17445. source: "./media/characters/adinia/back.svg",
  17446. extra: 1845 / 1672,
  17447. bottom: 0.002
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(11 + 5 / 12, "feet"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(3, "meters"),
  17464. weight: math.unit(200, "kg"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/lykasa/front.svg",
  17468. extra: 1076 / 976,
  17469. bottom: 0.06
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(3, "meters")
  17477. },
  17478. {
  17479. name: "Kaiju",
  17480. height: math.unit(120, "meters"),
  17481. default: true
  17482. },
  17483. {
  17484. name: "Mega Kaiju",
  17485. height: math.unit(240, "km")
  17486. },
  17487. {
  17488. name: "Giga Kaiju",
  17489. height: math.unit(400, "megameters")
  17490. },
  17491. {
  17492. name: "Tera Kaiju",
  17493. height: math.unit(800, "gigameters")
  17494. },
  17495. {
  17496. name: "Kaiju Dragon Goddess",
  17497. height: math.unit(26, "zettaparsecs")
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17503. {
  17504. side: {
  17505. height: math.unit(283 / 124 * 6, "feet"),
  17506. weight: math.unit(35000, "lb"),
  17507. name: "Side",
  17508. image: {
  17509. source: "./media/characters/malfaren/side.svg",
  17510. extra: 2500 / 1010,
  17511. bottom: 0.01
  17512. }
  17513. },
  17514. front: {
  17515. height: math.unit(22.36, "feet"),
  17516. weight: math.unit(35000, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/malfaren/front.svg",
  17520. extra: 1631 / 1476,
  17521. bottom: 0.01
  17522. }
  17523. },
  17524. maw: {
  17525. height: math.unit(6.9, "feet"),
  17526. name: "Maw",
  17527. image: {
  17528. source: "./media/characters/malfaren/maw.svg"
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Big",
  17535. height: math.unit(283 / 162 * 6, "feet"),
  17536. },
  17537. {
  17538. name: "Bigger",
  17539. height: math.unit(283 / 124 * 6, "feet")
  17540. },
  17541. {
  17542. name: "Massive",
  17543. height: math.unit(283 / 92 * 6, "feet"),
  17544. default: true
  17545. },
  17546. {
  17547. name: "👀💦",
  17548. height: math.unit(283 / 73 * 6, "feet"),
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17554. {
  17555. front: {
  17556. height: math.unit(1.7, "m"),
  17557. weight: math.unit(70, "kg"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/kernel/front.svg",
  17561. extra: 222 / 210,
  17562. bottom: 0.007
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Nano",
  17569. height: math.unit(17, "micrometers")
  17570. },
  17571. {
  17572. name: "Micro",
  17573. height: math.unit(1.7, "mm")
  17574. },
  17575. {
  17576. name: "Small",
  17577. height: math.unit(1.7, "cm")
  17578. },
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(1.7, "m"),
  17582. default: true
  17583. },
  17584. ]
  17585. ))
  17586. characterMakers.push(() => makeCharacter(
  17587. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17588. {
  17589. front: {
  17590. height: math.unit(1.75, "meters"),
  17591. weight: math.unit(65, "kg"),
  17592. name: "Front",
  17593. image: {
  17594. source: "./media/characters/jayne-folest/front.svg",
  17595. extra: 2115 / 2007,
  17596. bottom: 0.02
  17597. }
  17598. },
  17599. back: {
  17600. height: math.unit(1.75, "meters"),
  17601. weight: math.unit(65, "kg"),
  17602. name: "Back",
  17603. image: {
  17604. source: "./media/characters/jayne-folest/back.svg",
  17605. extra: 2115 / 2007,
  17606. bottom: 0.005
  17607. }
  17608. },
  17609. frontClothed: {
  17610. height: math.unit(1.75, "meters"),
  17611. weight: math.unit(65, "kg"),
  17612. name: "Front (Clothed)",
  17613. image: {
  17614. source: "./media/characters/jayne-folest/front-clothed.svg",
  17615. extra: 2115 / 2007,
  17616. bottom: 0.035
  17617. }
  17618. },
  17619. hand: {
  17620. height: math.unit(1 / 1.260, "feet"),
  17621. name: "Hand",
  17622. image: {
  17623. source: "./media/characters/jayne-folest/hand.svg"
  17624. }
  17625. },
  17626. foot: {
  17627. height: math.unit(1 / 0.918, "feet"),
  17628. name: "Foot",
  17629. image: {
  17630. source: "./media/characters/jayne-folest/foot.svg"
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Micro",
  17637. height: math.unit(4, "cm")
  17638. },
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(1.75, "meters")
  17642. },
  17643. {
  17644. name: "Macro",
  17645. height: math.unit(47.5, "meters"),
  17646. default: true
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17652. {
  17653. front: {
  17654. height: math.unit(180, "cm"),
  17655. weight: math.unit(70, "kg"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/algier/front.svg",
  17659. extra: 596 / 572,
  17660. bottom: 0.04
  17661. }
  17662. },
  17663. back: {
  17664. height: math.unit(180, "cm"),
  17665. weight: math.unit(70, "kg"),
  17666. name: "Back",
  17667. image: {
  17668. source: "./media/characters/algier/back.svg",
  17669. extra: 596 / 572,
  17670. bottom: 0.025
  17671. }
  17672. },
  17673. frontdressed: {
  17674. height: math.unit(180, "cm"),
  17675. weight: math.unit(150, "kg"),
  17676. name: "Front-dressed",
  17677. image: {
  17678. source: "./media/characters/algier/front-dressed.svg",
  17679. extra: 596 / 572,
  17680. bottom: 0.038
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Micro",
  17687. height: math.unit(5, "cm")
  17688. },
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(180, "cm"),
  17692. default: true
  17693. },
  17694. {
  17695. name: "Macro",
  17696. height: math.unit(64, "m")
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17702. {
  17703. upright: {
  17704. height: math.unit(7, "feet"),
  17705. weight: math.unit(300, "lb"),
  17706. name: "Upright",
  17707. image: {
  17708. source: "./media/characters/pretzel/upright.svg",
  17709. extra: 534 / 522,
  17710. bottom: 0.065
  17711. }
  17712. },
  17713. sprawling: {
  17714. height: math.unit(3.75, "feet"),
  17715. weight: math.unit(300, "lb"),
  17716. name: "Sprawling",
  17717. image: {
  17718. source: "./media/characters/pretzel/sprawling.svg",
  17719. extra: 314 / 281,
  17720. bottom: 0.1
  17721. }
  17722. },
  17723. tongue: {
  17724. height: math.unit(2, "feet"),
  17725. name: "Tongue",
  17726. image: {
  17727. source: "./media/characters/pretzel/tongue.svg"
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(7, "feet"),
  17735. default: true
  17736. },
  17737. {
  17738. name: "Oversized",
  17739. height: math.unit(15, "feet")
  17740. },
  17741. {
  17742. name: "Huge",
  17743. height: math.unit(30, "feet")
  17744. },
  17745. {
  17746. name: "Macro",
  17747. height: math.unit(250, "feet")
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17753. {
  17754. sideFront: {
  17755. height: math.unit(5 + 2 / 12, "feet"),
  17756. weight: math.unit(120, "lb"),
  17757. name: "Front Side",
  17758. image: {
  17759. source: "./media/characters/roxi/side-front.svg",
  17760. extra: 2924 / 2717,
  17761. bottom: 0.08
  17762. }
  17763. },
  17764. sideBack: {
  17765. height: math.unit(5 + 2 / 12, "feet"),
  17766. weight: math.unit(120, "lb"),
  17767. name: "Back Side",
  17768. image: {
  17769. source: "./media/characters/roxi/side-back.svg",
  17770. extra: 2904 / 2693,
  17771. bottom: 0.06
  17772. }
  17773. },
  17774. front: {
  17775. height: math.unit(5 + 2 / 12, "feet"),
  17776. weight: math.unit(120, "lb"),
  17777. name: "Front",
  17778. image: {
  17779. source: "./media/characters/roxi/front.svg",
  17780. extra: 2028 / 1907,
  17781. bottom: 0.01
  17782. }
  17783. },
  17784. frontAlt: {
  17785. height: math.unit(5 + 2 / 12, "feet"),
  17786. weight: math.unit(120, "lb"),
  17787. name: "Front (Alt)",
  17788. image: {
  17789. source: "./media/characters/roxi/front-alt.svg",
  17790. extra: 1828 / 1798,
  17791. bottom: 0.01
  17792. }
  17793. },
  17794. sitting: {
  17795. height: math.unit(2.8, "feet"),
  17796. weight: math.unit(120, "lb"),
  17797. name: "Sitting",
  17798. image: {
  17799. source: "./media/characters/roxi/sitting.svg",
  17800. extra: 2660 / 2462,
  17801. bottom: 0.1
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(5 + 2 / 12, "feet"),
  17809. default: true
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17815. {
  17816. side: {
  17817. height: math.unit(55, "feet"),
  17818. weight: math.unit(153, "tons"),
  17819. name: "Side",
  17820. image: {
  17821. source: "./media/characters/shadow/side.svg",
  17822. extra: 701 / 628,
  17823. bottom: 0.02
  17824. }
  17825. },
  17826. flying: {
  17827. height: math.unit(145, "feet"),
  17828. weight: math.unit(153, "tons"),
  17829. name: "Flying",
  17830. image: {
  17831. source: "./media/characters/shadow/flying.svg"
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(55, "feet"),
  17839. default: true
  17840. },
  17841. ]
  17842. ))
  17843. characterMakers.push(() => makeCharacter(
  17844. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17845. {
  17846. front: {
  17847. height: math.unit(6, "feet"),
  17848. weight: math.unit(200, "lb"),
  17849. name: "Front",
  17850. image: {
  17851. source: "./media/characters/marcie/front.svg",
  17852. extra: 960 / 876,
  17853. bottom: 58 / 1017.87
  17854. }
  17855. },
  17856. },
  17857. [
  17858. {
  17859. name: "Macro",
  17860. height: math.unit(1, "mile"),
  17861. default: true
  17862. },
  17863. ]
  17864. ))
  17865. characterMakers.push(() => makeCharacter(
  17866. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17867. {
  17868. front: {
  17869. height: math.unit(7, "feet"),
  17870. weight: math.unit(200, "lb"),
  17871. name: "Front",
  17872. image: {
  17873. source: "./media/characters/kachina/front.svg",
  17874. extra: 1290.68 / 1119,
  17875. bottom: 36.5 / 1327.18
  17876. }
  17877. },
  17878. },
  17879. [
  17880. {
  17881. name: "Normal",
  17882. height: math.unit(7, "feet"),
  17883. default: true
  17884. },
  17885. ]
  17886. ))
  17887. characterMakers.push(() => makeCharacter(
  17888. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17889. {
  17890. looking: {
  17891. height: math.unit(2, "meters"),
  17892. weight: math.unit(300, "kg"),
  17893. name: "Looking",
  17894. image: {
  17895. source: "./media/characters/kash/looking.svg",
  17896. extra: 474 / 344,
  17897. bottom: 0.03
  17898. }
  17899. },
  17900. side: {
  17901. height: math.unit(2, "meters"),
  17902. weight: math.unit(300, "kg"),
  17903. name: "Side",
  17904. image: {
  17905. source: "./media/characters/kash/side.svg",
  17906. extra: 302 / 251,
  17907. bottom: 0.03
  17908. }
  17909. },
  17910. front: {
  17911. height: math.unit(2, "meters"),
  17912. weight: math.unit(300, "kg"),
  17913. name: "Front",
  17914. image: {
  17915. source: "./media/characters/kash/front.svg",
  17916. extra: 495 / 360,
  17917. bottom: 0.015
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(2, "meters"),
  17925. default: true
  17926. },
  17927. {
  17928. name: "Big",
  17929. height: math.unit(3, "meters")
  17930. },
  17931. {
  17932. name: "Large",
  17933. height: math.unit(5, "meters")
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17939. {
  17940. feeding: {
  17941. height: math.unit(6.7, "feet"),
  17942. weight: math.unit(350, "lb"),
  17943. name: "Feeding",
  17944. image: {
  17945. source: "./media/characters/lalim/feeding.svg",
  17946. }
  17947. },
  17948. },
  17949. [
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(6.7, "feet"),
  17953. default: true
  17954. },
  17955. ]
  17956. ))
  17957. characterMakers.push(() => makeCharacter(
  17958. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17959. {
  17960. front: {
  17961. height: math.unit(9.5, "feet"),
  17962. weight: math.unit(600, "lb"),
  17963. name: "Front",
  17964. image: {
  17965. source: "./media/characters/de'vout/front.svg",
  17966. extra: 1443 / 1328,
  17967. bottom: 0.025
  17968. }
  17969. },
  17970. back: {
  17971. height: math.unit(9.5, "feet"),
  17972. weight: math.unit(600, "lb"),
  17973. name: "Back",
  17974. image: {
  17975. source: "./media/characters/de'vout/back.svg",
  17976. extra: 1443 / 1328
  17977. }
  17978. },
  17979. frontDressed: {
  17980. height: math.unit(9.5, "feet"),
  17981. weight: math.unit(600, "lb"),
  17982. name: "Front (Dressed",
  17983. image: {
  17984. source: "./media/characters/de'vout/front-dressed.svg",
  17985. extra: 1443 / 1328,
  17986. bottom: 0.025
  17987. }
  17988. },
  17989. backDressed: {
  17990. height: math.unit(9.5, "feet"),
  17991. weight: math.unit(600, "lb"),
  17992. name: "Back (Dressed",
  17993. image: {
  17994. source: "./media/characters/de'vout/back-dressed.svg",
  17995. extra: 1443 / 1328
  17996. }
  17997. },
  17998. },
  17999. [
  18000. {
  18001. name: "Normal",
  18002. height: math.unit(9.5, "feet"),
  18003. default: true
  18004. },
  18005. ]
  18006. ))
  18007. characterMakers.push(() => makeCharacter(
  18008. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18009. {
  18010. front: {
  18011. height: math.unit(8, "feet"),
  18012. weight: math.unit(225, "lb"),
  18013. name: "Front",
  18014. image: {
  18015. source: "./media/characters/talana/front.svg",
  18016. extra: 1410 / 1300,
  18017. bottom: 0.015
  18018. }
  18019. },
  18020. frontDressed: {
  18021. height: math.unit(8, "feet"),
  18022. weight: math.unit(225, "lb"),
  18023. name: "Front (Dressed",
  18024. image: {
  18025. source: "./media/characters/talana/front-dressed.svg",
  18026. extra: 1410 / 1300,
  18027. bottom: 0.015
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Normal",
  18034. height: math.unit(8, "feet"),
  18035. default: true
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18041. {
  18042. side: {
  18043. height: math.unit(7.2, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Side",
  18046. image: {
  18047. source: "./media/characters/xeauvok/side.svg",
  18048. extra: 1975 / 1523,
  18049. bottom: 0.07
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(7.2, "feet"),
  18057. default: true
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18063. {
  18064. side: {
  18065. height: math.unit(10, "feet"),
  18066. weight: math.unit(900, "kg"),
  18067. name: "Side",
  18068. image: {
  18069. source: "./media/characters/zara/side.svg",
  18070. extra: 504 / 498
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(10, "feet"),
  18078. default: true
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18084. {
  18085. side: {
  18086. height: math.unit(6, "feet"),
  18087. weight: math.unit(150, "lb"),
  18088. name: "Side",
  18089. image: {
  18090. source: "./media/characters/richard-dragon/side.svg",
  18091. extra: 845 / 340,
  18092. bottom: 0.017
  18093. }
  18094. },
  18095. maw: {
  18096. height: math.unit(2.97, "feet"),
  18097. name: "Maw",
  18098. image: {
  18099. source: "./media/characters/richard-dragon/maw.svg"
  18100. }
  18101. },
  18102. },
  18103. [
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(4, "feet"),
  18111. weight: math.unit(100, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/richard-smeargle/front.svg",
  18115. extra: 2952 / 2820,
  18116. bottom: 0.028
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(4, "feet"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Dynamax",
  18128. height: math.unit(20, "meters")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(6, "feet"),
  18137. weight: math.unit(110, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/klay/front.svg",
  18141. extra: 962 / 883,
  18142. bottom: 0.04
  18143. }
  18144. },
  18145. back: {
  18146. height: math.unit(6, "feet"),
  18147. weight: math.unit(110, "lb"),
  18148. name: "Back",
  18149. image: {
  18150. source: "./media/characters/klay/back.svg",
  18151. extra: 962 / 883
  18152. }
  18153. },
  18154. beans: {
  18155. height: math.unit(1.15, "feet"),
  18156. name: "Beans",
  18157. image: {
  18158. source: "./media/characters/klay/beans.svg"
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Micro",
  18165. height: math.unit(6, "inches")
  18166. },
  18167. {
  18168. name: "Mini",
  18169. height: math.unit(3, "feet")
  18170. },
  18171. {
  18172. name: "Normal",
  18173. height: math.unit(6, "feet"),
  18174. default: true
  18175. },
  18176. {
  18177. name: "Big",
  18178. height: math.unit(25, "feet")
  18179. },
  18180. {
  18181. name: "Macro",
  18182. height: math.unit(100, "feet")
  18183. },
  18184. {
  18185. name: "Megamacro",
  18186. height: math.unit(400, "feet")
  18187. },
  18188. ]
  18189. ))
  18190. characterMakers.push(() => makeCharacter(
  18191. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18192. {
  18193. front: {
  18194. height: math.unit(6, "feet"),
  18195. weight: math.unit(160, "lb"),
  18196. name: "Front",
  18197. image: {
  18198. source: "./media/characters/marcus/front.svg",
  18199. extra: 734 / 676,
  18200. bottom: 0.03
  18201. }
  18202. },
  18203. },
  18204. [
  18205. {
  18206. name: "Little",
  18207. height: math.unit(6, "feet")
  18208. },
  18209. {
  18210. name: "Normal",
  18211. height: math.unit(110, "feet"),
  18212. default: true
  18213. },
  18214. {
  18215. name: "Macro",
  18216. height: math.unit(250, "feet")
  18217. },
  18218. {
  18219. name: "Megamacro",
  18220. height: math.unit(1000, "feet")
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(7, "feet"),
  18229. weight: math.unit(275, "lb"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/claude-delroute/front.svg",
  18233. extra: 230 / 214,
  18234. bottom: 0.007
  18235. }
  18236. },
  18237. side: {
  18238. height: math.unit(7, "feet"),
  18239. weight: math.unit(275, "lb"),
  18240. name: "Side",
  18241. image: {
  18242. source: "./media/characters/claude-delroute/side.svg",
  18243. extra: 222 / 214,
  18244. bottom: 0.01
  18245. }
  18246. },
  18247. back: {
  18248. height: math.unit(7, "feet"),
  18249. weight: math.unit(275, "lb"),
  18250. name: "Back",
  18251. image: {
  18252. source: "./media/characters/claude-delroute/back.svg",
  18253. extra: 230 / 214,
  18254. bottom: 0.015
  18255. }
  18256. },
  18257. maw: {
  18258. height: math.unit(0.6407, "meters"),
  18259. name: "Maw",
  18260. image: {
  18261. source: "./media/characters/claude-delroute/maw.svg"
  18262. }
  18263. },
  18264. },
  18265. [
  18266. {
  18267. name: "Normal",
  18268. height: math.unit(7, "feet"),
  18269. default: true
  18270. },
  18271. {
  18272. name: "Lorge",
  18273. height: math.unit(20, "feet")
  18274. },
  18275. ]
  18276. ))
  18277. characterMakers.push(() => makeCharacter(
  18278. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18279. {
  18280. front: {
  18281. height: math.unit(8 + 4 / 12, "feet"),
  18282. weight: math.unit(600, "lb"),
  18283. name: "Front",
  18284. image: {
  18285. source: "./media/characters/dragonien/front.svg",
  18286. extra: 100 / 94,
  18287. bottom: 3.3 / 103.3445
  18288. }
  18289. },
  18290. back: {
  18291. height: math.unit(8 + 4 / 12, "feet"),
  18292. weight: math.unit(600, "lb"),
  18293. name: "Back",
  18294. image: {
  18295. source: "./media/characters/dragonien/back.svg",
  18296. extra: 776 / 746,
  18297. bottom: 6.4 / 782.0616
  18298. }
  18299. },
  18300. foot: {
  18301. height: math.unit(1.54, "feet"),
  18302. name: "Foot",
  18303. image: {
  18304. source: "./media/characters/dragonien/foot.svg",
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(8 + 4 / 12, "feet"),
  18312. default: true
  18313. },
  18314. {
  18315. name: "Macro",
  18316. height: math.unit(200, "feet")
  18317. },
  18318. {
  18319. name: "Megamacro",
  18320. height: math.unit(1, "mile")
  18321. },
  18322. {
  18323. name: "Gigamacro",
  18324. height: math.unit(1000, "miles")
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18330. {
  18331. front: {
  18332. height: math.unit(5 + 2 / 12, "feet"),
  18333. weight: math.unit(110, "lb"),
  18334. name: "Front",
  18335. image: {
  18336. source: "./media/characters/desta/front.svg",
  18337. extra: 767 / 726,
  18338. bottom: 11.7 / 779
  18339. }
  18340. },
  18341. back: {
  18342. height: math.unit(5 + 2 / 12, "feet"),
  18343. weight: math.unit(110, "lb"),
  18344. name: "Back",
  18345. image: {
  18346. source: "./media/characters/desta/back.svg",
  18347. extra: 777 / 728,
  18348. bottom: 6 / 784
  18349. }
  18350. },
  18351. frontAlt: {
  18352. height: math.unit(5 + 2 / 12, "feet"),
  18353. weight: math.unit(110, "lb"),
  18354. name: "Front",
  18355. image: {
  18356. source: "./media/characters/desta/front-alt.svg",
  18357. extra: 1482 / 1417
  18358. }
  18359. },
  18360. side: {
  18361. height: math.unit(5 + 2 / 12, "feet"),
  18362. weight: math.unit(110, "lb"),
  18363. name: "Side",
  18364. image: {
  18365. source: "./media/characters/desta/side.svg",
  18366. extra: 2579 / 2491,
  18367. bottom: 0.053
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Micro",
  18374. height: math.unit(6, "inches")
  18375. },
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(5 + 2 / 12, "feet"),
  18379. default: true
  18380. },
  18381. {
  18382. name: "Macro",
  18383. height: math.unit(62, "feet")
  18384. },
  18385. {
  18386. name: "Megamacro",
  18387. height: math.unit(1800, "feet")
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(10, "feet"),
  18396. weight: math.unit(700, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/storm-alystar/front.svg",
  18400. extra: 2112 / 1898,
  18401. bottom: 0.034
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Micro",
  18408. height: math.unit(3.5, "inches")
  18409. },
  18410. {
  18411. name: "Normal",
  18412. height: math.unit(10, "feet"),
  18413. default: true
  18414. },
  18415. {
  18416. name: "Macro",
  18417. height: math.unit(400, "feet")
  18418. },
  18419. {
  18420. name: "Deific",
  18421. height: math.unit(60, "miles")
  18422. },
  18423. ]
  18424. ))
  18425. characterMakers.push(() => makeCharacter(
  18426. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18427. {
  18428. front: {
  18429. height: math.unit(2.35, "meters"),
  18430. weight: math.unit(119, "kg"),
  18431. name: "Front",
  18432. image: {
  18433. source: "./media/characters/ilia/front.svg",
  18434. extra: 1285 / 1255,
  18435. bottom: 0.06
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Normal",
  18442. height: math.unit(2.35, "meters")
  18443. },
  18444. {
  18445. name: "Macro",
  18446. height: math.unit(140, "meters"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Megamacro",
  18451. height: math.unit(100, "miles")
  18452. },
  18453. ]
  18454. ))
  18455. characterMakers.push(() => makeCharacter(
  18456. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18457. {
  18458. front: {
  18459. height: math.unit(6 + 5 / 12, "feet"),
  18460. weight: math.unit(190, "lb"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/kingdead/front.svg",
  18464. extra: 1228 / 1177
  18465. }
  18466. },
  18467. },
  18468. [
  18469. {
  18470. name: "Micro",
  18471. height: math.unit(7, "inches")
  18472. },
  18473. {
  18474. name: "Normal",
  18475. height: math.unit(6 + 5 / 12, "feet")
  18476. },
  18477. {
  18478. name: "Macro",
  18479. height: math.unit(150, "feet"),
  18480. default: true
  18481. },
  18482. {
  18483. name: "Megamacro",
  18484. height: math.unit(200, "miles")
  18485. },
  18486. ]
  18487. ))
  18488. characterMakers.push(() => makeCharacter(
  18489. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18490. {
  18491. front: {
  18492. height: math.unit(8, "feet"),
  18493. weight: math.unit(600, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/kyrehx/front.svg",
  18497. extra: 1195 / 1095,
  18498. bottom: 0.034
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Micro",
  18505. height: math.unit(2, "inches")
  18506. },
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(8, "feet"),
  18510. default: true
  18511. },
  18512. {
  18513. name: "Macro",
  18514. height: math.unit(255, "feet")
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18520. {
  18521. front: {
  18522. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18523. weight: math.unit(184, "lb"),
  18524. name: "Front",
  18525. image: {
  18526. source: "./media/characters/xang/front.svg",
  18527. extra: 845 / 755
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18535. default: true
  18536. },
  18537. {
  18538. name: "Macro",
  18539. height: math.unit(0.935 * 146, "feet")
  18540. },
  18541. {
  18542. name: "Megamacro",
  18543. height: math.unit(0.935 * 3, "miles")
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18549. {
  18550. frontDressed: {
  18551. height: math.unit(5 + 7 / 12, "feet"),
  18552. weight: math.unit(140, "lb"),
  18553. name: "Front (Dressed)",
  18554. image: {
  18555. source: "./media/characters/doc-weardno/front-dressed.svg",
  18556. extra: 263 / 234
  18557. }
  18558. },
  18559. backDressed: {
  18560. height: math.unit(5 + 7 / 12, "feet"),
  18561. weight: math.unit(140, "lb"),
  18562. name: "Back (Dressed)",
  18563. image: {
  18564. source: "./media/characters/doc-weardno/back-dressed.svg",
  18565. extra: 266 / 238
  18566. }
  18567. },
  18568. front: {
  18569. height: math.unit(5 + 7 / 12, "feet"),
  18570. weight: math.unit(140, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/doc-weardno/front.svg",
  18574. extra: 254 / 233
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Micro",
  18581. height: math.unit(3, "inches")
  18582. },
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(5 + 7 / 12, "feet"),
  18586. default: true
  18587. },
  18588. {
  18589. name: "Macro",
  18590. height: math.unit(25, "feet")
  18591. },
  18592. {
  18593. name: "Megamacro",
  18594. height: math.unit(2, "miles")
  18595. },
  18596. ]
  18597. ))
  18598. characterMakers.push(() => makeCharacter(
  18599. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18600. {
  18601. front: {
  18602. height: math.unit(6 + 2 / 12, "feet"),
  18603. weight: math.unit(153, "lb"),
  18604. name: "Front",
  18605. image: {
  18606. source: "./media/characters/seth-whilst/front.svg",
  18607. bottom: 0.07
  18608. }
  18609. },
  18610. },
  18611. [
  18612. {
  18613. name: "Micro",
  18614. height: math.unit(5, "inches")
  18615. },
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(6 + 2 / 12, "feet"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(3, "inches"),
  18628. weight: math.unit(8, "grams"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/pocket-jabari/front.svg",
  18632. extra: 1024 / 974,
  18633. bottom: 0.039
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Minimicro",
  18640. height: math.unit(8, "mm")
  18641. },
  18642. {
  18643. name: "Micro",
  18644. height: math.unit(3, "inches"),
  18645. default: true
  18646. },
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(3, "feet")
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18655. {
  18656. front: {
  18657. height: math.unit(15, "feet"),
  18658. weight: math.unit(3280, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/sapphy/front.svg",
  18662. extra: 671 / 577,
  18663. bottom: 0.085
  18664. }
  18665. },
  18666. back: {
  18667. height: math.unit(15, "feet"),
  18668. weight: math.unit(3280, "lb"),
  18669. name: "Back",
  18670. image: {
  18671. source: "./media/characters/sapphy/back.svg",
  18672. extra: 631 / 607,
  18673. bottom: 0.045
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(15, "feet")
  18681. },
  18682. {
  18683. name: "Casual Macro",
  18684. height: math.unit(120, "feet")
  18685. },
  18686. {
  18687. name: "Macro",
  18688. height: math.unit(2150, "feet"),
  18689. default: true
  18690. },
  18691. {
  18692. name: "Megamacro",
  18693. height: math.unit(8, "miles")
  18694. },
  18695. {
  18696. name: "Galaxy Mom",
  18697. height: math.unit(6, "megalightyears")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(6, "feet"),
  18706. weight: math.unit(170, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/kiro/front.svg",
  18710. extra: 1064 / 1012,
  18711. bottom: 0.052
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Micro",
  18718. height: math.unit(6, "inches")
  18719. },
  18720. {
  18721. name: "Normal",
  18722. height: math.unit(6, "feet"),
  18723. default: true
  18724. },
  18725. {
  18726. name: "Macro",
  18727. height: math.unit(72, "feet")
  18728. },
  18729. ]
  18730. ))
  18731. characterMakers.push(() => makeCharacter(
  18732. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18733. {
  18734. front: {
  18735. height: math.unit(5 + 9 / 12, "feet"),
  18736. weight: math.unit(175, "lb"),
  18737. name: "Front",
  18738. image: {
  18739. source: "./media/characters/irishfox/front.svg",
  18740. extra: 1912 / 1680,
  18741. bottom: 0.02
  18742. }
  18743. },
  18744. },
  18745. [
  18746. {
  18747. name: "Nano",
  18748. height: math.unit(1, "mm")
  18749. },
  18750. {
  18751. name: "Micro",
  18752. height: math.unit(2, "inches")
  18753. },
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(5 + 9 / 12, "feet"),
  18757. default: true
  18758. },
  18759. {
  18760. name: "Macro",
  18761. height: math.unit(45, "feet")
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18767. {
  18768. front: {
  18769. height: math.unit(6 + 1 / 12, "feet"),
  18770. weight: math.unit(75, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/aronai-sieyes/front.svg",
  18774. extra: 1556 / 1480,
  18775. bottom: 0.015
  18776. }
  18777. },
  18778. side: {
  18779. height: math.unit(6 + 1 / 12, "feet"),
  18780. weight: math.unit(75, "lb"),
  18781. name: "Side",
  18782. image: {
  18783. source: "./media/characters/aronai-sieyes/side.svg",
  18784. extra: 1433 / 1390,
  18785. bottom: 0.0393
  18786. }
  18787. },
  18788. back: {
  18789. height: math.unit(6 + 1 / 12, "feet"),
  18790. weight: math.unit(75, "lb"),
  18791. name: "Back",
  18792. image: {
  18793. source: "./media/characters/aronai-sieyes/back.svg",
  18794. extra: 1544 / 1494,
  18795. bottom: 0.02
  18796. }
  18797. },
  18798. frontClothed: {
  18799. height: math.unit(6 + 1 / 12, "feet"),
  18800. weight: math.unit(75, "lb"),
  18801. name: "Front (Clothed)",
  18802. image: {
  18803. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18804. extra: 1582 / 1527
  18805. }
  18806. },
  18807. feral: {
  18808. height: math.unit(18, "feet"),
  18809. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18810. name: "Feral",
  18811. image: {
  18812. source: "./media/characters/aronai-sieyes/feral.svg",
  18813. extra: 1530 / 1240,
  18814. bottom: 0.035
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Micro",
  18821. height: math.unit(2, "inches")
  18822. },
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(6 + 1 / 12, "feet"),
  18826. default: true
  18827. }
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18832. {
  18833. front: {
  18834. height: math.unit(12, "feet"),
  18835. weight: math.unit(410, "kg"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/xuna/front.svg",
  18839. extra: 2184 / 1980
  18840. }
  18841. },
  18842. side: {
  18843. height: math.unit(12, "feet"),
  18844. weight: math.unit(410, "kg"),
  18845. name: "Side",
  18846. image: {
  18847. source: "./media/characters/xuna/side.svg",
  18848. extra: 2184 / 1980
  18849. }
  18850. },
  18851. back: {
  18852. height: math.unit(12, "feet"),
  18853. weight: math.unit(410, "kg"),
  18854. name: "Back",
  18855. image: {
  18856. source: "./media/characters/xuna/back.svg",
  18857. extra: 2184 / 1980
  18858. }
  18859. },
  18860. },
  18861. [
  18862. {
  18863. name: "Nano glow",
  18864. height: math.unit(10, "nm")
  18865. },
  18866. {
  18867. name: "Micro floof",
  18868. height: math.unit(0.3, "m")
  18869. },
  18870. {
  18871. name: "Huggable softy boi",
  18872. height: math.unit(3.6576, "m"),
  18873. default: true
  18874. },
  18875. {
  18876. name: "Admirable floof",
  18877. height: math.unit(80, "meters")
  18878. },
  18879. {
  18880. name: "Gentle macro",
  18881. height: math.unit(300, "meters")
  18882. },
  18883. {
  18884. name: "Very careful floof",
  18885. height: math.unit(3200, "meters")
  18886. },
  18887. {
  18888. name: "The mega floof",
  18889. height: math.unit(36000, "meters")
  18890. },
  18891. {
  18892. name: "Giga-fur-Wicker",
  18893. height: math.unit(4800000, "meters")
  18894. },
  18895. {
  18896. name: "Licky world",
  18897. height: math.unit(20000000, "meters")
  18898. },
  18899. {
  18900. name: "Floofy cyan sun",
  18901. height: math.unit(1500000000, "meters")
  18902. },
  18903. {
  18904. name: "Milky Wicker",
  18905. height: math.unit(1000000000000000000000, "meters")
  18906. },
  18907. {
  18908. name: "The observing Wicker",
  18909. height: math.unit(999999999999999999999999999, "meters")
  18910. },
  18911. ]
  18912. ))
  18913. characterMakers.push(() => makeCharacter(
  18914. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18915. {
  18916. front: {
  18917. height: math.unit(5 + 9 / 12, "feet"),
  18918. weight: math.unit(150, "lb"),
  18919. name: "Front",
  18920. image: {
  18921. source: "./media/characters/arokha-sieyes/front.svg",
  18922. extra: 1425 / 1284,
  18923. bottom: 0.05
  18924. }
  18925. },
  18926. },
  18927. [
  18928. {
  18929. name: "Normal",
  18930. height: math.unit(5 + 9 / 12, "feet")
  18931. },
  18932. {
  18933. name: "Macro",
  18934. height: math.unit(30, "meters"),
  18935. default: true
  18936. },
  18937. ]
  18938. ))
  18939. characterMakers.push(() => makeCharacter(
  18940. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18941. {
  18942. front: {
  18943. height: math.unit(6, "feet"),
  18944. weight: math.unit(180, "lb"),
  18945. name: "Front",
  18946. image: {
  18947. source: "./media/characters/arokh-sieyes/front.svg",
  18948. extra: 1830 / 1769,
  18949. bottom: 0.01
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(6, "feet")
  18957. },
  18958. {
  18959. name: "Macro",
  18960. height: math.unit(30, "meters"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18967. {
  18968. side: {
  18969. height: math.unit(13 + 1 / 12, "feet"),
  18970. weight: math.unit(8.5, "tonnes"),
  18971. name: "Side",
  18972. image: {
  18973. source: "./media/characters/goldeneye/side.svg",
  18974. extra: 1182 / 778,
  18975. bottom: 0.067
  18976. }
  18977. },
  18978. paw: {
  18979. height: math.unit(3.4, "feet"),
  18980. name: "Paw",
  18981. image: {
  18982. source: "./media/characters/goldeneye/paw.svg"
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Normal",
  18989. height: math.unit(13 + 1 / 12, "feet"),
  18990. default: true
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18996. {
  18997. front: {
  18998. height: math.unit(6 + 1 / 12, "feet"),
  18999. weight: math.unit(210, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/leonardo-lycheborne/front.svg",
  19003. extra: 390 / 365,
  19004. bottom: 0.032
  19005. }
  19006. },
  19007. side: {
  19008. height: math.unit(6 + 1 / 12, "feet"),
  19009. weight: math.unit(210, "lb"),
  19010. name: "Side",
  19011. image: {
  19012. source: "./media/characters/leonardo-lycheborne/side.svg",
  19013. extra: 390 / 365,
  19014. bottom: 0.005
  19015. }
  19016. },
  19017. back: {
  19018. height: math.unit(6 + 1 / 12, "feet"),
  19019. weight: math.unit(210, "lb"),
  19020. name: "Back",
  19021. image: {
  19022. source: "./media/characters/leonardo-lycheborne/back.svg",
  19023. extra: 392 / 366,
  19024. bottom: 0.01
  19025. }
  19026. },
  19027. hand: {
  19028. height: math.unit(1.08, "feet"),
  19029. name: "Hand",
  19030. image: {
  19031. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19032. }
  19033. },
  19034. foot: {
  19035. height: math.unit(1.32, "feet"),
  19036. name: "Foot",
  19037. image: {
  19038. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19039. }
  19040. },
  19041. were: {
  19042. height: math.unit(20, "feet"),
  19043. weight: math.unit(7800, "lb"),
  19044. name: "Were",
  19045. image: {
  19046. source: "./media/characters/leonardo-lycheborne/were.svg",
  19047. extra: 308 / 294,
  19048. bottom: 0.048
  19049. }
  19050. },
  19051. feral: {
  19052. height: math.unit(7.5, "feet"),
  19053. weight: math.unit(600, "lb"),
  19054. name: "Feral",
  19055. image: {
  19056. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19057. extra: 210 / 186,
  19058. bottom: 0.108
  19059. }
  19060. },
  19061. taur: {
  19062. height: math.unit(11, "feet"),
  19063. weight: math.unit(3300, "lb"),
  19064. name: "Taur",
  19065. image: {
  19066. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19067. extra: 320 / 303,
  19068. bottom: 0.025
  19069. }
  19070. },
  19071. barghest: {
  19072. height: math.unit(11, "feet"),
  19073. weight: math.unit(1300, "lb"),
  19074. name: "Barghest",
  19075. image: {
  19076. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19077. extra: 323 / 302,
  19078. bottom: 0.027
  19079. }
  19080. },
  19081. dick: {
  19082. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19083. name: "Dick",
  19084. image: {
  19085. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19086. }
  19087. },
  19088. dickWere: {
  19089. height: math.unit((20) / 3.8, "feet"),
  19090. name: "Dick (Were)",
  19091. image: {
  19092. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(6 + 1 / 12, "feet"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(10, "feet"),
  19109. weight: math.unit(350, "lb"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/jet/front.svg",
  19113. extra: 2050 / 1980,
  19114. bottom: 0.013
  19115. }
  19116. },
  19117. back: {
  19118. height: math.unit(10, "feet"),
  19119. weight: math.unit(350, "lb"),
  19120. name: "Back",
  19121. image: {
  19122. source: "./media/characters/jet/back.svg",
  19123. extra: 2050 / 1980,
  19124. bottom: 0.013
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Micro",
  19131. height: math.unit(6, "inches")
  19132. },
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(10, "feet"),
  19136. default: true
  19137. },
  19138. {
  19139. name: "Macro",
  19140. height: math.unit(100, "feet")
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(15, "feet"),
  19149. weight: math.unit(2800, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/tanarath/front.svg",
  19153. extra: 2392 / 2220,
  19154. bottom: 0.03
  19155. }
  19156. },
  19157. back: {
  19158. height: math.unit(15, "feet"),
  19159. weight: math.unit(2800, "lb"),
  19160. name: "Back",
  19161. image: {
  19162. source: "./media/characters/tanarath/back.svg",
  19163. extra: 2392 / 2220,
  19164. bottom: 0.03
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(15, "feet"),
  19172. default: true
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19178. {
  19179. front: {
  19180. height: math.unit(7 + 1 / 12, "feet"),
  19181. weight: math.unit(175, "lb"),
  19182. name: "Front",
  19183. image: {
  19184. source: "./media/characters/patty-cattybatty/front.svg",
  19185. extra: 908 / 874,
  19186. bottom: 0.025
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Micro",
  19193. height: math.unit(1, "inch")
  19194. },
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(7 + 1 / 12, "feet")
  19198. },
  19199. {
  19200. name: "Mini Macro",
  19201. height: math.unit(155, "feet")
  19202. },
  19203. {
  19204. name: "Macro",
  19205. height: math.unit(1077, "feet")
  19206. },
  19207. {
  19208. name: "Mega Macro",
  19209. height: math.unit(47650, "feet"),
  19210. default: true
  19211. },
  19212. {
  19213. name: "Giga Macro",
  19214. height: math.unit(440, "miles")
  19215. },
  19216. {
  19217. name: "Tera Macro",
  19218. height: math.unit(8700, "miles")
  19219. },
  19220. {
  19221. name: "Planetary Macro",
  19222. height: math.unit(32700, "miles")
  19223. },
  19224. {
  19225. name: "Solar Macro",
  19226. height: math.unit(550000, "miles")
  19227. },
  19228. {
  19229. name: "Celestial Macro",
  19230. height: math.unit(2.5, "AU")
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(4 + 5 / 12, "feet"),
  19239. weight: math.unit(90, "lb"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/cappu/front.svg",
  19243. extra: 1247 / 1152,
  19244. bottom: 0.012
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(4 + 5 / 12, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19258. {
  19259. frontDressed: {
  19260. height: math.unit(70, "cm"),
  19261. weight: math.unit(6, "kg"),
  19262. name: "Front (Dressed)",
  19263. image: {
  19264. source: "./media/characters/sebi/front-dressed.svg",
  19265. extra: 713.5 / 686.5,
  19266. bottom: 0.003
  19267. }
  19268. },
  19269. front: {
  19270. height: math.unit(70, "cm"),
  19271. weight: math.unit(5, "kg"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/sebi/front.svg",
  19275. extra: 713.5 / 686.5,
  19276. bottom: 0.003
  19277. }
  19278. }
  19279. },
  19280. [
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(70, "cm"),
  19284. default: true
  19285. },
  19286. {
  19287. name: "Macro",
  19288. height: math.unit(8, "meters")
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19294. {
  19295. front: {
  19296. height: math.unit(6, "feet"),
  19297. weight: math.unit(150, "lb"),
  19298. name: "Front",
  19299. image: {
  19300. source: "./media/characters/typhek/front.svg",
  19301. extra: 1948 / 1929,
  19302. bottom: 0.025
  19303. }
  19304. },
  19305. side: {
  19306. height: math.unit(6, "feet"),
  19307. weight: math.unit(150, "lb"),
  19308. name: "Side",
  19309. image: {
  19310. source: "./media/characters/typhek/side.svg",
  19311. extra: 2034 / 2010,
  19312. bottom: 0.003
  19313. }
  19314. },
  19315. back: {
  19316. height: math.unit(6, "feet"),
  19317. weight: math.unit(150, "lb"),
  19318. name: "Back",
  19319. image: {
  19320. source: "./media/characters/typhek/back.svg",
  19321. extra: 2005 / 1978,
  19322. bottom: 0.004
  19323. }
  19324. },
  19325. palm: {
  19326. height: math.unit(1.2, "feet"),
  19327. name: "Palm",
  19328. image: {
  19329. source: "./media/characters/typhek/palm.svg"
  19330. }
  19331. },
  19332. fist: {
  19333. height: math.unit(1.1, "feet"),
  19334. name: "Fist",
  19335. image: {
  19336. source: "./media/characters/typhek/fist.svg"
  19337. }
  19338. },
  19339. foot: {
  19340. height: math.unit(1.57, "feet"),
  19341. name: "Foot",
  19342. image: {
  19343. source: "./media/characters/typhek/foot.svg"
  19344. }
  19345. },
  19346. sole: {
  19347. height: math.unit(2.05, "feet"),
  19348. name: "Sole",
  19349. image: {
  19350. source: "./media/characters/typhek/sole.svg"
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Macro",
  19357. height: math.unit(40, "stories"),
  19358. default: true
  19359. },
  19360. {
  19361. name: "Megamacro",
  19362. height: math.unit(1, "mile")
  19363. },
  19364. {
  19365. name: "Gigamacro",
  19366. height: math.unit(4000, "solarradii")
  19367. },
  19368. {
  19369. name: "Universal",
  19370. height: math.unit(1.1, "universes")
  19371. }
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19376. {
  19377. side: {
  19378. height: math.unit(5 + 7 / 12, "feet"),
  19379. weight: math.unit(150, "lb"),
  19380. name: "Side",
  19381. image: {
  19382. source: "./media/characters/kassy/side.svg",
  19383. extra: 1280 / 1225,
  19384. bottom: 0.002
  19385. }
  19386. },
  19387. front: {
  19388. height: math.unit(5 + 7 / 12, "feet"),
  19389. weight: math.unit(150, "lb"),
  19390. name: "Front",
  19391. image: {
  19392. source: "./media/characters/kassy/front.svg",
  19393. extra: 1280 / 1225,
  19394. bottom: 0.025
  19395. }
  19396. },
  19397. back: {
  19398. height: math.unit(5 + 7 / 12, "feet"),
  19399. weight: math.unit(150, "lb"),
  19400. name: "Back",
  19401. image: {
  19402. source: "./media/characters/kassy/back.svg",
  19403. extra: 1280 / 1225,
  19404. bottom: 0.002
  19405. }
  19406. },
  19407. foot: {
  19408. height: math.unit(1.266, "feet"),
  19409. name: "Foot",
  19410. image: {
  19411. source: "./media/characters/kassy/foot.svg"
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Normal",
  19418. height: math.unit(5 + 7 / 12, "feet")
  19419. },
  19420. {
  19421. name: "Macro",
  19422. height: math.unit(137, "feet"),
  19423. default: true
  19424. },
  19425. {
  19426. name: "Megamacro",
  19427. height: math.unit(1, "mile")
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19433. {
  19434. front: {
  19435. height: math.unit(6 + 1 / 12, "feet"),
  19436. weight: math.unit(200, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/neil/front.svg",
  19440. extra: 1326 / 1250,
  19441. bottom: 0.023
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(6 + 1 / 12, "feet"),
  19449. default: true
  19450. },
  19451. {
  19452. name: "Macro",
  19453. height: math.unit(200, "feet")
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(5 + 9 / 12, "feet"),
  19462. weight: math.unit(190, "lb"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/atticus/front.svg",
  19466. extra: 2934 / 2785,
  19467. bottom: 0.025
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(5 + 9 / 12, "feet"),
  19475. default: true
  19476. },
  19477. {
  19478. name: "Macro",
  19479. height: math.unit(180, "feet")
  19480. },
  19481. ]
  19482. ))
  19483. characterMakers.push(() => makeCharacter(
  19484. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19485. {
  19486. side: {
  19487. height: math.unit(9, "feet"),
  19488. weight: math.unit(650, "lb"),
  19489. name: "Side",
  19490. image: {
  19491. source: "./media/characters/milo/side.svg",
  19492. extra: 2644 / 2310,
  19493. bottom: 0.032
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(9, "feet"),
  19501. default: true
  19502. },
  19503. {
  19504. name: "Macro",
  19505. height: math.unit(300, "feet")
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19511. {
  19512. side: {
  19513. height: math.unit(8, "meters"),
  19514. weight: math.unit(90000, "kg"),
  19515. name: "Side",
  19516. image: {
  19517. source: "./media/characters/ijzer/side.svg",
  19518. extra: 2756 / 1600,
  19519. bottom: 0.01
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Small",
  19526. height: math.unit(3, "meters")
  19527. },
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(8, "meters"),
  19531. default: true
  19532. },
  19533. {
  19534. name: "Normal+",
  19535. height: math.unit(10, "meters")
  19536. },
  19537. {
  19538. name: "Bigger",
  19539. height: math.unit(24, "meters")
  19540. },
  19541. {
  19542. name: "Huge",
  19543. height: math.unit(80, "meters")
  19544. },
  19545. ]
  19546. ))
  19547. characterMakers.push(() => makeCharacter(
  19548. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19549. {
  19550. front: {
  19551. height: math.unit(6 + 2 / 12, "feet"),
  19552. weight: math.unit(153, "lb"),
  19553. name: "Front",
  19554. image: {
  19555. source: "./media/characters/luca-cervicum/front.svg",
  19556. extra: 370 / 327,
  19557. bottom: 0.015
  19558. }
  19559. },
  19560. back: {
  19561. height: math.unit(6 + 2 / 12, "feet"),
  19562. weight: math.unit(153, "lb"),
  19563. name: "Back",
  19564. image: {
  19565. source: "./media/characters/luca-cervicum/back.svg",
  19566. extra: 367 / 333,
  19567. bottom: 0.005
  19568. }
  19569. },
  19570. frontGear: {
  19571. height: math.unit(6 + 2 / 12, "feet"),
  19572. weight: math.unit(173, "lb"),
  19573. name: "Front (Gear)",
  19574. image: {
  19575. source: "./media/characters/luca-cervicum/front-gear.svg",
  19576. extra: 377 / 333,
  19577. bottom: 0.006
  19578. }
  19579. },
  19580. },
  19581. [
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(6 + 2 / 12, "feet"),
  19585. default: true
  19586. },
  19587. ]
  19588. ))
  19589. characterMakers.push(() => makeCharacter(
  19590. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19591. {
  19592. front: {
  19593. height: math.unit(6 + 1 / 12, "feet"),
  19594. weight: math.unit(304, "lb"),
  19595. name: "Front",
  19596. image: {
  19597. source: "./media/characters/oliver/front.svg",
  19598. extra: 157 / 143,
  19599. bottom: 0.08
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(6 + 1 / 12, "feet"),
  19607. default: true
  19608. },
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19613. {
  19614. front: {
  19615. height: math.unit(5 + 7 / 12, "feet"),
  19616. weight: math.unit(140, "lb"),
  19617. name: "Front",
  19618. image: {
  19619. source: "./media/characters/shane/front.svg",
  19620. extra: 304 / 289,
  19621. bottom: 0.005
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(5 + 7 / 12, "feet"),
  19629. default: true
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19635. {
  19636. front: {
  19637. height: math.unit(5 + 9 / 12, "feet"),
  19638. weight: math.unit(178, "lb"),
  19639. name: "Front",
  19640. image: {
  19641. source: "./media/characters/shin/front.svg",
  19642. extra: 159 / 151,
  19643. bottom: 0.015
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(5 + 9 / 12, "feet"),
  19651. default: true
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19657. {
  19658. front: {
  19659. height: math.unit(5 + 10 / 12, "feet"),
  19660. weight: math.unit(168, "lb"),
  19661. name: "Front",
  19662. image: {
  19663. source: "./media/characters/xerxes/front.svg",
  19664. extra: 282 / 260,
  19665. bottom: 0.045
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(5 + 10 / 12, "feet"),
  19673. default: true
  19674. },
  19675. ]
  19676. ))
  19677. characterMakers.push(() => makeCharacter(
  19678. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19679. {
  19680. front: {
  19681. height: math.unit(6 + 7 / 12, "feet"),
  19682. weight: math.unit(208, "lb"),
  19683. name: "Front",
  19684. image: {
  19685. source: "./media/characters/chaska/front.svg",
  19686. extra: 332 / 319,
  19687. bottom: 0.015
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(6 + 7 / 12, "feet"),
  19695. default: true
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19701. {
  19702. front: {
  19703. height: math.unit(5 + 8 / 12, "feet"),
  19704. weight: math.unit(208, "lb"),
  19705. name: "Front",
  19706. image: {
  19707. source: "./media/characters/enuk/front.svg",
  19708. extra: 437 / 406,
  19709. bottom: 0.02
  19710. }
  19711. },
  19712. },
  19713. [
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(5 + 8 / 12, "feet"),
  19717. default: true
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19723. {
  19724. front: {
  19725. height: math.unit(5 + 10 / 12, "feet"),
  19726. weight: math.unit(252, "lb"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/bruun/front.svg",
  19730. extra: 197 / 187,
  19731. bottom: 0.012
  19732. }
  19733. },
  19734. },
  19735. [
  19736. {
  19737. name: "Normal",
  19738. height: math.unit(5 + 10 / 12, "feet"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(6 + 10 / 12, "feet"),
  19748. weight: math.unit(255, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/alexeev/front.svg",
  19752. extra: 213 / 200,
  19753. bottom: 0.05
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(6 + 10 / 12, "feet"),
  19761. default: true
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19767. {
  19768. front: {
  19769. height: math.unit(2 + 8 / 12, "feet"),
  19770. weight: math.unit(22, "lb"),
  19771. name: "Front",
  19772. image: {
  19773. source: "./media/characters/evelyn/front.svg",
  19774. extra: 208 / 180
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(2 + 8 / 12, "feet"),
  19782. default: true
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19788. {
  19789. front: {
  19790. height: math.unit(5 + 9 / 12, "feet"),
  19791. weight: math.unit(139, "lb"),
  19792. name: "Front",
  19793. image: {
  19794. source: "./media/characters/inca/front.svg",
  19795. extra: 294 / 291,
  19796. bottom: 0.03
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(5 + 9 / 12, "feet"),
  19804. default: true
  19805. },
  19806. ]
  19807. ))
  19808. characterMakers.push(() => makeCharacter(
  19809. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19810. {
  19811. front: {
  19812. height: math.unit(5 + 1 / 12, "feet"),
  19813. weight: math.unit(84, "lb"),
  19814. name: "Front",
  19815. image: {
  19816. source: "./media/characters/magdalene/front.svg",
  19817. extra: 293 / 273
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(5 + 1 / 12, "feet"),
  19825. default: true
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(6 + 3 / 12, "feet"),
  19834. weight: math.unit(185, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/mera/front.svg",
  19838. extra: 291 / 277,
  19839. bottom: 0.03
  19840. }
  19841. },
  19842. },
  19843. [
  19844. {
  19845. name: "Normal",
  19846. height: math.unit(6 + 3 / 12, "feet"),
  19847. default: true
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19853. {
  19854. front: {
  19855. height: math.unit(6 + 7 / 12, "feet"),
  19856. weight: math.unit(160, "lb"),
  19857. name: "Front",
  19858. image: {
  19859. source: "./media/characters/ceres/front.svg",
  19860. extra: 1023 / 950,
  19861. bottom: 0.027
  19862. }
  19863. },
  19864. back: {
  19865. height: math.unit(6 + 7 / 12, "feet"),
  19866. weight: math.unit(160, "lb"),
  19867. name: "Back",
  19868. image: {
  19869. source: "./media/characters/ceres/back.svg",
  19870. extra: 1023 / 950
  19871. }
  19872. },
  19873. },
  19874. [
  19875. {
  19876. name: "Normal",
  19877. height: math.unit(6 + 7 / 12, "feet"),
  19878. default: true
  19879. },
  19880. ]
  19881. ))
  19882. characterMakers.push(() => makeCharacter(
  19883. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19884. {
  19885. front: {
  19886. height: math.unit(5 + 10 / 12, "feet"),
  19887. weight: math.unit(150, "lb"),
  19888. name: "Front",
  19889. image: {
  19890. source: "./media/characters/kris/front.svg",
  19891. extra: 885 / 803,
  19892. bottom: 0.03
  19893. }
  19894. },
  19895. },
  19896. [
  19897. {
  19898. name: "Normal",
  19899. height: math.unit(5 + 10 / 12, "feet"),
  19900. default: true
  19901. },
  19902. ]
  19903. ))
  19904. characterMakers.push(() => makeCharacter(
  19905. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19906. {
  19907. front: {
  19908. height: math.unit(7, "feet"),
  19909. weight: math.unit(120, "kg"),
  19910. name: "Front",
  19911. image: {
  19912. source: "./media/characters/taluthus/front.svg",
  19913. extra: 903 / 833,
  19914. bottom: 0.015
  19915. }
  19916. },
  19917. },
  19918. [
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(7, "feet"),
  19922. default: true
  19923. },
  19924. {
  19925. name: "Macro",
  19926. height: math.unit(300, "feet")
  19927. },
  19928. ]
  19929. ))
  19930. characterMakers.push(() => makeCharacter(
  19931. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19932. {
  19933. front: {
  19934. height: math.unit(5 + 9 / 12, "feet"),
  19935. weight: math.unit(145, "lb"),
  19936. name: "Front",
  19937. image: {
  19938. source: "./media/characters/dawn/front.svg",
  19939. extra: 2094 / 2016,
  19940. bottom: 0.025
  19941. }
  19942. },
  19943. back: {
  19944. height: math.unit(5 + 9 / 12, "feet"),
  19945. weight: math.unit(160, "lb"),
  19946. name: "Back",
  19947. image: {
  19948. source: "./media/characters/dawn/back.svg",
  19949. extra: 2112 / 2080,
  19950. bottom: 0.005
  19951. }
  19952. },
  19953. },
  19954. [
  19955. {
  19956. name: "Normal",
  19957. height: math.unit(6 + 7 / 12, "feet"),
  19958. default: true
  19959. },
  19960. ]
  19961. ))
  19962. characterMakers.push(() => makeCharacter(
  19963. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19964. {
  19965. anthro: {
  19966. height: math.unit(8 + 3 / 12, "feet"),
  19967. weight: math.unit(450, "lb"),
  19968. name: "Anthro",
  19969. image: {
  19970. source: "./media/characters/arador/anthro.svg",
  19971. extra: 1835 / 1718,
  19972. bottom: 0.025
  19973. }
  19974. },
  19975. feral: {
  19976. height: math.unit(4, "feet"),
  19977. weight: math.unit(200, "lb"),
  19978. name: "Feral",
  19979. image: {
  19980. source: "./media/characters/arador/feral.svg",
  19981. extra: 1683 / 1514,
  19982. bottom: 0.07
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(8 + 3 / 12, "feet")
  19990. },
  19991. {
  19992. name: "Macro",
  19993. height: math.unit(82.5, "feet"),
  19994. default: true
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(5 + 10 / 12, "feet"),
  20003. weight: math.unit(125, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/dharsi/front.svg",
  20007. extra: 716 / 630,
  20008. bottom: 0.035
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Nano",
  20015. height: math.unit(100, "nm")
  20016. },
  20017. {
  20018. name: "Micro",
  20019. height: math.unit(2, "inches")
  20020. },
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(5 + 10 / 12, "feet"),
  20024. default: true
  20025. },
  20026. {
  20027. name: "Macro",
  20028. height: math.unit(1000, "feet")
  20029. },
  20030. {
  20031. name: "Megamacro",
  20032. height: math.unit(10, "miles")
  20033. },
  20034. {
  20035. name: "Gigamacro",
  20036. height: math.unit(3000, "miles")
  20037. },
  20038. {
  20039. name: "Teramacro",
  20040. height: math.unit(500000, "miles")
  20041. },
  20042. {
  20043. name: "Teramacro+",
  20044. height: math.unit(30, "galaxies")
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20050. {
  20051. front: {
  20052. height: math.unit(6, "feet"),
  20053. weight: math.unit(150, "lb"),
  20054. name: "Front",
  20055. image: {
  20056. source: "./media/characters/deathy/front.svg",
  20057. extra: 1552 / 1463,
  20058. bottom: 0.025
  20059. }
  20060. },
  20061. side: {
  20062. height: math.unit(6, "feet"),
  20063. weight: math.unit(150, "lb"),
  20064. name: "Side",
  20065. image: {
  20066. source: "./media/characters/deathy/side.svg",
  20067. extra: 1604 / 1455,
  20068. bottom: 0.025
  20069. }
  20070. },
  20071. back: {
  20072. height: math.unit(6, "feet"),
  20073. weight: math.unit(150, "lb"),
  20074. name: "Back",
  20075. image: {
  20076. source: "./media/characters/deathy/back.svg",
  20077. extra: 1580 / 1463,
  20078. bottom: 0.005
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Micro",
  20085. height: math.unit(5, "millimeters")
  20086. },
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(6 + 5 / 12, "feet"),
  20090. default: true
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20096. {
  20097. front: {
  20098. height: math.unit(16, "feet"),
  20099. weight: math.unit(4000, "lb"),
  20100. name: "Front",
  20101. image: {
  20102. source: "./media/characters/juniper/front.svg",
  20103. bottom: 0.04
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Normal",
  20110. height: math.unit(16, "feet"),
  20111. default: true
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20117. {
  20118. front: {
  20119. height: math.unit(6, "feet"),
  20120. weight: math.unit(150, "lb"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/hipster/front.svg",
  20124. extra: 1312 / 1209,
  20125. bottom: 0.025
  20126. }
  20127. },
  20128. back: {
  20129. height: math.unit(6, "feet"),
  20130. weight: math.unit(150, "lb"),
  20131. name: "Back",
  20132. image: {
  20133. source: "./media/characters/hipster/back.svg",
  20134. extra: 1281 / 1196,
  20135. bottom: 0.01
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Micro",
  20142. height: math.unit(1, "mm")
  20143. },
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(4, "inches"),
  20147. default: true
  20148. },
  20149. {
  20150. name: "Macro",
  20151. height: math.unit(500, "feet")
  20152. },
  20153. {
  20154. name: "Megamacro",
  20155. height: math.unit(1000, "miles")
  20156. },
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20161. {
  20162. front: {
  20163. height: math.unit(6, "feet"),
  20164. weight: math.unit(150, "lb"),
  20165. name: "Front",
  20166. image: {
  20167. source: "./media/characters/tendirmuldr/front.svg",
  20168. extra: 1878 / 1772,
  20169. bottom: 0.015
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Megamacro",
  20176. height: math.unit(1500, "miles"),
  20177. default: true
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20183. {
  20184. front: {
  20185. height: math.unit(14, "feet"),
  20186. weight: math.unit(12000, "lb"),
  20187. name: "Front",
  20188. image: {
  20189. source: "./media/characters/mort/front.svg",
  20190. extra: 365 / 318,
  20191. bottom: 0.01
  20192. }
  20193. },
  20194. side: {
  20195. height: math.unit(14, "feet"),
  20196. weight: math.unit(12000, "lb"),
  20197. name: "Side",
  20198. image: {
  20199. source: "./media/characters/mort/side.svg",
  20200. extra: 365 / 318,
  20201. bottom: 0.052
  20202. },
  20203. default: true
  20204. },
  20205. back: {
  20206. height: math.unit(14, "feet"),
  20207. weight: math.unit(12000, "lb"),
  20208. name: "Back",
  20209. image: {
  20210. source: "./media/characters/mort/back.svg",
  20211. extra: 371 / 332,
  20212. bottom: 0.18
  20213. }
  20214. },
  20215. },
  20216. [
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(14, "feet"),
  20220. default: true
  20221. },
  20222. ]
  20223. ))
  20224. characterMakers.push(() => makeCharacter(
  20225. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20226. {
  20227. front: {
  20228. height: math.unit(8, "feet"),
  20229. weight: math.unit(1, "ton"),
  20230. name: "Front",
  20231. image: {
  20232. source: "./media/characters/lycoa/front.svg",
  20233. extra: 1875 / 1789,
  20234. bottom: 0.022
  20235. }
  20236. },
  20237. back: {
  20238. height: math.unit(8, "feet"),
  20239. weight: math.unit(1, "ton"),
  20240. name: "Back",
  20241. image: {
  20242. source: "./media/characters/lycoa/back.svg",
  20243. extra: 1835 / 1781,
  20244. bottom: 0.03
  20245. }
  20246. },
  20247. head: {
  20248. height: math.unit(2.1, "feet"),
  20249. name: "Head",
  20250. image: {
  20251. source: "./media/characters/lycoa/head.svg"
  20252. }
  20253. },
  20254. tailmaw: {
  20255. height: math.unit(1.9, "feet"),
  20256. name: "Tailmaw",
  20257. image: {
  20258. source: "./media/characters/lycoa/tailmaw.svg"
  20259. }
  20260. },
  20261. tentacles: {
  20262. height: math.unit(2.1, "feet"),
  20263. name: "Tentacles",
  20264. image: {
  20265. source: "./media/characters/lycoa/tentacles.svg"
  20266. }
  20267. },
  20268. dick: {
  20269. height: math.unit(1.73, "feet"),
  20270. name: "Dick",
  20271. image: {
  20272. source: "./media/characters/lycoa/dick.svg"
  20273. }
  20274. },
  20275. },
  20276. [
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(8, "feet"),
  20280. default: true
  20281. },
  20282. {
  20283. name: "Macro",
  20284. height: math.unit(30, "feet")
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20290. {
  20291. front: {
  20292. height: math.unit(4 + 2 / 12, "feet"),
  20293. weight: math.unit(70, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/naldara/front.svg",
  20297. extra: 841 / 720,
  20298. bottom: 0.04
  20299. }
  20300. },
  20301. naga: {
  20302. height: math.unit(23, "feet"),
  20303. weight: math.unit(15000, "kg"),
  20304. name: "Naga",
  20305. image: {
  20306. source: "./media/characters/naldara/naga.svg",
  20307. extra: 3290 / 2959,
  20308. bottom: 124 / 3432
  20309. }
  20310. },
  20311. },
  20312. [
  20313. {
  20314. name: "Normal",
  20315. height: math.unit(4 + 2 / 12, "feet"),
  20316. default: true
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20322. {
  20323. front: {
  20324. height: math.unit(13 + 7 / 12, "feet"),
  20325. weight: math.unit(1500, "lb"),
  20326. name: "Front",
  20327. image: {
  20328. source: "./media/characters/briar/front.svg",
  20329. extra: 626 / 596,
  20330. bottom: 0.08
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(13 + 7 / 12, "feet"),
  20338. default: true
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20344. {
  20345. side: {
  20346. height: math.unit(10, "feet"),
  20347. weight: math.unit(500, "lb"),
  20348. name: "Side",
  20349. image: {
  20350. source: "./media/characters/vanguard/side.svg",
  20351. extra: 502 / 425,
  20352. bottom: 0.087
  20353. }
  20354. },
  20355. },
  20356. [
  20357. {
  20358. name: "Normal",
  20359. height: math.unit(10, "feet"),
  20360. default: true
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20366. {
  20367. front: {
  20368. height: math.unit(7.5, "feet"),
  20369. weight: math.unit(2, "lb"),
  20370. name: "Front",
  20371. image: {
  20372. source: "./media/characters/artemis/front.svg",
  20373. extra: 1192 / 1075,
  20374. bottom: 0.07
  20375. }
  20376. },
  20377. frontNsfw: {
  20378. height: math.unit(7.5, "feet"),
  20379. weight: math.unit(2, "lb"),
  20380. name: "Front (NSFW)",
  20381. image: {
  20382. source: "./media/characters/artemis/front-nsfw.svg",
  20383. extra: 1192 / 1075,
  20384. bottom: 0.07
  20385. }
  20386. },
  20387. frontNsfwer: {
  20388. height: math.unit(7.5, "feet"),
  20389. weight: math.unit(2, "lb"),
  20390. name: "Front (NSFW-er)",
  20391. image: {
  20392. source: "./media/characters/artemis/front-nsfwer.svg",
  20393. extra: 1192 / 1075,
  20394. bottom: 0.07
  20395. }
  20396. },
  20397. side: {
  20398. height: math.unit(7.5, "feet"),
  20399. weight: math.unit(2, "lb"),
  20400. name: "Side",
  20401. image: {
  20402. source: "./media/characters/artemis/side.svg",
  20403. extra: 1192 / 1075,
  20404. bottom: 0.07
  20405. }
  20406. },
  20407. sideNsfw: {
  20408. height: math.unit(7.5, "feet"),
  20409. weight: math.unit(2, "lb"),
  20410. name: "Side (NSFW)",
  20411. image: {
  20412. source: "./media/characters/artemis/side-nsfw.svg",
  20413. extra: 1192 / 1075,
  20414. bottom: 0.07
  20415. }
  20416. },
  20417. sideNsfwer: {
  20418. height: math.unit(7.5, "feet"),
  20419. weight: math.unit(2, "lb"),
  20420. name: "Side (NSFW-er)",
  20421. image: {
  20422. source: "./media/characters/artemis/side-nsfwer.svg",
  20423. extra: 1192 / 1075,
  20424. bottom: 0.07
  20425. }
  20426. },
  20427. maw: {
  20428. height: math.unit(1.1, "feet"),
  20429. name: "Maw",
  20430. image: {
  20431. source: "./media/characters/artemis/maw.svg"
  20432. }
  20433. },
  20434. stomach: {
  20435. height: math.unit(0.95, "feet"),
  20436. name: "Stomach",
  20437. image: {
  20438. source: "./media/characters/artemis/stomach.svg"
  20439. }
  20440. },
  20441. dickCanine: {
  20442. height: math.unit(1, "feet"),
  20443. name: "Dick (Canine)",
  20444. image: {
  20445. source: "./media/characters/artemis/dick-canine.svg"
  20446. }
  20447. },
  20448. dickEquine: {
  20449. height: math.unit(0.85, "feet"),
  20450. name: "Dick (Equine)",
  20451. image: {
  20452. source: "./media/characters/artemis/dick-equine.svg"
  20453. }
  20454. },
  20455. dickExotic: {
  20456. height: math.unit(0.85, "feet"),
  20457. name: "Dick (Exotic)",
  20458. image: {
  20459. source: "./media/characters/artemis/dick-exotic.svg"
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Normal",
  20466. height: math.unit(7.5, "feet"),
  20467. default: true
  20468. },
  20469. {
  20470. name: "Enlarged",
  20471. height: math.unit(12, "feet")
  20472. },
  20473. ]
  20474. ))
  20475. characterMakers.push(() => makeCharacter(
  20476. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20477. {
  20478. front: {
  20479. height: math.unit(5 + 3 / 12, "feet"),
  20480. weight: math.unit(160, "lb"),
  20481. name: "Front",
  20482. image: {
  20483. source: "./media/characters/kira/front.svg",
  20484. extra: 906 / 786,
  20485. bottom: 0.01
  20486. }
  20487. },
  20488. back: {
  20489. height: math.unit(5 + 3 / 12, "feet"),
  20490. weight: math.unit(160, "lb"),
  20491. name: "Back",
  20492. image: {
  20493. source: "./media/characters/kira/back.svg",
  20494. extra: 882 / 757,
  20495. bottom: 0.005
  20496. }
  20497. },
  20498. frontDressed: {
  20499. height: math.unit(5 + 3 / 12, "feet"),
  20500. weight: math.unit(160, "lb"),
  20501. name: "Front (Dressed)",
  20502. image: {
  20503. source: "./media/characters/kira/front-dressed.svg",
  20504. extra: 906 / 786,
  20505. bottom: 0.01
  20506. }
  20507. },
  20508. beans: {
  20509. height: math.unit(0.92, "feet"),
  20510. name: "Beans",
  20511. image: {
  20512. source: "./media/characters/kira/beans.svg"
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(5 + 3 / 12, "feet"),
  20520. default: true
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20526. {
  20527. front: {
  20528. height: math.unit(5 + 4 / 12, "feet"),
  20529. weight: math.unit(145, "lb"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/scramble/front.svg",
  20533. extra: 763 / 727,
  20534. bottom: 0.05
  20535. }
  20536. },
  20537. back: {
  20538. height: math.unit(5 + 4 / 12, "feet"),
  20539. weight: math.unit(145, "lb"),
  20540. name: "Back",
  20541. image: {
  20542. source: "./media/characters/scramble/back.svg",
  20543. extra: 826 / 737,
  20544. bottom: 0.002
  20545. }
  20546. },
  20547. },
  20548. [
  20549. {
  20550. name: "Normal",
  20551. height: math.unit(5 + 4 / 12, "feet"),
  20552. default: true
  20553. },
  20554. ]
  20555. ))
  20556. characterMakers.push(() => makeCharacter(
  20557. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20558. {
  20559. side: {
  20560. height: math.unit(6 + 2 / 12, "feet"),
  20561. weight: math.unit(190, "lb"),
  20562. name: "Side",
  20563. image: {
  20564. source: "./media/characters/biscuit/side.svg",
  20565. extra: 858 / 791,
  20566. bottom: 0.044
  20567. }
  20568. },
  20569. },
  20570. [
  20571. {
  20572. name: "Normal",
  20573. height: math.unit(6 + 2 / 12, "feet"),
  20574. default: true
  20575. },
  20576. ]
  20577. ))
  20578. characterMakers.push(() => makeCharacter(
  20579. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20580. {
  20581. front: {
  20582. height: math.unit(5 + 2 / 12, "feet"),
  20583. weight: math.unit(120, "lb"),
  20584. name: "Front",
  20585. image: {
  20586. source: "./media/characters/poffin/front.svg",
  20587. extra: 786 / 680,
  20588. bottom: 0.005
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Normal",
  20595. height: math.unit(5 + 2 / 12, "feet"),
  20596. default: true
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20602. {
  20603. front: {
  20604. height: math.unit(6 + 3 / 12, "feet"),
  20605. weight: math.unit(519, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/dhari/front.svg",
  20609. extra: 1048 / 946,
  20610. bottom: 0.015
  20611. }
  20612. },
  20613. back: {
  20614. height: math.unit(6 + 3 / 12, "feet"),
  20615. weight: math.unit(519, "lb"),
  20616. name: "Back",
  20617. image: {
  20618. source: "./media/characters/dhari/back.svg",
  20619. extra: 1048 / 931,
  20620. bottom: 0.005
  20621. }
  20622. },
  20623. frontDressed: {
  20624. height: math.unit(6 + 3 / 12, "feet"),
  20625. weight: math.unit(519, "lb"),
  20626. name: "Front (Dressed)",
  20627. image: {
  20628. source: "./media/characters/dhari/front-dressed.svg",
  20629. extra: 1713 / 1546,
  20630. bottom: 0.02
  20631. }
  20632. },
  20633. backDressed: {
  20634. height: math.unit(6 + 3 / 12, "feet"),
  20635. weight: math.unit(519, "lb"),
  20636. name: "Back (Dressed)",
  20637. image: {
  20638. source: "./media/characters/dhari/back-dressed.svg",
  20639. extra: 1699 / 1537,
  20640. bottom: 0.01
  20641. }
  20642. },
  20643. maw: {
  20644. height: math.unit(0.95, "feet"),
  20645. name: "Maw",
  20646. image: {
  20647. source: "./media/characters/dhari/maw.svg"
  20648. }
  20649. },
  20650. wereFront: {
  20651. height: math.unit(12 + 8 / 12, "feet"),
  20652. weight: math.unit(4000, "lb"),
  20653. name: "Front (Were)",
  20654. image: {
  20655. source: "./media/characters/dhari/were-front.svg",
  20656. extra: 1065 / 969,
  20657. bottom: 0.015
  20658. }
  20659. },
  20660. wereBack: {
  20661. height: math.unit(12 + 8 / 12, "feet"),
  20662. weight: math.unit(4000, "lb"),
  20663. name: "Back (Were)",
  20664. image: {
  20665. source: "./media/characters/dhari/were-back.svg",
  20666. extra: 1065 / 969,
  20667. bottom: 0.012
  20668. }
  20669. },
  20670. wereMaw: {
  20671. height: math.unit(0.625, "meters"),
  20672. name: "Maw (Were)",
  20673. image: {
  20674. source: "./media/characters/dhari/were-maw.svg"
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(6 + 3 / 12, "feet"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20688. {
  20689. anthro: {
  20690. height: math.unit(5 + 7 / 12, "feet"),
  20691. weight: math.unit(175, "lb"),
  20692. name: "Anthro",
  20693. image: {
  20694. source: "./media/characters/rena-dyne/anthro.svg",
  20695. extra: 1849 / 1785,
  20696. bottom: 0.005
  20697. }
  20698. },
  20699. taur: {
  20700. height: math.unit(15 + 6 / 12, "feet"),
  20701. weight: math.unit(8000, "lb"),
  20702. name: "Taur",
  20703. image: {
  20704. source: "./media/characters/rena-dyne/taur.svg",
  20705. extra: 2315 / 2234,
  20706. bottom: 0.033
  20707. }
  20708. },
  20709. },
  20710. [
  20711. {
  20712. name: "Normal",
  20713. height: math.unit(5 + 7 / 12, "feet"),
  20714. default: true
  20715. },
  20716. ]
  20717. ))
  20718. characterMakers.push(() => makeCharacter(
  20719. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20720. {
  20721. front: {
  20722. height: math.unit(8, "feet"),
  20723. weight: math.unit(600, "lb"),
  20724. name: "Front",
  20725. image: {
  20726. source: "./media/characters/weremeep/front.svg",
  20727. extra: 967 / 862,
  20728. bottom: 0.01
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(8, "feet"),
  20736. default: true
  20737. },
  20738. {
  20739. name: "Lorg",
  20740. height: math.unit(12, "feet")
  20741. },
  20742. {
  20743. name: "Oh Lawd She Comin'",
  20744. height: math.unit(20, "feet")
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20750. {
  20751. front: {
  20752. height: math.unit(4, "feet"),
  20753. weight: math.unit(90, "lb"),
  20754. name: "Front",
  20755. image: {
  20756. source: "./media/characters/reza/front.svg",
  20757. extra: 1183 / 1111,
  20758. bottom: 0.017
  20759. }
  20760. },
  20761. back: {
  20762. height: math.unit(4, "feet"),
  20763. weight: math.unit(90, "lb"),
  20764. name: "Back",
  20765. image: {
  20766. source: "./media/characters/reza/back.svg",
  20767. extra: 1183 / 1111,
  20768. bottom: 0.01
  20769. }
  20770. },
  20771. drake: {
  20772. height: math.unit(30, "feet"),
  20773. weight: math.unit(246960, "lb"),
  20774. name: "Drake",
  20775. image: {
  20776. source: "./media/characters/reza/drake.svg",
  20777. extra: 2350 / 2024,
  20778. bottom: 60.7 / 2403
  20779. }
  20780. },
  20781. },
  20782. [
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(4, "feet"),
  20786. default: true
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20792. {
  20793. side: {
  20794. height: math.unit(15, "feet"),
  20795. weight: math.unit(14, "tons"),
  20796. name: "Side",
  20797. image: {
  20798. source: "./media/characters/athea/side.svg",
  20799. extra: 960 / 540,
  20800. bottom: 0.003
  20801. }
  20802. },
  20803. sitting: {
  20804. height: math.unit(6 * 2.85, "feet"),
  20805. weight: math.unit(14, "tons"),
  20806. name: "Sitting",
  20807. image: {
  20808. source: "./media/characters/athea/sitting.svg",
  20809. extra: 621 / 581,
  20810. bottom: 0.075
  20811. }
  20812. },
  20813. maw: {
  20814. height: math.unit(7.59498031496063, "feet"),
  20815. name: "Maw",
  20816. image: {
  20817. source: "./media/characters/athea/maw.svg"
  20818. }
  20819. },
  20820. },
  20821. [
  20822. {
  20823. name: "Lap Cat",
  20824. height: math.unit(2.5, "feet")
  20825. },
  20826. {
  20827. name: "Minimacro",
  20828. height: math.unit(15, "feet"),
  20829. default: true
  20830. },
  20831. {
  20832. name: "Macro",
  20833. height: math.unit(120, "feet")
  20834. },
  20835. {
  20836. name: "Macro+",
  20837. height: math.unit(640, "feet")
  20838. },
  20839. {
  20840. name: "Colossus",
  20841. height: math.unit(2.2, "miles")
  20842. },
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20847. {
  20848. front: {
  20849. height: math.unit(8 + 8 / 12, "feet"),
  20850. weight: math.unit(130, "kg"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/seroko/front.svg",
  20854. extra: 1385 / 1280,
  20855. bottom: 0.025
  20856. }
  20857. },
  20858. back: {
  20859. height: math.unit(8 + 8 / 12, "feet"),
  20860. weight: math.unit(130, "kg"),
  20861. name: "Back",
  20862. image: {
  20863. source: "./media/characters/seroko/back.svg",
  20864. extra: 1369 / 1238,
  20865. bottom: 0.018
  20866. }
  20867. },
  20868. frontDressed: {
  20869. height: math.unit(8 + 8 / 12, "feet"),
  20870. weight: math.unit(130, "kg"),
  20871. name: "Front (Dressed)",
  20872. image: {
  20873. source: "./media/characters/seroko/front-dressed.svg",
  20874. extra: 1366 / 1275,
  20875. bottom: 0.03
  20876. }
  20877. },
  20878. },
  20879. [
  20880. {
  20881. name: "Normal",
  20882. height: math.unit(8 + 8 / 12, "feet"),
  20883. default: true
  20884. },
  20885. ]
  20886. ))
  20887. characterMakers.push(() => makeCharacter(
  20888. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20889. {
  20890. front: {
  20891. height: math.unit(5.5, "feet"),
  20892. weight: math.unit(160, "lb"),
  20893. name: "Front",
  20894. image: {
  20895. source: "./media/characters/quatzi/front.svg",
  20896. extra: 2346 / 2242,
  20897. bottom: 0.015
  20898. }
  20899. },
  20900. },
  20901. [
  20902. {
  20903. name: "Normal",
  20904. height: math.unit(5.5, "feet"),
  20905. default: true
  20906. },
  20907. {
  20908. name: "Big",
  20909. height: math.unit(7.7, "feet")
  20910. },
  20911. ]
  20912. ))
  20913. characterMakers.push(() => makeCharacter(
  20914. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20915. {
  20916. front: {
  20917. height: math.unit(5 + 11 / 12, "feet"),
  20918. weight: math.unit(180, "lb"),
  20919. name: "Front",
  20920. image: {
  20921. source: "./media/characters/sen/front.svg",
  20922. extra: 1321 / 1254,
  20923. bottom: 0.015
  20924. }
  20925. },
  20926. side: {
  20927. height: math.unit(5 + 11 / 12, "feet"),
  20928. weight: math.unit(180, "lb"),
  20929. name: "Side",
  20930. image: {
  20931. source: "./media/characters/sen/side.svg",
  20932. extra: 1321 / 1254,
  20933. bottom: 0.007
  20934. }
  20935. },
  20936. back: {
  20937. height: math.unit(5 + 11 / 12, "feet"),
  20938. weight: math.unit(180, "lb"),
  20939. name: "Back",
  20940. image: {
  20941. source: "./media/characters/sen/back.svg",
  20942. extra: 1321 / 1254
  20943. }
  20944. },
  20945. },
  20946. [
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(5 + 11 / 12, "feet"),
  20950. default: true
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(166.6, "cm"),
  20959. weight: math.unit(66.6, "kg"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/fruity/front.svg",
  20963. extra: 1510 / 1386,
  20964. bottom: 0.04
  20965. }
  20966. },
  20967. back: {
  20968. height: math.unit(166.6, "cm"),
  20969. weight: math.unit(66.6, "lb"),
  20970. name: "Back",
  20971. image: {
  20972. source: "./media/characters/fruity/back.svg",
  20973. extra: 1563 / 1435,
  20974. bottom: 0.005
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Normal",
  20981. height: math.unit(166.6, "cm"),
  20982. default: true
  20983. },
  20984. {
  20985. name: "Demonic",
  20986. height: math.unit(166.6, "feet")
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20992. {
  20993. side: {
  20994. height: math.unit(10, "feet"),
  20995. weight: math.unit(500, "lb"),
  20996. name: "Side",
  20997. image: {
  20998. source: "./media/characters/zost/side.svg",
  20999. extra: 966 / 880,
  21000. bottom: 0.075
  21001. }
  21002. },
  21003. mawFront: {
  21004. height: math.unit(1.08, "meters"),
  21005. name: "Maw (Front)",
  21006. image: {
  21007. source: "./media/characters/zost/maw-front.svg"
  21008. }
  21009. },
  21010. mawSide: {
  21011. height: math.unit(2.66, "feet"),
  21012. name: "Maw (Side)",
  21013. image: {
  21014. source: "./media/characters/zost/maw-side.svg"
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Normal",
  21021. height: math.unit(10, "feet"),
  21022. default: true
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21028. {
  21029. front: {
  21030. height: math.unit(5 + 4 / 12, "feet"),
  21031. weight: math.unit(120, "lb"),
  21032. name: "Front",
  21033. image: {
  21034. source: "./media/characters/luci/front.svg",
  21035. extra: 1985 / 1884,
  21036. bottom: 0.04
  21037. }
  21038. },
  21039. back: {
  21040. height: math.unit(5 + 4 / 12, "feet"),
  21041. weight: math.unit(120, "lb"),
  21042. name: "Back",
  21043. image: {
  21044. source: "./media/characters/luci/back.svg",
  21045. extra: 1892 / 1791,
  21046. bottom: 0.002
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(5 + 4 / 12, "feet"),
  21054. default: true
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21060. {
  21061. front: {
  21062. height: math.unit(1500, "feet"),
  21063. weight: math.unit(3.8e6, "tons"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/2th/front.svg",
  21067. extra: 3489 / 3350,
  21068. bottom: 0.1
  21069. }
  21070. },
  21071. foot: {
  21072. height: math.unit(461, "feet"),
  21073. name: "Foot",
  21074. image: {
  21075. source: "./media/characters/2th/foot.svg"
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "\"Micro\"",
  21082. height: math.unit(15 + 7 / 12, "feet")
  21083. },
  21084. {
  21085. name: "Normal",
  21086. height: math.unit(1500, "feet"),
  21087. default: true
  21088. },
  21089. {
  21090. name: "Macro",
  21091. height: math.unit(5000, "feet")
  21092. },
  21093. {
  21094. name: "Megamacro",
  21095. height: math.unit(15, "miles")
  21096. },
  21097. {
  21098. name: "Gigamacro",
  21099. height: math.unit(4000, "miles")
  21100. },
  21101. {
  21102. name: "Galactic",
  21103. height: math.unit(50, "AU")
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21109. {
  21110. front: {
  21111. height: math.unit(5 + 6 / 12, "feet"),
  21112. weight: math.unit(220, "lb"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/amethyst/front.svg",
  21116. extra: 2078 / 2040,
  21117. bottom: 0.045
  21118. }
  21119. },
  21120. back: {
  21121. height: math.unit(5 + 6 / 12, "feet"),
  21122. weight: math.unit(220, "lb"),
  21123. name: "Back",
  21124. image: {
  21125. source: "./media/characters/amethyst/back.svg",
  21126. extra: 2021 / 1989,
  21127. bottom: 0.02
  21128. }
  21129. },
  21130. },
  21131. [
  21132. {
  21133. name: "Normal",
  21134. height: math.unit(5 + 6 / 12, "feet"),
  21135. default: true
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21141. {
  21142. front: {
  21143. height: math.unit(4 + 11 / 12, "feet"),
  21144. weight: math.unit(120, "lb"),
  21145. name: "Front",
  21146. image: {
  21147. source: "./media/characters/yumi-akiyama/front.svg",
  21148. extra: 1327 / 1235,
  21149. bottom: 0.02
  21150. }
  21151. },
  21152. back: {
  21153. height: math.unit(4 + 11 / 12, "feet"),
  21154. weight: math.unit(120, "lb"),
  21155. name: "Back",
  21156. image: {
  21157. source: "./media/characters/yumi-akiyama/back.svg",
  21158. extra: 1287 / 1245,
  21159. bottom: 0.002
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Galactic",
  21166. height: math.unit(50, "galaxies"),
  21167. default: true
  21168. },
  21169. {
  21170. name: "Universal",
  21171. height: math.unit(100, "universes")
  21172. },
  21173. ]
  21174. ))
  21175. characterMakers.push(() => makeCharacter(
  21176. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21177. {
  21178. front: {
  21179. height: math.unit(8, "feet"),
  21180. weight: math.unit(500, "lb"),
  21181. name: "Front",
  21182. image: {
  21183. source: "./media/characters/rifter-yrmori/front.svg",
  21184. extra: 1180 / 1125,
  21185. bottom: 0.02
  21186. }
  21187. },
  21188. back: {
  21189. height: math.unit(8, "feet"),
  21190. weight: math.unit(500, "lb"),
  21191. name: "Back",
  21192. image: {
  21193. source: "./media/characters/rifter-yrmori/back.svg",
  21194. extra: 1190 / 1145,
  21195. bottom: 0.001
  21196. }
  21197. },
  21198. wings: {
  21199. height: math.unit(7.75, "feet"),
  21200. weight: math.unit(500, "lb"),
  21201. name: "Wings",
  21202. image: {
  21203. source: "./media/characters/rifter-yrmori/wings.svg",
  21204. extra: 1357 / 1285
  21205. }
  21206. },
  21207. maw: {
  21208. height: math.unit(0.8, "feet"),
  21209. name: "Maw",
  21210. image: {
  21211. source: "./media/characters/rifter-yrmori/maw.svg"
  21212. }
  21213. },
  21214. mawfront: {
  21215. height: math.unit(1.45, "feet"),
  21216. name: "Maw (Front)",
  21217. image: {
  21218. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(8, "feet"),
  21226. default: true
  21227. },
  21228. {
  21229. name: "Macro",
  21230. height: math.unit(42, "meters")
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21236. {
  21237. were: {
  21238. height: math.unit(25 + 6 / 12, "feet"),
  21239. weight: math.unit(10000, "lb"),
  21240. name: "Were",
  21241. image: {
  21242. source: "./media/characters/tahajin/were.svg",
  21243. extra: 801 / 770,
  21244. bottom: 0.042
  21245. }
  21246. },
  21247. aquatic: {
  21248. height: math.unit(6 + 4 / 12, "feet"),
  21249. weight: math.unit(160, "lb"),
  21250. name: "Aquatic",
  21251. image: {
  21252. source: "./media/characters/tahajin/aquatic.svg",
  21253. extra: 572 / 542,
  21254. bottom: 0.04
  21255. }
  21256. },
  21257. chow: {
  21258. height: math.unit(8 + 11 / 12, "feet"),
  21259. weight: math.unit(450, "lb"),
  21260. name: "Chow",
  21261. image: {
  21262. source: "./media/characters/tahajin/chow.svg",
  21263. extra: 660 / 640,
  21264. bottom: 0.015
  21265. }
  21266. },
  21267. demiNaga: {
  21268. height: math.unit(6 + 8 / 12, "feet"),
  21269. weight: math.unit(300, "lb"),
  21270. name: "Demi Naga",
  21271. image: {
  21272. source: "./media/characters/tahajin/demi-naga.svg",
  21273. extra: 643 / 615,
  21274. bottom: 0.1
  21275. }
  21276. },
  21277. data: {
  21278. height: math.unit(5, "inches"),
  21279. weight: math.unit(0.1, "lb"),
  21280. name: "Data",
  21281. image: {
  21282. source: "./media/characters/tahajin/data.svg"
  21283. }
  21284. },
  21285. fluu: {
  21286. height: math.unit(5 + 7 / 12, "feet"),
  21287. weight: math.unit(140, "lb"),
  21288. name: "Fluu",
  21289. image: {
  21290. source: "./media/characters/tahajin/fluu.svg",
  21291. extra: 628 / 592,
  21292. bottom: 0.02
  21293. }
  21294. },
  21295. starWarrior: {
  21296. height: math.unit(4 + 5 / 12, "feet"),
  21297. weight: math.unit(50, "lb"),
  21298. name: "Star Warrior",
  21299. image: {
  21300. source: "./media/characters/tahajin/star-warrior.svg"
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(25 + 6 / 12, "feet"),
  21308. default: true
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21314. {
  21315. front: {
  21316. height: math.unit(8, "feet"),
  21317. weight: math.unit(350, "lb"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/gabira/front.svg",
  21321. extra: 608 / 580,
  21322. bottom: 0.03
  21323. }
  21324. },
  21325. back: {
  21326. height: math.unit(8, "feet"),
  21327. weight: math.unit(350, "lb"),
  21328. name: "Back",
  21329. image: {
  21330. source: "./media/characters/gabira/back.svg",
  21331. extra: 608 / 580,
  21332. bottom: 0.03
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(8, "feet"),
  21340. default: true
  21341. },
  21342. ]
  21343. ))
  21344. characterMakers.push(() => makeCharacter(
  21345. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21346. {
  21347. front: {
  21348. height: math.unit(5 + 3 / 12, "feet"),
  21349. weight: math.unit(137, "lb"),
  21350. name: "Front",
  21351. image: {
  21352. source: "./media/characters/sasha-katraine/front.svg",
  21353. bottom: 0.045
  21354. }
  21355. },
  21356. },
  21357. [
  21358. {
  21359. name: "Micro",
  21360. height: math.unit(5, "inches")
  21361. },
  21362. {
  21363. name: "Normal",
  21364. height: math.unit(5 + 3 / 12, "feet"),
  21365. default: true
  21366. },
  21367. ]
  21368. ))
  21369. characterMakers.push(() => makeCharacter(
  21370. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21371. {
  21372. side: {
  21373. height: math.unit(4, "inches"),
  21374. weight: math.unit(200, "grams"),
  21375. name: "Side",
  21376. image: {
  21377. source: "./media/characters/der/side.svg",
  21378. extra: 719 / 400,
  21379. bottom: 30.6 / 749.9187
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Micro",
  21386. height: math.unit(4, "inches"),
  21387. default: true
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21393. {
  21394. side: {
  21395. height: math.unit(30, "meters"),
  21396. weight: math.unit(700, "tonnes"),
  21397. name: "Side",
  21398. image: {
  21399. source: "./media/characters/fixerdragon/side.svg",
  21400. extra: (1293.0514 - 116.03) / 1106.86,
  21401. bottom: 116.03 / 1293.0514
  21402. }
  21403. },
  21404. },
  21405. [
  21406. {
  21407. name: "Planck",
  21408. height: math.unit(1.6e-35, "meters")
  21409. },
  21410. {
  21411. name: "Micro",
  21412. height: math.unit(0.4, "meters")
  21413. },
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(30, "meters"),
  21417. default: true
  21418. },
  21419. {
  21420. name: "Megamacro",
  21421. height: math.unit(1.2, "megameters")
  21422. },
  21423. {
  21424. name: "Teramacro",
  21425. height: math.unit(130, "terameters")
  21426. },
  21427. {
  21428. name: "Yottamacro",
  21429. height: math.unit(6200, "yottameters")
  21430. },
  21431. ]
  21432. ));
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21435. {
  21436. front: {
  21437. height: math.unit(8, "feet"),
  21438. weight: math.unit(250, "lb"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/kite/front.svg",
  21442. extra: 2796 / 2659,
  21443. bottom: 0.002
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(8, "feet"),
  21451. default: true
  21452. },
  21453. {
  21454. name: "Macro",
  21455. height: math.unit(360, "feet")
  21456. },
  21457. {
  21458. name: "Megamacro",
  21459. height: math.unit(1500, "feet")
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21465. {
  21466. front: {
  21467. height: math.unit(5 + 10 / 12, "feet"),
  21468. weight: math.unit(150, "lb"),
  21469. name: "Front",
  21470. image: {
  21471. source: "./media/characters/poojawa-vynar/front.svg",
  21472. extra: (1506.1547 - 55) / 1356.6,
  21473. bottom: 55 / 1506.1547
  21474. }
  21475. },
  21476. frontTailless: {
  21477. height: math.unit(5 + 10 / 12, "feet"),
  21478. weight: math.unit(150, "lb"),
  21479. name: "Front (Tailless)",
  21480. image: {
  21481. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21482. extra: (1506.1547 - 55) / 1356.6,
  21483. bottom: 55 / 1506.1547
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(5 + 10 / 12, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(293, "meters"),
  21500. weight: math.unit(70400, "tons"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/violette/front.svg",
  21504. extra: 1227 / 1180,
  21505. bottom: 0.005
  21506. }
  21507. },
  21508. back: {
  21509. height: math.unit(293, "meters"),
  21510. weight: math.unit(70400, "tons"),
  21511. name: "Back",
  21512. image: {
  21513. source: "./media/characters/violette/back.svg",
  21514. extra: 1227 / 1180,
  21515. bottom: 0.005
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Macro",
  21522. height: math.unit(293, "meters"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21529. {
  21530. front: {
  21531. height: math.unit(1050, "feet"),
  21532. weight: math.unit(200000, "tons"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/alessandra/front.svg",
  21536. extra: 960 / 912,
  21537. bottom: 0.06
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Macro",
  21544. height: math.unit(1050, "feet")
  21545. },
  21546. {
  21547. name: "Macro+",
  21548. height: math.unit(900, "meters"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(5, "feet"),
  21558. weight: math.unit(187, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/person/front.svg",
  21562. extra: 3087 / 2945,
  21563. bottom: 91 / 3181
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Micro",
  21570. height: math.unit(3, "inches")
  21571. },
  21572. {
  21573. name: "Normal",
  21574. height: math.unit(5, "feet"),
  21575. default: true
  21576. },
  21577. {
  21578. name: "Macro",
  21579. height: math.unit(90, "feet")
  21580. },
  21581. {
  21582. name: "Max Size",
  21583. height: math.unit(280, "feet")
  21584. },
  21585. ]
  21586. ))
  21587. characterMakers.push(() => makeCharacter(
  21588. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21589. {
  21590. front: {
  21591. height: math.unit(4.5, "meters"),
  21592. weight: math.unit(3200, "lb"),
  21593. name: "Front",
  21594. image: {
  21595. source: "./media/characters/ty/front.svg",
  21596. extra: 1038 / 960,
  21597. bottom: 31.156 / 1068
  21598. }
  21599. },
  21600. back: {
  21601. height: math.unit(4.5, "meters"),
  21602. weight: math.unit(3200, "lb"),
  21603. name: "Back",
  21604. image: {
  21605. source: "./media/characters/ty/back.svg",
  21606. extra: 1044 / 966,
  21607. bottom: 7.48 / 1049
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(4.5, "meters"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21621. {
  21622. front: {
  21623. height: math.unit(5 + 4 / 12, "feet"),
  21624. weight: math.unit(115, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/rocky/front.svg",
  21628. extra: 1012 / 975,
  21629. bottom: 54 / 1066
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Normal",
  21636. height: math.unit(5 + 4 / 12, "feet"),
  21637. default: true
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21643. {
  21644. upright: {
  21645. height: math.unit(6, "meters"),
  21646. weight: math.unit(4000, "kg"),
  21647. name: "Upright",
  21648. image: {
  21649. source: "./media/characters/ruin/upright.svg",
  21650. extra: 668 / 661,
  21651. bottom: 42 / 799.8396
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Normal",
  21658. height: math.unit(6, "meters"),
  21659. default: true
  21660. },
  21661. ]
  21662. ))
  21663. characterMakers.push(() => makeCharacter(
  21664. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21665. {
  21666. front: {
  21667. height: math.unit(5, "feet"),
  21668. weight: math.unit(106, "lb"),
  21669. name: "Front",
  21670. image: {
  21671. source: "./media/characters/robin/front.svg",
  21672. extra: 862 / 799,
  21673. bottom: 42.4 / 914.8856
  21674. }
  21675. },
  21676. },
  21677. [
  21678. {
  21679. name: "Normal",
  21680. height: math.unit(5, "feet"),
  21681. default: true
  21682. },
  21683. ]
  21684. ))
  21685. characterMakers.push(() => makeCharacter(
  21686. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21687. {
  21688. side: {
  21689. height: math.unit(3, "feet"),
  21690. weight: math.unit(225, "lb"),
  21691. name: "Side",
  21692. image: {
  21693. source: "./media/characters/saian/side.svg",
  21694. extra: 566 / 356,
  21695. bottom: 79.7 / 643
  21696. }
  21697. },
  21698. maw: {
  21699. height: math.unit(2.85, "feet"),
  21700. name: "Maw",
  21701. image: {
  21702. source: "./media/characters/saian/maw.svg"
  21703. }
  21704. },
  21705. },
  21706. [
  21707. {
  21708. name: "Normal",
  21709. height: math.unit(3, "feet"),
  21710. default: true
  21711. },
  21712. ]
  21713. ))
  21714. characterMakers.push(() => makeCharacter(
  21715. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21716. {
  21717. side: {
  21718. height: math.unit(8, "feet"),
  21719. weight: math.unit(300, "lb"),
  21720. name: "Side",
  21721. image: {
  21722. source: "./media/characters/equus-silvermane/side.svg",
  21723. extra: 2176 / 2050,
  21724. bottom: 65.7 / 2245
  21725. }
  21726. },
  21727. front: {
  21728. height: math.unit(8, "feet"),
  21729. weight: math.unit(300, "lb"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/equus-silvermane/front.svg",
  21733. extra: 4633 / 4400,
  21734. bottom: 71.3 / 4706.915
  21735. }
  21736. },
  21737. sideStepping: {
  21738. height: math.unit(8, "feet"),
  21739. weight: math.unit(300, "lb"),
  21740. name: "Side (Stepping)",
  21741. image: {
  21742. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21743. extra: 1968 / 1860,
  21744. bottom: 16.4 / 1989
  21745. }
  21746. },
  21747. },
  21748. [
  21749. {
  21750. name: "Normal",
  21751. height: math.unit(8, "feet")
  21752. },
  21753. {
  21754. name: "Minimacro",
  21755. height: math.unit(75, "feet"),
  21756. default: true
  21757. },
  21758. {
  21759. name: "Macro",
  21760. height: math.unit(150, "feet")
  21761. },
  21762. {
  21763. name: "Macro+",
  21764. height: math.unit(1000, "feet")
  21765. },
  21766. {
  21767. name: "Megamacro",
  21768. height: math.unit(1, "mile")
  21769. },
  21770. ]
  21771. ))
  21772. characterMakers.push(() => makeCharacter(
  21773. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21774. {
  21775. side: {
  21776. height: math.unit(20, "feet"),
  21777. weight: math.unit(30000, "kg"),
  21778. name: "Side",
  21779. image: {
  21780. source: "./media/characters/windar/side.svg",
  21781. extra: 1491 / 1248,
  21782. bottom: 82.56 / 1568
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Normal",
  21789. height: math.unit(20, "feet"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21796. {
  21797. side: {
  21798. height: math.unit(15.66, "feet"),
  21799. weight: math.unit(150, "lb"),
  21800. name: "Side",
  21801. image: {
  21802. source: "./media/characters/melody/side.svg",
  21803. extra: 1097 / 944,
  21804. bottom: 11.8 / 1109
  21805. }
  21806. },
  21807. sideOutfit: {
  21808. height: math.unit(15.66, "feet"),
  21809. weight: math.unit(150, "lb"),
  21810. name: "Side (Outfit)",
  21811. image: {
  21812. source: "./media/characters/melody/side-outfit.svg",
  21813. extra: 1097 / 944,
  21814. bottom: 11.8 / 1109
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(15.66, "feet"),
  21822. default: true
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(8, "feet"),
  21831. weight: math.unit(325, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/windera/front.svg",
  21835. extra: 3180 / 2845,
  21836. bottom: 178 / 3365
  21837. }
  21838. },
  21839. },
  21840. [
  21841. {
  21842. name: "Normal",
  21843. height: math.unit(8, "feet"),
  21844. default: true
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21850. {
  21851. front: {
  21852. height: math.unit(28.75, "feet"),
  21853. weight: math.unit(2000, "kg"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/sonear/front.svg",
  21857. extra: 1041.1 / 964.9,
  21858. bottom: 53.7 / 1096.6
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(28.75, "feet"),
  21866. default: true
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21872. {
  21873. side: {
  21874. height: math.unit(25.5, "feet"),
  21875. weight: math.unit(23000, "kg"),
  21876. name: "Side",
  21877. image: {
  21878. source: "./media/characters/kanara/side.svg"
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(25.5, "feet"),
  21886. default: true
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21892. {
  21893. side: {
  21894. height: math.unit(10, "feet"),
  21895. weight: math.unit(1000, "kg"),
  21896. name: "Side",
  21897. image: {
  21898. source: "./media/characters/ereus/side.svg",
  21899. extra: 1157 / 959,
  21900. bottom: 153 / 1312.5
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(10, "feet"),
  21908. default: true
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21914. {
  21915. side: {
  21916. height: math.unit(4.5, "feet"),
  21917. weight: math.unit(500, "lb"),
  21918. name: "Side",
  21919. image: {
  21920. source: "./media/characters/e-ter/side.svg",
  21921. extra: 1550 / 1248,
  21922. bottom: 146 / 1694
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(4.5, "feet"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21936. {
  21937. side: {
  21938. height: math.unit(9.7, "feet"),
  21939. weight: math.unit(4000, "kg"),
  21940. name: "Side",
  21941. image: {
  21942. source: "./media/characters/yamie/side.svg"
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(9.7, "feet"),
  21950. default: true
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21956. {
  21957. front: {
  21958. height: math.unit(50, "feet"),
  21959. weight: math.unit(50000, "kg"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/anders/front.svg",
  21963. extra: 570 / 539,
  21964. bottom: 14.7 / 586.7
  21965. }
  21966. },
  21967. },
  21968. [
  21969. {
  21970. name: "Large",
  21971. height: math.unit(50, "feet")
  21972. },
  21973. {
  21974. name: "Macro",
  21975. height: math.unit(2000, "feet"),
  21976. default: true
  21977. },
  21978. {
  21979. name: "Megamacro",
  21980. height: math.unit(12, "miles")
  21981. },
  21982. ]
  21983. ))
  21984. characterMakers.push(() => makeCharacter(
  21985. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21986. {
  21987. front: {
  21988. height: math.unit(7 + 2 / 12, "feet"),
  21989. weight: math.unit(300, "lb"),
  21990. name: "Front",
  21991. image: {
  21992. source: "./media/characters/reban/front.svg",
  21993. extra: 516 / 487,
  21994. bottom: 42.82 / 558.356
  21995. }
  21996. },
  21997. dick: {
  21998. height: math.unit(7 / 5, "feet"),
  21999. name: "Dick",
  22000. image: {
  22001. source: "./media/characters/reban/dick.svg"
  22002. }
  22003. },
  22004. },
  22005. [
  22006. {
  22007. name: "Natural Height",
  22008. height: math.unit(7 + 2 / 12, "feet")
  22009. },
  22010. {
  22011. name: "Macro",
  22012. height: math.unit(500, "feet"),
  22013. default: true
  22014. },
  22015. {
  22016. name: "Canon Height",
  22017. height: math.unit(50, "AU")
  22018. },
  22019. ]
  22020. ))
  22021. characterMakers.push(() => makeCharacter(
  22022. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22023. {
  22024. front: {
  22025. height: math.unit(6, "feet"),
  22026. weight: math.unit(150, "lb"),
  22027. name: "Front",
  22028. image: {
  22029. source: "./media/characters/terrance-keayes/front.svg",
  22030. extra: 1.005,
  22031. bottom: 151 / 1615
  22032. }
  22033. },
  22034. side: {
  22035. height: math.unit(6, "feet"),
  22036. weight: math.unit(150, "lb"),
  22037. name: "Side",
  22038. image: {
  22039. source: "./media/characters/terrance-keayes/side.svg",
  22040. extra: 1.005,
  22041. bottom: 129.4 / 1544
  22042. }
  22043. },
  22044. back: {
  22045. height: math.unit(6, "feet"),
  22046. weight: math.unit(150, "lb"),
  22047. name: "Back",
  22048. image: {
  22049. source: "./media/characters/terrance-keayes/back.svg",
  22050. extra: 1.005,
  22051. bottom: 58.4 / 1557.3
  22052. }
  22053. },
  22054. dick: {
  22055. height: math.unit(6 * 0.208, "feet"),
  22056. name: "Dick",
  22057. image: {
  22058. source: "./media/characters/terrance-keayes/dick.svg"
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Canon Height",
  22065. height: math.unit(35, "miles"),
  22066. default: true
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(6, "feet"),
  22075. weight: math.unit(150, "lb"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/ofelia/front.svg",
  22079. extra: 546 / 541,
  22080. bottom: 39 / 583
  22081. }
  22082. },
  22083. back: {
  22084. height: math.unit(6, "feet"),
  22085. weight: math.unit(150, "lb"),
  22086. name: "Back",
  22087. image: {
  22088. source: "./media/characters/ofelia/back.svg",
  22089. extra: 564 / 559.5,
  22090. bottom: 8.69 / 573.02
  22091. }
  22092. },
  22093. maw: {
  22094. height: math.unit(1, "feet"),
  22095. name: "Maw",
  22096. image: {
  22097. source: "./media/characters/ofelia/maw.svg"
  22098. }
  22099. },
  22100. foot: {
  22101. height: math.unit(1.949, "feet"),
  22102. name: "Foot",
  22103. image: {
  22104. source: "./media/characters/ofelia/foot.svg"
  22105. }
  22106. },
  22107. },
  22108. [
  22109. {
  22110. name: "Canon Height",
  22111. height: math.unit(2000, "miles"),
  22112. default: true
  22113. },
  22114. ]
  22115. ))
  22116. characterMakers.push(() => makeCharacter(
  22117. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22118. {
  22119. front: {
  22120. height: math.unit(6, "feet"),
  22121. weight: math.unit(150, "lb"),
  22122. name: "Front",
  22123. image: {
  22124. source: "./media/characters/samuel/front.svg",
  22125. extra: 265 / 258,
  22126. bottom: 2 / 266.1566
  22127. }
  22128. },
  22129. },
  22130. [
  22131. {
  22132. name: "Macro",
  22133. height: math.unit(100, "feet"),
  22134. default: true
  22135. },
  22136. {
  22137. name: "Full Size",
  22138. height: math.unit(1000, "miles")
  22139. },
  22140. ]
  22141. ))
  22142. characterMakers.push(() => makeCharacter(
  22143. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22144. {
  22145. front: {
  22146. height: math.unit(6, "feet"),
  22147. weight: math.unit(300, "lb"),
  22148. name: "Front",
  22149. image: {
  22150. source: "./media/characters/beishir-kiel/front.svg",
  22151. extra: 569 / 547,
  22152. bottom: 41.9 / 609
  22153. }
  22154. },
  22155. maw: {
  22156. height: math.unit(6 * 0.202, "feet"),
  22157. name: "Maw",
  22158. image: {
  22159. source: "./media/characters/beishir-kiel/maw.svg"
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Macro",
  22166. height: math.unit(300, "feet"),
  22167. default: true
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22173. {
  22174. front: {
  22175. height: math.unit(5 + 7/12, "feet"),
  22176. weight: math.unit(120, "lb"),
  22177. name: "Front",
  22178. image: {
  22179. source: "./media/characters/logan-grey/front.svg",
  22180. extra: 1836/1738,
  22181. bottom: 108/1944
  22182. }
  22183. },
  22184. back: {
  22185. height: math.unit(5 + 7/12, "feet"),
  22186. weight: math.unit(120, "lb"),
  22187. name: "Back",
  22188. image: {
  22189. source: "./media/characters/logan-grey/back.svg",
  22190. extra: 1880/1794,
  22191. bottom: 24/1904
  22192. }
  22193. },
  22194. frontSfw: {
  22195. height: math.unit(5 + 7/12, "feet"),
  22196. weight: math.unit(120, "lb"),
  22197. name: "Front (SFW)",
  22198. image: {
  22199. source: "./media/characters/logan-grey/front-sfw.svg",
  22200. extra: 1836/1738,
  22201. bottom: 108/1944
  22202. }
  22203. },
  22204. backSfw: {
  22205. height: math.unit(5 + 7/12, "feet"),
  22206. weight: math.unit(120, "lb"),
  22207. name: "Back (SFW)",
  22208. image: {
  22209. source: "./media/characters/logan-grey/back-sfw.svg",
  22210. extra: 1880/1794,
  22211. bottom: 24/1904
  22212. }
  22213. },
  22214. hands: {
  22215. height: math.unit(0.84, "feet"),
  22216. name: "Hands",
  22217. image: {
  22218. source: "./media/characters/logan-grey/hands.svg"
  22219. }
  22220. },
  22221. paws: {
  22222. height: math.unit(0.72, "feet"),
  22223. name: "Paws",
  22224. image: {
  22225. source: "./media/characters/logan-grey/paws.svg"
  22226. }
  22227. },
  22228. cock: {
  22229. height: math.unit(1.45, "feet"),
  22230. name: "Cock",
  22231. image: {
  22232. source: "./media/characters/logan-grey/cock.svg"
  22233. }
  22234. },
  22235. cockAlt: {
  22236. height: math.unit(1.437, "feet"),
  22237. name: "Cock (alt)",
  22238. image: {
  22239. source: "./media/characters/logan-grey/cock-alt.svg"
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Normal",
  22246. height: math.unit(5 + 8 / 12, "feet")
  22247. },
  22248. {
  22249. name: "The 500 Foot Femboy",
  22250. height: math.unit(500, "feet"),
  22251. default: true
  22252. },
  22253. {
  22254. name: "Megmacro",
  22255. height: math.unit(20, "miles")
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22261. {
  22262. front: {
  22263. height: math.unit(8 + 2 / 12, "feet"),
  22264. weight: math.unit(275, "lb"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/draganta/front.svg",
  22268. extra: 1177 / 1135,
  22269. bottom: 33.46 / 1212.1
  22270. }
  22271. },
  22272. },
  22273. [
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(8 + 6 / 12, "feet"),
  22277. default: true
  22278. },
  22279. {
  22280. name: "Macro",
  22281. height: math.unit(150, "feet")
  22282. },
  22283. {
  22284. name: "Megamacro",
  22285. height: math.unit(1000, "miles")
  22286. },
  22287. ]
  22288. ))
  22289. characterMakers.push(() => makeCharacter(
  22290. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22291. {
  22292. front: {
  22293. height: math.unit(1.72, "m"),
  22294. weight: math.unit(80, "lb"),
  22295. name: "Front",
  22296. image: {
  22297. source: "./media/characters/voski/front.svg",
  22298. extra: 2076.22 / 2022.4,
  22299. bottom: 102.7 / 2177.3866
  22300. }
  22301. },
  22302. frontNsfw: {
  22303. height: math.unit(1.72, "m"),
  22304. weight: math.unit(80, "lb"),
  22305. name: "Front (NSFW)",
  22306. image: {
  22307. source: "./media/characters/voski/front-nsfw.svg",
  22308. extra: 2076.22 / 2022.4,
  22309. bottom: 102.7 / 2177.3866
  22310. }
  22311. },
  22312. back: {
  22313. height: math.unit(1.72, "m"),
  22314. weight: math.unit(80, "lb"),
  22315. name: "Back",
  22316. image: {
  22317. source: "./media/characters/voski/back.svg",
  22318. extra: 2104 / 2051,
  22319. bottom: 10.45 / 2113.63
  22320. }
  22321. },
  22322. },
  22323. [
  22324. {
  22325. name: "Normal",
  22326. height: math.unit(1.72, "m")
  22327. },
  22328. {
  22329. name: "Macro",
  22330. height: math.unit(55, "m"),
  22331. default: true
  22332. },
  22333. {
  22334. name: "Macro+",
  22335. height: math.unit(300, "m")
  22336. },
  22337. {
  22338. name: "Macro++",
  22339. height: math.unit(700, "m")
  22340. },
  22341. {
  22342. name: "Macro+++",
  22343. height: math.unit(4500, "m")
  22344. },
  22345. {
  22346. name: "Macro++++",
  22347. height: math.unit(45, "km")
  22348. },
  22349. {
  22350. name: "Macro+++++",
  22351. height: math.unit(1220, "km")
  22352. },
  22353. ]
  22354. ))
  22355. characterMakers.push(() => makeCharacter(
  22356. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22357. {
  22358. front: {
  22359. height: math.unit(2.3, "m"),
  22360. weight: math.unit(304, "kg"),
  22361. name: "Front",
  22362. image: {
  22363. source: "./media/characters/icowom-lee/front.svg",
  22364. extra: 985 / 955,
  22365. bottom: 25.4 / 1012
  22366. }
  22367. },
  22368. fronttentacles: {
  22369. height: math.unit(2.3, "m"),
  22370. weight: math.unit(304, "kg"),
  22371. name: "Front-tentacles",
  22372. image: {
  22373. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22374. extra: 985 / 955,
  22375. bottom: 25.4 / 1012
  22376. }
  22377. },
  22378. back: {
  22379. height: math.unit(2.3, "m"),
  22380. weight: math.unit(304, "kg"),
  22381. name: "Back",
  22382. image: {
  22383. source: "./media/characters/icowom-lee/back.svg",
  22384. extra: 975 / 954,
  22385. bottom: 9.5 / 985
  22386. }
  22387. },
  22388. backtentacles: {
  22389. height: math.unit(2.3, "m"),
  22390. weight: math.unit(304, "kg"),
  22391. name: "Back-tentacles",
  22392. image: {
  22393. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22394. extra: 975 / 954,
  22395. bottom: 9.5 / 985
  22396. }
  22397. },
  22398. frontDressed: {
  22399. height: math.unit(2.3, "m"),
  22400. weight: math.unit(304, "kg"),
  22401. name: "Front (Dressed)",
  22402. image: {
  22403. source: "./media/characters/icowom-lee/front-dressed.svg",
  22404. extra: 3076 / 2933,
  22405. bottom: 51.4 / 3125.1889
  22406. }
  22407. },
  22408. rump: {
  22409. height: math.unit(0.776, "meters"),
  22410. name: "Rump",
  22411. image: {
  22412. source: "./media/characters/icowom-lee/rump.svg"
  22413. }
  22414. },
  22415. genitals: {
  22416. height: math.unit(0.78, "meters"),
  22417. name: "Genitals",
  22418. image: {
  22419. source: "./media/characters/icowom-lee/genitals.svg"
  22420. }
  22421. },
  22422. },
  22423. [
  22424. {
  22425. name: "Normal",
  22426. height: math.unit(2.3, "meters"),
  22427. default: true
  22428. },
  22429. {
  22430. name: "Macro",
  22431. height: math.unit(94, "meters"),
  22432. default: true
  22433. },
  22434. ]
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(22, "meters"),
  22441. weight: math.unit(21000, "kg"),
  22442. name: "Front",
  22443. image: {
  22444. source: "./media/characters/shock-diamond/front.svg",
  22445. extra: 2204 / 2053,
  22446. bottom: 65 / 2239.47
  22447. }
  22448. },
  22449. frontNude: {
  22450. height: math.unit(22, "meters"),
  22451. weight: math.unit(21000, "kg"),
  22452. name: "Front (Nude)",
  22453. image: {
  22454. source: "./media/characters/shock-diamond/front-nude.svg",
  22455. extra: 2514 / 2285,
  22456. bottom: 13 / 2527.56
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Normal",
  22463. height: math.unit(3, "meters")
  22464. },
  22465. {
  22466. name: "Macro",
  22467. height: math.unit(22, "meters"),
  22468. default: true
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22474. {
  22475. front: {
  22476. height: math.unit(5 + 4 / 12, "feet"),
  22477. weight: math.unit(120, "lb"),
  22478. name: "Front",
  22479. image: {
  22480. source: "./media/characters/rory/front.svg",
  22481. extra: 1318/1241,
  22482. bottom: 42/1360
  22483. }
  22484. },
  22485. back: {
  22486. height: math.unit(5 + 4 / 12, "feet"),
  22487. weight: math.unit(120, "lb"),
  22488. name: "Back",
  22489. image: {
  22490. source: "./media/characters/rory/back.svg",
  22491. extra: 1318/1241,
  22492. bottom: 42/1360
  22493. }
  22494. },
  22495. butt: {
  22496. height: math.unit(1.74, "feet"),
  22497. name: "Butt",
  22498. image: {
  22499. source: "./media/characters/rory/butt.svg"
  22500. }
  22501. },
  22502. dick: {
  22503. height: math.unit(1.02, "feet"),
  22504. name: "Dick",
  22505. image: {
  22506. source: "./media/characters/rory/dick.svg"
  22507. }
  22508. },
  22509. paws: {
  22510. height: math.unit(1, "feet"),
  22511. name: "Paws",
  22512. image: {
  22513. source: "./media/characters/rory/paws.svg"
  22514. }
  22515. },
  22516. frontAlt: {
  22517. height: math.unit(5 + 4 / 12, "feet"),
  22518. weight: math.unit(120, "lb"),
  22519. name: "Front (Alt)",
  22520. image: {
  22521. source: "./media/characters/rory/front-alt.svg",
  22522. extra: 589 / 556,
  22523. bottom: 45.7 / 635.76
  22524. }
  22525. },
  22526. frontAltNude: {
  22527. height: math.unit(5 + 4 / 12, "feet"),
  22528. weight: math.unit(120, "lb"),
  22529. name: "Front (Alt, Nude)",
  22530. image: {
  22531. source: "./media/characters/rory/front-alt-nude.svg",
  22532. extra: 589 / 556,
  22533. bottom: 45.7 / 635.76
  22534. }
  22535. },
  22536. side: {
  22537. height: math.unit(5 + 4 / 12, "feet"),
  22538. weight: math.unit(120, "lb"),
  22539. name: "Side",
  22540. image: {
  22541. source: "./media/characters/rory/side.svg",
  22542. extra: 597 / 564,
  22543. bottom: 55 / 653
  22544. }
  22545. },
  22546. backAlt: {
  22547. height: math.unit(5 + 4 / 12, "feet"),
  22548. weight: math.unit(120, "lb"),
  22549. name: "Back (Alt)",
  22550. image: {
  22551. source: "./media/characters/rory/back-alt.svg",
  22552. extra: 620 / 585,
  22553. bottom: 8.86 / 630.43
  22554. }
  22555. },
  22556. dickAlt: {
  22557. height: math.unit(0.86, "feet"),
  22558. name: "Dick (Alt)",
  22559. image: {
  22560. source: "./media/characters/rory/dick-alt.svg"
  22561. }
  22562. },
  22563. },
  22564. [
  22565. {
  22566. name: "Normal",
  22567. height: math.unit(5 + 4 / 12, "feet"),
  22568. default: true
  22569. },
  22570. {
  22571. name: "Macro",
  22572. height: math.unit(100, "feet")
  22573. },
  22574. {
  22575. name: "Macro+",
  22576. height: math.unit(140, "feet")
  22577. },
  22578. {
  22579. name: "Macro++",
  22580. height: math.unit(300, "feet")
  22581. },
  22582. ]
  22583. ))
  22584. characterMakers.push(() => makeCharacter(
  22585. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22586. {
  22587. front: {
  22588. height: math.unit(5 + 9 / 12, "feet"),
  22589. weight: math.unit(190, "lb"),
  22590. name: "Front",
  22591. image: {
  22592. source: "./media/characters/sprisk/front.svg",
  22593. extra: 1225 / 1180,
  22594. bottom: 42.7 / 1266.4
  22595. }
  22596. },
  22597. frontNsfw: {
  22598. height: math.unit(5 + 9 / 12, "feet"),
  22599. weight: math.unit(190, "lb"),
  22600. name: "Front (NSFW)",
  22601. image: {
  22602. source: "./media/characters/sprisk/front-nsfw.svg",
  22603. extra: 1225 / 1180,
  22604. bottom: 42.7 / 1266.4
  22605. }
  22606. },
  22607. back: {
  22608. height: math.unit(5 + 9 / 12, "feet"),
  22609. weight: math.unit(190, "lb"),
  22610. name: "Back",
  22611. image: {
  22612. source: "./media/characters/sprisk/back.svg",
  22613. extra: 1247 / 1200,
  22614. bottom: 5.6 / 1253.04
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Tiny",
  22621. height: math.unit(2, "inches")
  22622. },
  22623. {
  22624. name: "Normal",
  22625. height: math.unit(5 + 9 / 12, "feet"),
  22626. default: true
  22627. },
  22628. {
  22629. name: "Mini Macro",
  22630. height: math.unit(18, "feet")
  22631. },
  22632. {
  22633. name: "Macro",
  22634. height: math.unit(100, "feet")
  22635. },
  22636. {
  22637. name: "MACRO",
  22638. height: math.unit(50, "miles")
  22639. },
  22640. {
  22641. name: "M A C R O",
  22642. height: math.unit(300, "miles")
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22648. {
  22649. side: {
  22650. height: math.unit(15.6, "meters"),
  22651. weight: math.unit(700000, "kg"),
  22652. name: "Side",
  22653. image: {
  22654. source: "./media/characters/bunsen/side.svg",
  22655. extra: 1644 / 358
  22656. }
  22657. },
  22658. foot: {
  22659. height: math.unit(1.611 * 1644 / 358, "meter"),
  22660. name: "Foot",
  22661. image: {
  22662. source: "./media/characters/bunsen/foot.svg"
  22663. }
  22664. },
  22665. },
  22666. [
  22667. {
  22668. name: "Small",
  22669. height: math.unit(10, "feet")
  22670. },
  22671. {
  22672. name: "Normal",
  22673. height: math.unit(15.6, "meters"),
  22674. default: true
  22675. },
  22676. ]
  22677. ))
  22678. characterMakers.push(() => makeCharacter(
  22679. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22680. {
  22681. front: {
  22682. height: math.unit(4 + 11 / 12, "feet"),
  22683. weight: math.unit(140, "lb"),
  22684. name: "Front",
  22685. image: {
  22686. source: "./media/characters/sesh/front.svg",
  22687. extra: 3420 / 3231,
  22688. bottom: 72 / 3949.5
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(4 + 11 / 12, "feet")
  22696. },
  22697. {
  22698. name: "Grown",
  22699. height: math.unit(15, "feet"),
  22700. default: true
  22701. },
  22702. {
  22703. name: "Macro",
  22704. height: math.unit(1500, "feet")
  22705. },
  22706. {
  22707. name: "Megamacro",
  22708. height: math.unit(30, "miles")
  22709. },
  22710. {
  22711. name: "Continental",
  22712. height: math.unit(3000, "miles")
  22713. },
  22714. {
  22715. name: "Gravity Mass",
  22716. height: math.unit(300000, "miles")
  22717. },
  22718. {
  22719. name: "Planet Buster",
  22720. height: math.unit(30000000, "miles")
  22721. },
  22722. {
  22723. name: "Big",
  22724. height: math.unit(3000000000, "miles")
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(9, "feet"),
  22733. weight: math.unit(350, "lb"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/pepper/front.svg",
  22737. extra: 1448 / 1312,
  22738. bottom: 9.4 / 1457.88
  22739. }
  22740. },
  22741. back: {
  22742. height: math.unit(9, "feet"),
  22743. weight: math.unit(350, "lb"),
  22744. name: "Back",
  22745. image: {
  22746. source: "./media/characters/pepper/back.svg",
  22747. extra: 1423 / 1300,
  22748. bottom: 4.6 / 1429
  22749. }
  22750. },
  22751. maw: {
  22752. height: math.unit(0.932, "feet"),
  22753. name: "Maw",
  22754. image: {
  22755. source: "./media/characters/pepper/maw.svg"
  22756. }
  22757. },
  22758. },
  22759. [
  22760. {
  22761. name: "Normal",
  22762. height: math.unit(9, "feet"),
  22763. default: true
  22764. },
  22765. ]
  22766. ))
  22767. characterMakers.push(() => makeCharacter(
  22768. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22769. {
  22770. front: {
  22771. height: math.unit(6, "feet"),
  22772. weight: math.unit(150, "lb"),
  22773. name: "Front",
  22774. image: {
  22775. source: "./media/characters/maelstrom/front.svg",
  22776. extra: 2100 / 1883,
  22777. bottom: 94 / 2196.7
  22778. }
  22779. },
  22780. },
  22781. [
  22782. {
  22783. name: "Less Kaiju",
  22784. height: math.unit(200, "feet")
  22785. },
  22786. {
  22787. name: "Kaiju",
  22788. height: math.unit(400, "feet"),
  22789. default: true
  22790. },
  22791. {
  22792. name: "Kaiju-er",
  22793. height: math.unit(600, "feet")
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22799. {
  22800. front: {
  22801. height: math.unit(6 + 5 / 12, "feet"),
  22802. weight: math.unit(180, "lb"),
  22803. name: "Front",
  22804. image: {
  22805. source: "./media/characters/lexir/front.svg",
  22806. extra: 180 / 172,
  22807. bottom: 12 / 192
  22808. }
  22809. },
  22810. back: {
  22811. height: math.unit(6 + 5 / 12, "feet"),
  22812. weight: math.unit(180, "lb"),
  22813. name: "Back",
  22814. image: {
  22815. source: "./media/characters/lexir/back.svg",
  22816. extra: 183.84 / 175.5,
  22817. bottom: 3.1 / 187
  22818. }
  22819. },
  22820. },
  22821. [
  22822. {
  22823. name: "Very Smal",
  22824. height: math.unit(1, "nm")
  22825. },
  22826. {
  22827. name: "Normal",
  22828. height: math.unit(6 + 5 / 12, "feet"),
  22829. default: true
  22830. },
  22831. {
  22832. name: "Macro",
  22833. height: math.unit(1, "mile")
  22834. },
  22835. {
  22836. name: "Megamacro",
  22837. height: math.unit(50, "miles")
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(1.5, "meters"),
  22846. weight: math.unit(100, "lb"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/maksio/front.svg",
  22850. extra: 1549 / 1531,
  22851. bottom: 123.7 / 1674.5429
  22852. }
  22853. },
  22854. back: {
  22855. height: math.unit(1.5, "meters"),
  22856. weight: math.unit(100, "lb"),
  22857. name: "Back",
  22858. image: {
  22859. source: "./media/characters/maksio/back.svg",
  22860. extra: 1541 / 1509,
  22861. bottom: 97 / 1639
  22862. }
  22863. },
  22864. hand: {
  22865. height: math.unit(0.621, "feet"),
  22866. name: "Hand",
  22867. image: {
  22868. source: "./media/characters/maksio/hand.svg"
  22869. }
  22870. },
  22871. foot: {
  22872. height: math.unit(1.611, "feet"),
  22873. name: "Foot",
  22874. image: {
  22875. source: "./media/characters/maksio/foot.svg"
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Shrunken",
  22882. height: math.unit(10, "cm")
  22883. },
  22884. {
  22885. name: "Normal",
  22886. height: math.unit(150, "cm"),
  22887. default: true
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22893. {
  22894. front: {
  22895. height: math.unit(100, "feet"),
  22896. name: "Front",
  22897. image: {
  22898. source: "./media/characters/erza-bear/front.svg",
  22899. extra: 2449 / 2390,
  22900. bottom: 46 / 2494
  22901. }
  22902. },
  22903. back: {
  22904. height: math.unit(100, "feet"),
  22905. name: "Back",
  22906. image: {
  22907. source: "./media/characters/erza-bear/back.svg",
  22908. extra: 2489 / 2430,
  22909. bottom: 85.4 / 2480
  22910. }
  22911. },
  22912. tail: {
  22913. height: math.unit(42, "feet"),
  22914. name: "Tail",
  22915. image: {
  22916. source: "./media/characters/erza-bear/tail.svg"
  22917. }
  22918. },
  22919. tongue: {
  22920. height: math.unit(8, "feet"),
  22921. name: "Tongue",
  22922. image: {
  22923. source: "./media/characters/erza-bear/tongue.svg"
  22924. }
  22925. },
  22926. dick: {
  22927. height: math.unit(10.5, "feet"),
  22928. name: "Dick",
  22929. image: {
  22930. source: "./media/characters/erza-bear/dick.svg"
  22931. }
  22932. },
  22933. dickVertical: {
  22934. height: math.unit(16.9, "feet"),
  22935. name: "Dick (Vertical)",
  22936. image: {
  22937. source: "./media/characters/erza-bear/dick-vertical.svg"
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Macro",
  22944. height: math.unit(100, "feet"),
  22945. default: true
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22951. {
  22952. front: {
  22953. height: math.unit(172, "cm"),
  22954. weight: math.unit(73, "kg"),
  22955. name: "Front",
  22956. image: {
  22957. source: "./media/characters/violet-flor/front.svg",
  22958. extra: 1530 / 1442,
  22959. bottom: 61.9 / 1588.8
  22960. }
  22961. },
  22962. back: {
  22963. height: math.unit(180, "cm"),
  22964. weight: math.unit(73, "kg"),
  22965. name: "Back",
  22966. image: {
  22967. source: "./media/characters/violet-flor/back.svg",
  22968. extra: 1692 / 1630,
  22969. bottom: 20 / 1712
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Normal",
  22976. height: math.unit(172, "cm"),
  22977. default: true
  22978. },
  22979. ]
  22980. ))
  22981. characterMakers.push(() => makeCharacter(
  22982. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22983. {
  22984. front: {
  22985. height: math.unit(6, "feet"),
  22986. weight: math.unit(220, "lb"),
  22987. name: "Front",
  22988. image: {
  22989. source: "./media/characters/lynn-rhea/front.svg",
  22990. extra: 310 / 273
  22991. }
  22992. },
  22993. back: {
  22994. height: math.unit(6, "feet"),
  22995. weight: math.unit(220, "lb"),
  22996. name: "Back",
  22997. image: {
  22998. source: "./media/characters/lynn-rhea/back.svg",
  22999. extra: 310 / 273
  23000. }
  23001. },
  23002. dicks: {
  23003. height: math.unit(0.9, "feet"),
  23004. name: "Dicks",
  23005. image: {
  23006. source: "./media/characters/lynn-rhea/dicks.svg"
  23007. }
  23008. },
  23009. slit: {
  23010. height: math.unit(0.4, "feet"),
  23011. name: "Slit",
  23012. image: {
  23013. source: "./media/characters/lynn-rhea/slit.svg"
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Micro",
  23020. height: math.unit(1, "inch")
  23021. },
  23022. {
  23023. name: "Macro",
  23024. height: math.unit(60, "feet"),
  23025. default: true
  23026. },
  23027. {
  23028. name: "Megamacro",
  23029. height: math.unit(2, "miles")
  23030. },
  23031. {
  23032. name: "Gigamacro",
  23033. height: math.unit(3, "earths")
  23034. },
  23035. {
  23036. name: "Galactic",
  23037. height: math.unit(0.8, "galaxies")
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23043. {
  23044. front: {
  23045. height: math.unit(1600, "feet"),
  23046. weight: math.unit(85758785169, "kg"),
  23047. name: "Front",
  23048. image: {
  23049. source: "./media/characters/valathos/front.svg",
  23050. extra: 1451 / 1339
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Macro",
  23057. height: math.unit(1600, "feet"),
  23058. default: true
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23064. {
  23065. front: {
  23066. height: math.unit(7 + 5 / 12, "feet"),
  23067. weight: math.unit(300, "lb"),
  23068. name: "Front",
  23069. image: {
  23070. source: "./media/characters/azula/front.svg",
  23071. extra: 3208 / 2880,
  23072. bottom: 80.2 / 3277
  23073. }
  23074. },
  23075. back: {
  23076. height: math.unit(7 + 5 / 12, "feet"),
  23077. weight: math.unit(300, "lb"),
  23078. name: "Back",
  23079. image: {
  23080. source: "./media/characters/azula/back.svg",
  23081. extra: 3169 / 2822,
  23082. bottom: 150.6 / 3321
  23083. }
  23084. },
  23085. },
  23086. [
  23087. {
  23088. name: "Normal",
  23089. height: math.unit(7 + 5 / 12, "feet"),
  23090. default: true
  23091. },
  23092. {
  23093. name: "Big",
  23094. height: math.unit(20, "feet")
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23100. {
  23101. front: {
  23102. height: math.unit(5 + 1 / 12, "feet"),
  23103. weight: math.unit(110, "lb"),
  23104. name: "Front",
  23105. image: {
  23106. source: "./media/characters/rupert/front.svg",
  23107. extra: 1549 / 1495,
  23108. bottom: 54.2 / 1604.4
  23109. }
  23110. },
  23111. },
  23112. [
  23113. {
  23114. name: "Normal",
  23115. height: math.unit(5 + 1 / 12, "feet"),
  23116. default: true
  23117. },
  23118. ]
  23119. ))
  23120. characterMakers.push(() => makeCharacter(
  23121. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23122. {
  23123. front: {
  23124. height: math.unit(8 + 4 / 12, "feet"),
  23125. weight: math.unit(350, "lb"),
  23126. name: "Front",
  23127. image: {
  23128. source: "./media/characters/sheera-castellar/front.svg",
  23129. extra: 1957 / 1894,
  23130. bottom: 26.97 / 1975.017
  23131. }
  23132. },
  23133. side: {
  23134. height: math.unit(8 + 4 / 12, "feet"),
  23135. weight: math.unit(350, "lb"),
  23136. name: "Side",
  23137. image: {
  23138. source: "./media/characters/sheera-castellar/side.svg",
  23139. extra: 1957 / 1894
  23140. }
  23141. },
  23142. back: {
  23143. height: math.unit(8 + 4 / 12, "feet"),
  23144. weight: math.unit(350, "lb"),
  23145. name: "Back",
  23146. image: {
  23147. source: "./media/characters/sheera-castellar/back.svg",
  23148. extra: 1957 / 1894
  23149. }
  23150. },
  23151. angled: {
  23152. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23153. weight: math.unit(350, "lb"),
  23154. name: "Angled",
  23155. image: {
  23156. source: "./media/characters/sheera-castellar/angled.svg",
  23157. extra: 1807 / 1707,
  23158. bottom: 68 / 1875
  23159. }
  23160. },
  23161. genitals: {
  23162. height: math.unit(2.2, "feet"),
  23163. name: "Genitals",
  23164. image: {
  23165. source: "./media/characters/sheera-castellar/genitals.svg"
  23166. }
  23167. },
  23168. taur: {
  23169. height: math.unit(10 + 6/12, "feet"),
  23170. name: "Taur",
  23171. image: {
  23172. source: "./media/characters/sheera-castellar/taur.svg",
  23173. extra: 2017/1909,
  23174. bottom: 185/2202
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(8 + 4 / 12, "feet")
  23182. },
  23183. {
  23184. name: "Macro",
  23185. height: math.unit(150, "feet"),
  23186. default: true
  23187. },
  23188. {
  23189. name: "Macro+",
  23190. height: math.unit(800, "feet")
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(6, "feet"),
  23199. weight: math.unit(150, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/jaipur/front.svg",
  23203. extra: 3860 / 3731,
  23204. bottom: 287 / 4140
  23205. }
  23206. },
  23207. back: {
  23208. height: math.unit(6, "feet"),
  23209. weight: math.unit(150, "lb"),
  23210. name: "Back",
  23211. image: {
  23212. source: "./media/characters/jaipur/back.svg",
  23213. extra: 4060 / 3930,
  23214. bottom: 151 / 4200
  23215. }
  23216. },
  23217. },
  23218. [
  23219. {
  23220. name: "Normal",
  23221. height: math.unit(1.85, "meters"),
  23222. default: true
  23223. },
  23224. {
  23225. name: "Macro",
  23226. height: math.unit(150, "meters")
  23227. },
  23228. {
  23229. name: "Macro+",
  23230. height: math.unit(0.5, "miles")
  23231. },
  23232. {
  23233. name: "Macro++",
  23234. height: math.unit(2.5, "miles")
  23235. },
  23236. {
  23237. name: "Macro+++",
  23238. height: math.unit(12, "miles")
  23239. },
  23240. {
  23241. name: "Macro++++",
  23242. height: math.unit(120, "miles")
  23243. },
  23244. {
  23245. name: "Macro+++++",
  23246. height: math.unit(1200, "miles")
  23247. },
  23248. ]
  23249. ))
  23250. characterMakers.push(() => makeCharacter(
  23251. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23252. {
  23253. front: {
  23254. height: math.unit(6, "feet"),
  23255. weight: math.unit(150, "lb"),
  23256. name: "Front",
  23257. image: {
  23258. source: "./media/characters/sheila-wolf/front.svg",
  23259. extra: 1931 / 1808,
  23260. bottom: 29.5 / 1960
  23261. }
  23262. },
  23263. dick: {
  23264. height: math.unit(1.464, "feet"),
  23265. name: "Dick",
  23266. image: {
  23267. source: "./media/characters/sheila-wolf/dick.svg"
  23268. }
  23269. },
  23270. muzzle: {
  23271. height: math.unit(0.513, "feet"),
  23272. name: "Muzzle",
  23273. image: {
  23274. source: "./media/characters/sheila-wolf/muzzle.svg"
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Macro",
  23281. height: math.unit(70, "feet"),
  23282. default: true
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23288. {
  23289. front: {
  23290. height: math.unit(32, "meters"),
  23291. weight: math.unit(300000, "kg"),
  23292. name: "Front",
  23293. image: {
  23294. source: "./media/characters/almor/front.svg",
  23295. extra: 1408 / 1322,
  23296. bottom: 94.6 / 1506.5
  23297. }
  23298. },
  23299. },
  23300. [
  23301. {
  23302. name: "Macro",
  23303. height: math.unit(32, "meters"),
  23304. default: true
  23305. },
  23306. ]
  23307. ))
  23308. characterMakers.push(() => makeCharacter(
  23309. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23310. {
  23311. front: {
  23312. height: math.unit(7, "feet"),
  23313. weight: math.unit(200, "lb"),
  23314. name: "Front",
  23315. image: {
  23316. source: "./media/characters/silver/front.svg",
  23317. extra: 472.1 / 450.5,
  23318. bottom: 26.5 / 499.424
  23319. }
  23320. },
  23321. },
  23322. [
  23323. {
  23324. name: "Normal",
  23325. height: math.unit(7, "feet"),
  23326. default: true
  23327. },
  23328. {
  23329. name: "Macro",
  23330. height: math.unit(800, "feet")
  23331. },
  23332. {
  23333. name: "Megamacro",
  23334. height: math.unit(250, "miles")
  23335. },
  23336. ]
  23337. ))
  23338. characterMakers.push(() => makeCharacter(
  23339. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23340. {
  23341. front: {
  23342. height: math.unit(6, "feet"),
  23343. weight: math.unit(150, "lb"),
  23344. name: "Front",
  23345. image: {
  23346. source: "./media/characters/pliskin/front.svg",
  23347. extra: 1469 / 1359,
  23348. bottom: 70 / 1540
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Micro",
  23355. height: math.unit(3, "inches")
  23356. },
  23357. {
  23358. name: "Normal",
  23359. height: math.unit(5 + 11 / 12, "feet"),
  23360. default: true
  23361. },
  23362. {
  23363. name: "Macro",
  23364. height: math.unit(120, "feet")
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23370. {
  23371. front: {
  23372. height: math.unit(6, "feet"),
  23373. weight: math.unit(150, "lb"),
  23374. name: "Front",
  23375. image: {
  23376. source: "./media/characters/sammy/front.svg",
  23377. extra: 1193 / 1089,
  23378. bottom: 30.5 / 1226
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Macro",
  23385. height: math.unit(1700, "feet"),
  23386. default: true
  23387. },
  23388. {
  23389. name: "Examacro",
  23390. height: math.unit(2.5e9, "lightyears")
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23396. {
  23397. front: {
  23398. height: math.unit(21, "meters"),
  23399. weight: math.unit(12, "tonnes"),
  23400. name: "Front",
  23401. image: {
  23402. source: "./media/characters/kuru/front.svg",
  23403. extra: 4301 / 3785,
  23404. bottom: 371.3 / 4691
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Macro",
  23411. height: math.unit(21, "meters"),
  23412. default: true
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23418. {
  23419. front: {
  23420. height: math.unit(23, "meters"),
  23421. weight: math.unit(12.2, "tonnes"),
  23422. name: "Front",
  23423. image: {
  23424. source: "./media/characters/rakka/front.svg",
  23425. extra: 4670 / 4169,
  23426. bottom: 301 / 4968.7
  23427. }
  23428. },
  23429. },
  23430. [
  23431. {
  23432. name: "Macro",
  23433. height: math.unit(23, "meters"),
  23434. default: true
  23435. },
  23436. ]
  23437. ))
  23438. characterMakers.push(() => makeCharacter(
  23439. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23440. {
  23441. front: {
  23442. height: math.unit(6, "feet"),
  23443. weight: math.unit(150, "lb"),
  23444. name: "Front",
  23445. image: {
  23446. source: "./media/characters/rhys-feline/front.svg",
  23447. extra: 2488 / 2308,
  23448. bottom: 35.67 / 2519.19
  23449. }
  23450. },
  23451. },
  23452. [
  23453. {
  23454. name: "Really Small",
  23455. height: math.unit(1, "nm")
  23456. },
  23457. {
  23458. name: "Micro",
  23459. height: math.unit(4, "inches")
  23460. },
  23461. {
  23462. name: "Normal",
  23463. height: math.unit(4 + 10 / 12, "feet"),
  23464. default: true
  23465. },
  23466. {
  23467. name: "Macro",
  23468. height: math.unit(100, "feet")
  23469. },
  23470. {
  23471. name: "Megamacto",
  23472. height: math.unit(50, "miles")
  23473. },
  23474. ]
  23475. ))
  23476. characterMakers.push(() => makeCharacter(
  23477. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23478. {
  23479. side: {
  23480. height: math.unit(30, "feet"),
  23481. weight: math.unit(35000, "kg"),
  23482. name: "Side",
  23483. image: {
  23484. source: "./media/characters/alydar/side.svg",
  23485. extra: 234 / 222,
  23486. bottom: 6.5 / 241
  23487. }
  23488. },
  23489. front: {
  23490. height: math.unit(30, "feet"),
  23491. weight: math.unit(35000, "kg"),
  23492. name: "Front",
  23493. image: {
  23494. source: "./media/characters/alydar/front.svg",
  23495. extra: 223.37 / 210.2,
  23496. bottom: 22.3 / 246.76
  23497. }
  23498. },
  23499. top: {
  23500. height: math.unit(64.54, "feet"),
  23501. weight: math.unit(35000, "kg"),
  23502. name: "Top",
  23503. image: {
  23504. source: "./media/characters/alydar/top.svg"
  23505. }
  23506. },
  23507. anthro: {
  23508. height: math.unit(30, "feet"),
  23509. weight: math.unit(9000, "kg"),
  23510. name: "Anthro",
  23511. image: {
  23512. source: "./media/characters/alydar/anthro.svg",
  23513. extra: 432 / 421,
  23514. bottom: 7.18 / 440
  23515. }
  23516. },
  23517. maw: {
  23518. height: math.unit(11.693, "feet"),
  23519. name: "Maw",
  23520. image: {
  23521. source: "./media/characters/alydar/maw.svg"
  23522. }
  23523. },
  23524. head: {
  23525. height: math.unit(11.693, "feet"),
  23526. name: "Head",
  23527. image: {
  23528. source: "./media/characters/alydar/head.svg"
  23529. }
  23530. },
  23531. headAlt: {
  23532. height: math.unit(12.861, "feet"),
  23533. name: "Head (Alt)",
  23534. image: {
  23535. source: "./media/characters/alydar/head-alt.svg"
  23536. }
  23537. },
  23538. wing: {
  23539. height: math.unit(20.712, "feet"),
  23540. name: "Wing",
  23541. image: {
  23542. source: "./media/characters/alydar/wing.svg"
  23543. }
  23544. },
  23545. wingFeather: {
  23546. height: math.unit(9.662, "feet"),
  23547. name: "Wing Feather",
  23548. image: {
  23549. source: "./media/characters/alydar/wing-feather.svg"
  23550. }
  23551. },
  23552. countourFeather: {
  23553. height: math.unit(4.154, "feet"),
  23554. name: "Contour Feather",
  23555. image: {
  23556. source: "./media/characters/alydar/contour-feather.svg"
  23557. }
  23558. },
  23559. },
  23560. [
  23561. {
  23562. name: "Diplomatic",
  23563. height: math.unit(13, "feet"),
  23564. default: true
  23565. },
  23566. {
  23567. name: "Small",
  23568. height: math.unit(30, "feet")
  23569. },
  23570. {
  23571. name: "Normal",
  23572. height: math.unit(95, "feet"),
  23573. default: true
  23574. },
  23575. {
  23576. name: "Large",
  23577. height: math.unit(285, "feet")
  23578. },
  23579. {
  23580. name: "Incomprehensible",
  23581. height: math.unit(450, "megameters")
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23587. {
  23588. side: {
  23589. height: math.unit(11, "feet"),
  23590. weight: math.unit(1750, "kg"),
  23591. name: "Side",
  23592. image: {
  23593. source: "./media/characters/selicia/side.svg",
  23594. extra: 440 / 396,
  23595. bottom: 24.8 / 465.979
  23596. }
  23597. },
  23598. maw: {
  23599. height: math.unit(4.665, "feet"),
  23600. name: "Maw",
  23601. image: {
  23602. source: "./media/characters/selicia/maw.svg"
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(11, "feet"),
  23610. default: true
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23616. {
  23617. side: {
  23618. height: math.unit(2 + 6 / 12, "feet"),
  23619. weight: math.unit(30, "lb"),
  23620. name: "Side",
  23621. image: {
  23622. source: "./media/characters/layla/side.svg",
  23623. extra: 244 / 188,
  23624. bottom: 18.2 / 262.1
  23625. }
  23626. },
  23627. back: {
  23628. height: math.unit(2 + 6 / 12, "feet"),
  23629. weight: math.unit(30, "lb"),
  23630. name: "Back",
  23631. image: {
  23632. source: "./media/characters/layla/back.svg",
  23633. extra: 308 / 241.5,
  23634. bottom: 8.9 / 316.8
  23635. }
  23636. },
  23637. cumming: {
  23638. height: math.unit(2 + 6 / 12, "feet"),
  23639. weight: math.unit(30, "lb"),
  23640. name: "Cumming",
  23641. image: {
  23642. source: "./media/characters/layla/cumming.svg",
  23643. extra: 342 / 279,
  23644. bottom: 595 / 938
  23645. }
  23646. },
  23647. dickFlaccid: {
  23648. height: math.unit(2.595, "feet"),
  23649. name: "Flaccid Genitals",
  23650. image: {
  23651. source: "./media/characters/layla/dick-flaccid.svg"
  23652. }
  23653. },
  23654. dickErect: {
  23655. height: math.unit(2.359, "feet"),
  23656. name: "Erect Genitals",
  23657. image: {
  23658. source: "./media/characters/layla/dick-erect.svg"
  23659. }
  23660. },
  23661. dragon: {
  23662. height: math.unit(40, "feet"),
  23663. name: "Dragon",
  23664. image: {
  23665. source: "./media/characters/layla/dragon.svg",
  23666. extra: 610/535,
  23667. bottom: 367/977
  23668. }
  23669. },
  23670. taur: {
  23671. height: math.unit(30, "feet"),
  23672. name: "Taur",
  23673. image: {
  23674. source: "./media/characters/layla/taur.svg",
  23675. extra: 1268/1199,
  23676. bottom: 112/1380
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Micro",
  23683. height: math.unit(1, "inch")
  23684. },
  23685. {
  23686. name: "Small",
  23687. height: math.unit(1, "foot")
  23688. },
  23689. {
  23690. name: "Normal",
  23691. height: math.unit(2 + 6 / 12, "feet"),
  23692. default: true
  23693. },
  23694. {
  23695. name: "Macro",
  23696. height: math.unit(200, "feet")
  23697. },
  23698. {
  23699. name: "Megamacro",
  23700. height: math.unit(1000, "miles")
  23701. },
  23702. {
  23703. name: "Planetary",
  23704. height: math.unit(8000, "miles")
  23705. },
  23706. {
  23707. name: "True Layla",
  23708. height: math.unit(200000 * 7, "multiverses")
  23709. },
  23710. ]
  23711. ))
  23712. characterMakers.push(() => makeCharacter(
  23713. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23714. {
  23715. back: {
  23716. height: math.unit(10.5, "feet"),
  23717. weight: math.unit(800, "lb"),
  23718. name: "Back",
  23719. image: {
  23720. source: "./media/characters/knox/back.svg",
  23721. extra: 1486 / 1089,
  23722. bottom: 107 / 1601.4
  23723. }
  23724. },
  23725. side: {
  23726. height: math.unit(10.5, "feet"),
  23727. weight: math.unit(800, "lb"),
  23728. name: "Side",
  23729. image: {
  23730. source: "./media/characters/knox/side.svg",
  23731. extra: 244 / 218,
  23732. bottom: 14 / 260
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Compact",
  23739. height: math.unit(10.5, "feet"),
  23740. default: true
  23741. },
  23742. {
  23743. name: "Dynamax",
  23744. height: math.unit(210, "feet")
  23745. },
  23746. {
  23747. name: "Full Macro",
  23748. height: math.unit(850, "feet")
  23749. },
  23750. ]
  23751. ))
  23752. characterMakers.push(() => makeCharacter(
  23753. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23754. {
  23755. front: {
  23756. height: math.unit(28, "feet"),
  23757. weight: math.unit(10500, "lb"),
  23758. name: "Front",
  23759. image: {
  23760. source: "./media/characters/kayda/front.svg",
  23761. extra: 1536 / 1428,
  23762. bottom: 68.7 / 1603
  23763. }
  23764. },
  23765. back: {
  23766. height: math.unit(28, "feet"),
  23767. weight: math.unit(10500, "lb"),
  23768. name: "Back",
  23769. image: {
  23770. source: "./media/characters/kayda/back.svg",
  23771. extra: 1557 / 1464,
  23772. bottom: 39.5 / 1597.49
  23773. }
  23774. },
  23775. dick: {
  23776. height: math.unit(3.858, "feet"),
  23777. name: "Dick",
  23778. image: {
  23779. source: "./media/characters/kayda/dick.svg"
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Macro",
  23786. height: math.unit(28, "feet"),
  23787. default: true
  23788. },
  23789. ]
  23790. ))
  23791. characterMakers.push(() => makeCharacter(
  23792. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23793. {
  23794. front: {
  23795. height: math.unit(10 + 11 / 12, "feet"),
  23796. weight: math.unit(1400, "lb"),
  23797. name: "Front",
  23798. image: {
  23799. source: "./media/characters/brian/front.svg",
  23800. extra: 737 / 692,
  23801. bottom: 55.4 / 785
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Normal",
  23808. height: math.unit(10 + 11 / 12, "feet"),
  23809. default: true
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23815. {
  23816. front: {
  23817. height: math.unit(5 + 8 / 12, "feet"),
  23818. weight: math.unit(140, "lb"),
  23819. name: "Front",
  23820. image: {
  23821. source: "./media/characters/khemri/front.svg",
  23822. extra: 4780 / 4059,
  23823. bottom: 80.1 / 4859.25
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Micro",
  23830. height: math.unit(6, "inches")
  23831. },
  23832. {
  23833. name: "Normal",
  23834. height: math.unit(5 + 8 / 12, "feet"),
  23835. default: true
  23836. },
  23837. ]
  23838. ))
  23839. characterMakers.push(() => makeCharacter(
  23840. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23841. {
  23842. front: {
  23843. height: math.unit(13, "feet"),
  23844. weight: math.unit(1700, "lb"),
  23845. name: "Front",
  23846. image: {
  23847. source: "./media/characters/felix-braveheart/front.svg",
  23848. extra: 1222 / 1157,
  23849. bottom: 53.2 / 1280
  23850. }
  23851. },
  23852. back: {
  23853. height: math.unit(13, "feet"),
  23854. weight: math.unit(1700, "lb"),
  23855. name: "Back",
  23856. image: {
  23857. source: "./media/characters/felix-braveheart/back.svg",
  23858. extra: 1277 / 1203,
  23859. bottom: 50.2 / 1327
  23860. }
  23861. },
  23862. feral: {
  23863. height: math.unit(6, "feet"),
  23864. weight: math.unit(400, "lb"),
  23865. name: "Feral",
  23866. image: {
  23867. source: "./media/characters/felix-braveheart/feral.svg",
  23868. extra: 682 / 625,
  23869. bottom: 6.9 / 688
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Normal",
  23876. height: math.unit(13, "feet"),
  23877. default: true
  23878. },
  23879. ]
  23880. ))
  23881. characterMakers.push(() => makeCharacter(
  23882. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23883. {
  23884. side: {
  23885. height: math.unit(5 + 11 / 12, "feet"),
  23886. weight: math.unit(1400, "lb"),
  23887. name: "Side",
  23888. image: {
  23889. source: "./media/characters/shadow-blade/side.svg",
  23890. extra: 1726 / 1267,
  23891. bottom: 58.4 / 1785
  23892. }
  23893. },
  23894. },
  23895. [
  23896. {
  23897. name: "Normal",
  23898. height: math.unit(5 + 11 / 12, "feet"),
  23899. default: true
  23900. },
  23901. ]
  23902. ))
  23903. characterMakers.push(() => makeCharacter(
  23904. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23905. {
  23906. front: {
  23907. height: math.unit(1 + 6 / 12, "feet"),
  23908. weight: math.unit(25, "lb"),
  23909. name: "Front",
  23910. image: {
  23911. source: "./media/characters/karla-halldor/front.svg",
  23912. extra: 1459 / 1383,
  23913. bottom: 12 / 1472
  23914. }
  23915. },
  23916. },
  23917. [
  23918. {
  23919. name: "Normal",
  23920. height: math.unit(1 + 6 / 12, "feet"),
  23921. default: true
  23922. },
  23923. ]
  23924. ))
  23925. characterMakers.push(() => makeCharacter(
  23926. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23927. {
  23928. front: {
  23929. height: math.unit(6 + 2 / 12, "feet"),
  23930. weight: math.unit(160, "lb"),
  23931. name: "Front",
  23932. image: {
  23933. source: "./media/characters/ariam/front.svg",
  23934. extra: 714 / 617,
  23935. bottom: 23.4 / 737,
  23936. }
  23937. },
  23938. squatting: {
  23939. height: math.unit(4.1, "feet"),
  23940. weight: math.unit(160, "lb"),
  23941. name: "Squatting",
  23942. image: {
  23943. source: "./media/characters/ariam/squatting.svg",
  23944. extra: 2617 / 2112,
  23945. bottom: 61.2 / 2681,
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Normal",
  23952. height: math.unit(6 + 2 / 12, "feet"),
  23953. default: true
  23954. },
  23955. {
  23956. name: "Normal+",
  23957. height: math.unit(4, "meters")
  23958. },
  23959. {
  23960. name: "Macro",
  23961. height: math.unit(50, "meters")
  23962. },
  23963. {
  23964. name: "Macro+",
  23965. height: math.unit(100, "meters")
  23966. },
  23967. {
  23968. name: "Megamacro",
  23969. height: math.unit(20, "km")
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23975. {
  23976. front: {
  23977. height: math.unit(1.67, "meters"),
  23978. weight: math.unit(140, "lb"),
  23979. name: "Front",
  23980. image: {
  23981. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23982. extra: 438 / 410,
  23983. bottom: 0.75 / 439
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Shrunken",
  23990. height: math.unit(7.6, "cm")
  23991. },
  23992. {
  23993. name: "Human Scale",
  23994. height: math.unit(1.67, "meters")
  23995. },
  23996. {
  23997. name: "Wolxi Scale",
  23998. height: math.unit(36.7, "meters"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24005. {
  24006. front: {
  24007. height: math.unit(1.73, "meters"),
  24008. weight: math.unit(240, "lb"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/izue-two-mothers/front.svg",
  24012. extra: 469 / 437,
  24013. bottom: 1.24 / 470.6
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Shrunken",
  24020. height: math.unit(7.86, "cm")
  24021. },
  24022. {
  24023. name: "Human Scale",
  24024. height: math.unit(1.73, "meters")
  24025. },
  24026. {
  24027. name: "Wolxi Scale",
  24028. height: math.unit(38, "meters"),
  24029. default: true
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24035. {
  24036. front: {
  24037. height: math.unit(1.55, "meters"),
  24038. weight: math.unit(120, "lb"),
  24039. name: "Front",
  24040. image: {
  24041. source: "./media/characters/teeku-love-shack/front.svg",
  24042. extra: 387 / 362,
  24043. bottom: 1.51 / 388
  24044. }
  24045. },
  24046. },
  24047. [
  24048. {
  24049. name: "Shrunken",
  24050. height: math.unit(7, "cm")
  24051. },
  24052. {
  24053. name: "Human Scale",
  24054. height: math.unit(1.55, "meters")
  24055. },
  24056. {
  24057. name: "Wolxi Scale",
  24058. height: math.unit(34.1, "meters"),
  24059. default: true
  24060. },
  24061. ]
  24062. ))
  24063. characterMakers.push(() => makeCharacter(
  24064. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24065. {
  24066. front: {
  24067. height: math.unit(1.83, "meters"),
  24068. weight: math.unit(135, "lb"),
  24069. name: "Front",
  24070. image: {
  24071. source: "./media/characters/dejma-the-red/front.svg",
  24072. extra: 480 / 458,
  24073. bottom: 1.8 / 482
  24074. }
  24075. },
  24076. },
  24077. [
  24078. {
  24079. name: "Shrunken",
  24080. height: math.unit(8.3, "cm")
  24081. },
  24082. {
  24083. name: "Human Scale",
  24084. height: math.unit(1.83, "meters")
  24085. },
  24086. {
  24087. name: "Wolxi Scale",
  24088. height: math.unit(40, "meters"),
  24089. default: true
  24090. },
  24091. ]
  24092. ))
  24093. characterMakers.push(() => makeCharacter(
  24094. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24095. {
  24096. front: {
  24097. height: math.unit(1.78, "meters"),
  24098. weight: math.unit(65, "kg"),
  24099. name: "Front",
  24100. image: {
  24101. source: "./media/characters/aki/front.svg",
  24102. extra: 452 / 415
  24103. }
  24104. },
  24105. frontNsfw: {
  24106. height: math.unit(1.78, "meters"),
  24107. weight: math.unit(65, "kg"),
  24108. name: "Front (NSFW)",
  24109. image: {
  24110. source: "./media/characters/aki/front-nsfw.svg",
  24111. extra: 452 / 415
  24112. }
  24113. },
  24114. back: {
  24115. height: math.unit(1.78, "meters"),
  24116. weight: math.unit(65, "kg"),
  24117. name: "Back",
  24118. image: {
  24119. source: "./media/characters/aki/back.svg",
  24120. extra: 452 / 415
  24121. }
  24122. },
  24123. rump: {
  24124. height: math.unit(2.05, "feet"),
  24125. name: "Rump",
  24126. image: {
  24127. source: "./media/characters/aki/rump.svg"
  24128. }
  24129. },
  24130. dick: {
  24131. height: math.unit(0.95, "feet"),
  24132. name: "Dick",
  24133. image: {
  24134. source: "./media/characters/aki/dick.svg"
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Micro",
  24141. height: math.unit(15, "cm")
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(178, "cm"),
  24146. default: true
  24147. },
  24148. {
  24149. name: "Macro",
  24150. height: math.unit(214, "m")
  24151. },
  24152. {
  24153. name: "Macro+",
  24154. height: math.unit(534, "m")
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(5 + 5 / 12, "feet"),
  24163. weight: math.unit(120, "lb"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/ari/front.svg",
  24167. extra: 714.5 / 682,
  24168. bottom: 8 / 722.5
  24169. }
  24170. },
  24171. },
  24172. [
  24173. {
  24174. name: "Normal",
  24175. height: math.unit(5 + 5 / 12, "feet")
  24176. },
  24177. {
  24178. name: "Macro",
  24179. height: math.unit(100, "feet"),
  24180. default: true
  24181. },
  24182. {
  24183. name: "Megamacro",
  24184. height: math.unit(100, "miles")
  24185. },
  24186. {
  24187. name: "Gigamacro",
  24188. height: math.unit(80000, "miles")
  24189. },
  24190. ]
  24191. ))
  24192. characterMakers.push(() => makeCharacter(
  24193. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24194. {
  24195. side: {
  24196. height: math.unit(9, "feet"),
  24197. weight: math.unit(400, "kg"),
  24198. name: "Side",
  24199. image: {
  24200. source: "./media/characters/bolt/side.svg",
  24201. extra: 1126 / 896,
  24202. bottom: 60 / 1187.3,
  24203. }
  24204. },
  24205. },
  24206. [
  24207. {
  24208. name: "Micro",
  24209. height: math.unit(5, "inches")
  24210. },
  24211. {
  24212. name: "Normal",
  24213. height: math.unit(9, "feet"),
  24214. default: true
  24215. },
  24216. {
  24217. name: "Macro",
  24218. height: math.unit(700, "feet")
  24219. },
  24220. {
  24221. name: "Max Size",
  24222. height: math.unit(1.52e22, "yottameters")
  24223. },
  24224. ]
  24225. ))
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24228. {
  24229. front: {
  24230. height: math.unit(4.53, "meters"),
  24231. weight: math.unit(3, "tons"),
  24232. name: "Front",
  24233. image: {
  24234. source: "./media/characters/draekon-sylviar/front.svg",
  24235. extra: 1228 / 1068,
  24236. bottom: 41 / 1270
  24237. }
  24238. },
  24239. tail: {
  24240. height: math.unit(1.772, "meter"),
  24241. name: "Tail",
  24242. image: {
  24243. source: "./media/characters/draekon-sylviar/tail.svg"
  24244. }
  24245. },
  24246. head: {
  24247. height: math.unit(1.331, "meter"),
  24248. name: "Head",
  24249. image: {
  24250. source: "./media/characters/draekon-sylviar/head.svg"
  24251. }
  24252. },
  24253. hand: {
  24254. height: math.unit(0.564, "meter"),
  24255. name: "Hand",
  24256. image: {
  24257. source: "./media/characters/draekon-sylviar/hand.svg"
  24258. }
  24259. },
  24260. foot: {
  24261. height: math.unit(0.621, "meter"),
  24262. name: "Foot",
  24263. image: {
  24264. source: "./media/characters/draekon-sylviar/foot.svg",
  24265. bottom: 32 / 324
  24266. }
  24267. },
  24268. dick: {
  24269. height: math.unit(61, "cm"),
  24270. name: "Dick",
  24271. image: {
  24272. source: "./media/characters/draekon-sylviar/dick.svg"
  24273. }
  24274. },
  24275. dickseparated: {
  24276. height: math.unit(61, "cm"),
  24277. name: "Dick-separated",
  24278. image: {
  24279. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24280. }
  24281. },
  24282. },
  24283. [
  24284. {
  24285. name: "Small",
  24286. height: math.unit(4.53 / 2, "meters"),
  24287. default: true
  24288. },
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(4.53, "meters"),
  24292. default: true
  24293. },
  24294. {
  24295. name: "Large",
  24296. height: math.unit(4.53 * 2, "meters"),
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24302. {
  24303. front: {
  24304. height: math.unit(6 + 2 / 12, "feet"),
  24305. weight: math.unit(180, "lb"),
  24306. name: "Front",
  24307. image: {
  24308. source: "./media/characters/brawler/front.svg",
  24309. extra: 3301 / 3027,
  24310. bottom: 138 / 3439
  24311. }
  24312. },
  24313. },
  24314. [
  24315. {
  24316. name: "Normal",
  24317. height: math.unit(6 + 2 / 12, "feet"),
  24318. default: true
  24319. },
  24320. ]
  24321. ))
  24322. characterMakers.push(() => makeCharacter(
  24323. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24324. {
  24325. front: {
  24326. height: math.unit(11, "feet"),
  24327. weight: math.unit(1000, "lb"),
  24328. name: "Front",
  24329. image: {
  24330. source: "./media/characters/alex/front.svg",
  24331. bottom: 44.5 / 620
  24332. }
  24333. },
  24334. },
  24335. [
  24336. {
  24337. name: "Micro",
  24338. height: math.unit(5, "inches")
  24339. },
  24340. {
  24341. name: "Normal",
  24342. height: math.unit(11, "feet"),
  24343. default: true
  24344. },
  24345. {
  24346. name: "Macro",
  24347. height: math.unit(9.5e9, "feet")
  24348. },
  24349. {
  24350. name: "Max Size",
  24351. height: math.unit(1.4e283, "yottameters")
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24357. {
  24358. female: {
  24359. height: math.unit(29.9, "m"),
  24360. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24361. name: "Female",
  24362. image: {
  24363. source: "./media/characters/zenari/female.svg",
  24364. extra: 3281.6 / 3217,
  24365. bottom: 72.2 / 3353
  24366. }
  24367. },
  24368. male: {
  24369. height: math.unit(27.7, "m"),
  24370. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24371. name: "Male",
  24372. image: {
  24373. source: "./media/characters/zenari/male.svg",
  24374. extra: 3008 / 2991,
  24375. bottom: 54.6 / 3069
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "Macro",
  24382. height: math.unit(29.7, "meters"),
  24383. default: true
  24384. },
  24385. ]
  24386. ))
  24387. characterMakers.push(() => makeCharacter(
  24388. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24389. {
  24390. female: {
  24391. height: math.unit(23.8, "m"),
  24392. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24393. name: "Female",
  24394. image: {
  24395. source: "./media/characters/mactarian/female.svg",
  24396. extra: 2662 / 2569,
  24397. bottom: 73 / 2736
  24398. }
  24399. },
  24400. male: {
  24401. height: math.unit(23.8, "m"),
  24402. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24403. name: "Male",
  24404. image: {
  24405. source: "./media/characters/mactarian/male.svg",
  24406. extra: 2673 / 2600,
  24407. bottom: 76 / 2750
  24408. }
  24409. },
  24410. },
  24411. [
  24412. {
  24413. name: "Macro",
  24414. height: math.unit(23.8, "meters"),
  24415. default: true
  24416. },
  24417. ]
  24418. ))
  24419. characterMakers.push(() => makeCharacter(
  24420. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24421. {
  24422. female: {
  24423. height: math.unit(19.3, "m"),
  24424. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24425. name: "Female",
  24426. image: {
  24427. source: "./media/characters/umok/female.svg",
  24428. extra: 2186 / 2078,
  24429. bottom: 87 / 2277
  24430. }
  24431. },
  24432. male: {
  24433. height: math.unit(19.5, "m"),
  24434. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24435. name: "Male",
  24436. image: {
  24437. source: "./media/characters/umok/male.svg",
  24438. extra: 2233 / 2140,
  24439. bottom: 24.4 / 2258
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Macro",
  24446. height: math.unit(19.3, "meters"),
  24447. default: true
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24453. {
  24454. female: {
  24455. height: math.unit(26.15, "m"),
  24456. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24457. name: "Female",
  24458. image: {
  24459. source: "./media/characters/joraxian/female.svg",
  24460. extra: 2912 / 2824,
  24461. bottom: 36 / 2956
  24462. }
  24463. },
  24464. male: {
  24465. height: math.unit(25.4, "m"),
  24466. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24467. name: "Male",
  24468. image: {
  24469. source: "./media/characters/joraxian/male.svg",
  24470. extra: 2877 / 2721,
  24471. bottom: 82 / 2967
  24472. }
  24473. },
  24474. },
  24475. [
  24476. {
  24477. name: "Macro",
  24478. height: math.unit(26.15, "meters"),
  24479. default: true
  24480. },
  24481. ]
  24482. ))
  24483. characterMakers.push(() => makeCharacter(
  24484. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24485. {
  24486. female: {
  24487. height: math.unit(21.6, "m"),
  24488. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24489. name: "Female",
  24490. image: {
  24491. source: "./media/characters/sthara/female.svg",
  24492. extra: 2516 / 2347,
  24493. bottom: 21.5 / 2537
  24494. }
  24495. },
  24496. male: {
  24497. height: math.unit(24, "m"),
  24498. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24499. name: "Male",
  24500. image: {
  24501. source: "./media/characters/sthara/male.svg",
  24502. extra: 2732 / 2607,
  24503. bottom: 23 / 2732
  24504. }
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Macro",
  24510. height: math.unit(21.6, "meters"),
  24511. default: true
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(6 + 4 / 12, "feet"),
  24520. weight: math.unit(175, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/luka-bryzant/front.svg",
  24524. extra: 311 / 289,
  24525. bottom: 4 / 315
  24526. }
  24527. },
  24528. back: {
  24529. height: math.unit(6 + 4 / 12, "feet"),
  24530. weight: math.unit(175, "lb"),
  24531. name: "Back",
  24532. image: {
  24533. source: "./media/characters/luka-bryzant/back.svg",
  24534. extra: 311 / 289,
  24535. bottom: 3.8 / 313.7
  24536. }
  24537. },
  24538. },
  24539. [
  24540. {
  24541. name: "Micro",
  24542. height: math.unit(10, "inches")
  24543. },
  24544. {
  24545. name: "Normal",
  24546. height: math.unit(6 + 4 / 12, "feet"),
  24547. default: true
  24548. },
  24549. {
  24550. name: "Large",
  24551. height: math.unit(12, "feet")
  24552. },
  24553. ]
  24554. ))
  24555. characterMakers.push(() => makeCharacter(
  24556. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24557. {
  24558. front: {
  24559. height: math.unit(5 + 7 / 12, "feet"),
  24560. weight: math.unit(185, "lb"),
  24561. name: "Front",
  24562. image: {
  24563. source: "./media/characters/aman-aquila/front.svg",
  24564. extra: 1013 / 976,
  24565. bottom: 45.6 / 1057
  24566. }
  24567. },
  24568. side: {
  24569. height: math.unit(5 + 7 / 12, "feet"),
  24570. weight: math.unit(185, "lb"),
  24571. name: "Side",
  24572. image: {
  24573. source: "./media/characters/aman-aquila/side.svg",
  24574. extra: 1054 / 1011,
  24575. bottom: 15 / 1070
  24576. }
  24577. },
  24578. back: {
  24579. height: math.unit(5 + 7 / 12, "feet"),
  24580. weight: math.unit(185, "lb"),
  24581. name: "Back",
  24582. image: {
  24583. source: "./media/characters/aman-aquila/back.svg",
  24584. extra: 1026 / 970,
  24585. bottom: 12 / 1039
  24586. }
  24587. },
  24588. head: {
  24589. height: math.unit(1.211, "feet"),
  24590. name: "Head",
  24591. image: {
  24592. source: "./media/characters/aman-aquila/head.svg",
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Minimicro",
  24599. height: math.unit(0.057, "inches")
  24600. },
  24601. {
  24602. name: "Micro",
  24603. height: math.unit(7, "inches")
  24604. },
  24605. {
  24606. name: "Mini",
  24607. height: math.unit(3 + 7 / 12, "feet")
  24608. },
  24609. {
  24610. name: "Normal",
  24611. height: math.unit(5 + 7 / 12, "feet"),
  24612. default: true
  24613. },
  24614. {
  24615. name: "Macro",
  24616. height: math.unit(157 + 7 / 12, "feet")
  24617. },
  24618. {
  24619. name: "Megamacro",
  24620. height: math.unit(1557 + 7 / 12, "feet")
  24621. },
  24622. {
  24623. name: "Gigamacro",
  24624. height: math.unit(15557 + 7 / 12, "feet")
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24630. {
  24631. front: {
  24632. height: math.unit(3 + 2 / 12, "inches"),
  24633. weight: math.unit(0.3, "ounces"),
  24634. name: "Front",
  24635. image: {
  24636. source: "./media/characters/hiphae/front.svg",
  24637. extra: 1931 / 1683,
  24638. bottom: 24 / 1955
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Normal",
  24645. height: math.unit(3 + 1 / 2, "inches"),
  24646. default: true
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24652. {
  24653. front: {
  24654. height: math.unit(5 + 10 / 12, "feet"),
  24655. weight: math.unit(165, "lb"),
  24656. name: "Front",
  24657. image: {
  24658. source: "./media/characters/nicky/front.svg",
  24659. extra: 3144 / 2886,
  24660. bottom: 45.6 / 3192
  24661. }
  24662. },
  24663. back: {
  24664. height: math.unit(5 + 10 / 12, "feet"),
  24665. weight: math.unit(165, "lb"),
  24666. name: "Back",
  24667. image: {
  24668. source: "./media/characters/nicky/back.svg",
  24669. extra: 3055 / 2804,
  24670. bottom: 28.4 / 3087
  24671. }
  24672. },
  24673. frontclothed: {
  24674. height: math.unit(5 + 10 / 12, "feet"),
  24675. weight: math.unit(165, "lb"),
  24676. name: "Front-clothed",
  24677. image: {
  24678. source: "./media/characters/nicky/front-clothed.svg",
  24679. extra: 3184.9 / 2926.9,
  24680. bottom: 86.5 / 3239.9
  24681. }
  24682. },
  24683. foot: {
  24684. height: math.unit(1.16, "feet"),
  24685. name: "Foot",
  24686. image: {
  24687. source: "./media/characters/nicky/foot.svg"
  24688. }
  24689. },
  24690. feet: {
  24691. height: math.unit(1.34, "feet"),
  24692. name: "Feet",
  24693. image: {
  24694. source: "./media/characters/nicky/feet.svg"
  24695. }
  24696. },
  24697. maw: {
  24698. height: math.unit(0.9, "feet"),
  24699. name: "Maw",
  24700. image: {
  24701. source: "./media/characters/nicky/maw.svg"
  24702. }
  24703. },
  24704. },
  24705. [
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(5 + 10 / 12, "feet"),
  24709. default: true
  24710. },
  24711. {
  24712. name: "Macro",
  24713. height: math.unit(60, "feet")
  24714. },
  24715. {
  24716. name: "Megamacro",
  24717. height: math.unit(1, "mile")
  24718. },
  24719. ]
  24720. ))
  24721. characterMakers.push(() => makeCharacter(
  24722. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24723. {
  24724. side: {
  24725. height: math.unit(10, "feet"),
  24726. weight: math.unit(600, "lb"),
  24727. name: "Side",
  24728. image: {
  24729. source: "./media/characters/blair/side.svg",
  24730. bottom: 16.6 / 475,
  24731. extra: 458 / 431
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Micro",
  24738. height: math.unit(8, "inches")
  24739. },
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(10, "feet"),
  24743. default: true
  24744. },
  24745. {
  24746. name: "Macro",
  24747. height: math.unit(180, "feet")
  24748. },
  24749. ]
  24750. ))
  24751. characterMakers.push(() => makeCharacter(
  24752. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24753. {
  24754. front: {
  24755. height: math.unit(5 + 4 / 12, "feet"),
  24756. weight: math.unit(125, "lb"),
  24757. name: "Front",
  24758. image: {
  24759. source: "./media/characters/fisher/front.svg",
  24760. extra: 444 / 390,
  24761. bottom: 2 / 444.8
  24762. }
  24763. },
  24764. },
  24765. [
  24766. {
  24767. name: "Micro",
  24768. height: math.unit(4, "inches")
  24769. },
  24770. {
  24771. name: "Normal",
  24772. height: math.unit(5 + 4 / 12, "feet"),
  24773. default: true
  24774. },
  24775. {
  24776. name: "Macro",
  24777. height: math.unit(100, "feet")
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24783. {
  24784. front: {
  24785. height: math.unit(6.71, "feet"),
  24786. weight: math.unit(200, "lb"),
  24787. capacity: math.unit(1000000, "people"),
  24788. name: "Front",
  24789. image: {
  24790. source: "./media/characters/gliss/front.svg",
  24791. extra: 2347 / 2231,
  24792. bottom: 113 / 2462
  24793. }
  24794. },
  24795. hammerspaceSize: {
  24796. height: math.unit(6.71 * 717, "feet"),
  24797. weight: math.unit(200, "lb"),
  24798. capacity: math.unit(1000000, "people"),
  24799. name: "Hammerspace Size",
  24800. image: {
  24801. source: "./media/characters/gliss/front.svg",
  24802. extra: 2347 / 2231,
  24803. bottom: 113 / 2462
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(6.71, "feet"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24817. {
  24818. side: {
  24819. height: math.unit(1.44, "m"),
  24820. weight: math.unit(80, "kg"),
  24821. name: "Side",
  24822. image: {
  24823. source: "./media/characters/dune-anderson/side.svg",
  24824. bottom: 49 / 1426
  24825. }
  24826. },
  24827. },
  24828. [
  24829. {
  24830. name: "Wolf-sized",
  24831. height: math.unit(1.44, "meters")
  24832. },
  24833. {
  24834. name: "Normal",
  24835. height: math.unit(5.05, "meters"),
  24836. default: true
  24837. },
  24838. {
  24839. name: "Big",
  24840. height: math.unit(14.4, "meters")
  24841. },
  24842. {
  24843. name: "Huge",
  24844. height: math.unit(144, "meters")
  24845. },
  24846. ]
  24847. ))
  24848. characterMakers.push(() => makeCharacter(
  24849. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24850. {
  24851. front: {
  24852. height: math.unit(7, "feet"),
  24853. weight: math.unit(425, "lb"),
  24854. name: "Front",
  24855. image: {
  24856. source: "./media/characters/hind/front.svg",
  24857. extra: 2091 / 1860,
  24858. bottom: 129 / 2220
  24859. }
  24860. },
  24861. back: {
  24862. height: math.unit(7, "feet"),
  24863. weight: math.unit(425, "lb"),
  24864. name: "Back",
  24865. image: {
  24866. source: "./media/characters/hind/back.svg",
  24867. extra: 2091 / 1860,
  24868. bottom: 24.6 / 2309
  24869. }
  24870. },
  24871. tail: {
  24872. height: math.unit(2.8, "feet"),
  24873. name: "Tail",
  24874. image: {
  24875. source: "./media/characters/hind/tail.svg"
  24876. }
  24877. },
  24878. head: {
  24879. height: math.unit(2.55, "feet"),
  24880. name: "Head",
  24881. image: {
  24882. source: "./media/characters/hind/head.svg"
  24883. }
  24884. },
  24885. },
  24886. [
  24887. {
  24888. name: "XS",
  24889. height: math.unit(0.7, "feet")
  24890. },
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(7, "feet"),
  24894. default: true
  24895. },
  24896. {
  24897. name: "XL",
  24898. height: math.unit(70, "feet")
  24899. },
  24900. ]
  24901. ))
  24902. characterMakers.push(() => makeCharacter(
  24903. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24904. {
  24905. front: {
  24906. height: math.unit(2.1, "meters"),
  24907. weight: math.unit(150, "lb"),
  24908. name: "Front",
  24909. image: {
  24910. source: "./media/characters/tharquench-sizestealer/front.svg",
  24911. extra: 1605/1470,
  24912. bottom: 36/1641
  24913. }
  24914. },
  24915. frontAlt: {
  24916. height: math.unit(2.1, "meters"),
  24917. weight: math.unit(150, "lb"),
  24918. name: "Front (Alt)",
  24919. image: {
  24920. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24921. extra: 2318 / 2063,
  24922. bottom: 93.4 / 2410
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Nano",
  24929. height: math.unit(1, "mm")
  24930. },
  24931. {
  24932. name: "Micro",
  24933. height: math.unit(1, "cm")
  24934. },
  24935. {
  24936. name: "Normal",
  24937. height: math.unit(2.1, "meters"),
  24938. default: true
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24944. {
  24945. front: {
  24946. height: math.unit(7 + 5 / 12, "feet"),
  24947. weight: math.unit(357, "lb"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/solex-draconov/front.svg",
  24951. extra: 1993 / 1865,
  24952. bottom: 117 / 2111
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Natural Height",
  24959. height: math.unit(7 + 5 / 12, "feet"),
  24960. default: true
  24961. },
  24962. {
  24963. name: "Macro",
  24964. height: math.unit(350, "feet")
  24965. },
  24966. {
  24967. name: "Macro+",
  24968. height: math.unit(1000, "feet")
  24969. },
  24970. {
  24971. name: "Megamacro",
  24972. height: math.unit(20, "km")
  24973. },
  24974. {
  24975. name: "Megamacro+",
  24976. height: math.unit(1000, "km")
  24977. },
  24978. {
  24979. name: "Gigamacro",
  24980. height: math.unit(2.5, "Gm")
  24981. },
  24982. {
  24983. name: "Teramacro",
  24984. height: math.unit(15, "Tm")
  24985. },
  24986. {
  24987. name: "Galactic",
  24988. height: math.unit(30, "Zm")
  24989. },
  24990. {
  24991. name: "Universal",
  24992. height: math.unit(21000, "Ym")
  24993. },
  24994. {
  24995. name: "Omniversal",
  24996. height: math.unit(9.861e50, "Ym")
  24997. },
  24998. {
  24999. name: "Existential",
  25000. height: math.unit(1e300, "meters")
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25006. {
  25007. side: {
  25008. height: math.unit(25, "feet"),
  25009. weight: math.unit(90000, "lb"),
  25010. name: "Side",
  25011. image: {
  25012. source: "./media/characters/mandarax/side.svg",
  25013. extra: 614 / 332,
  25014. bottom: 55 / 630
  25015. }
  25016. },
  25017. head: {
  25018. height: math.unit(11.4, "feet"),
  25019. name: "Head",
  25020. image: {
  25021. source: "./media/characters/mandarax/head.svg"
  25022. }
  25023. },
  25024. belly: {
  25025. height: math.unit(33, "feet"),
  25026. name: "Belly",
  25027. capacity: math.unit(500, "people"),
  25028. image: {
  25029. source: "./media/characters/mandarax/belly.svg"
  25030. }
  25031. },
  25032. dick: {
  25033. height: math.unit(8.46, "feet"),
  25034. name: "Dick",
  25035. image: {
  25036. source: "./media/characters/mandarax/dick.svg"
  25037. }
  25038. },
  25039. top: {
  25040. height: math.unit(28, "meters"),
  25041. name: "Top",
  25042. image: {
  25043. source: "./media/characters/mandarax/top.svg"
  25044. }
  25045. },
  25046. },
  25047. [
  25048. {
  25049. name: "Normal",
  25050. height: math.unit(25, "feet"),
  25051. default: true
  25052. },
  25053. ]
  25054. ))
  25055. characterMakers.push(() => makeCharacter(
  25056. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25057. {
  25058. front: {
  25059. height: math.unit(5, "feet"),
  25060. weight: math.unit(90, "lb"),
  25061. name: "Front",
  25062. image: {
  25063. source: "./media/characters/pixil/front.svg",
  25064. extra: 2000 / 1618,
  25065. bottom: 12.3 / 2011
  25066. }
  25067. },
  25068. },
  25069. [
  25070. {
  25071. name: "Normal",
  25072. height: math.unit(5, "feet"),
  25073. default: true
  25074. },
  25075. {
  25076. name: "Megamacro",
  25077. height: math.unit(10, "miles"),
  25078. },
  25079. ]
  25080. ))
  25081. characterMakers.push(() => makeCharacter(
  25082. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25083. {
  25084. front: {
  25085. height: math.unit(7 + 2 / 12, "feet"),
  25086. weight: math.unit(200, "lb"),
  25087. name: "Front",
  25088. image: {
  25089. source: "./media/characters/angel/front.svg",
  25090. extra: 1830 / 1737,
  25091. bottom: 22.6 / 1854,
  25092. }
  25093. },
  25094. },
  25095. [
  25096. {
  25097. name: "Normal",
  25098. height: math.unit(7 + 2 / 12, "feet"),
  25099. default: true
  25100. },
  25101. {
  25102. name: "Macro",
  25103. height: math.unit(1000, "feet")
  25104. },
  25105. {
  25106. name: "Megamacro",
  25107. height: math.unit(2, "miles")
  25108. },
  25109. {
  25110. name: "Gigamacro",
  25111. height: math.unit(20, "earths")
  25112. },
  25113. ]
  25114. ))
  25115. characterMakers.push(() => makeCharacter(
  25116. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25117. {
  25118. front: {
  25119. height: math.unit(5, "feet"),
  25120. weight: math.unit(180, "lb"),
  25121. name: "Front",
  25122. image: {
  25123. source: "./media/characters/mekana/front.svg",
  25124. extra: 1671 / 1605,
  25125. bottom: 3.5 / 1691
  25126. }
  25127. },
  25128. side: {
  25129. height: math.unit(5, "feet"),
  25130. weight: math.unit(180, "lb"),
  25131. name: "Side",
  25132. image: {
  25133. source: "./media/characters/mekana/side.svg",
  25134. extra: 1671 / 1605,
  25135. bottom: 3.5 / 1691
  25136. }
  25137. },
  25138. back: {
  25139. height: math.unit(5, "feet"),
  25140. weight: math.unit(180, "lb"),
  25141. name: "Back",
  25142. image: {
  25143. source: "./media/characters/mekana/back.svg",
  25144. extra: 1671 / 1605,
  25145. bottom: 3.5 / 1691
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Normal",
  25152. height: math.unit(5, "feet"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25159. {
  25160. front: {
  25161. height: math.unit(4 + 6 / 12, "feet"),
  25162. weight: math.unit(80, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/pixie/front.svg",
  25166. extra: 1924 / 1825,
  25167. bottom: 22.4 / 1946
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Normal",
  25174. height: math.unit(4 + 6 / 12, "feet"),
  25175. default: true
  25176. },
  25177. {
  25178. name: "Macro",
  25179. height: math.unit(40, "feet")
  25180. },
  25181. ]
  25182. ))
  25183. characterMakers.push(() => makeCharacter(
  25184. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25185. {
  25186. front: {
  25187. height: math.unit(2.1, "meters"),
  25188. weight: math.unit(200, "lb"),
  25189. name: "Front",
  25190. image: {
  25191. source: "./media/characters/the-lascivious/front.svg",
  25192. extra: 1 / 0.893,
  25193. bottom: 3.5 / 573.7
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Human Scale",
  25200. height: math.unit(2.1, "meters")
  25201. },
  25202. {
  25203. name: "Wolxi Scale",
  25204. height: math.unit(46.2, "m"),
  25205. default: true
  25206. },
  25207. {
  25208. name: "Boinker of Buildings",
  25209. height: math.unit(10, "km")
  25210. },
  25211. {
  25212. name: "Shagger of Skyscrapers",
  25213. height: math.unit(40, "km")
  25214. },
  25215. {
  25216. name: "Banger of Boroughs",
  25217. height: math.unit(4000, "km")
  25218. },
  25219. {
  25220. name: "Screwer of States",
  25221. height: math.unit(100000, "km")
  25222. },
  25223. {
  25224. name: "Pounder of Planets",
  25225. height: math.unit(2000000, "km")
  25226. },
  25227. ]
  25228. ))
  25229. characterMakers.push(() => makeCharacter(
  25230. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25231. {
  25232. front: {
  25233. height: math.unit(6, "feet"),
  25234. weight: math.unit(150, "lb"),
  25235. name: "Front",
  25236. image: {
  25237. source: "./media/characters/aj/front.svg",
  25238. extra: 2039 / 1562,
  25239. bottom: 40 / 2079
  25240. }
  25241. },
  25242. },
  25243. [
  25244. {
  25245. name: "Normal",
  25246. height: math.unit(11 + 6 / 12, "feet"),
  25247. default: true
  25248. },
  25249. {
  25250. name: "Megamacro",
  25251. height: math.unit(60, "megameters")
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25257. {
  25258. side: {
  25259. height: math.unit(31 + 8 / 12, "feet"),
  25260. weight: math.unit(75000, "kg"),
  25261. name: "Side",
  25262. image: {
  25263. source: "./media/characters/koros/side.svg",
  25264. extra: 1442 / 1297,
  25265. bottom: 122.7 / 1562
  25266. }
  25267. },
  25268. dicksKingsCrown: {
  25269. height: math.unit(6, "feet"),
  25270. name: "Dicks (King's Crown)",
  25271. image: {
  25272. source: "./media/characters/koros/dicks-kings-crown.svg"
  25273. }
  25274. },
  25275. dicksTailSet: {
  25276. height: math.unit(3, "feet"),
  25277. name: "Dicks (Tail Set)",
  25278. image: {
  25279. source: "./media/characters/koros/dicks-tail-set.svg"
  25280. }
  25281. },
  25282. dickCumming: {
  25283. height: math.unit(7.98, "feet"),
  25284. name: "Dick (Cumming)",
  25285. image: {
  25286. source: "./media/characters/koros/dick-cumming.svg"
  25287. }
  25288. },
  25289. dicksBack: {
  25290. height: math.unit(5.9, "feet"),
  25291. name: "Dicks (Back)",
  25292. image: {
  25293. source: "./media/characters/koros/dicks-back.svg"
  25294. }
  25295. },
  25296. dicksFront: {
  25297. height: math.unit(3.72, "feet"),
  25298. name: "Dicks (Front)",
  25299. image: {
  25300. source: "./media/characters/koros/dicks-front.svg"
  25301. }
  25302. },
  25303. dicksPeeking: {
  25304. height: math.unit(3.0, "feet"),
  25305. name: "Dicks (Peeking)",
  25306. image: {
  25307. source: "./media/characters/koros/dicks-peeking.svg"
  25308. }
  25309. },
  25310. eye: {
  25311. height: math.unit(1.7, "feet"),
  25312. name: "Eye",
  25313. image: {
  25314. source: "./media/characters/koros/eye.svg"
  25315. }
  25316. },
  25317. headFront: {
  25318. height: math.unit(11.69, "feet"),
  25319. name: "Head (Front)",
  25320. image: {
  25321. source: "./media/characters/koros/head-front.svg"
  25322. }
  25323. },
  25324. headSide: {
  25325. height: math.unit(14, "feet"),
  25326. name: "Head (Side)",
  25327. image: {
  25328. source: "./media/characters/koros/head-side.svg"
  25329. }
  25330. },
  25331. leg: {
  25332. height: math.unit(17, "feet"),
  25333. name: "Leg",
  25334. image: {
  25335. source: "./media/characters/koros/leg.svg"
  25336. }
  25337. },
  25338. mawSide: {
  25339. height: math.unit(12.8, "feet"),
  25340. name: "Maw (Side)",
  25341. image: {
  25342. source: "./media/characters/koros/maw-side.svg"
  25343. }
  25344. },
  25345. mawSpitting: {
  25346. height: math.unit(17, "feet"),
  25347. name: "Maw (Spitting)",
  25348. image: {
  25349. source: "./media/characters/koros/maw-spitting.svg"
  25350. }
  25351. },
  25352. slit: {
  25353. height: math.unit(2.8, "feet"),
  25354. name: "Slit",
  25355. image: {
  25356. source: "./media/characters/koros/slit.svg"
  25357. }
  25358. },
  25359. stomach: {
  25360. height: math.unit(6.8, "feet"),
  25361. capacity: math.unit(20, "people"),
  25362. name: "Stomach",
  25363. image: {
  25364. source: "./media/characters/koros/stomach.svg"
  25365. }
  25366. },
  25367. wingspanBottom: {
  25368. height: math.unit(114, "feet"),
  25369. name: "Wingspan (Bottom)",
  25370. image: {
  25371. source: "./media/characters/koros/wingspan-bottom.svg"
  25372. }
  25373. },
  25374. wingspanTop: {
  25375. height: math.unit(104, "feet"),
  25376. name: "Wingspan (Top)",
  25377. image: {
  25378. source: "./media/characters/koros/wingspan-top.svg"
  25379. }
  25380. },
  25381. },
  25382. [
  25383. {
  25384. name: "Normal",
  25385. height: math.unit(31 + 8 / 12, "feet"),
  25386. default: true
  25387. },
  25388. ]
  25389. ))
  25390. characterMakers.push(() => makeCharacter(
  25391. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25392. {
  25393. front: {
  25394. height: math.unit(18 + 5 / 12, "feet"),
  25395. weight: math.unit(3750, "kg"),
  25396. name: "Front",
  25397. image: {
  25398. source: "./media/characters/vexx/front.svg",
  25399. extra: 426 / 396,
  25400. bottom: 31.5 / 458
  25401. }
  25402. },
  25403. maw: {
  25404. height: math.unit(6, "feet"),
  25405. name: "Maw",
  25406. image: {
  25407. source: "./media/characters/vexx/maw.svg"
  25408. }
  25409. },
  25410. },
  25411. [
  25412. {
  25413. name: "Normal",
  25414. height: math.unit(18 + 5 / 12, "feet"),
  25415. default: true
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(17 + 6 / 12, "feet"),
  25424. weight: math.unit(150, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/baadra/front.svg",
  25428. extra: 3137 / 2890,
  25429. bottom: 168.4 / 3305
  25430. }
  25431. },
  25432. back: {
  25433. height: math.unit(17 + 6 / 12, "feet"),
  25434. weight: math.unit(150, "lb"),
  25435. name: "Back",
  25436. image: {
  25437. source: "./media/characters/baadra/back.svg",
  25438. extra: 3142 / 2890,
  25439. bottom: 220 / 3371
  25440. }
  25441. },
  25442. head: {
  25443. height: math.unit(5.45, "feet"),
  25444. name: "Head",
  25445. image: {
  25446. source: "./media/characters/baadra/head.svg"
  25447. }
  25448. },
  25449. headAngry: {
  25450. height: math.unit(4.95, "feet"),
  25451. name: "Head (Angry)",
  25452. image: {
  25453. source: "./media/characters/baadra/head-angry.svg"
  25454. }
  25455. },
  25456. headOpen: {
  25457. height: math.unit(6, "feet"),
  25458. name: "Head (Open)",
  25459. image: {
  25460. source: "./media/characters/baadra/head-open.svg"
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Normal",
  25467. height: math.unit(17 + 6 / 12, "feet"),
  25468. default: true
  25469. },
  25470. ]
  25471. ))
  25472. characterMakers.push(() => makeCharacter(
  25473. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25474. {
  25475. front: {
  25476. height: math.unit(7 + 3 / 12, "feet"),
  25477. weight: math.unit(180, "lb"),
  25478. name: "Front",
  25479. image: {
  25480. source: "./media/characters/juri/front.svg",
  25481. extra: 1401 / 1237,
  25482. bottom: 18.5 / 1418
  25483. }
  25484. },
  25485. side: {
  25486. height: math.unit(7 + 3 / 12, "feet"),
  25487. weight: math.unit(180, "lb"),
  25488. name: "Side",
  25489. image: {
  25490. source: "./media/characters/juri/side.svg",
  25491. extra: 1424 / 1242,
  25492. bottom: 18.5 / 1447
  25493. }
  25494. },
  25495. sitting: {
  25496. height: math.unit(6, "feet"),
  25497. weight: math.unit(180, "lb"),
  25498. name: "Sitting",
  25499. image: {
  25500. source: "./media/characters/juri/sitting.svg",
  25501. extra: 1270 / 1143,
  25502. bottom: 100 / 1343
  25503. }
  25504. },
  25505. back: {
  25506. height: math.unit(7 + 3 / 12, "feet"),
  25507. weight: math.unit(180, "lb"),
  25508. name: "Back",
  25509. image: {
  25510. source: "./media/characters/juri/back.svg",
  25511. extra: 1377 / 1240,
  25512. bottom: 23.7 / 1405
  25513. }
  25514. },
  25515. maw: {
  25516. height: math.unit(2.8, "feet"),
  25517. name: "Maw",
  25518. image: {
  25519. source: "./media/characters/juri/maw.svg"
  25520. }
  25521. },
  25522. stomach: {
  25523. height: math.unit(0.89, "feet"),
  25524. capacity: math.unit(4, "liters"),
  25525. name: "Stomach",
  25526. image: {
  25527. source: "./media/characters/juri/stomach.svg"
  25528. }
  25529. },
  25530. },
  25531. [
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(7 + 3 / 12, "feet"),
  25535. default: true
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25541. {
  25542. fox: {
  25543. height: math.unit(5 + 6 / 12, "feet"),
  25544. weight: math.unit(140, "lb"),
  25545. name: "Fox",
  25546. image: {
  25547. source: "./media/characters/maxene-sita/fox.svg",
  25548. extra: 146 / 138,
  25549. bottom: 2.1 / 148.19
  25550. }
  25551. },
  25552. foxLaying: {
  25553. height: math.unit(1.70, "feet"),
  25554. weight: math.unit(140, "lb"),
  25555. name: "Fox (Laying)",
  25556. image: {
  25557. source: "./media/characters/maxene-sita/fox-laying.svg",
  25558. extra: 910 / 572,
  25559. bottom: 71 / 981
  25560. }
  25561. },
  25562. kitsune: {
  25563. height: math.unit(10, "feet"),
  25564. weight: math.unit(800, "lb"),
  25565. name: "Kitsune",
  25566. image: {
  25567. source: "./media/characters/maxene-sita/kitsune.svg",
  25568. extra: 185 / 176,
  25569. bottom: 4.7 / 189.9
  25570. }
  25571. },
  25572. hellhound: {
  25573. height: math.unit(10, "feet"),
  25574. weight: math.unit(700, "lb"),
  25575. name: "Hellhound",
  25576. image: {
  25577. source: "./media/characters/maxene-sita/hellhound.svg",
  25578. extra: 1600 / 1545,
  25579. bottom: 81 / 1681
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(5 + 6 / 12, "feet"),
  25587. default: true
  25588. },
  25589. ]
  25590. ))
  25591. characterMakers.push(() => makeCharacter(
  25592. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25593. {
  25594. front: {
  25595. height: math.unit(3 + 4 / 12, "feet"),
  25596. weight: math.unit(70, "lb"),
  25597. name: "Front",
  25598. image: {
  25599. source: "./media/characters/maia/front.svg",
  25600. extra: 227 / 219.5,
  25601. bottom: 40 / 267
  25602. }
  25603. },
  25604. back: {
  25605. height: math.unit(3 + 4 / 12, "feet"),
  25606. weight: math.unit(70, "lb"),
  25607. name: "Back",
  25608. image: {
  25609. source: "./media/characters/maia/back.svg",
  25610. extra: 237 / 225
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Normal",
  25617. height: math.unit(3 + 4 / 12, "feet"),
  25618. default: true
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25624. {
  25625. front: {
  25626. height: math.unit(5 + 10 / 12, "feet"),
  25627. weight: math.unit(197, "lb"),
  25628. name: "Front",
  25629. image: {
  25630. source: "./media/characters/jabaro/front.svg",
  25631. extra: 225 / 216,
  25632. bottom: 5.06 / 230
  25633. }
  25634. },
  25635. back: {
  25636. height: math.unit(5 + 10 / 12, "feet"),
  25637. weight: math.unit(197, "lb"),
  25638. name: "Back",
  25639. image: {
  25640. source: "./media/characters/jabaro/back.svg",
  25641. extra: 225 / 219,
  25642. bottom: 1.9 / 227
  25643. }
  25644. },
  25645. },
  25646. [
  25647. {
  25648. name: "Normal",
  25649. height: math.unit(5 + 10 / 12, "feet"),
  25650. default: true
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25656. {
  25657. front: {
  25658. height: math.unit(5 + 8 / 12, "feet"),
  25659. weight: math.unit(139, "lb"),
  25660. name: "Front",
  25661. image: {
  25662. source: "./media/characters/risa/front.svg",
  25663. extra: 270 / 260,
  25664. bottom: 11.2 / 282
  25665. }
  25666. },
  25667. back: {
  25668. height: math.unit(5 + 8 / 12, "feet"),
  25669. weight: math.unit(139, "lb"),
  25670. name: "Back",
  25671. image: {
  25672. source: "./media/characters/risa/back.svg",
  25673. extra: 264 / 255,
  25674. bottom: 4 / 268
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Normal",
  25681. height: math.unit(5 + 8 / 12, "feet"),
  25682. default: true
  25683. },
  25684. ]
  25685. ))
  25686. characterMakers.push(() => makeCharacter(
  25687. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25688. {
  25689. front: {
  25690. height: math.unit(2 + 11 / 12, "feet"),
  25691. weight: math.unit(30, "lb"),
  25692. name: "Front",
  25693. image: {
  25694. source: "./media/characters/weatley/front.svg",
  25695. bottom: 10.7 / 414,
  25696. extra: 403.5 / 362
  25697. }
  25698. },
  25699. back: {
  25700. height: math.unit(2 + 11 / 12, "feet"),
  25701. weight: math.unit(30, "lb"),
  25702. name: "Back",
  25703. image: {
  25704. source: "./media/characters/weatley/back.svg",
  25705. bottom: 10.7 / 414,
  25706. extra: 403.5 / 362
  25707. }
  25708. },
  25709. },
  25710. [
  25711. {
  25712. name: "Normal",
  25713. height: math.unit(2 + 11 / 12, "feet"),
  25714. default: true
  25715. },
  25716. ]
  25717. ))
  25718. characterMakers.push(() => makeCharacter(
  25719. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25720. {
  25721. front: {
  25722. height: math.unit(5 + 2 / 12, "feet"),
  25723. weight: math.unit(50, "kg"),
  25724. name: "Front",
  25725. image: {
  25726. source: "./media/characters/mercury-crescent/front.svg",
  25727. extra: 1088 / 1033,
  25728. bottom: 18.9 / 1109
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Normal",
  25735. height: math.unit(5 + 2 / 12, "feet"),
  25736. default: true
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25742. {
  25743. front: {
  25744. height: math.unit(2, "feet"),
  25745. weight: math.unit(15, "kg"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/diamond-jones/front.svg",
  25749. extra: 727/723,
  25750. bottom: 46/773
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(2, "feet"),
  25758. default: true
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25764. {
  25765. front: {
  25766. height: math.unit(3, "feet"),
  25767. weight: math.unit(30, "kg"),
  25768. name: "Front",
  25769. image: {
  25770. source: "./media/characters/sweet-bit/front.svg",
  25771. extra: 675 / 567,
  25772. bottom: 27.7 / 703
  25773. }
  25774. },
  25775. },
  25776. [
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(3, "feet"),
  25780. default: true
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25786. {
  25787. side: {
  25788. height: math.unit(9.178, "feet"),
  25789. weight: math.unit(500, "lb"),
  25790. name: "Side",
  25791. image: {
  25792. source: "./media/characters/umbrazen/side.svg",
  25793. extra: 1730 / 1473,
  25794. bottom: 34.6 / 1765
  25795. }
  25796. },
  25797. },
  25798. [
  25799. {
  25800. name: "Normal",
  25801. height: math.unit(9.178, "feet"),
  25802. default: true
  25803. },
  25804. ]
  25805. ))
  25806. characterMakers.push(() => makeCharacter(
  25807. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25808. {
  25809. front: {
  25810. height: math.unit(10, "feet"),
  25811. weight: math.unit(750, "lb"),
  25812. name: "Front",
  25813. image: {
  25814. source: "./media/characters/arlist/front.svg",
  25815. extra: 961 / 778,
  25816. bottom: 6.2 / 986
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Normal",
  25823. height: math.unit(10, "feet"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(5 + 1 / 12, "feet"),
  25833. weight: math.unit(110, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/aradel/front.svg",
  25837. extra: 324 / 303,
  25838. bottom: 3.6 / 329.4
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Normal",
  25845. height: math.unit(5 + 1 / 12, "feet"),
  25846. default: true
  25847. },
  25848. ]
  25849. ))
  25850. characterMakers.push(() => makeCharacter(
  25851. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25852. {
  25853. front: {
  25854. height: math.unit(3 + 8 / 12, "feet"),
  25855. weight: math.unit(50, "lb"),
  25856. name: "Front",
  25857. image: {
  25858. source: "./media/characters/serryn/front.svg",
  25859. extra: 1792 / 1656,
  25860. bottom: 43.5 / 1840
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Normal",
  25867. height: math.unit(3 + 8 / 12, "feet"),
  25868. default: true
  25869. },
  25870. ]
  25871. ))
  25872. characterMakers.push(() => makeCharacter(
  25873. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25874. {
  25875. front: {
  25876. height: math.unit(7 + 10 / 12, "feet"),
  25877. weight: math.unit(255, "lb"),
  25878. name: "Front",
  25879. image: {
  25880. source: "./media/characters/xavier-thyme/front.svg",
  25881. extra: 3733 / 3642,
  25882. bottom: 131 / 3869
  25883. }
  25884. },
  25885. frontRaven: {
  25886. height: math.unit(7 + 10 / 12, "feet"),
  25887. weight: math.unit(255, "lb"),
  25888. name: "Front (Raven)",
  25889. image: {
  25890. source: "./media/characters/xavier-thyme/front-raven.svg",
  25891. extra: 4385 / 3642,
  25892. bottom: 131 / 4517
  25893. }
  25894. },
  25895. },
  25896. [
  25897. {
  25898. name: "Normal",
  25899. height: math.unit(7 + 10 / 12, "feet"),
  25900. default: true
  25901. },
  25902. ]
  25903. ))
  25904. characterMakers.push(() => makeCharacter(
  25905. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25906. {
  25907. front: {
  25908. height: math.unit(1.6, "m"),
  25909. weight: math.unit(50, "kg"),
  25910. name: "Front",
  25911. image: {
  25912. source: "./media/characters/kiki/front.svg",
  25913. extra: 4682 / 3610,
  25914. bottom: 115 / 4777
  25915. }
  25916. },
  25917. },
  25918. [
  25919. {
  25920. name: "Normal",
  25921. height: math.unit(1.6, "meters"),
  25922. default: true
  25923. },
  25924. ]
  25925. ))
  25926. characterMakers.push(() => makeCharacter(
  25927. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25928. {
  25929. front: {
  25930. height: math.unit(50, "m"),
  25931. weight: math.unit(500, "tonnes"),
  25932. name: "Front",
  25933. image: {
  25934. source: "./media/characters/ryoko/front.svg",
  25935. extra: 4632 / 3926,
  25936. bottom: 193 / 4823
  25937. }
  25938. },
  25939. },
  25940. [
  25941. {
  25942. name: "Normal",
  25943. height: math.unit(50, "meters"),
  25944. default: true
  25945. },
  25946. ]
  25947. ))
  25948. characterMakers.push(() => makeCharacter(
  25949. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25950. {
  25951. front: {
  25952. height: math.unit(30, "m"),
  25953. weight: math.unit(22, "tonnes"),
  25954. name: "Front",
  25955. image: {
  25956. source: "./media/characters/elio/front.svg",
  25957. extra: 4582 / 3720,
  25958. bottom: 236 / 4828
  25959. }
  25960. },
  25961. },
  25962. [
  25963. {
  25964. name: "Normal",
  25965. height: math.unit(30, "meters"),
  25966. default: true
  25967. },
  25968. ]
  25969. ))
  25970. characterMakers.push(() => makeCharacter(
  25971. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25972. {
  25973. front: {
  25974. height: math.unit(6 + 3 / 12, "feet"),
  25975. weight: math.unit(120, "lb"),
  25976. name: "Front",
  25977. image: {
  25978. source: "./media/characters/azura/front.svg",
  25979. extra: 1149 / 1135,
  25980. bottom: 45 / 1194
  25981. }
  25982. },
  25983. frontClothed: {
  25984. height: math.unit(6 + 3 / 12, "feet"),
  25985. weight: math.unit(120, "lb"),
  25986. name: "Front (Clothed)",
  25987. image: {
  25988. source: "./media/characters/azura/front-clothed.svg",
  25989. extra: 1149 / 1135,
  25990. bottom: 45 / 1194
  25991. }
  25992. },
  25993. },
  25994. [
  25995. {
  25996. name: "Normal",
  25997. height: math.unit(6 + 3 / 12, "feet"),
  25998. default: true
  25999. },
  26000. {
  26001. name: "Macro",
  26002. height: math.unit(20 + 6 / 12, "feet")
  26003. },
  26004. {
  26005. name: "Megamacro",
  26006. height: math.unit(12, "miles")
  26007. },
  26008. {
  26009. name: "Gigamacro",
  26010. height: math.unit(10000, "miles")
  26011. },
  26012. {
  26013. name: "Teramacro",
  26014. height: math.unit(900000, "miles")
  26015. },
  26016. ]
  26017. ))
  26018. characterMakers.push(() => makeCharacter(
  26019. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26020. {
  26021. front: {
  26022. height: math.unit(12, "feet"),
  26023. weight: math.unit(1, "ton"),
  26024. capacity: math.unit(660000, "gallons"),
  26025. name: "Front",
  26026. image: {
  26027. source: "./media/characters/zeus/front.svg",
  26028. extra: 5005 / 4717,
  26029. bottom: 363 / 5388
  26030. }
  26031. },
  26032. },
  26033. [
  26034. {
  26035. name: "Normal",
  26036. height: math.unit(12, "feet")
  26037. },
  26038. {
  26039. name: "Preferred Size",
  26040. height: math.unit(0.5, "miles"),
  26041. default: true
  26042. },
  26043. {
  26044. name: "Giga Horse",
  26045. height: math.unit(300, "miles")
  26046. },
  26047. {
  26048. name: "Riding Planets",
  26049. height: math.unit(30, "megameters")
  26050. },
  26051. {
  26052. name: "Cosmic Giant",
  26053. height: math.unit(3, "zettameters")
  26054. },
  26055. {
  26056. name: "Breeding God",
  26057. height: math.unit(9.92e22, "yottameters")
  26058. },
  26059. ]
  26060. ))
  26061. characterMakers.push(() => makeCharacter(
  26062. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26063. {
  26064. side: {
  26065. height: math.unit(9, "feet"),
  26066. weight: math.unit(1500, "kg"),
  26067. name: "Side",
  26068. image: {
  26069. source: "./media/characters/fang/side.svg",
  26070. extra: 924 / 866,
  26071. bottom: 47.5 / 972.3
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Normal",
  26078. height: math.unit(9, "feet"),
  26079. default: true
  26080. },
  26081. {
  26082. name: "Macro",
  26083. height: math.unit(75 + 6 / 12, "feet")
  26084. },
  26085. {
  26086. name: "Teramacro",
  26087. height: math.unit(50000, "miles")
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(10, "feet"),
  26096. weight: math.unit(2, "tons"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/rekhit/front.svg",
  26100. extra: 2796 / 2590,
  26101. bottom: 225 / 3022
  26102. }
  26103. },
  26104. },
  26105. [
  26106. {
  26107. name: "Normal",
  26108. height: math.unit(10, "feet"),
  26109. default: true
  26110. },
  26111. {
  26112. name: "Macro",
  26113. height: math.unit(500, "feet")
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26119. {
  26120. front: {
  26121. height: math.unit(7 + 6.451 / 12, "feet"),
  26122. weight: math.unit(310, "lb"),
  26123. name: "Front",
  26124. image: {
  26125. source: "./media/characters/dahlia-verrick/front.svg",
  26126. extra: 1488 / 1365,
  26127. bottom: 6.2 / 1495
  26128. }
  26129. },
  26130. back: {
  26131. height: math.unit(7 + 6.451 / 12, "feet"),
  26132. weight: math.unit(310, "lb"),
  26133. name: "Back",
  26134. image: {
  26135. source: "./media/characters/dahlia-verrick/back.svg",
  26136. extra: 1472 / 1351,
  26137. bottom: 5.28 / 1477
  26138. }
  26139. },
  26140. frontBusiness: {
  26141. height: math.unit(7 + 6.451 / 12, "feet"),
  26142. weight: math.unit(200, "lb"),
  26143. name: "Front (Business)",
  26144. image: {
  26145. source: "./media/characters/dahlia-verrick/front-business.svg",
  26146. extra: 1478 / 1381,
  26147. bottom: 5.5 / 1484
  26148. }
  26149. },
  26150. frontCasual: {
  26151. height: math.unit(7 + 6.451 / 12, "feet"),
  26152. weight: math.unit(200, "lb"),
  26153. name: "Front (Casual)",
  26154. image: {
  26155. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26156. extra: 1478 / 1381,
  26157. bottom: 5.5 / 1484
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Travel-Sized",
  26164. height: math.unit(7.45, "inches")
  26165. },
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(7 + 6.451 / 12, "feet"),
  26169. default: true
  26170. },
  26171. {
  26172. name: "Hitting the Town",
  26173. height: math.unit(37 + 8 / 12, "feet")
  26174. },
  26175. {
  26176. name: "Stomp in the Suburbs",
  26177. height: math.unit(964 + 9.728 / 12, "feet")
  26178. },
  26179. {
  26180. name: "Sit on the City",
  26181. height: math.unit(61747 + 10.592 / 12, "feet")
  26182. },
  26183. {
  26184. name: "Glomp the Globe",
  26185. height: math.unit(252919327 + 4.832 / 12, "feet")
  26186. },
  26187. ]
  26188. ))
  26189. characterMakers.push(() => makeCharacter(
  26190. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26191. {
  26192. front: {
  26193. height: math.unit(6 + 4 / 12, "feet"),
  26194. weight: math.unit(320, "lb"),
  26195. name: "Front",
  26196. image: {
  26197. source: "./media/characters/balina-mahigan/front.svg",
  26198. extra: 447 / 428,
  26199. bottom: 18 / 466
  26200. }
  26201. },
  26202. back: {
  26203. height: math.unit(6 + 4 / 12, "feet"),
  26204. weight: math.unit(320, "lb"),
  26205. name: "Back",
  26206. image: {
  26207. source: "./media/characters/balina-mahigan/back.svg",
  26208. extra: 445 / 428,
  26209. bottom: 4.07 / 448
  26210. }
  26211. },
  26212. arm: {
  26213. height: math.unit(1.88, "feet"),
  26214. name: "Arm",
  26215. image: {
  26216. source: "./media/characters/balina-mahigan/arm.svg"
  26217. }
  26218. },
  26219. backPort: {
  26220. height: math.unit(0.685, "feet"),
  26221. name: "Back Port",
  26222. image: {
  26223. source: "./media/characters/balina-mahigan/back-port.svg"
  26224. }
  26225. },
  26226. hoofpaw: {
  26227. height: math.unit(1.41, "feet"),
  26228. name: "Hoofpaw",
  26229. image: {
  26230. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26231. }
  26232. },
  26233. leftHandBack: {
  26234. height: math.unit(0.938, "feet"),
  26235. name: "Left Hand (Back)",
  26236. image: {
  26237. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26238. }
  26239. },
  26240. leftHandFront: {
  26241. height: math.unit(0.938, "feet"),
  26242. name: "Left Hand (Front)",
  26243. image: {
  26244. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26245. }
  26246. },
  26247. rightHandBack: {
  26248. height: math.unit(0.95, "feet"),
  26249. name: "Right Hand (Back)",
  26250. image: {
  26251. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26252. }
  26253. },
  26254. rightHandFront: {
  26255. height: math.unit(0.95, "feet"),
  26256. name: "Right Hand (Front)",
  26257. image: {
  26258. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26259. }
  26260. },
  26261. },
  26262. [
  26263. {
  26264. name: "Normal",
  26265. height: math.unit(6 + 4 / 12, "feet"),
  26266. default: true
  26267. },
  26268. ]
  26269. ))
  26270. characterMakers.push(() => makeCharacter(
  26271. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26272. {
  26273. front: {
  26274. height: math.unit(6, "feet"),
  26275. weight: math.unit(320, "lb"),
  26276. name: "Front",
  26277. image: {
  26278. source: "./media/characters/balina-mejeri/front.svg",
  26279. extra: 517 / 488,
  26280. bottom: 44.2 / 561
  26281. }
  26282. },
  26283. },
  26284. [
  26285. {
  26286. name: "Normal",
  26287. height: math.unit(6 + 4 / 12, "feet")
  26288. },
  26289. {
  26290. name: "Business",
  26291. height: math.unit(155, "feet"),
  26292. default: true
  26293. },
  26294. ]
  26295. ))
  26296. characterMakers.push(() => makeCharacter(
  26297. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26298. {
  26299. kneeling: {
  26300. height: math.unit(6 + 4 / 12, "feet"),
  26301. weight: math.unit(300 * 20, "lb"),
  26302. name: "Kneeling",
  26303. image: {
  26304. source: "./media/characters/balbarian/kneeling.svg",
  26305. extra: 922 / 862,
  26306. bottom: 42.4 / 965
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(6 + 4 / 12, "feet")
  26314. },
  26315. {
  26316. name: "Treasured",
  26317. height: math.unit(18 + 9 / 12, "feet"),
  26318. default: true
  26319. },
  26320. {
  26321. name: "Macro",
  26322. height: math.unit(900, "feet")
  26323. },
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26328. {
  26329. front: {
  26330. height: math.unit(6 + 4 / 12, "feet"),
  26331. weight: math.unit(325, "lb"),
  26332. name: "Front",
  26333. image: {
  26334. source: "./media/characters/balina-amarini/front.svg",
  26335. extra: 415 / 403,
  26336. bottom: 19 / 433.4
  26337. }
  26338. },
  26339. back: {
  26340. height: math.unit(6 + 4 / 12, "feet"),
  26341. weight: math.unit(325, "lb"),
  26342. name: "Back",
  26343. image: {
  26344. source: "./media/characters/balina-amarini/back.svg",
  26345. extra: 415 / 403,
  26346. bottom: 13.5 / 432
  26347. }
  26348. },
  26349. overdrive: {
  26350. height: math.unit(6 + 4 / 12, "feet"),
  26351. weight: math.unit(400, "lb"),
  26352. name: "Overdrive",
  26353. image: {
  26354. source: "./media/characters/balina-amarini/overdrive.svg",
  26355. extra: 269 / 259,
  26356. bottom: 12 / 282
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Boom",
  26363. height: math.unit(9 + 10 / 12, "feet"),
  26364. default: true
  26365. },
  26366. {
  26367. name: "Macro",
  26368. height: math.unit(280, "feet")
  26369. },
  26370. ]
  26371. ))
  26372. characterMakers.push(() => makeCharacter(
  26373. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26374. {
  26375. goddess: {
  26376. height: math.unit(600, "feet"),
  26377. weight: math.unit(2000000, "tons"),
  26378. name: "Goddess",
  26379. image: {
  26380. source: "./media/characters/lady-kubwa/goddess.svg",
  26381. extra: 1240.5 / 1223,
  26382. bottom: 22 / 1263
  26383. }
  26384. },
  26385. goddesser: {
  26386. height: math.unit(900, "feet"),
  26387. weight: math.unit(20000000, "lb"),
  26388. name: "Goddess-er",
  26389. image: {
  26390. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26391. extra: 899 / 888,
  26392. bottom: 12.6 / 912
  26393. }
  26394. },
  26395. },
  26396. [
  26397. {
  26398. name: "Macro",
  26399. height: math.unit(600, "feet"),
  26400. default: true
  26401. },
  26402. {
  26403. name: "Megamacro",
  26404. height: math.unit(250, "miles")
  26405. },
  26406. ]
  26407. ))
  26408. characterMakers.push(() => makeCharacter(
  26409. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26410. {
  26411. front: {
  26412. height: math.unit(7 + 7 / 12, "feet"),
  26413. weight: math.unit(250, "lb"),
  26414. name: "Front",
  26415. image: {
  26416. source: "./media/characters/tala-grovehorn/front.svg",
  26417. extra: 2636 / 2525,
  26418. bottom: 147 / 2781
  26419. }
  26420. },
  26421. back: {
  26422. height: math.unit(7 + 7 / 12, "feet"),
  26423. weight: math.unit(250, "lb"),
  26424. name: "Back",
  26425. image: {
  26426. source: "./media/characters/tala-grovehorn/back.svg",
  26427. extra: 2635 / 2539,
  26428. bottom: 100 / 2732.8
  26429. }
  26430. },
  26431. mouth: {
  26432. height: math.unit(1.15, "feet"),
  26433. name: "Mouth",
  26434. image: {
  26435. source: "./media/characters/tala-grovehorn/mouth.svg"
  26436. }
  26437. },
  26438. dick: {
  26439. height: math.unit(2.36, "feet"),
  26440. name: "Dick",
  26441. image: {
  26442. source: "./media/characters/tala-grovehorn/dick.svg"
  26443. }
  26444. },
  26445. slit: {
  26446. height: math.unit(0.61, "feet"),
  26447. name: "Slit",
  26448. image: {
  26449. source: "./media/characters/tala-grovehorn/slit.svg"
  26450. }
  26451. },
  26452. },
  26453. [
  26454. ]
  26455. ))
  26456. characterMakers.push(() => makeCharacter(
  26457. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26458. {
  26459. front: {
  26460. height: math.unit(7 + 7 / 12, "feet"),
  26461. weight: math.unit(225, "lb"),
  26462. name: "Front",
  26463. image: {
  26464. source: "./media/characters/epona/front.svg",
  26465. extra: 2445 / 2290,
  26466. bottom: 251 / 2696
  26467. }
  26468. },
  26469. back: {
  26470. height: math.unit(7 + 7 / 12, "feet"),
  26471. weight: math.unit(225, "lb"),
  26472. name: "Back",
  26473. image: {
  26474. source: "./media/characters/epona/back.svg",
  26475. extra: 2546 / 2408,
  26476. bottom: 44 / 2589
  26477. }
  26478. },
  26479. genitals: {
  26480. height: math.unit(1.5, "feet"),
  26481. name: "Genitals",
  26482. image: {
  26483. source: "./media/characters/epona/genitals.svg"
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Normal",
  26490. height: math.unit(7 + 7 / 12, "feet"),
  26491. default: true
  26492. },
  26493. ]
  26494. ))
  26495. characterMakers.push(() => makeCharacter(
  26496. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26497. {
  26498. front: {
  26499. height: math.unit(7, "feet"),
  26500. weight: math.unit(518, "lb"),
  26501. name: "Front",
  26502. image: {
  26503. source: "./media/characters/avia-bloodbourn/front.svg",
  26504. extra: 1466 / 1350,
  26505. bottom: 65 / 1527
  26506. }
  26507. },
  26508. },
  26509. [
  26510. ]
  26511. ))
  26512. characterMakers.push(() => makeCharacter(
  26513. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26514. {
  26515. front: {
  26516. height: math.unit(9.35, "feet"),
  26517. weight: math.unit(600, "lb"),
  26518. name: "Front",
  26519. image: {
  26520. source: "./media/characters/amera/front.svg",
  26521. extra: 891 / 818,
  26522. bottom: 30 / 922.7
  26523. }
  26524. },
  26525. back: {
  26526. height: math.unit(9.35, "feet"),
  26527. weight: math.unit(600, "lb"),
  26528. name: "Back",
  26529. image: {
  26530. source: "./media/characters/amera/back.svg",
  26531. extra: 876 / 824,
  26532. bottom: 6.8 / 884
  26533. }
  26534. },
  26535. dick: {
  26536. height: math.unit(2.14, "feet"),
  26537. name: "Dick",
  26538. image: {
  26539. source: "./media/characters/amera/dick.svg"
  26540. }
  26541. },
  26542. },
  26543. [
  26544. {
  26545. name: "Normal",
  26546. height: math.unit(9.35, "feet"),
  26547. default: true
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26553. {
  26554. kneeling: {
  26555. height: math.unit(3 + 4 / 12, "feet"),
  26556. weight: math.unit(90, "lb"),
  26557. name: "Kneeling",
  26558. image: {
  26559. source: "./media/characters/rosewen/kneeling.svg",
  26560. extra: 1835 / 1571,
  26561. bottom: 27.7 / 1862
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(3 + 4 / 12, "feet"),
  26569. default: true
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(5 + 10 / 12, "feet"),
  26578. weight: math.unit(200, "lb"),
  26579. name: "Front",
  26580. image: {
  26581. source: "./media/characters/sabah/front.svg",
  26582. extra: 849 / 763,
  26583. bottom: 33.9 / 881
  26584. }
  26585. },
  26586. },
  26587. [
  26588. {
  26589. name: "Normal",
  26590. height: math.unit(5 + 10 / 12, "feet"),
  26591. default: true
  26592. },
  26593. ]
  26594. ))
  26595. characterMakers.push(() => makeCharacter(
  26596. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26597. {
  26598. front: {
  26599. height: math.unit(3 + 5 / 12, "feet"),
  26600. weight: math.unit(40, "kg"),
  26601. name: "Front",
  26602. image: {
  26603. source: "./media/characters/purple-flame/front.svg",
  26604. extra: 1577 / 1412,
  26605. bottom: 97 / 1694
  26606. }
  26607. },
  26608. frontDressed: {
  26609. height: math.unit(3 + 5 / 12, "feet"),
  26610. weight: math.unit(40, "kg"),
  26611. name: "Front (Dressed)",
  26612. image: {
  26613. source: "./media/characters/purple-flame/front-dressed.svg",
  26614. extra: 1577 / 1412,
  26615. bottom: 97 / 1694
  26616. }
  26617. },
  26618. headphones: {
  26619. height: math.unit(0.85, "feet"),
  26620. name: "Headphones",
  26621. image: {
  26622. source: "./media/characters/purple-flame/headphones.svg"
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Really Small",
  26629. height: math.unit(5, "cm")
  26630. },
  26631. {
  26632. name: "Micro",
  26633. height: math.unit(1 + 5 / 12, "feet")
  26634. },
  26635. {
  26636. name: "Normal",
  26637. height: math.unit(3 + 5 / 12, "feet"),
  26638. default: true
  26639. },
  26640. {
  26641. name: "Minimacro",
  26642. height: math.unit(125, "feet")
  26643. },
  26644. {
  26645. name: "Macro",
  26646. height: math.unit(0.5, "miles")
  26647. },
  26648. {
  26649. name: "Megamacro",
  26650. height: math.unit(50, "miles")
  26651. },
  26652. {
  26653. name: "Gigantic",
  26654. height: math.unit(750, "miles")
  26655. },
  26656. {
  26657. name: "Planetary",
  26658. height: math.unit(15000, "miles")
  26659. },
  26660. ]
  26661. ))
  26662. characterMakers.push(() => makeCharacter(
  26663. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26664. {
  26665. front: {
  26666. height: math.unit(14, "feet"),
  26667. weight: math.unit(959, "lb"),
  26668. name: "Front",
  26669. image: {
  26670. source: "./media/characters/arsenal/front.svg",
  26671. extra: 2357 / 2157,
  26672. bottom: 93 / 2458
  26673. }
  26674. },
  26675. },
  26676. [
  26677. {
  26678. name: "Normal",
  26679. height: math.unit(14, "feet"),
  26680. default: true
  26681. },
  26682. ]
  26683. ))
  26684. characterMakers.push(() => makeCharacter(
  26685. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26686. {
  26687. front: {
  26688. height: math.unit(6, "feet"),
  26689. weight: math.unit(150, "lb"),
  26690. name: "Front",
  26691. image: {
  26692. source: "./media/characters/adira/front.svg",
  26693. extra: 1078 / 1029,
  26694. bottom: 87 / 1166
  26695. }
  26696. },
  26697. },
  26698. [
  26699. {
  26700. name: "Micro",
  26701. height: math.unit(4, "inches"),
  26702. default: true
  26703. },
  26704. {
  26705. name: "Macro",
  26706. height: math.unit(50, "feet")
  26707. },
  26708. ]
  26709. ))
  26710. characterMakers.push(() => makeCharacter(
  26711. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26712. {
  26713. front: {
  26714. height: math.unit(16, "feet"),
  26715. weight: math.unit(1000, "lb"),
  26716. name: "Front",
  26717. image: {
  26718. source: "./media/characters/grim/front.svg",
  26719. extra: 622 / 614,
  26720. bottom: 18.1 / 642
  26721. }
  26722. },
  26723. back: {
  26724. height: math.unit(16, "feet"),
  26725. weight: math.unit(1000, "lb"),
  26726. name: "Back",
  26727. image: {
  26728. source: "./media/characters/grim/back.svg",
  26729. extra: 610.6 / 602,
  26730. bottom: 40.8 / 652
  26731. }
  26732. },
  26733. hunched: {
  26734. height: math.unit(9.75, "feet"),
  26735. weight: math.unit(1000, "lb"),
  26736. name: "Hunched",
  26737. image: {
  26738. source: "./media/characters/grim/hunched.svg",
  26739. extra: 304 / 297,
  26740. bottom: 35.4 / 394
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Normal",
  26747. height: math.unit(16, "feet"),
  26748. default: true
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26754. {
  26755. front: {
  26756. height: math.unit(2.3, "meters"),
  26757. weight: math.unit(300, "lb"),
  26758. name: "Front",
  26759. image: {
  26760. source: "./media/characters/sinja/front-sfw.svg",
  26761. extra: 1393 / 1294,
  26762. bottom: 70 / 1463
  26763. }
  26764. },
  26765. frontNsfw: {
  26766. height: math.unit(2.3, "meters"),
  26767. weight: math.unit(300, "lb"),
  26768. name: "Front (NSFW)",
  26769. image: {
  26770. source: "./media/characters/sinja/front-nsfw.svg",
  26771. extra: 1393 / 1294,
  26772. bottom: 70 / 1463
  26773. }
  26774. },
  26775. back: {
  26776. height: math.unit(2.3, "meters"),
  26777. weight: math.unit(300, "lb"),
  26778. name: "Back",
  26779. image: {
  26780. source: "./media/characters/sinja/back.svg",
  26781. extra: 1393 / 1294,
  26782. bottom: 70 / 1463
  26783. }
  26784. },
  26785. head: {
  26786. height: math.unit(1.771, "feet"),
  26787. name: "Head",
  26788. image: {
  26789. source: "./media/characters/sinja/head.svg"
  26790. }
  26791. },
  26792. slit: {
  26793. height: math.unit(0.8, "feet"),
  26794. name: "Slit",
  26795. image: {
  26796. source: "./media/characters/sinja/slit.svg"
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Normal",
  26803. height: math.unit(2.3, "meters")
  26804. },
  26805. {
  26806. name: "Macro",
  26807. height: math.unit(91, "meters"),
  26808. default: true
  26809. },
  26810. {
  26811. name: "Megamacro",
  26812. height: math.unit(91440, "meters")
  26813. },
  26814. {
  26815. name: "Gigamacro",
  26816. height: math.unit(60960000, "meters")
  26817. },
  26818. {
  26819. name: "Teramacro",
  26820. height: math.unit(9144000000, "meters")
  26821. },
  26822. ]
  26823. ))
  26824. characterMakers.push(() => makeCharacter(
  26825. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26826. {
  26827. front: {
  26828. height: math.unit(1.7, "meters"),
  26829. weight: math.unit(130, "lb"),
  26830. name: "Front",
  26831. image: {
  26832. source: "./media/characters/kyu/front.svg",
  26833. extra: 415 / 395,
  26834. bottom: 5 / 420
  26835. }
  26836. },
  26837. head: {
  26838. height: math.unit(1.75, "feet"),
  26839. name: "Head",
  26840. image: {
  26841. source: "./media/characters/kyu/head.svg"
  26842. }
  26843. },
  26844. foot: {
  26845. height: math.unit(0.81, "feet"),
  26846. name: "Foot",
  26847. image: {
  26848. source: "./media/characters/kyu/foot.svg"
  26849. }
  26850. },
  26851. },
  26852. [
  26853. {
  26854. name: "Normal",
  26855. height: math.unit(1.7, "meters")
  26856. },
  26857. {
  26858. name: "Macro",
  26859. height: math.unit(131, "feet"),
  26860. default: true
  26861. },
  26862. {
  26863. name: "Megamacro",
  26864. height: math.unit(91440, "meters")
  26865. },
  26866. {
  26867. name: "Gigamacro",
  26868. height: math.unit(60960000, "meters")
  26869. },
  26870. {
  26871. name: "Teramacro",
  26872. height: math.unit(9144000000, "meters")
  26873. },
  26874. ]
  26875. ))
  26876. characterMakers.push(() => makeCharacter(
  26877. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26878. {
  26879. front: {
  26880. height: math.unit(7 + 1 / 12, "feet"),
  26881. weight: math.unit(250, "lb"),
  26882. name: "Front",
  26883. image: {
  26884. source: "./media/characters/joey/front.svg",
  26885. extra: 1791 / 1537,
  26886. bottom: 28 / 1816
  26887. }
  26888. },
  26889. },
  26890. [
  26891. {
  26892. name: "Micro",
  26893. height: math.unit(3, "inches")
  26894. },
  26895. {
  26896. name: "Normal",
  26897. height: math.unit(7 + 1 / 12, "feet"),
  26898. default: true
  26899. },
  26900. ]
  26901. ))
  26902. characterMakers.push(() => makeCharacter(
  26903. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26904. {
  26905. front: {
  26906. height: math.unit(165, "cm"),
  26907. weight: math.unit(140, "lb"),
  26908. name: "Front",
  26909. image: {
  26910. source: "./media/characters/sam-evans/front.svg",
  26911. extra: 3417 / 3230,
  26912. bottom: 41.3 / 3417
  26913. }
  26914. },
  26915. frontSixTails: {
  26916. height: math.unit(165, "cm"),
  26917. weight: math.unit(140, "lb"),
  26918. name: "Front-six-tails",
  26919. image: {
  26920. source: "./media/characters/sam-evans/front-six-tails.svg",
  26921. extra: 3417 / 3230,
  26922. bottom: 41.3 / 3417
  26923. }
  26924. },
  26925. back: {
  26926. height: math.unit(165, "cm"),
  26927. weight: math.unit(140, "lb"),
  26928. name: "Back",
  26929. image: {
  26930. source: "./media/characters/sam-evans/back.svg",
  26931. extra: 3227 / 3032,
  26932. bottom: 6.8 / 3234
  26933. }
  26934. },
  26935. face: {
  26936. height: math.unit(0.68, "feet"),
  26937. name: "Face",
  26938. image: {
  26939. source: "./media/characters/sam-evans/face.svg"
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(165, "cm"),
  26947. default: true
  26948. },
  26949. {
  26950. name: "Macro",
  26951. height: math.unit(100, "meters")
  26952. },
  26953. {
  26954. name: "Macro+",
  26955. height: math.unit(800, "meters")
  26956. },
  26957. {
  26958. name: "Macro++",
  26959. height: math.unit(3, "km")
  26960. },
  26961. {
  26962. name: "Macro+++",
  26963. height: math.unit(30, "km")
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26969. {
  26970. front: {
  26971. height: math.unit(10, "feet"),
  26972. weight: math.unit(750, "lb"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/juliet-a/front.svg",
  26976. extra: 1766 / 1720,
  26977. bottom: 43 / 1809
  26978. }
  26979. },
  26980. back: {
  26981. height: math.unit(10, "feet"),
  26982. weight: math.unit(750, "lb"),
  26983. name: "Back",
  26984. image: {
  26985. source: "./media/characters/juliet-a/back.svg",
  26986. extra: 1781 / 1734,
  26987. bottom: 35 / 1810,
  26988. }
  26989. },
  26990. },
  26991. [
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(10, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "Dragon Form",
  26999. height: math.unit(250, "feet")
  27000. },
  27001. {
  27002. name: "Macro",
  27003. height: math.unit(1000, "feet")
  27004. },
  27005. {
  27006. name: "Megamacro",
  27007. height: math.unit(10000, "feet")
  27008. }
  27009. ]
  27010. ))
  27011. characterMakers.push(() => makeCharacter(
  27012. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27013. {
  27014. regular: {
  27015. height: math.unit(7 + 3 / 12, "feet"),
  27016. weight: math.unit(260, "lb"),
  27017. name: "Regular",
  27018. image: {
  27019. source: "./media/characters/wild/regular.svg",
  27020. extra: 97.45 / 92,
  27021. bottom: 6.8 / 104.3
  27022. }
  27023. },
  27024. biggums: {
  27025. height: math.unit(8 + 6 / 12, "feet"),
  27026. weight: math.unit(425, "lb"),
  27027. name: "Biggums",
  27028. image: {
  27029. source: "./media/characters/wild/biggums.svg",
  27030. extra: 97.45 / 92,
  27031. bottom: 7.5 / 132.34
  27032. }
  27033. },
  27034. mawRegular: {
  27035. height: math.unit(1.24, "feet"),
  27036. name: "Maw (Regular)",
  27037. image: {
  27038. source: "./media/characters/wild/maw.svg"
  27039. }
  27040. },
  27041. mawBiggums: {
  27042. height: math.unit(1.47, "feet"),
  27043. name: "Maw (Biggums)",
  27044. image: {
  27045. source: "./media/characters/wild/maw.svg"
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Normal",
  27052. height: math.unit(7 + 3 / 12, "feet"),
  27053. default: true
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27059. {
  27060. front: {
  27061. height: math.unit(2.5, "meters"),
  27062. weight: math.unit(200, "kg"),
  27063. name: "Front",
  27064. image: {
  27065. source: "./media/characters/vidar/front.svg",
  27066. extra: 2994 / 2795,
  27067. bottom: 56 / 3061
  27068. }
  27069. },
  27070. back: {
  27071. height: math.unit(2.5, "meters"),
  27072. weight: math.unit(200, "kg"),
  27073. name: "Back",
  27074. image: {
  27075. source: "./media/characters/vidar/back.svg",
  27076. extra: 3131 / 2928,
  27077. bottom: 13.5 / 3141.5
  27078. }
  27079. },
  27080. feral: {
  27081. height: math.unit(2.5, "meters"),
  27082. weight: math.unit(2000, "kg"),
  27083. name: "Feral",
  27084. image: {
  27085. source: "./media/characters/vidar/feral.svg",
  27086. extra: 2790 / 1765,
  27087. bottom: 6 / 2796
  27088. }
  27089. },
  27090. },
  27091. [
  27092. {
  27093. name: "Normal",
  27094. height: math.unit(2.5, "meters"),
  27095. default: true
  27096. },
  27097. {
  27098. name: "Macro",
  27099. height: math.unit(100, "meters")
  27100. },
  27101. ]
  27102. ))
  27103. characterMakers.push(() => makeCharacter(
  27104. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27105. {
  27106. front: {
  27107. height: math.unit(5 + 9 / 12, "feet"),
  27108. weight: math.unit(120, "lb"),
  27109. name: "Front",
  27110. image: {
  27111. source: "./media/characters/ash/front.svg",
  27112. extra: 2189 / 1961,
  27113. bottom: 5.2 / 2194
  27114. }
  27115. },
  27116. },
  27117. [
  27118. {
  27119. name: "Normal",
  27120. height: math.unit(5 + 9 / 12, "feet"),
  27121. default: true
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(9, "feet"),
  27130. weight: math.unit(10000, "lb"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/gygabite/front.svg",
  27134. bottom: 31.7 / 537.8,
  27135. extra: 505 / 370
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Normal",
  27142. height: math.unit(9, "feet"),
  27143. default: true
  27144. },
  27145. ]
  27146. ))
  27147. characterMakers.push(() => makeCharacter(
  27148. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27149. {
  27150. front: {
  27151. height: math.unit(12, "feet"),
  27152. weight: math.unit(35000, "lb"),
  27153. name: "Front",
  27154. image: {
  27155. source: "./media/characters/p0tat0/front.svg",
  27156. extra: 1065 / 921,
  27157. bottom: 55.7 / 1121.25
  27158. }
  27159. },
  27160. },
  27161. [
  27162. {
  27163. name: "Normal",
  27164. height: math.unit(12, "feet"),
  27165. default: true
  27166. },
  27167. ]
  27168. ))
  27169. characterMakers.push(() => makeCharacter(
  27170. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27171. {
  27172. side: {
  27173. height: math.unit(6.5, "feet"),
  27174. weight: math.unit(800, "lb"),
  27175. name: "Side",
  27176. image: {
  27177. source: "./media/characters/dusk/side.svg",
  27178. extra: 615 / 373,
  27179. bottom: 53 / 664
  27180. }
  27181. },
  27182. sitting: {
  27183. height: math.unit(7, "feet"),
  27184. weight: math.unit(800, "lb"),
  27185. name: "Sitting",
  27186. image: {
  27187. source: "./media/characters/dusk/sitting.svg",
  27188. extra: 753 / 425,
  27189. bottom: 33 / 774
  27190. }
  27191. },
  27192. head: {
  27193. height: math.unit(6.1, "feet"),
  27194. name: "Head",
  27195. image: {
  27196. source: "./media/characters/dusk/head.svg"
  27197. }
  27198. },
  27199. },
  27200. [
  27201. {
  27202. name: "Normal",
  27203. height: math.unit(7, "feet"),
  27204. default: true
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27210. {
  27211. front: {
  27212. height: math.unit(15, "feet"),
  27213. weight: math.unit(7000, "lb"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/jay-direwolf/front.svg",
  27217. extra: 1810 / 1732,
  27218. bottom: 66 / 1892
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(15, "feet"),
  27226. default: true
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(4 + 9 / 12, "feet"),
  27235. weight: math.unit(130, "lb"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/anchovie/front.svg",
  27239. extra: 382 / 350,
  27240. bottom: 25 / 409
  27241. }
  27242. },
  27243. back: {
  27244. height: math.unit(4 + 9 / 12, "feet"),
  27245. weight: math.unit(130, "lb"),
  27246. name: "Back",
  27247. image: {
  27248. source: "./media/characters/anchovie/back.svg",
  27249. extra: 385 / 352,
  27250. bottom: 16.6 / 402
  27251. }
  27252. },
  27253. frontDressed: {
  27254. height: math.unit(4 + 9 / 12, "feet"),
  27255. weight: math.unit(130, "lb"),
  27256. name: "Front (Dressed)",
  27257. image: {
  27258. source: "./media/characters/anchovie/front-dressed.svg",
  27259. extra: 382 / 350,
  27260. bottom: 25 / 409
  27261. }
  27262. },
  27263. backDressed: {
  27264. height: math.unit(4 + 9 / 12, "feet"),
  27265. weight: math.unit(130, "lb"),
  27266. name: "Back (Dressed)",
  27267. image: {
  27268. source: "./media/characters/anchovie/back-dressed.svg",
  27269. extra: 385 / 352,
  27270. bottom: 16.6 / 402
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Micro",
  27277. height: math.unit(6.4, "inches")
  27278. },
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(4 + 9 / 12, "feet"),
  27282. default: true
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(2, "meters"),
  27291. weight: math.unit(180, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/acidrenamon/front.svg",
  27295. extra: 987 / 890,
  27296. bottom: 22.8 / 1009
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(2, "meters"),
  27301. weight: math.unit(180, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/acidrenamon/back.svg",
  27305. extra: 983 / 891,
  27306. bottom: 8.4 / 992
  27307. }
  27308. },
  27309. head: {
  27310. height: math.unit(1.92, "feet"),
  27311. name: "Head",
  27312. image: {
  27313. source: "./media/characters/acidrenamon/head.svg"
  27314. }
  27315. },
  27316. rump: {
  27317. height: math.unit(1.72, "feet"),
  27318. name: "Rump",
  27319. image: {
  27320. source: "./media/characters/acidrenamon/rump.svg"
  27321. }
  27322. },
  27323. tail: {
  27324. height: math.unit(4.2, "feet"),
  27325. name: "Tail",
  27326. image: {
  27327. source: "./media/characters/acidrenamon/tail.svg"
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Normal",
  27334. height: math.unit(2, "meters"),
  27335. default: true
  27336. },
  27337. {
  27338. name: "Minimacro",
  27339. height: math.unit(7, "meters")
  27340. },
  27341. {
  27342. name: "Macro",
  27343. height: math.unit(200, "meters")
  27344. },
  27345. {
  27346. name: "Gigamacro",
  27347. height: math.unit(0.2, "earths")
  27348. },
  27349. ]
  27350. ))
  27351. characterMakers.push(() => makeCharacter(
  27352. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27353. {
  27354. front: {
  27355. height: math.unit(6, "feet"),
  27356. weight: math.unit(150, "lb"),
  27357. name: "Front",
  27358. image: {
  27359. source: "./media/characters/kenzie-lee/front.svg",
  27360. extra: 1525 / 1465,
  27361. bottom: 45 / 1570
  27362. }
  27363. },
  27364. side: {
  27365. height: math.unit(6, "feet"),
  27366. weight: math.unit(150, "lb"),
  27367. name: "Side",
  27368. image: {
  27369. source: "./media/characters/kenzie-lee/side.svg",
  27370. extra: 5505 / 5383,
  27371. bottom: 60 / 5573
  27372. }
  27373. },
  27374. paw: {
  27375. height: math.unit(0.57, "feet"),
  27376. name: "Paw",
  27377. image: {
  27378. source: "./media/characters/kenzie-lee/paw.svg"
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "Normal",
  27385. height: math.unit(152, "feet"),
  27386. default: true
  27387. },
  27388. {
  27389. name: "Megamacro",
  27390. height: math.unit(7, "miles")
  27391. },
  27392. {
  27393. name: "Gigamacro",
  27394. height: math.unit(8000, "miles")
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27400. {
  27401. side: {
  27402. height: math.unit(6, "feet"),
  27403. weight: math.unit(150, "lb"),
  27404. name: "Side",
  27405. image: {
  27406. source: "./media/characters/withers/side.svg",
  27407. extra: 1830 / 1728,
  27408. bottom: 96 / 1927
  27409. }
  27410. },
  27411. front: {
  27412. height: math.unit(6, "feet"),
  27413. weight: math.unit(150, "lb"),
  27414. name: "Front",
  27415. image: {
  27416. source: "./media/characters/withers/front.svg",
  27417. extra: 1514 / 1438,
  27418. bottom: 118 / 1632
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Macro",
  27425. height: math.unit(168, "feet"),
  27426. default: true
  27427. },
  27428. {
  27429. name: "Megamacro",
  27430. height: math.unit(15, "miles")
  27431. }
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(6 + 7 / 12, "feet"),
  27439. weight: math.unit(250, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/nemoskii/front.svg",
  27443. extra: 2270 / 1734,
  27444. bottom: 86 / 2354
  27445. }
  27446. },
  27447. back: {
  27448. height: math.unit(6 + 7 / 12, "feet"),
  27449. weight: math.unit(250, "lb"),
  27450. name: "Back",
  27451. image: {
  27452. source: "./media/characters/nemoskii/back.svg",
  27453. extra: 1845 / 1788,
  27454. bottom: 10.5 / 1852
  27455. }
  27456. },
  27457. head: {
  27458. height: math.unit(1.31, "feet"),
  27459. name: "Head",
  27460. image: {
  27461. source: "./media/characters/nemoskii/head.svg"
  27462. }
  27463. },
  27464. },
  27465. [
  27466. {
  27467. name: "Micro",
  27468. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27469. },
  27470. {
  27471. name: "Normal",
  27472. height: math.unit(6 + 7 / 12, "feet"),
  27473. default: true
  27474. },
  27475. {
  27476. name: "Macro",
  27477. height: math.unit((6 + 7 / 12) * 150, "feet")
  27478. },
  27479. {
  27480. name: "Macro+",
  27481. height: math.unit((6 + 7 / 12) * 500, "feet")
  27482. },
  27483. {
  27484. name: "Megamacro",
  27485. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27486. },
  27487. ]
  27488. ))
  27489. characterMakers.push(() => makeCharacter(
  27490. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27491. {
  27492. front: {
  27493. height: math.unit(1, "mile"),
  27494. weight: math.unit(265261.9, "lb"),
  27495. name: "Front",
  27496. image: {
  27497. source: "./media/characters/shui/front.svg",
  27498. extra: 1633 / 1564,
  27499. bottom: 91.5 / 1726
  27500. }
  27501. },
  27502. },
  27503. [
  27504. {
  27505. name: "Macro",
  27506. height: math.unit(1, "mile"),
  27507. default: true
  27508. },
  27509. ]
  27510. ))
  27511. characterMakers.push(() => makeCharacter(
  27512. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27513. {
  27514. front: {
  27515. height: math.unit(12 + 6 / 12, "feet"),
  27516. weight: math.unit(1342, "lb"),
  27517. name: "Front",
  27518. image: {
  27519. source: "./media/characters/arokh-takakura/front.svg",
  27520. extra: 1089 / 1043,
  27521. bottom: 77.4 / 1176.7
  27522. }
  27523. },
  27524. back: {
  27525. height: math.unit(12 + 6 / 12, "feet"),
  27526. weight: math.unit(1342, "lb"),
  27527. name: "Back",
  27528. image: {
  27529. source: "./media/characters/arokh-takakura/back.svg",
  27530. extra: 1046 / 1019,
  27531. bottom: 102 / 1150
  27532. }
  27533. },
  27534. },
  27535. [
  27536. {
  27537. name: "Big",
  27538. height: math.unit(12 + 6 / 12, "feet"),
  27539. default: true
  27540. },
  27541. ]
  27542. ))
  27543. characterMakers.push(() => makeCharacter(
  27544. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27545. {
  27546. front: {
  27547. height: math.unit(5 + 6 / 12, "feet"),
  27548. weight: math.unit(150, "lb"),
  27549. name: "Front",
  27550. image: {
  27551. source: "./media/characters/theo/front.svg",
  27552. extra: 1184 / 1131,
  27553. bottom: 7.4 / 1191
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Micro",
  27560. height: math.unit(5, "inches")
  27561. },
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(5 + 6 / 12, "feet"),
  27565. default: true
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(5 + 9 / 12, "feet"),
  27574. weight: math.unit(130, "lb"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/cecelia-swift/front.svg",
  27578. extra: 502 / 484,
  27579. bottom: 23 / 523
  27580. }
  27581. },
  27582. back: {
  27583. height: math.unit(5 + 9 / 12, "feet"),
  27584. weight: math.unit(130, "lb"),
  27585. name: "Back",
  27586. image: {
  27587. source: "./media/characters/cecelia-swift/back.svg",
  27588. extra: 499 / 485,
  27589. bottom: 12 / 511
  27590. }
  27591. },
  27592. head: {
  27593. height: math.unit(0.90, "feet"),
  27594. name: "Head",
  27595. image: {
  27596. source: "./media/characters/cecelia-swift/head.svg"
  27597. }
  27598. },
  27599. rump: {
  27600. height: math.unit(1.75, "feet"),
  27601. name: "Rump",
  27602. image: {
  27603. source: "./media/characters/cecelia-swift/rump.svg"
  27604. }
  27605. },
  27606. },
  27607. [
  27608. {
  27609. name: "Normal",
  27610. height: math.unit(5 + 9 / 12, "feet"),
  27611. default: true
  27612. },
  27613. {
  27614. name: "Big",
  27615. height: math.unit(50, "feet")
  27616. },
  27617. {
  27618. name: "Macro",
  27619. height: math.unit(100, "feet")
  27620. },
  27621. {
  27622. name: "Macro+",
  27623. height: math.unit(500, "feet")
  27624. },
  27625. {
  27626. name: "Macro++",
  27627. height: math.unit(1000, "feet")
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27633. {
  27634. front: {
  27635. height: math.unit(6, "feet"),
  27636. weight: math.unit(150, "lb"),
  27637. name: "Front",
  27638. image: {
  27639. source: "./media/characters/kaunan/front.svg",
  27640. extra: 2890 / 2523,
  27641. bottom: 49 / 2939
  27642. }
  27643. },
  27644. },
  27645. [
  27646. {
  27647. name: "Macro",
  27648. height: math.unit(150, "feet"),
  27649. default: true
  27650. },
  27651. ]
  27652. ))
  27653. characterMakers.push(() => makeCharacter(
  27654. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27655. {
  27656. front: {
  27657. height: math.unit(175, "cm"),
  27658. weight: math.unit(60, "kg"),
  27659. name: "Front",
  27660. image: {
  27661. source: "./media/characters/fei/front.svg",
  27662. extra: 1873/1723,
  27663. bottom: 53/1926
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Mortal",
  27670. height: math.unit(175, "cm")
  27671. },
  27672. {
  27673. name: "Normal",
  27674. height: math.unit(3500, "m"),
  27675. default: true
  27676. },
  27677. {
  27678. name: "Stroll",
  27679. height: math.unit(17.5, "km")
  27680. },
  27681. {
  27682. name: "Showoff",
  27683. height: math.unit(175, "km")
  27684. },
  27685. ]
  27686. ))
  27687. characterMakers.push(() => makeCharacter(
  27688. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27689. {
  27690. front: {
  27691. height: math.unit(7, "feet"),
  27692. weight: math.unit(1000, "kg"),
  27693. name: "Front",
  27694. image: {
  27695. source: "./media/characters/edrax/front.svg",
  27696. extra: 2838 / 2550,
  27697. bottom: 130 / 2968
  27698. }
  27699. },
  27700. },
  27701. [
  27702. {
  27703. name: "Small",
  27704. height: math.unit(7, "feet")
  27705. },
  27706. {
  27707. name: "Normal",
  27708. height: math.unit(1500, "meters")
  27709. },
  27710. {
  27711. name: "Mega",
  27712. height: math.unit(12000000, "km"),
  27713. default: true
  27714. },
  27715. {
  27716. name: "Megamacro",
  27717. height: math.unit(10600000, "lightyears")
  27718. },
  27719. {
  27720. name: "Hypermacro",
  27721. height: math.unit(256, "yottameters")
  27722. },
  27723. ]
  27724. ))
  27725. characterMakers.push(() => makeCharacter(
  27726. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27727. {
  27728. front: {
  27729. height: math.unit(10, "feet"),
  27730. weight: math.unit(750, "lb"),
  27731. name: "Front",
  27732. image: {
  27733. source: "./media/characters/clove/front.svg",
  27734. extra: 2031 / 1860,
  27735. bottom: 47.8 / 2080
  27736. }
  27737. },
  27738. back: {
  27739. height: math.unit(10, "feet"),
  27740. weight: math.unit(750, "lb"),
  27741. name: "Back",
  27742. image: {
  27743. source: "./media/characters/clove/back.svg",
  27744. extra: 2025 / 1859,
  27745. bottom: 46 / 2071
  27746. }
  27747. },
  27748. },
  27749. [
  27750. {
  27751. name: "Normal",
  27752. height: math.unit(10, "feet"),
  27753. default: true
  27754. },
  27755. ]
  27756. ))
  27757. characterMakers.push(() => makeCharacter(
  27758. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27759. {
  27760. front: {
  27761. height: math.unit(4, "feet"),
  27762. weight: math.unit(50, "lb"),
  27763. name: "Front",
  27764. image: {
  27765. source: "./media/characters/alex-rabbit/front.svg",
  27766. extra: 507 / 458,
  27767. bottom: 18.5 / 527
  27768. }
  27769. },
  27770. back: {
  27771. height: math.unit(4, "feet"),
  27772. weight: math.unit(50, "lb"),
  27773. name: "Back",
  27774. image: {
  27775. source: "./media/characters/alex-rabbit/back.svg",
  27776. extra: 502 / 460,
  27777. bottom: 18.9 / 521
  27778. }
  27779. },
  27780. },
  27781. [
  27782. {
  27783. name: "Normal",
  27784. height: math.unit(4, "feet"),
  27785. default: true
  27786. },
  27787. ]
  27788. ))
  27789. characterMakers.push(() => makeCharacter(
  27790. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27791. {
  27792. front: {
  27793. height: math.unit(1 + 3 / 12, "feet"),
  27794. weight: math.unit(80, "lb"),
  27795. name: "Front",
  27796. image: {
  27797. source: "./media/characters/zander-rose/front.svg",
  27798. extra: 916 / 797,
  27799. bottom: 17 / 933
  27800. }
  27801. },
  27802. back: {
  27803. height: math.unit(1 + 3 / 12, "feet"),
  27804. weight: math.unit(80, "lb"),
  27805. name: "Back",
  27806. image: {
  27807. source: "./media/characters/zander-rose/back.svg",
  27808. extra: 903 / 779,
  27809. bottom: 31 / 934
  27810. }
  27811. },
  27812. },
  27813. [
  27814. {
  27815. name: "Normal",
  27816. height: math.unit(1 + 3 / 12, "feet"),
  27817. default: true
  27818. },
  27819. ]
  27820. ))
  27821. characterMakers.push(() => makeCharacter(
  27822. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27823. {
  27824. anthro: {
  27825. height: math.unit(6, "feet"),
  27826. weight: math.unit(150, "lb"),
  27827. name: "Anthro",
  27828. image: {
  27829. source: "./media/characters/razz/anthro.svg",
  27830. extra: 1437 / 1343,
  27831. bottom: 48 / 1485
  27832. }
  27833. },
  27834. feral: {
  27835. height: math.unit(6, "feet"),
  27836. weight: math.unit(150, "lb"),
  27837. name: "Feral",
  27838. image: {
  27839. source: "./media/characters/razz/feral.svg",
  27840. extra: 2569 / 1385,
  27841. bottom: 95 / 2664
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(6, "feet"),
  27849. default: true
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(9 + 4 / 12, "feet"),
  27858. weight: math.unit(500, "lb"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/morrigan/front.svg",
  27862. extra: 2707 / 2579,
  27863. bottom: 156 / 2863
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Normal",
  27870. height: math.unit(9 + 4 / 12, "feet"),
  27871. default: true
  27872. },
  27873. ]
  27874. ))
  27875. characterMakers.push(() => makeCharacter(
  27876. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27877. {
  27878. front: {
  27879. height: math.unit(5, "stories"),
  27880. weight: math.unit(4000, "lb"),
  27881. name: "Front",
  27882. image: {
  27883. source: "./media/characters/jenene/front.svg",
  27884. extra: 1780 / 1710,
  27885. bottom: 57 / 1837
  27886. }
  27887. },
  27888. },
  27889. [
  27890. {
  27891. name: "Normal",
  27892. height: math.unit(5, "stories"),
  27893. default: true
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27899. {
  27900. taurSfw: {
  27901. height: math.unit(10, "meters"),
  27902. weight: math.unit(17500, "kg"),
  27903. name: "Taur",
  27904. image: {
  27905. source: "./media/characters/faey/taur-sfw.svg",
  27906. extra: 1200 / 968,
  27907. bottom: 41 / 1241
  27908. }
  27909. },
  27910. chestmaw: {
  27911. height: math.unit(2.01, "meters"),
  27912. name: "Chestmaw",
  27913. image: {
  27914. source: "./media/characters/faey/chestmaw.svg"
  27915. }
  27916. },
  27917. foot: {
  27918. height: math.unit(2.43, "meters"),
  27919. name: "Foot",
  27920. image: {
  27921. source: "./media/characters/faey/foot.svg"
  27922. }
  27923. },
  27924. jaws: {
  27925. height: math.unit(1.66, "meters"),
  27926. name: "Jaws",
  27927. image: {
  27928. source: "./media/characters/faey/jaws.svg"
  27929. }
  27930. },
  27931. tongues: {
  27932. height: math.unit(2.01, "meters"),
  27933. name: "Tongues",
  27934. image: {
  27935. source: "./media/characters/faey/tongues.svg"
  27936. }
  27937. },
  27938. },
  27939. [
  27940. {
  27941. name: "Small",
  27942. height: math.unit(10, "meters"),
  27943. default: true
  27944. },
  27945. {
  27946. name: "Big",
  27947. height: math.unit(500000, "km")
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27953. {
  27954. front: {
  27955. height: math.unit(7, "feet"),
  27956. weight: math.unit(275, "lb"),
  27957. name: "Front",
  27958. image: {
  27959. source: "./media/characters/roku/front.svg",
  27960. extra: 903 / 878,
  27961. bottom: 37 / 940
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(7, "feet"),
  27969. default: true
  27970. },
  27971. {
  27972. name: "Macro",
  27973. height: math.unit(500, "feet")
  27974. },
  27975. {
  27976. name: "Megamacro",
  27977. height: math.unit(200, "miles")
  27978. },
  27979. ]
  27980. ))
  27981. characterMakers.push(() => makeCharacter(
  27982. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27983. {
  27984. front: {
  27985. height: math.unit(6 + 2 / 12, "feet"),
  27986. weight: math.unit(150, "lb"),
  27987. name: "Front",
  27988. image: {
  27989. source: "./media/characters/lira/front.svg",
  27990. extra: 1727 / 1605,
  27991. bottom: 26 / 1753
  27992. }
  27993. },
  27994. back: {
  27995. height: math.unit(6 + 2 / 12, "feet"),
  27996. weight: math.unit(150, "lb"),
  27997. name: "Back",
  27998. image: {
  27999. source: "./media/characters/lira/back.svg",
  28000. extra: 1713/1621,
  28001. bottom: 20/1733
  28002. }
  28003. },
  28004. hand: {
  28005. height: math.unit(0.75, "feet"),
  28006. name: "Hand",
  28007. image: {
  28008. source: "./media/characters/lira/hand.svg"
  28009. }
  28010. },
  28011. maw: {
  28012. height: math.unit(0.65, "feet"),
  28013. name: "Maw",
  28014. image: {
  28015. source: "./media/characters/lira/maw.svg"
  28016. }
  28017. },
  28018. pawDigi: {
  28019. height: math.unit(1.6, "feet"),
  28020. name: "Paw Digi",
  28021. image: {
  28022. source: "./media/characters/lira/paw-digi.svg"
  28023. }
  28024. },
  28025. pawPlanti: {
  28026. height: math.unit(1.4, "feet"),
  28027. name: "Paw Planti",
  28028. image: {
  28029. source: "./media/characters/lira/paw-planti.svg"
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Normal",
  28036. height: math.unit(6 + 2 / 12, "feet"),
  28037. default: true
  28038. },
  28039. {
  28040. name: "Macro",
  28041. height: math.unit(100, "feet")
  28042. },
  28043. {
  28044. name: "Macro²",
  28045. height: math.unit(1600, "feet")
  28046. },
  28047. {
  28048. name: "Planetary",
  28049. height: math.unit(20, "earths")
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28055. {
  28056. front: {
  28057. height: math.unit(6, "feet"),
  28058. weight: math.unit(150, "lb"),
  28059. name: "Front",
  28060. image: {
  28061. source: "./media/characters/hadjet/front.svg",
  28062. extra: 1480 / 1346,
  28063. bottom: 26 / 1506
  28064. }
  28065. },
  28066. frontNsfw: {
  28067. height: math.unit(6, "feet"),
  28068. weight: math.unit(150, "lb"),
  28069. name: "Front (NSFW)",
  28070. image: {
  28071. source: "./media/characters/hadjet/front-nsfw.svg",
  28072. extra: 1440 / 1358,
  28073. bottom: 52 / 1492
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Macro",
  28080. height: math.unit(10, "stories"),
  28081. default: true
  28082. },
  28083. {
  28084. name: "Megamacro",
  28085. height: math.unit(1.5, "miles")
  28086. },
  28087. {
  28088. name: "Megamacro+",
  28089. height: math.unit(5, "miles")
  28090. },
  28091. ]
  28092. ))
  28093. characterMakers.push(() => makeCharacter(
  28094. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28095. {
  28096. side: {
  28097. height: math.unit(106, "feet"),
  28098. weight: math.unit(500, "tonnes"),
  28099. name: "Side",
  28100. image: {
  28101. source: "./media/characters/kodran/side.svg",
  28102. extra: 553 / 480,
  28103. bottom: 33 / 586
  28104. }
  28105. },
  28106. front: {
  28107. height: math.unit(132, "feet"),
  28108. weight: math.unit(500, "tonnes"),
  28109. name: "Front",
  28110. image: {
  28111. source: "./media/characters/kodran/front.svg",
  28112. extra: 667 / 643,
  28113. bottom: 42 / 709
  28114. }
  28115. },
  28116. flying: {
  28117. height: math.unit(350, "feet"),
  28118. weight: math.unit(500, "tonnes"),
  28119. name: "Flying",
  28120. image: {
  28121. source: "./media/characters/kodran/flying.svg"
  28122. }
  28123. },
  28124. foot: {
  28125. height: math.unit(33, "feet"),
  28126. name: "Foot",
  28127. image: {
  28128. source: "./media/characters/kodran/foot.svg"
  28129. }
  28130. },
  28131. footFront: {
  28132. height: math.unit(19, "feet"),
  28133. name: "Foot (Front)",
  28134. image: {
  28135. source: "./media/characters/kodran/foot-front.svg",
  28136. extra: 261 / 261,
  28137. bottom: 91 / 352
  28138. }
  28139. },
  28140. headFront: {
  28141. height: math.unit(53, "feet"),
  28142. name: "Head (Front)",
  28143. image: {
  28144. source: "./media/characters/kodran/head-front.svg"
  28145. }
  28146. },
  28147. headSide: {
  28148. height: math.unit(65, "feet"),
  28149. name: "Head (Side)",
  28150. image: {
  28151. source: "./media/characters/kodran/head-side.svg"
  28152. }
  28153. },
  28154. throat: {
  28155. height: math.unit(79, "feet"),
  28156. name: "Throat",
  28157. image: {
  28158. source: "./media/characters/kodran/throat.svg"
  28159. }
  28160. },
  28161. },
  28162. [
  28163. {
  28164. name: "Large",
  28165. height: math.unit(106, "feet"),
  28166. default: true
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28172. {
  28173. side: {
  28174. height: math.unit(11, "feet"),
  28175. weight: math.unit(150, "lb"),
  28176. name: "Side",
  28177. image: {
  28178. source: "./media/characters/pyxaron/side.svg",
  28179. extra: 305 / 195,
  28180. bottom: 17 / 322
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(11, "feet"),
  28188. default: true
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28194. {
  28195. front: {
  28196. height: math.unit(6, "feet"),
  28197. weight: math.unit(150, "lb"),
  28198. name: "Front",
  28199. image: {
  28200. source: "./media/characters/meep/front.svg",
  28201. extra: 88 / 80,
  28202. bottom: 6 / 94
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Fun Sized",
  28209. height: math.unit(2, "inches"),
  28210. default: true
  28211. },
  28212. {
  28213. name: "Friend Sized",
  28214. height: math.unit(8, "inches")
  28215. },
  28216. ]
  28217. ))
  28218. characterMakers.push(() => makeCharacter(
  28219. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28220. {
  28221. front: {
  28222. height: math.unit(15, "feet"),
  28223. weight: math.unit(2500, "lb"),
  28224. name: "Front",
  28225. image: {
  28226. source: "./media/characters/holly-rabbit/front.svg",
  28227. extra: 1433 / 1233,
  28228. bottom: 125 / 1558
  28229. }
  28230. },
  28231. dick: {
  28232. height: math.unit(4.6, "feet"),
  28233. name: "Dick",
  28234. image: {
  28235. source: "./media/characters/holly-rabbit/dick.svg"
  28236. }
  28237. },
  28238. },
  28239. [
  28240. {
  28241. name: "Normal",
  28242. height: math.unit(15, "feet"),
  28243. default: true
  28244. },
  28245. {
  28246. name: "Macro",
  28247. height: math.unit(250, "feet")
  28248. },
  28249. {
  28250. name: "Macro+",
  28251. height: math.unit(2500, "feet")
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(3.02, "meters"),
  28260. weight: math.unit(500, "kg"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/drena/front.svg",
  28264. extra: 282 / 243,
  28265. bottom: 8 / 290
  28266. }
  28267. },
  28268. side: {
  28269. height: math.unit(3.02, "meters"),
  28270. weight: math.unit(500, "kg"),
  28271. name: "Side",
  28272. image: {
  28273. source: "./media/characters/drena/side.svg",
  28274. extra: 280 / 245,
  28275. bottom: 10 / 290
  28276. }
  28277. },
  28278. back: {
  28279. height: math.unit(3.02, "meters"),
  28280. weight: math.unit(500, "kg"),
  28281. name: "Back",
  28282. image: {
  28283. source: "./media/characters/drena/back.svg",
  28284. extra: 278 / 243,
  28285. bottom: 2 / 280
  28286. }
  28287. },
  28288. foot: {
  28289. height: math.unit(0.75, "meters"),
  28290. name: "Foot",
  28291. image: {
  28292. source: "./media/characters/drena/foot.svg"
  28293. }
  28294. },
  28295. maw: {
  28296. height: math.unit(0.82, "meters"),
  28297. name: "Maw",
  28298. image: {
  28299. source: "./media/characters/drena/maw.svg"
  28300. }
  28301. },
  28302. rump: {
  28303. height: math.unit(0.93, "meters"),
  28304. name: "Rump",
  28305. image: {
  28306. source: "./media/characters/drena/rump.svg"
  28307. }
  28308. },
  28309. },
  28310. [
  28311. {
  28312. name: "Normal",
  28313. height: math.unit(3.02, "meters"),
  28314. default: true
  28315. },
  28316. ]
  28317. ))
  28318. characterMakers.push(() => makeCharacter(
  28319. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28320. {
  28321. front: {
  28322. height: math.unit(6 + 4 / 12, "feet"),
  28323. weight: math.unit(250, "lb"),
  28324. name: "Front",
  28325. image: {
  28326. source: "./media/characters/remmyzilla/front.svg",
  28327. extra: 4033 / 3588,
  28328. bottom: 123 / 4156
  28329. }
  28330. },
  28331. back: {
  28332. height: math.unit(6 + 4 / 12, "feet"),
  28333. weight: math.unit(250, "lb"),
  28334. name: "Back",
  28335. image: {
  28336. source: "./media/characters/remmyzilla/back.svg",
  28337. extra: 2687 / 2555,
  28338. bottom: 48 / 2735
  28339. }
  28340. },
  28341. paw: {
  28342. height: math.unit(1.73, "feet"),
  28343. name: "Paw",
  28344. image: {
  28345. source: "./media/characters/remmyzilla/paw.svg"
  28346. }
  28347. },
  28348. maw: {
  28349. height: math.unit(1.73, "feet"),
  28350. name: "Maw",
  28351. image: {
  28352. source: "./media/characters/remmyzilla/maw.svg"
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(6 + 4 / 12, "feet")
  28360. },
  28361. {
  28362. name: "Minimacro",
  28363. height: math.unit(12 + 8 / 12, "feet")
  28364. },
  28365. {
  28366. name: "Normal",
  28367. height: math.unit(640, "feet"),
  28368. default: true
  28369. },
  28370. {
  28371. name: "Megamacro",
  28372. height: math.unit(6400, "feet")
  28373. },
  28374. {
  28375. name: "Gigamacro",
  28376. height: math.unit(64000, "miles")
  28377. },
  28378. ]
  28379. ))
  28380. characterMakers.push(() => makeCharacter(
  28381. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28382. {
  28383. front: {
  28384. height: math.unit(2.5, "meters"),
  28385. weight: math.unit(300, "lb"),
  28386. name: "Front",
  28387. image: {
  28388. source: "./media/characters/lawrence/front.svg",
  28389. extra: 357 / 335,
  28390. bottom: 30 / 387
  28391. }
  28392. },
  28393. back: {
  28394. height: math.unit(2.5, "meters"),
  28395. weight: math.unit(300, "lb"),
  28396. name: "Back",
  28397. image: {
  28398. source: "./media/characters/lawrence/back.svg",
  28399. extra: 357 / 338,
  28400. bottom: 16 / 373
  28401. }
  28402. },
  28403. head: {
  28404. height: math.unit(0.9, "meter"),
  28405. name: "Head",
  28406. image: {
  28407. source: "./media/characters/lawrence/head.svg"
  28408. }
  28409. },
  28410. maw: {
  28411. height: math.unit(0.7, "meter"),
  28412. name: "Maw",
  28413. image: {
  28414. source: "./media/characters/lawrence/maw.svg"
  28415. }
  28416. },
  28417. footBottom: {
  28418. height: math.unit(0.5, "meter"),
  28419. name: "Foot (Bottom)",
  28420. image: {
  28421. source: "./media/characters/lawrence/foot-bottom.svg"
  28422. }
  28423. },
  28424. footTop: {
  28425. height: math.unit(0.5, "meter"),
  28426. name: "Foot (Top)",
  28427. image: {
  28428. source: "./media/characters/lawrence/foot-top.svg"
  28429. }
  28430. },
  28431. },
  28432. [
  28433. {
  28434. name: "Normal",
  28435. height: math.unit(2.5, "meters"),
  28436. default: true
  28437. },
  28438. {
  28439. name: "Macro",
  28440. height: math.unit(95, "meters")
  28441. },
  28442. {
  28443. name: "Megamacro",
  28444. height: math.unit(150, "km")
  28445. },
  28446. ]
  28447. ))
  28448. characterMakers.push(() => makeCharacter(
  28449. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28450. {
  28451. front: {
  28452. height: math.unit(4.2, "meters"),
  28453. name: "Front",
  28454. image: {
  28455. source: "./media/characters/sydney/front.svg",
  28456. extra: 1323 / 1277,
  28457. bottom: 111 / 1434
  28458. }
  28459. },
  28460. },
  28461. [
  28462. {
  28463. name: "Normal",
  28464. height: math.unit(4.2, "meters"),
  28465. default: true
  28466. },
  28467. ]
  28468. ))
  28469. characterMakers.push(() => makeCharacter(
  28470. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28471. {
  28472. back: {
  28473. height: math.unit(201, "feet"),
  28474. name: "Back",
  28475. image: {
  28476. source: "./media/characters/jessica/back.svg",
  28477. extra: 273 / 259,
  28478. bottom: 7 / 280
  28479. }
  28480. },
  28481. },
  28482. [
  28483. {
  28484. name: "Normal",
  28485. height: math.unit(201, "feet"),
  28486. default: true
  28487. },
  28488. {
  28489. name: "Megamacro",
  28490. height: math.unit(8, "miles")
  28491. },
  28492. ]
  28493. ))
  28494. characterMakers.push(() => makeCharacter(
  28495. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28496. {
  28497. side: {
  28498. height: math.unit(320, "cm"),
  28499. name: "Side",
  28500. image: {
  28501. source: "./media/characters/victoria/side.svg",
  28502. extra: 778 / 346,
  28503. bottom: 56 / 834
  28504. }
  28505. },
  28506. maw: {
  28507. height: math.unit(5.9, "feet"),
  28508. name: "Maw",
  28509. image: {
  28510. source: "./media/characters/victoria/maw.svg"
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Normal",
  28517. height: math.unit(320, "cm"),
  28518. default: true
  28519. },
  28520. ]
  28521. ))
  28522. characterMakers.push(() => makeCharacter(
  28523. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28524. {
  28525. front: {
  28526. height: math.unit(5 + 6 / 12, "feet"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/cat/front.svg",
  28530. extra: 1449/1295,
  28531. bottom: 34/1483
  28532. }
  28533. },
  28534. back: {
  28535. height: math.unit(5 + 6 / 12, "feet"),
  28536. name: "Back",
  28537. image: {
  28538. source: "./media/characters/cat/back.svg",
  28539. extra: 1466/1301,
  28540. bottom: 19/1485
  28541. }
  28542. },
  28543. taur: {
  28544. height: math.unit(7, "feet"),
  28545. name: "Taur",
  28546. image: {
  28547. source: "./media/characters/cat/taur.svg",
  28548. extra: 1389/1233,
  28549. bottom: 83/1472
  28550. }
  28551. },
  28552. lucarioFront: {
  28553. height: math.unit(4, "feet"),
  28554. name: "Lucario (Front)",
  28555. image: {
  28556. source: "./media/characters/cat/lucario-front.svg",
  28557. extra: 1149/1019,
  28558. bottom: 84/1233
  28559. }
  28560. },
  28561. lucarioBack: {
  28562. height: math.unit(4, "feet"),
  28563. name: "Lucario (Back)",
  28564. image: {
  28565. source: "./media/characters/cat/lucario-back.svg",
  28566. extra: 1190/1059,
  28567. bottom: 33/1223
  28568. }
  28569. },
  28570. megaLucario: {
  28571. height: math.unit(4, "feet"),
  28572. name: "Mega Lucario",
  28573. image: {
  28574. source: "./media/characters/cat/mega-lucario.svg",
  28575. extra: 1515 / 1319,
  28576. bottom: 63 / 1578
  28577. }
  28578. },
  28579. nickit: {
  28580. height: math.unit(2, "feet"),
  28581. name: "Nickit",
  28582. image: {
  28583. source: "./media/characters/cat/nickit.svg",
  28584. extra: 1980 / 1585,
  28585. bottom: 102 / 2082
  28586. }
  28587. },
  28588. lopunnyFront: {
  28589. height: math.unit(5, "feet"),
  28590. name: "Lopunny (Front)",
  28591. image: {
  28592. source: "./media/characters/cat/lopunny-front.svg",
  28593. extra: 1782 / 1469,
  28594. bottom: 38 / 1820
  28595. }
  28596. },
  28597. lopunnyBack: {
  28598. height: math.unit(5, "feet"),
  28599. name: "Lopunny (Back)",
  28600. image: {
  28601. source: "./media/characters/cat/lopunny-back.svg",
  28602. extra: 1660 / 1490,
  28603. bottom: 25 / 1685
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Really small",
  28610. height: math.unit(1, "nm")
  28611. },
  28612. {
  28613. name: "Micro",
  28614. height: math.unit(5, "inches")
  28615. },
  28616. {
  28617. name: "Normal",
  28618. height: math.unit(5 + 6 / 12, "feet"),
  28619. default: true
  28620. },
  28621. {
  28622. name: "Macro",
  28623. height: math.unit(50, "feet")
  28624. },
  28625. {
  28626. name: "Macro+",
  28627. height: math.unit(150, "feet")
  28628. },
  28629. {
  28630. name: "Megamacro",
  28631. height: math.unit(100, "miles")
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28637. {
  28638. front: {
  28639. height: math.unit(63.4, "meters"),
  28640. weight: math.unit(3.28349e+6, "kilograms"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/kirina-violet/front.svg",
  28644. extra: 2812 / 2725,
  28645. bottom: 0 / 2812
  28646. }
  28647. },
  28648. back: {
  28649. height: math.unit(63.4, "meters"),
  28650. weight: math.unit(3.28349e+6, "kilograms"),
  28651. name: "Back",
  28652. image: {
  28653. source: "./media/characters/kirina-violet/back.svg",
  28654. extra: 2812 / 2725,
  28655. bottom: 0 / 2812
  28656. }
  28657. },
  28658. mouth: {
  28659. height: math.unit(4.35, "meters"),
  28660. name: "Mouth",
  28661. image: {
  28662. source: "./media/characters/kirina-violet/mouth.svg"
  28663. }
  28664. },
  28665. paw: {
  28666. height: math.unit(5.6, "meters"),
  28667. name: "Paw",
  28668. image: {
  28669. source: "./media/characters/kirina-violet/paw.svg"
  28670. }
  28671. },
  28672. tail: {
  28673. height: math.unit(18, "meters"),
  28674. name: "Tail",
  28675. image: {
  28676. source: "./media/characters/kirina-violet/tail.svg"
  28677. }
  28678. },
  28679. },
  28680. [
  28681. {
  28682. name: "Macro",
  28683. height: math.unit(63.4, "meters"),
  28684. default: true
  28685. },
  28686. ]
  28687. ))
  28688. characterMakers.push(() => makeCharacter(
  28689. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28690. {
  28691. front: {
  28692. height: math.unit(75, "feet"),
  28693. name: "Front",
  28694. image: {
  28695. source: "./media/characters/cat-gigachu/front.svg",
  28696. extra: 1239/1027,
  28697. bottom: 32/1271
  28698. }
  28699. },
  28700. back: {
  28701. height: math.unit(75, "feet"),
  28702. name: "Back",
  28703. image: {
  28704. source: "./media/characters/cat-gigachu/back.svg",
  28705. extra: 1229/1030,
  28706. bottom: 9/1238
  28707. }
  28708. },
  28709. },
  28710. [
  28711. {
  28712. name: "Dynamax",
  28713. height: math.unit(75, "feet"),
  28714. default: true
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(6, "feet"),
  28723. weight: math.unit(150, "lb"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/sfaiyan/front.svg",
  28727. extra: 999 / 978,
  28728. bottom: 5 / 1004
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Normal",
  28735. height: math.unit(1.82, "meters")
  28736. },
  28737. {
  28738. name: "Giant",
  28739. height: math.unit(2.27, "km"),
  28740. default: true
  28741. },
  28742. ]
  28743. ))
  28744. characterMakers.push(() => makeCharacter(
  28745. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28746. {
  28747. front: {
  28748. height: math.unit(179, "cm"),
  28749. weight: math.unit(100, "kg"),
  28750. name: "Front",
  28751. image: {
  28752. source: "./media/characters/raunehkeli/front.svg",
  28753. extra: 1934 / 1926,
  28754. bottom: 0 / 1934
  28755. }
  28756. },
  28757. },
  28758. [
  28759. {
  28760. name: "Normal",
  28761. height: math.unit(179, "cm")
  28762. },
  28763. {
  28764. name: "Maximum",
  28765. height: math.unit(575, "meters"),
  28766. default: true
  28767. },
  28768. ]
  28769. ))
  28770. characterMakers.push(() => makeCharacter(
  28771. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28772. {
  28773. front: {
  28774. height: math.unit(6, "feet"),
  28775. weight: math.unit(150, "lb"),
  28776. name: "Front",
  28777. image: {
  28778. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28779. extra: 2625 / 2518,
  28780. bottom: 60 / 2685
  28781. }
  28782. },
  28783. },
  28784. [
  28785. {
  28786. name: "Normal",
  28787. height: math.unit(6 + 2 / 12, "feet")
  28788. },
  28789. {
  28790. name: "Macro",
  28791. height: math.unit(1180, "feet"),
  28792. default: true
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(5 + 6 / 12, "feet"),
  28801. weight: math.unit(108, "lb"),
  28802. name: "Front",
  28803. image: {
  28804. source: "./media/characters/lilith-zott/front.svg",
  28805. extra: 2510 / 2238,
  28806. bottom: 100 / 2610
  28807. }
  28808. },
  28809. frontDressed: {
  28810. height: math.unit(5 + 6 / 12, "feet"),
  28811. weight: math.unit(108, "lb"),
  28812. name: "Front (Dressed)",
  28813. image: {
  28814. source: "./media/characters/lilith-zott/front-dressed.svg",
  28815. extra: 2510 / 2238,
  28816. bottom: 100 / 2610
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Normal",
  28823. height: math.unit(5 + 6 / 12, "feet")
  28824. },
  28825. {
  28826. name: "Macro",
  28827. height: math.unit(1030, "feet"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28834. {
  28835. front: {
  28836. height: math.unit(6, "feet"),
  28837. weight: math.unit(150, "lb"),
  28838. name: "Front",
  28839. image: {
  28840. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28841. extra: 2567 / 2435,
  28842. bottom: 39 / 2606
  28843. }
  28844. },
  28845. frontSuper: {
  28846. height: math.unit(6, "feet"),
  28847. name: "Front (Super)",
  28848. image: {
  28849. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28850. extra: 2567 / 2435,
  28851. bottom: 39 / 2606
  28852. }
  28853. },
  28854. },
  28855. [
  28856. {
  28857. name: "Normal",
  28858. height: math.unit(5 + 10 / 12, "feet")
  28859. },
  28860. {
  28861. name: "Macro",
  28862. height: math.unit(1100, "feet"),
  28863. default: true
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28869. {
  28870. front: {
  28871. height: math.unit(100, "miles"),
  28872. name: "Front",
  28873. image: {
  28874. source: "./media/characters/sona/front.svg",
  28875. extra: 2433 / 2201,
  28876. bottom: 53 / 2486
  28877. }
  28878. },
  28879. foot: {
  28880. height: math.unit(16.1, "miles"),
  28881. name: "Foot",
  28882. image: {
  28883. source: "./media/characters/sona/foot.svg"
  28884. }
  28885. },
  28886. },
  28887. [
  28888. {
  28889. name: "Macro",
  28890. height: math.unit(100, "miles"),
  28891. default: true
  28892. },
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28897. {
  28898. front: {
  28899. height: math.unit(6, "feet"),
  28900. weight: math.unit(150, "lb"),
  28901. name: "Front",
  28902. image: {
  28903. source: "./media/characters/bailey/front.svg",
  28904. extra: 1778 / 1724,
  28905. bottom: 30 / 1808
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Micro",
  28912. height: math.unit(4, "inches")
  28913. },
  28914. {
  28915. name: "Normal",
  28916. height: math.unit(5 + 5 / 12, "feet"),
  28917. default: true
  28918. },
  28919. {
  28920. name: "Macro",
  28921. height: math.unit(250, "feet")
  28922. },
  28923. {
  28924. name: "Megamacro",
  28925. height: math.unit(100, "miles")
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(5 + 2 / 12, "feet"),
  28934. weight: math.unit(120, "lb"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/snaps/front.svg",
  28938. extra: 2370 / 2177,
  28939. bottom: 48 / 2418
  28940. }
  28941. },
  28942. back: {
  28943. height: math.unit(5 + 2 / 12, "feet"),
  28944. weight: math.unit(120, "lb"),
  28945. name: "Back",
  28946. image: {
  28947. source: "./media/characters/snaps/back.svg",
  28948. extra: 2408 / 2258,
  28949. bottom: 15 / 2423
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Micro",
  28956. height: math.unit(9, "inches")
  28957. },
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(5 + 2 / 12, "feet"),
  28961. default: true
  28962. },
  28963. {
  28964. name: "Mini Macro",
  28965. height: math.unit(10, "feet")
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28971. {
  28972. front: {
  28973. height: math.unit(1.8, "meters"),
  28974. weight: math.unit(85, "kg"),
  28975. name: "Front",
  28976. image: {
  28977. source: "./media/characters/azteck/front.svg",
  28978. extra: 2815 / 2625,
  28979. bottom: 89 / 2904
  28980. }
  28981. },
  28982. back: {
  28983. height: math.unit(1.8, "meters"),
  28984. weight: math.unit(85, "kg"),
  28985. name: "Back",
  28986. image: {
  28987. source: "./media/characters/azteck/back.svg",
  28988. extra: 2856 / 2648,
  28989. bottom: 85 / 2941
  28990. }
  28991. },
  28992. frontDressed: {
  28993. height: math.unit(1.8, "meters"),
  28994. weight: math.unit(85, "kg"),
  28995. name: "Front (Dressed)",
  28996. image: {
  28997. source: "./media/characters/azteck/front-dressed.svg",
  28998. extra: 2147 / 2003,
  28999. bottom: 68 / 2215
  29000. }
  29001. },
  29002. head: {
  29003. height: math.unit(0.47, "meters"),
  29004. weight: math.unit(85, "kg"),
  29005. name: "Head",
  29006. image: {
  29007. source: "./media/characters/azteck/head.svg"
  29008. }
  29009. },
  29010. },
  29011. [
  29012. {
  29013. name: "Bite sized",
  29014. height: math.unit(16, "cm")
  29015. },
  29016. {
  29017. name: "Normal",
  29018. height: math.unit(1.8, "meters"),
  29019. default: true
  29020. },
  29021. ]
  29022. ))
  29023. characterMakers.push(() => makeCharacter(
  29024. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29025. {
  29026. front: {
  29027. height: math.unit(6, "feet"),
  29028. weight: math.unit(150, "lb"),
  29029. name: "Front",
  29030. image: {
  29031. source: "./media/characters/pidge/front.svg",
  29032. extra: 620 / 588,
  29033. bottom: 9 / 629
  29034. }
  29035. },
  29036. back: {
  29037. height: math.unit(6, "feet"),
  29038. weight: math.unit(150, "lb"),
  29039. name: "Back",
  29040. image: {
  29041. source: "./media/characters/pidge/back.svg",
  29042. extra: 620 / 588,
  29043. bottom: 9 / 629
  29044. }
  29045. },
  29046. },
  29047. [
  29048. {
  29049. name: "Macro",
  29050. height: math.unit(1, "mile"),
  29051. default: true
  29052. },
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29057. {
  29058. front: {
  29059. height: math.unit(6, "feet"),
  29060. weight: math.unit(150, "lb"),
  29061. name: "Front",
  29062. image: {
  29063. source: "./media/characters/en/front.svg",
  29064. extra: 1697 / 1563,
  29065. bottom: 103 / 1800
  29066. }
  29067. },
  29068. back: {
  29069. height: math.unit(6, "feet"),
  29070. weight: math.unit(150, "lb"),
  29071. name: "Back",
  29072. image: {
  29073. source: "./media/characters/en/back.svg",
  29074. extra: 1700 / 1570,
  29075. bottom: 51 / 1751
  29076. }
  29077. },
  29078. frontDressed: {
  29079. height: math.unit(6, "feet"),
  29080. weight: math.unit(150, "lb"),
  29081. name: "Front (Dressed)",
  29082. image: {
  29083. source: "./media/characters/en/front-dressed.svg",
  29084. extra: 1697 / 1563,
  29085. bottom: 103 / 1800
  29086. }
  29087. },
  29088. backDressed: {
  29089. height: math.unit(6, "feet"),
  29090. weight: math.unit(150, "lb"),
  29091. name: "Back (Dressed)",
  29092. image: {
  29093. source: "./media/characters/en/back-dressed.svg",
  29094. extra: 1700 / 1570,
  29095. bottom: 51 / 1751
  29096. }
  29097. },
  29098. },
  29099. [
  29100. {
  29101. name: "Macro",
  29102. height: math.unit(210, "feet"),
  29103. default: true
  29104. },
  29105. ]
  29106. ))
  29107. characterMakers.push(() => makeCharacter(
  29108. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29109. {
  29110. front: {
  29111. height: math.unit(6, "feet"),
  29112. weight: math.unit(150, "lb"),
  29113. name: "Front",
  29114. image: {
  29115. source: "./media/characters/haze-orris/front.svg",
  29116. extra: 3975 / 3525,
  29117. bottom: 137 / 4112
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Micro",
  29124. height: math.unit(150, "mm"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(6, "feet"),
  29134. weight: math.unit(150, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/casselene-yaro/front.svg",
  29138. extra: 4721 / 4541,
  29139. bottom: 82 / 4803
  29140. }
  29141. },
  29142. back: {
  29143. height: math.unit(6, "feet"),
  29144. weight: math.unit(150, "lb"),
  29145. name: "Back",
  29146. image: {
  29147. source: "./media/characters/casselene-yaro/back.svg",
  29148. extra: 4569 / 4377,
  29149. bottom: 69 / 4638
  29150. }
  29151. },
  29152. frontDressed: {
  29153. height: math.unit(6, "feet"),
  29154. weight: math.unit(150, "lb"),
  29155. name: "Front-dressed",
  29156. image: {
  29157. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29158. extra: 4721 / 4541,
  29159. bottom: 82 / 4803
  29160. }
  29161. },
  29162. },
  29163. [
  29164. {
  29165. name: "Macro",
  29166. height: math.unit(190, "feet"),
  29167. default: true
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29173. {
  29174. front: {
  29175. height: math.unit(6, "feet"),
  29176. weight: math.unit(150, "lb"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/myra-rue-delore/front.svg",
  29180. extra: 1340 / 1308,
  29181. bottom: 67 / 1407
  29182. }
  29183. },
  29184. back: {
  29185. height: math.unit(6, "feet"),
  29186. weight: math.unit(150, "lb"),
  29187. name: "Back",
  29188. image: {
  29189. source: "./media/characters/myra-rue-delore/back.svg",
  29190. extra: 1341 / 1310,
  29191. bottom: 40 / 1381
  29192. }
  29193. },
  29194. frontDressed: {
  29195. height: math.unit(6, "feet"),
  29196. weight: math.unit(150, "lb"),
  29197. name: "Front (Dressed)",
  29198. image: {
  29199. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29200. extra: 1340 / 1308,
  29201. bottom: 67 / 1407
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Macro",
  29208. height: math.unit(150, "feet"),
  29209. default: true
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(10, "feet"),
  29218. weight: math.unit(15015, "lb"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/fem!plat/front.svg",
  29222. extra: 2799 / 2604,
  29223. bottom: 149 / 2948
  29224. }
  29225. },
  29226. },
  29227. [
  29228. {
  29229. name: "Normal",
  29230. height: math.unit(10, "feet"),
  29231. default: true
  29232. },
  29233. {
  29234. name: "Macro",
  29235. height: math.unit(100, "feet")
  29236. },
  29237. {
  29238. name: "Megamacro",
  29239. height: math.unit(1000, "feet")
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(15 + 5 / 12, "feet"),
  29248. weight: math.unit(4600, "lb"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/neapolitan-ananassa/front.svg",
  29252. extra: 2903 / 2736,
  29253. bottom: 0 / 2903
  29254. }
  29255. },
  29256. side: {
  29257. height: math.unit(15 + 5 / 12, "feet"),
  29258. weight: math.unit(4600, "lb"),
  29259. name: "Side",
  29260. image: {
  29261. source: "./media/characters/neapolitan-ananassa/side.svg",
  29262. extra: 2925 / 2719,
  29263. bottom: 0 / 2925
  29264. }
  29265. },
  29266. back: {
  29267. height: math.unit(15 + 5 / 12, "feet"),
  29268. weight: math.unit(4600, "lb"),
  29269. name: "Back",
  29270. image: {
  29271. source: "./media/characters/neapolitan-ananassa/back.svg",
  29272. extra: 2903 / 2736,
  29273. bottom: 0 / 2903
  29274. }
  29275. },
  29276. },
  29277. [
  29278. {
  29279. name: "Normal",
  29280. height: math.unit(15 + 5 / 12, "feet"),
  29281. default: true
  29282. },
  29283. {
  29284. name: "Post-Millenium",
  29285. height: math.unit(35 + 5 / 12, "feet")
  29286. },
  29287. {
  29288. name: "Post-Era",
  29289. height: math.unit(450 + 5 / 12, "feet")
  29290. },
  29291. ]
  29292. ))
  29293. characterMakers.push(() => makeCharacter(
  29294. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29295. {
  29296. front: {
  29297. height: math.unit(300, "meters"),
  29298. weight: math.unit(125000, "tonnes"),
  29299. name: "Front",
  29300. image: {
  29301. source: "./media/characters/pazuzu/front.svg",
  29302. extra: 877 / 794,
  29303. bottom: 47 / 924
  29304. }
  29305. },
  29306. },
  29307. [
  29308. {
  29309. name: "Macro",
  29310. height: math.unit(300, "meters"),
  29311. default: true
  29312. },
  29313. ]
  29314. ))
  29315. characterMakers.push(() => makeCharacter(
  29316. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29317. {
  29318. side: {
  29319. height: math.unit(10 + 7 / 12, "feet"),
  29320. weight: math.unit(2.5, "tons"),
  29321. name: "Side",
  29322. image: {
  29323. source: "./media/characters/aasha/side.svg",
  29324. extra: 1345 / 1245,
  29325. bottom: 111 / 1456
  29326. }
  29327. },
  29328. back: {
  29329. height: math.unit(10 + 7 / 12, "feet"),
  29330. weight: math.unit(2.5, "tons"),
  29331. name: "Back",
  29332. image: {
  29333. source: "./media/characters/aasha/back.svg",
  29334. extra: 1133 / 1057,
  29335. bottom: 257 / 1390
  29336. }
  29337. },
  29338. },
  29339. [
  29340. {
  29341. name: "Normal",
  29342. height: math.unit(10 + 7 / 12, "feet"),
  29343. default: true
  29344. },
  29345. ]
  29346. ))
  29347. characterMakers.push(() => makeCharacter(
  29348. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29349. {
  29350. front: {
  29351. height: math.unit(6 + 3 / 12, "feet"),
  29352. name: "Front",
  29353. image: {
  29354. source: "./media/characters/nevan/front.svg",
  29355. extra: 704 / 704,
  29356. bottom: 28 / 732
  29357. }
  29358. },
  29359. back: {
  29360. height: math.unit(6 + 3 / 12, "feet"),
  29361. name: "Back",
  29362. image: {
  29363. source: "./media/characters/nevan/back.svg",
  29364. extra: 714 / 714,
  29365. bottom: 21 / 735
  29366. }
  29367. },
  29368. frontFlaccid: {
  29369. height: math.unit(6 + 3 / 12, "feet"),
  29370. name: "Front (Flaccid)",
  29371. image: {
  29372. source: "./media/characters/nevan/front-flaccid.svg",
  29373. extra: 704 / 704,
  29374. bottom: 28 / 732
  29375. }
  29376. },
  29377. frontErect: {
  29378. height: math.unit(6 + 3 / 12, "feet"),
  29379. name: "Front (Erect)",
  29380. image: {
  29381. source: "./media/characters/nevan/front-erect.svg",
  29382. extra: 704 / 704,
  29383. bottom: 28 / 732
  29384. }
  29385. },
  29386. backFlaccid: {
  29387. height: math.unit(6 + 3 / 12, "feet"),
  29388. name: "Back (Flaccid)",
  29389. image: {
  29390. source: "./media/characters/nevan/back-flaccid.svg",
  29391. extra: 714 / 714,
  29392. bottom: 21 / 735
  29393. }
  29394. },
  29395. },
  29396. [
  29397. {
  29398. name: "Normal",
  29399. height: math.unit(6 + 3 / 12, "feet"),
  29400. default: true
  29401. },
  29402. ]
  29403. ))
  29404. characterMakers.push(() => makeCharacter(
  29405. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29406. {
  29407. front: {
  29408. height: math.unit(4, "feet"),
  29409. name: "Front",
  29410. image: {
  29411. source: "./media/characters/arhan/front.svg",
  29412. extra: 3368 / 3133,
  29413. bottom: 0 / 3368
  29414. }
  29415. },
  29416. side: {
  29417. height: math.unit(4, "feet"),
  29418. name: "Side",
  29419. image: {
  29420. source: "./media/characters/arhan/side.svg",
  29421. extra: 3347 / 3105,
  29422. bottom: 0 / 3347
  29423. }
  29424. },
  29425. tongue: {
  29426. height: math.unit(1.42, "feet"),
  29427. name: "Tongue",
  29428. image: {
  29429. source: "./media/characters/arhan/tongue.svg"
  29430. }
  29431. },
  29432. head: {
  29433. height: math.unit(0.85, "feet"),
  29434. name: "Head",
  29435. image: {
  29436. source: "./media/characters/arhan/head.svg"
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Normal",
  29443. height: math.unit(4, "feet"),
  29444. default: true
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29450. {
  29451. front: {
  29452. height: math.unit(5 + 7.5 / 12, "feet"),
  29453. weight: math.unit(120, "lb"),
  29454. name: "Front",
  29455. image: {
  29456. source: "./media/characters/digi-duncan/front.svg",
  29457. extra: 330 / 326,
  29458. bottom: 16 / 346
  29459. }
  29460. },
  29461. side: {
  29462. height: math.unit(5 + 7.5 / 12, "feet"),
  29463. weight: math.unit(120, "lb"),
  29464. name: "Side",
  29465. image: {
  29466. source: "./media/characters/digi-duncan/side.svg",
  29467. extra: 341 / 337,
  29468. bottom: 1 / 342
  29469. }
  29470. },
  29471. back: {
  29472. height: math.unit(5 + 7.5 / 12, "feet"),
  29473. weight: math.unit(120, "lb"),
  29474. name: "Back",
  29475. image: {
  29476. source: "./media/characters/digi-duncan/back.svg",
  29477. extra: 330 / 326,
  29478. bottom: 12 / 342
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Speck",
  29485. height: math.unit(0.25, "mm")
  29486. },
  29487. {
  29488. name: "Micro",
  29489. height: math.unit(5, "mm")
  29490. },
  29491. {
  29492. name: "Tiny",
  29493. height: math.unit(0.5, "inches"),
  29494. default: true
  29495. },
  29496. {
  29497. name: "Human",
  29498. height: math.unit(5 + 7.5 / 12, "feet")
  29499. },
  29500. {
  29501. name: "Minigiant",
  29502. height: math.unit(8 + 5.25, "feet")
  29503. },
  29504. {
  29505. name: "Giant",
  29506. height: math.unit(2000, "feet")
  29507. },
  29508. {
  29509. name: "Mega",
  29510. height: math.unit(371.1, "miles")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(2, "meters"),
  29519. weight: math.unit(350, "kg"),
  29520. name: "Front",
  29521. image: {
  29522. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29523. extra: 898 / 838,
  29524. bottom: 9 / 907
  29525. }
  29526. },
  29527. },
  29528. [
  29529. {
  29530. name: "Micro",
  29531. height: math.unit(8, "meters")
  29532. },
  29533. {
  29534. name: "Normal",
  29535. height: math.unit(50, "meters"),
  29536. default: true
  29537. },
  29538. {
  29539. name: "Macro",
  29540. height: math.unit(500, "meters")
  29541. },
  29542. ]
  29543. ))
  29544. characterMakers.push(() => makeCharacter(
  29545. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29546. {
  29547. front: {
  29548. height: math.unit(6 + 6 / 12, "feet"),
  29549. name: "Front",
  29550. image: {
  29551. source: "./media/characters/khardesh/front.svg",
  29552. extra: 888 / 797,
  29553. bottom: 25 / 913
  29554. }
  29555. },
  29556. },
  29557. [
  29558. {
  29559. name: "Normal",
  29560. height: math.unit(6 + 6 / 12, "feet"),
  29561. default: true
  29562. },
  29563. {
  29564. name: "Normal+",
  29565. height: math.unit(4, "meters")
  29566. },
  29567. {
  29568. name: "Macro",
  29569. height: math.unit(50, "meters")
  29570. },
  29571. {
  29572. name: "Macro+",
  29573. height: math.unit(100, "meters")
  29574. },
  29575. {
  29576. name: "Megamacro",
  29577. height: math.unit(20, "km")
  29578. },
  29579. ]
  29580. ))
  29581. characterMakers.push(() => makeCharacter(
  29582. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29583. {
  29584. front: {
  29585. height: math.unit(6, "feet"),
  29586. weight: math.unit(150, "lb"),
  29587. name: "Front",
  29588. image: {
  29589. source: "./media/characters/kosho/front.svg",
  29590. extra: 1847 / 1847,
  29591. bottom: 86 / 1933
  29592. }
  29593. },
  29594. },
  29595. [
  29596. {
  29597. name: "Second-stage micro",
  29598. height: math.unit(0.5, "inches")
  29599. },
  29600. {
  29601. name: "First-stage micro",
  29602. height: math.unit(6, "inches")
  29603. },
  29604. {
  29605. name: "Normal",
  29606. height: math.unit(6, "feet"),
  29607. default: true
  29608. },
  29609. {
  29610. name: "First-stage macro",
  29611. height: math.unit(72, "feet")
  29612. },
  29613. {
  29614. name: "Second-stage macro",
  29615. height: math.unit(864, "feet")
  29616. },
  29617. ]
  29618. ))
  29619. characterMakers.push(() => makeCharacter(
  29620. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29621. {
  29622. normal: {
  29623. height: math.unit(4 + 6 / 12, "feet"),
  29624. name: "Normal",
  29625. image: {
  29626. source: "./media/characters/hydra/normal.svg",
  29627. extra: 2833 / 2634,
  29628. bottom: 68 / 2901
  29629. }
  29630. },
  29631. smol: {
  29632. height: math.unit(0.705, "inches"),
  29633. name: "Smol",
  29634. image: {
  29635. source: "./media/characters/hydra/smol.svg",
  29636. extra: 2715 / 2540,
  29637. bottom: 0 / 2715
  29638. }
  29639. },
  29640. },
  29641. [
  29642. {
  29643. name: "Normal",
  29644. height: math.unit(4 + 6 / 12, "feet"),
  29645. default: true
  29646. }
  29647. ]
  29648. ))
  29649. characterMakers.push(() => makeCharacter(
  29650. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29651. {
  29652. front: {
  29653. height: math.unit(0.6, "cm"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/daz/front.svg",
  29657. extra: 1682 / 1164,
  29658. bottom: 42 / 1724
  29659. }
  29660. },
  29661. },
  29662. [
  29663. {
  29664. name: "Normal",
  29665. height: math.unit(0.6, "cm"),
  29666. default: true
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29672. {
  29673. front: {
  29674. height: math.unit(6, "feet"),
  29675. weight: math.unit(235, "lb"),
  29676. name: "Front",
  29677. image: {
  29678. source: "./media/characters/theo-pangolin/front.svg",
  29679. extra: 1996 / 1969,
  29680. bottom: 115 / 2111
  29681. }
  29682. },
  29683. back: {
  29684. height: math.unit(6, "feet"),
  29685. weight: math.unit(235, "lb"),
  29686. name: "Back",
  29687. image: {
  29688. source: "./media/characters/theo-pangolin/back.svg",
  29689. extra: 1979 / 1979,
  29690. bottom: 40 / 2019
  29691. }
  29692. },
  29693. feral: {
  29694. height: math.unit(2, "feet"),
  29695. weight: math.unit(30, "lb"),
  29696. name: "Feral",
  29697. image: {
  29698. source: "./media/characters/theo-pangolin/feral.svg",
  29699. extra: 803 / 791,
  29700. bottom: 181 / 984
  29701. }
  29702. },
  29703. footFive: {
  29704. height: math.unit(1.43, "feet"),
  29705. name: "Foot (Five Toes)",
  29706. image: {
  29707. source: "./media/characters/theo-pangolin/foot-five.svg"
  29708. }
  29709. },
  29710. footFour: {
  29711. height: math.unit(1.43, "feet"),
  29712. name: "Foot (Four Toes)",
  29713. image: {
  29714. source: "./media/characters/theo-pangolin/foot-four.svg"
  29715. }
  29716. },
  29717. handFour: {
  29718. height: math.unit(0.81, "feet"),
  29719. name: "Hand (Four Fingers)",
  29720. image: {
  29721. source: "./media/characters/theo-pangolin/hand-four.svg"
  29722. }
  29723. },
  29724. handThree: {
  29725. height: math.unit(0.81, "feet"),
  29726. name: "Hand (Three Fingers)",
  29727. image: {
  29728. source: "./media/characters/theo-pangolin/hand-three.svg"
  29729. }
  29730. },
  29731. headFront: {
  29732. height: math.unit(1.37, "feet"),
  29733. name: "Head (Front)",
  29734. image: {
  29735. source: "./media/characters/theo-pangolin/head-front.svg"
  29736. }
  29737. },
  29738. headSide: {
  29739. height: math.unit(1.43, "feet"),
  29740. name: "Head (Side)",
  29741. image: {
  29742. source: "./media/characters/theo-pangolin/head-side.svg"
  29743. }
  29744. },
  29745. tongue: {
  29746. height: math.unit(2.29, "feet"),
  29747. name: "Tongue",
  29748. image: {
  29749. source: "./media/characters/theo-pangolin/tongue.svg"
  29750. }
  29751. },
  29752. },
  29753. [
  29754. {
  29755. name: "Normal",
  29756. height: math.unit(6, "feet")
  29757. },
  29758. {
  29759. name: "Macro",
  29760. height: math.unit(400, "feet"),
  29761. default: true
  29762. },
  29763. ]
  29764. ))
  29765. characterMakers.push(() => makeCharacter(
  29766. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29767. {
  29768. front: {
  29769. height: math.unit(6, "inches"),
  29770. weight: math.unit(0.036, "kg"),
  29771. name: "Front",
  29772. image: {
  29773. source: "./media/characters/renée/front.svg",
  29774. extra: 900 / 886,
  29775. bottom: 8 / 908
  29776. }
  29777. },
  29778. },
  29779. [
  29780. {
  29781. name: "Nano",
  29782. height: math.unit(1, "nm")
  29783. },
  29784. {
  29785. name: "Micro",
  29786. height: math.unit(1, "mm")
  29787. },
  29788. {
  29789. name: "Normal",
  29790. height: math.unit(6, "inches")
  29791. },
  29792. {
  29793. name: "Macro",
  29794. height: math.unit(2000, "feet"),
  29795. default: true
  29796. },
  29797. {
  29798. name: "Megamacro",
  29799. height: math.unit(2, "km")
  29800. },
  29801. {
  29802. name: "Gigamacro",
  29803. height: math.unit(2000, "km")
  29804. },
  29805. {
  29806. name: "Teramacro",
  29807. height: math.unit(250000, "km")
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29813. {
  29814. front: {
  29815. height: math.unit(4, "meters"),
  29816. weight: math.unit(150, "kg"),
  29817. name: "Front",
  29818. image: {
  29819. source: "./media/characters/caledvwlch/front.svg",
  29820. extra: 1760 / 1551,
  29821. bottom: 28 / 1788
  29822. }
  29823. },
  29824. side: {
  29825. height: math.unit(4, "meters"),
  29826. weight: math.unit(150, "kg"),
  29827. name: "Side",
  29828. image: {
  29829. source: "./media/characters/caledvwlch/side.svg",
  29830. extra: 1605 / 1536,
  29831. bottom: 31 / 1636
  29832. }
  29833. },
  29834. back: {
  29835. height: math.unit(4, "meters"),
  29836. weight: math.unit(150, "kg"),
  29837. name: "Back",
  29838. image: {
  29839. source: "./media/characters/caledvwlch/back.svg",
  29840. extra: 1635 / 1565,
  29841. bottom: 27 / 1662
  29842. }
  29843. },
  29844. },
  29845. [
  29846. {
  29847. name: "\"Incognito\"",
  29848. height: math.unit(4, "meters")
  29849. },
  29850. {
  29851. name: "Small rampage",
  29852. height: math.unit(600, "meters")
  29853. },
  29854. {
  29855. name: "Mega",
  29856. height: math.unit(30, "km")
  29857. },
  29858. {
  29859. name: "Home-size",
  29860. height: math.unit(50, "km"),
  29861. default: true
  29862. },
  29863. {
  29864. name: "Giga",
  29865. height: math.unit(300, "km")
  29866. },
  29867. {
  29868. name: "Lounging",
  29869. height: math.unit(11000, "km")
  29870. },
  29871. {
  29872. name: "Planet snacking",
  29873. height: math.unit(2000000, "km")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(6, "feet"),
  29882. weight: math.unit(215, "lb"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/sapphire-svell/front.svg",
  29886. extra: 495 / 455,
  29887. bottom: 20 / 515
  29888. }
  29889. },
  29890. back: {
  29891. height: math.unit(6, "feet"),
  29892. weight: math.unit(216, "lb"),
  29893. name: "Back",
  29894. image: {
  29895. source: "./media/characters/sapphire-svell/back.svg",
  29896. extra: 497 / 477,
  29897. bottom: 7 / 504
  29898. }
  29899. },
  29900. maw: {
  29901. height: math.unit(1.57, "feet"),
  29902. name: "Maw",
  29903. image: {
  29904. source: "./media/characters/sapphire-svell/maw.svg"
  29905. }
  29906. },
  29907. foot: {
  29908. height: math.unit(1.07, "feet"),
  29909. name: "Foot",
  29910. image: {
  29911. source: "./media/characters/sapphire-svell/foot.svg"
  29912. }
  29913. },
  29914. toering: {
  29915. height: math.unit(1.7, "inch"),
  29916. name: "Toering",
  29917. image: {
  29918. source: "./media/characters/sapphire-svell/toering.svg"
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Normal",
  29925. height: math.unit(300, "feet"),
  29926. default: true
  29927. },
  29928. {
  29929. name: "Augmented",
  29930. height: math.unit(1250, "feet")
  29931. },
  29932. {
  29933. name: "Unleashed",
  29934. height: math.unit(3000, "feet")
  29935. },
  29936. ]
  29937. ))
  29938. characterMakers.push(() => makeCharacter(
  29939. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29940. {
  29941. side: {
  29942. height: math.unit(2 + 3 / 12, "feet"),
  29943. weight: math.unit(110, "lb"),
  29944. name: "Side",
  29945. image: {
  29946. source: "./media/characters/glitch-flux/side.svg",
  29947. extra: 997 / 805,
  29948. bottom: 20 / 1017
  29949. }
  29950. },
  29951. },
  29952. [
  29953. {
  29954. name: "Normal",
  29955. height: math.unit(2 + 3 / 12, "feet"),
  29956. default: true
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(4, "meters"),
  29965. name: "Front",
  29966. image: {
  29967. source: "./media/characters/mid/front.svg",
  29968. extra: 507 / 476,
  29969. bottom: 17 / 524
  29970. }
  29971. },
  29972. back: {
  29973. height: math.unit(4, "meters"),
  29974. name: "Back",
  29975. image: {
  29976. source: "./media/characters/mid/back.svg",
  29977. extra: 519 / 487,
  29978. bottom: 7 / 526
  29979. }
  29980. },
  29981. stuck: {
  29982. height: math.unit(2.2, "meters"),
  29983. name: "Stuck",
  29984. image: {
  29985. source: "./media/characters/mid/stuck.svg",
  29986. extra: 1951 / 1869,
  29987. bottom: 88 / 2039
  29988. }
  29989. }
  29990. },
  29991. [
  29992. {
  29993. name: "Normal",
  29994. height: math.unit(4, "meters"),
  29995. default: true
  29996. },
  29997. {
  29998. name: "Big",
  29999. height: math.unit(10, "meters")
  30000. },
  30001. {
  30002. name: "Macro",
  30003. height: math.unit(800, "meters")
  30004. },
  30005. {
  30006. name: "Megamacro",
  30007. height: math.unit(100, "km")
  30008. },
  30009. {
  30010. name: "Overgrown",
  30011. height: math.unit(1, "parsec")
  30012. },
  30013. ]
  30014. ))
  30015. characterMakers.push(() => makeCharacter(
  30016. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30017. {
  30018. front: {
  30019. height: math.unit(2.5, "meters"),
  30020. weight: math.unit(225, "kg"),
  30021. name: "Front",
  30022. image: {
  30023. source: "./media/characters/iris/front.svg",
  30024. extra: 3348 / 3251,
  30025. bottom: 205 / 3553
  30026. }
  30027. },
  30028. maw: {
  30029. height: math.unit(0.56, "meter"),
  30030. name: "Maw",
  30031. image: {
  30032. source: "./media/characters/iris/maw.svg"
  30033. }
  30034. },
  30035. },
  30036. [
  30037. {
  30038. name: "Mewter cat",
  30039. height: math.unit(1.2, "meters")
  30040. },
  30041. {
  30042. name: "Minimacro",
  30043. height: math.unit(2.5, "meters"),
  30044. default: true
  30045. },
  30046. {
  30047. name: "Macro",
  30048. height: math.unit(180, "meters")
  30049. },
  30050. {
  30051. name: "Megamacro",
  30052. height: math.unit(2746, "meters")
  30053. },
  30054. ]
  30055. ))
  30056. characterMakers.push(() => makeCharacter(
  30057. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30058. {
  30059. front: {
  30060. height: math.unit(6, "feet"),
  30061. weight: math.unit(135, "lb"),
  30062. name: "Front",
  30063. image: {
  30064. source: "./media/characters/axel/front.svg",
  30065. extra: 908 / 908,
  30066. bottom: 58 / 966
  30067. }
  30068. },
  30069. side: {
  30070. height: math.unit(6, "feet"),
  30071. weight: math.unit(135, "lb"),
  30072. name: "Side",
  30073. image: {
  30074. source: "./media/characters/axel/side.svg",
  30075. extra: 958 / 958,
  30076. bottom: 11 / 969
  30077. }
  30078. },
  30079. back: {
  30080. height: math.unit(6, "feet"),
  30081. weight: math.unit(135, "lb"),
  30082. name: "Back",
  30083. image: {
  30084. source: "./media/characters/axel/back.svg",
  30085. extra: 887 / 887,
  30086. bottom: 34 / 921
  30087. }
  30088. },
  30089. head: {
  30090. height: math.unit(1.07, "feet"),
  30091. name: "Head",
  30092. image: {
  30093. source: "./media/characters/axel/head.svg"
  30094. }
  30095. },
  30096. beak: {
  30097. height: math.unit(1.4, "feet"),
  30098. name: "Beak",
  30099. image: {
  30100. source: "./media/characters/axel/beak.svg"
  30101. }
  30102. },
  30103. beakSide: {
  30104. height: math.unit(1.4, "feet"),
  30105. name: "Beak Side",
  30106. image: {
  30107. source: "./media/characters/axel/beak-side.svg"
  30108. }
  30109. },
  30110. sheath: {
  30111. height: math.unit(0.5, "feet"),
  30112. name: "Sheath",
  30113. image: {
  30114. source: "./media/characters/axel/sheath.svg"
  30115. }
  30116. },
  30117. dick: {
  30118. height: math.unit(0.98, "feet"),
  30119. name: "Dick",
  30120. image: {
  30121. source: "./media/characters/axel/dick.svg"
  30122. }
  30123. },
  30124. },
  30125. [
  30126. {
  30127. name: "Macro",
  30128. height: math.unit(68, "meters"),
  30129. default: true
  30130. },
  30131. ]
  30132. ))
  30133. characterMakers.push(() => makeCharacter(
  30134. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30135. {
  30136. front: {
  30137. height: math.unit(3.5, "meters"),
  30138. weight: math.unit(1200, "kg"),
  30139. name: "Front",
  30140. image: {
  30141. source: "./media/characters/joanna/front.svg",
  30142. extra: 1596 / 1488,
  30143. bottom: 29 / 1625
  30144. }
  30145. },
  30146. back: {
  30147. height: math.unit(3.5, "meters"),
  30148. weight: math.unit(1200, "kg"),
  30149. name: "Back",
  30150. image: {
  30151. source: "./media/characters/joanna/back.svg",
  30152. extra: 1594 / 1495,
  30153. bottom: 26 / 1620
  30154. }
  30155. },
  30156. frontShorts: {
  30157. height: math.unit(3.5, "meters"),
  30158. weight: math.unit(1200, "kg"),
  30159. name: "Front (Shorts)",
  30160. image: {
  30161. source: "./media/characters/joanna/front-shorts.svg",
  30162. extra: 1596 / 1488,
  30163. bottom: 29 / 1625
  30164. }
  30165. },
  30166. frontBiker: {
  30167. height: math.unit(3.5, "meters"),
  30168. weight: math.unit(1200, "kg"),
  30169. name: "Front (Biker)",
  30170. image: {
  30171. source: "./media/characters/joanna/front-biker.svg",
  30172. extra: 1596 / 1488,
  30173. bottom: 29 / 1625
  30174. }
  30175. },
  30176. backBiker: {
  30177. height: math.unit(3.5, "meters"),
  30178. weight: math.unit(1200, "kg"),
  30179. name: "Back (Biker)",
  30180. image: {
  30181. source: "./media/characters/joanna/back-biker.svg",
  30182. extra: 1594 / 1495,
  30183. bottom: 88 / 1682
  30184. }
  30185. },
  30186. bikeLeft: {
  30187. height: math.unit(2.4, "meters"),
  30188. weight: math.unit(1600, "kg"),
  30189. name: "Bike (Left)",
  30190. image: {
  30191. source: "./media/characters/joanna/bike-left.svg",
  30192. extra: 720 / 720,
  30193. bottom: 8 / 728
  30194. }
  30195. },
  30196. bikeRight: {
  30197. height: math.unit(2.4, "meters"),
  30198. weight: math.unit(1600, "kg"),
  30199. name: "Bike (Right)",
  30200. image: {
  30201. source: "./media/characters/joanna/bike-right.svg",
  30202. extra: 720 / 720,
  30203. bottom: 8 / 728
  30204. }
  30205. },
  30206. },
  30207. [
  30208. {
  30209. name: "Incognito",
  30210. height: math.unit(3.5, "meters")
  30211. },
  30212. {
  30213. name: "Casual Big",
  30214. height: math.unit(200, "meters")
  30215. },
  30216. {
  30217. name: "Macro",
  30218. height: math.unit(600, "meters")
  30219. },
  30220. {
  30221. name: "Original",
  30222. height: math.unit(20, "km"),
  30223. default: true
  30224. },
  30225. {
  30226. name: "Giga",
  30227. height: math.unit(400, "km")
  30228. },
  30229. {
  30230. name: "Lounging",
  30231. height: math.unit(1500, "km")
  30232. },
  30233. {
  30234. name: "Planetary",
  30235. height: math.unit(200000, "km")
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30241. {
  30242. front: {
  30243. height: math.unit(6, "feet"),
  30244. weight: math.unit(150, "lb"),
  30245. name: "Front",
  30246. image: {
  30247. source: "./media/characters/hugo-sigil/front.svg",
  30248. extra: 522 / 500,
  30249. bottom: 2 / 524
  30250. }
  30251. },
  30252. back: {
  30253. height: math.unit(6, "feet"),
  30254. weight: math.unit(150, "lb"),
  30255. name: "Back",
  30256. image: {
  30257. source: "./media/characters/hugo-sigil/back.svg",
  30258. extra: 519 / 495,
  30259. bottom: 5 / 524
  30260. }
  30261. },
  30262. maw: {
  30263. height: math.unit(1.4, "feet"),
  30264. weight: math.unit(150, "lb"),
  30265. name: "Maw",
  30266. image: {
  30267. source: "./media/characters/hugo-sigil/maw.svg"
  30268. }
  30269. },
  30270. feet: {
  30271. height: math.unit(1.56, "feet"),
  30272. weight: math.unit(150, "lb"),
  30273. name: "Feet",
  30274. image: {
  30275. source: "./media/characters/hugo-sigil/feet.svg",
  30276. extra: 177 / 177,
  30277. bottom: 12 / 189
  30278. }
  30279. },
  30280. },
  30281. [
  30282. {
  30283. name: "Normal",
  30284. height: math.unit(6, "feet")
  30285. },
  30286. {
  30287. name: "Macro",
  30288. height: math.unit(200, "feet"),
  30289. default: true
  30290. },
  30291. ]
  30292. ))
  30293. characterMakers.push(() => makeCharacter(
  30294. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30295. {
  30296. front: {
  30297. height: math.unit(6, "feet"),
  30298. weight: math.unit(150, "lb"),
  30299. name: "Front",
  30300. image: {
  30301. source: "./media/characters/peri/front.svg",
  30302. extra: 2354 / 2233,
  30303. bottom: 49 / 2403
  30304. }
  30305. },
  30306. },
  30307. [
  30308. {
  30309. name: "Really Small",
  30310. height: math.unit(1, "nm")
  30311. },
  30312. {
  30313. name: "Micro",
  30314. height: math.unit(4, "inches")
  30315. },
  30316. {
  30317. name: "Normal",
  30318. height: math.unit(7, "inches"),
  30319. default: true
  30320. },
  30321. {
  30322. name: "Macro",
  30323. height: math.unit(400, "feet")
  30324. },
  30325. {
  30326. name: "Megamacro",
  30327. height: math.unit(100, "miles")
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30333. {
  30334. frontSlim: {
  30335. height: math.unit(7, "feet"),
  30336. name: "Front (Slim)",
  30337. image: {
  30338. source: "./media/characters/issilora/front-slim.svg",
  30339. extra: 529 / 449,
  30340. bottom: 53 / 582
  30341. }
  30342. },
  30343. sideSlim: {
  30344. height: math.unit(7, "feet"),
  30345. name: "Side (Slim)",
  30346. image: {
  30347. source: "./media/characters/issilora/side-slim.svg",
  30348. extra: 570 / 480,
  30349. bottom: 30 / 600
  30350. }
  30351. },
  30352. backSlim: {
  30353. height: math.unit(7, "feet"),
  30354. name: "Back (Slim)",
  30355. image: {
  30356. source: "./media/characters/issilora/back-slim.svg",
  30357. extra: 537 / 455,
  30358. bottom: 46 / 583
  30359. }
  30360. },
  30361. frontBuff: {
  30362. height: math.unit(7, "feet"),
  30363. name: "Front (Buff)",
  30364. image: {
  30365. source: "./media/characters/issilora/front-buff.svg",
  30366. extra: 2310 / 2035,
  30367. bottom: 335 / 2645
  30368. }
  30369. },
  30370. head: {
  30371. height: math.unit(1.94, "feet"),
  30372. name: "Head",
  30373. image: {
  30374. source: "./media/characters/issilora/head.svg"
  30375. }
  30376. },
  30377. },
  30378. [
  30379. {
  30380. name: "Minimum",
  30381. height: math.unit(7, "feet")
  30382. },
  30383. {
  30384. name: "Comfortable",
  30385. height: math.unit(17, "feet")
  30386. },
  30387. {
  30388. name: "Fun Size",
  30389. height: math.unit(47, "feet")
  30390. },
  30391. {
  30392. name: "Natural Macro",
  30393. height: math.unit(137, "feet"),
  30394. default: true
  30395. },
  30396. {
  30397. name: "Maximum Kaiju",
  30398. height: math.unit(397, "feet")
  30399. },
  30400. ]
  30401. ))
  30402. characterMakers.push(() => makeCharacter(
  30403. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30404. {
  30405. front: {
  30406. height: math.unit(50 + 9/12, "feet"),
  30407. weight: math.unit(32.8, "tons"),
  30408. name: "Front",
  30409. image: {
  30410. source: "./media/characters/irb'iiritaahn/front.svg",
  30411. extra: 1878/1826,
  30412. bottom: 326/2204
  30413. }
  30414. },
  30415. back: {
  30416. height: math.unit(50 + 9/12, "feet"),
  30417. weight: math.unit(32.8, "tons"),
  30418. name: "Back",
  30419. image: {
  30420. source: "./media/characters/irb'iiritaahn/back.svg",
  30421. extra: 2052/2018,
  30422. bottom: 152/2204
  30423. }
  30424. },
  30425. head: {
  30426. height: math.unit(12.86, "feet"),
  30427. name: "Head",
  30428. image: {
  30429. source: "./media/characters/irb'iiritaahn/head.svg"
  30430. }
  30431. },
  30432. maw: {
  30433. height: math.unit(9.66, "feet"),
  30434. name: "Maw",
  30435. image: {
  30436. source: "./media/characters/irb'iiritaahn/maw.svg"
  30437. }
  30438. },
  30439. frontDick: {
  30440. height: math.unit(8.78461, "feet"),
  30441. name: "Front Dick",
  30442. image: {
  30443. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30444. }
  30445. },
  30446. rearDick: {
  30447. height: math.unit(8.78461, "feet"),
  30448. name: "Rear Dick",
  30449. image: {
  30450. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30451. }
  30452. },
  30453. rearDickUnfolded: {
  30454. height: math.unit(8.78, "feet"),
  30455. name: "Rear Dick (Unfolded)",
  30456. image: {
  30457. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30458. }
  30459. },
  30460. wings: {
  30461. height: math.unit(43, "feet"),
  30462. name: "Wings",
  30463. image: {
  30464. source: "./media/characters/irb'iiritaahn/wings.svg"
  30465. }
  30466. },
  30467. },
  30468. [
  30469. {
  30470. name: "Macro",
  30471. height: math.unit(50 + 9/12, "feet"),
  30472. default: true
  30473. },
  30474. ]
  30475. ))
  30476. characterMakers.push(() => makeCharacter(
  30477. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30478. {
  30479. front: {
  30480. height: math.unit(205, "cm"),
  30481. weight: math.unit(102, "kg"),
  30482. name: "Front",
  30483. image: {
  30484. source: "./media/characters/irbisgreif/front.svg",
  30485. extra: 785/706,
  30486. bottom: 13/798
  30487. }
  30488. },
  30489. back: {
  30490. height: math.unit(205, "cm"),
  30491. weight: math.unit(102, "kg"),
  30492. name: "Back",
  30493. image: {
  30494. source: "./media/characters/irbisgreif/back.svg",
  30495. extra: 713/701,
  30496. bottom: 26/739
  30497. }
  30498. },
  30499. frontDressed: {
  30500. height: math.unit(216, "cm"),
  30501. weight: math.unit(102, "kg"),
  30502. name: "Front-dressed",
  30503. image: {
  30504. source: "./media/characters/irbisgreif/front-dressed.svg",
  30505. extra: 902/776,
  30506. bottom: 14/916
  30507. }
  30508. },
  30509. sideDressed: {
  30510. height: math.unit(195, "cm"),
  30511. weight: math.unit(102, "kg"),
  30512. name: "Side-dressed",
  30513. image: {
  30514. source: "./media/characters/irbisgreif/side-dressed.svg",
  30515. extra: 788/688,
  30516. bottom: 21/809
  30517. }
  30518. },
  30519. backDressed: {
  30520. height: math.unit(216, "cm"),
  30521. weight: math.unit(102, "kg"),
  30522. name: "Back-dressed",
  30523. image: {
  30524. source: "./media/characters/irbisgreif/back-dressed.svg",
  30525. extra: 901/783,
  30526. bottom: 10/911
  30527. }
  30528. },
  30529. dick: {
  30530. height: math.unit(0.49, "feet"),
  30531. name: "Dick",
  30532. image: {
  30533. source: "./media/characters/irbisgreif/dick.svg"
  30534. }
  30535. },
  30536. wingTop: {
  30537. height: math.unit(1.93 , "feet"),
  30538. name: "Wing-top",
  30539. image: {
  30540. source: "./media/characters/irbisgreif/wing-top.svg"
  30541. }
  30542. },
  30543. wingBottom: {
  30544. height: math.unit(1.93 , "feet"),
  30545. name: "Wing-bottom",
  30546. image: {
  30547. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30548. }
  30549. },
  30550. },
  30551. [
  30552. {
  30553. name: "Normal",
  30554. height: math.unit(216, "cm"),
  30555. default: true
  30556. },
  30557. ]
  30558. ))
  30559. characterMakers.push(() => makeCharacter(
  30560. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30561. {
  30562. front: {
  30563. height: math.unit(6, "feet"),
  30564. weight: math.unit(150, "lb"),
  30565. name: "Front",
  30566. image: {
  30567. source: "./media/characters/pride/front.svg",
  30568. extra: 1299/1230,
  30569. bottom: 18/1317
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(7, "feet")
  30577. },
  30578. {
  30579. name: "Mini-macro",
  30580. height: math.unit(11, "feet")
  30581. },
  30582. {
  30583. name: "Macro",
  30584. height: math.unit(15, "meters"),
  30585. default: true
  30586. },
  30587. {
  30588. name: "Macro+",
  30589. height: math.unit(40, "meters")
  30590. },
  30591. ]
  30592. ))
  30593. characterMakers.push(() => makeCharacter(
  30594. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30595. {
  30596. front: {
  30597. height: math.unit(4 + 2 / 12, "feet"),
  30598. weight: math.unit(95, "lb"),
  30599. name: "Front",
  30600. image: {
  30601. source: "./media/characters/vaelophis-nyx/front.svg",
  30602. extra: 2532/2330,
  30603. bottom: 0/2532
  30604. }
  30605. },
  30606. back: {
  30607. height: math.unit(4 + 2 / 12, "feet"),
  30608. weight: math.unit(95, "lb"),
  30609. name: "Back",
  30610. image: {
  30611. source: "./media/characters/vaelophis-nyx/back.svg",
  30612. extra: 2484/2361,
  30613. bottom: 0/2484
  30614. }
  30615. },
  30616. feralSide: {
  30617. height: math.unit(2 + 1/12, "feet"),
  30618. weight: math.unit(20, "lb"),
  30619. name: "Feral (Side)",
  30620. image: {
  30621. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30622. extra: 1721/1581,
  30623. bottom: 70/1791
  30624. }
  30625. },
  30626. feralLazing: {
  30627. height: math.unit(1.08, "feet"),
  30628. weight: math.unit(20, "lb"),
  30629. name: "Feral (Lazing)",
  30630. image: {
  30631. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30632. extra: 822/822,
  30633. bottom: 248/1070
  30634. }
  30635. },
  30636. ear: {
  30637. height: math.unit(0.416, "feet"),
  30638. name: "Ear",
  30639. image: {
  30640. source: "./media/characters/vaelophis-nyx/ear.svg"
  30641. }
  30642. },
  30643. eye: {
  30644. height: math.unit(0.0748, "feet"),
  30645. name: "Eye",
  30646. image: {
  30647. source: "./media/characters/vaelophis-nyx/eye.svg"
  30648. }
  30649. },
  30650. mouth: {
  30651. height: math.unit(0.378, "feet"),
  30652. name: "Mouth",
  30653. image: {
  30654. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30655. }
  30656. },
  30657. spade: {
  30658. height: math.unit(0.55, "feet"),
  30659. name: "Spade",
  30660. image: {
  30661. source: "./media/characters/vaelophis-nyx/spade.svg"
  30662. }
  30663. },
  30664. },
  30665. [
  30666. {
  30667. name: "Normal",
  30668. height: math.unit(4 + 2/12, "feet"),
  30669. default: true
  30670. },
  30671. ]
  30672. ))
  30673. characterMakers.push(() => makeCharacter(
  30674. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30675. {
  30676. front: {
  30677. height: math.unit(7, "feet"),
  30678. weight: math.unit(231, "lb"),
  30679. name: "Front",
  30680. image: {
  30681. source: "./media/characters/flux/front.svg",
  30682. extra: 919/871,
  30683. bottom: 0/919
  30684. }
  30685. },
  30686. back: {
  30687. height: math.unit(7, "feet"),
  30688. weight: math.unit(231, "lb"),
  30689. name: "Back",
  30690. image: {
  30691. source: "./media/characters/flux/back.svg",
  30692. extra: 1040/992,
  30693. bottom: 0/1040
  30694. }
  30695. },
  30696. frontDressed: {
  30697. height: math.unit(7, "feet"),
  30698. weight: math.unit(231, "lb"),
  30699. name: "Front (Dressed)",
  30700. image: {
  30701. source: "./media/characters/flux/front-dressed.svg",
  30702. extra: 919/871,
  30703. bottom: 0/919
  30704. }
  30705. },
  30706. feralSide: {
  30707. height: math.unit(5, "feet"),
  30708. weight: math.unit(150, "lb"),
  30709. name: "Feral (Side)",
  30710. image: {
  30711. source: "./media/characters/flux/feral-side.svg",
  30712. extra: 598/528,
  30713. bottom: 28/626
  30714. }
  30715. },
  30716. head: {
  30717. height: math.unit(1.585, "feet"),
  30718. name: "Head",
  30719. image: {
  30720. source: "./media/characters/flux/head.svg"
  30721. }
  30722. },
  30723. headSide: {
  30724. height: math.unit(1.74, "feet"),
  30725. name: "Head (Side)",
  30726. image: {
  30727. source: "./media/characters/flux/head-side.svg"
  30728. }
  30729. },
  30730. headSideFire: {
  30731. height: math.unit(1.76, "feet"),
  30732. name: "Head (Side, Fire)",
  30733. image: {
  30734. source: "./media/characters/flux/head-side-fire.svg"
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Normal",
  30741. height: math.unit(7, "feet"),
  30742. default: true
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30748. {
  30749. front: {
  30750. height: math.unit(9, "feet"),
  30751. weight: math.unit(1012, "lb"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/ulfra-lupae/front.svg",
  30755. extra: 1083/1011,
  30756. bottom: 67/1150
  30757. }
  30758. },
  30759. },
  30760. [
  30761. {
  30762. name: "Micro",
  30763. height: math.unit(6, "inches")
  30764. },
  30765. {
  30766. name: "Socializing",
  30767. height: math.unit(6 + 5/12, "feet")
  30768. },
  30769. {
  30770. name: "Normal",
  30771. height: math.unit(9, "feet"),
  30772. default: true
  30773. },
  30774. {
  30775. name: "Macro",
  30776. height: math.unit(150, "feet")
  30777. },
  30778. ]
  30779. ))
  30780. characterMakers.push(() => makeCharacter(
  30781. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30782. {
  30783. front: {
  30784. height: math.unit(5 + 2/12, "feet"),
  30785. weight: math.unit(120, "lb"),
  30786. name: "Front",
  30787. image: {
  30788. source: "./media/characters/timber/front.svg",
  30789. extra: 2814/2705,
  30790. bottom: 181/2995
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "Normal",
  30797. height: math.unit(5 + 2/12, "feet"),
  30798. default: true
  30799. },
  30800. ]
  30801. ))
  30802. characterMakers.push(() => makeCharacter(
  30803. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30804. {
  30805. front: {
  30806. height: math.unit(5 + 7/12, "feet"),
  30807. weight: math.unit(220, "lb"),
  30808. name: "Front",
  30809. image: {
  30810. source: "./media/characters/nicki/front.svg",
  30811. extra: 453/419,
  30812. bottom: 7/460
  30813. }
  30814. },
  30815. frontAlt: {
  30816. height: math.unit(5 + 7/12, "feet"),
  30817. weight: math.unit(220, "lb"),
  30818. name: "Front-alt",
  30819. image: {
  30820. source: "./media/characters/nicki/front-alt.svg",
  30821. extra: 435/411,
  30822. bottom: 12/447
  30823. }
  30824. },
  30825. back: {
  30826. height: math.unit(5 + 7/12, "feet"),
  30827. weight: math.unit(220, "lb"),
  30828. name: "Back",
  30829. image: {
  30830. source: "./media/characters/nicki/back.svg",
  30831. extra: 440/413,
  30832. bottom: 19/459
  30833. }
  30834. },
  30835. taur: {
  30836. height: math.unit(7 + 6/12, "feet"),
  30837. weight: math.unit(700, "lb"),
  30838. name: "Taur",
  30839. image: {
  30840. source: "./media/characters/nicki/taur.svg",
  30841. extra: 975/773,
  30842. bottom: 0/975
  30843. }
  30844. },
  30845. frontNsfw: {
  30846. height: math.unit(5 + 7/12, "feet"),
  30847. weight: math.unit(220, "lb"),
  30848. name: "Front (NSFW)",
  30849. image: {
  30850. source: "./media/characters/nicki/front-nsfw.svg",
  30851. extra: 453/419,
  30852. bottom: 7/460
  30853. }
  30854. },
  30855. frontNsfwAlt: {
  30856. height: math.unit(5 + 7/12, "feet"),
  30857. weight: math.unit(220, "lb"),
  30858. name: "Front (Alt, NSFW)",
  30859. image: {
  30860. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30861. extra: 435/411,
  30862. bottom: 12/447
  30863. }
  30864. },
  30865. backNsfw: {
  30866. height: math.unit(5 + 7/12, "feet"),
  30867. weight: math.unit(220, "lb"),
  30868. name: "Back (NSFW)",
  30869. image: {
  30870. source: "./media/characters/nicki/back-nsfw.svg",
  30871. extra: 440/413,
  30872. bottom: 19/459
  30873. }
  30874. },
  30875. head: {
  30876. height: math.unit(2.1, "feet"),
  30877. name: "Head",
  30878. image: {
  30879. source: "./media/characters/nicki/head.svg"
  30880. }
  30881. },
  30882. paw: {
  30883. height: math.unit(1.88, "feet"),
  30884. name: "Paw",
  30885. image: {
  30886. source: "./media/characters/nicki/paw.svg"
  30887. }
  30888. },
  30889. },
  30890. [
  30891. {
  30892. name: "Normal",
  30893. height: math.unit(5 + 7/12, "feet"),
  30894. default: true
  30895. },
  30896. ]
  30897. ))
  30898. characterMakers.push(() => makeCharacter(
  30899. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30900. {
  30901. front: {
  30902. height: math.unit(7 + 10/12, "feet"),
  30903. weight: math.unit(3.5, "tons"),
  30904. name: "Front",
  30905. image: {
  30906. source: "./media/characters/lee/front.svg",
  30907. extra: 1773/1615,
  30908. bottom: 86/1859
  30909. }
  30910. },
  30911. hand: {
  30912. height: math.unit(1.78, "feet"),
  30913. name: "Hand",
  30914. image: {
  30915. source: "./media/characters/lee/hand.svg"
  30916. }
  30917. },
  30918. maw: {
  30919. height: math.unit(1.18, "feet"),
  30920. name: "Maw",
  30921. image: {
  30922. source: "./media/characters/lee/maw.svg"
  30923. }
  30924. },
  30925. },
  30926. [
  30927. {
  30928. name: "Normal",
  30929. height: math.unit(7 + 10/12, "feet"),
  30930. default: true
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30936. {
  30937. front: {
  30938. height: math.unit(9, "feet"),
  30939. name: "Front",
  30940. image: {
  30941. source: "./media/characters/guti/front.svg",
  30942. extra: 4551/4355,
  30943. bottom: 123/4674
  30944. }
  30945. },
  30946. tongue: {
  30947. height: math.unit(1, "feet"),
  30948. name: "Tongue",
  30949. image: {
  30950. source: "./media/characters/guti/tongue.svg"
  30951. }
  30952. },
  30953. paw: {
  30954. height: math.unit(1.18, "feet"),
  30955. name: "Paw",
  30956. image: {
  30957. source: "./media/characters/guti/paw.svg"
  30958. }
  30959. },
  30960. },
  30961. [
  30962. {
  30963. name: "Normal",
  30964. height: math.unit(9, "feet"),
  30965. default: true
  30966. },
  30967. ]
  30968. ))
  30969. characterMakers.push(() => makeCharacter(
  30970. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30971. {
  30972. side: {
  30973. height: math.unit(5, "meters"),
  30974. name: "Side",
  30975. image: {
  30976. source: "./media/characters/vesper/side.svg",
  30977. extra: 1605/1518,
  30978. bottom: 0/1605
  30979. }
  30980. },
  30981. },
  30982. [
  30983. {
  30984. name: "Small",
  30985. height: math.unit(5, "meters")
  30986. },
  30987. {
  30988. name: "Sage",
  30989. height: math.unit(100, "meters"),
  30990. default: true
  30991. },
  30992. {
  30993. name: "Fun Size",
  30994. height: math.unit(600, "meters")
  30995. },
  30996. {
  30997. name: "Goddess",
  30998. height: math.unit(20000, "km")
  30999. },
  31000. {
  31001. name: "Maximum",
  31002. height: math.unit(5, "galaxies")
  31003. },
  31004. ]
  31005. ))
  31006. characterMakers.push(() => makeCharacter(
  31007. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31008. {
  31009. front: {
  31010. height: math.unit(6 + 3/12, "feet"),
  31011. weight: math.unit(190, "lb"),
  31012. name: "Front",
  31013. image: {
  31014. source: "./media/characters/gawain/front.svg",
  31015. extra: 2222/2139,
  31016. bottom: 90/2312
  31017. }
  31018. },
  31019. back: {
  31020. height: math.unit(6 + 3/12, "feet"),
  31021. weight: math.unit(190, "lb"),
  31022. name: "Back",
  31023. image: {
  31024. source: "./media/characters/gawain/back.svg",
  31025. extra: 2199/2111,
  31026. bottom: 73/2272
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(6 + 3/12, "feet"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31040. {
  31041. side: {
  31042. height: math.unit(3.5, "meters"),
  31043. weight: math.unit(16000, "lb"),
  31044. name: "Side",
  31045. image: {
  31046. source: "./media/characters/dascalti/side.svg",
  31047. extra: 392/273,
  31048. bottom: 47/439
  31049. }
  31050. },
  31051. breath: {
  31052. height: math.unit(7.4, "feet"),
  31053. name: "Breath",
  31054. image: {
  31055. source: "./media/characters/dascalti/breath.svg"
  31056. }
  31057. },
  31058. fed: {
  31059. height: math.unit(3.6, "meters"),
  31060. weight: math.unit(16000, "lb"),
  31061. name: "Fed",
  31062. image: {
  31063. source: "./media/characters/dascalti/fed.svg",
  31064. extra: 1419/820,
  31065. bottom: 95/1514
  31066. }
  31067. },
  31068. },
  31069. [
  31070. {
  31071. name: "Normal",
  31072. height: math.unit(3.5, "meters"),
  31073. default: true
  31074. },
  31075. ]
  31076. ))
  31077. characterMakers.push(() => makeCharacter(
  31078. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31079. {
  31080. front: {
  31081. height: math.unit(3 + 5/12, "feet"),
  31082. name: "Front",
  31083. image: {
  31084. source: "./media/characters/mauve/front.svg",
  31085. extra: 1126/1033,
  31086. bottom: 65/1191
  31087. }
  31088. },
  31089. side: {
  31090. height: math.unit(3 + 5/12, "feet"),
  31091. name: "Side",
  31092. image: {
  31093. source: "./media/characters/mauve/side.svg",
  31094. extra: 1089/1001,
  31095. bottom: 29/1118
  31096. }
  31097. },
  31098. back: {
  31099. height: math.unit(3 + 5/12, "feet"),
  31100. name: "Back",
  31101. image: {
  31102. source: "./media/characters/mauve/back.svg",
  31103. extra: 1173/1053,
  31104. bottom: 109/1282
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(3 + 5/12, "feet"),
  31112. default: true
  31113. },
  31114. ]
  31115. ))
  31116. characterMakers.push(() => makeCharacter(
  31117. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31118. {
  31119. front: {
  31120. height: math.unit(6 + 3/12, "feet"),
  31121. weight: math.unit(430, "lb"),
  31122. name: "Front",
  31123. image: {
  31124. source: "./media/characters/carlos/front.svg",
  31125. extra: 1964/1913,
  31126. bottom: 70/2034
  31127. }
  31128. },
  31129. },
  31130. [
  31131. {
  31132. name: "Normal",
  31133. height: math.unit(6 + 3/12, "feet"),
  31134. default: true
  31135. },
  31136. ]
  31137. ))
  31138. characterMakers.push(() => makeCharacter(
  31139. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31140. {
  31141. back: {
  31142. height: math.unit(5 + 10/12, "feet"),
  31143. weight: math.unit(200, "lb"),
  31144. name: "Back",
  31145. image: {
  31146. source: "./media/characters/jax/back.svg",
  31147. extra: 764/739,
  31148. bottom: 25/789
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Normal",
  31155. height: math.unit(5 + 10/12, "feet"),
  31156. default: true
  31157. },
  31158. ]
  31159. ))
  31160. characterMakers.push(() => makeCharacter(
  31161. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31162. {
  31163. front: {
  31164. height: math.unit(8, "feet"),
  31165. weight: math.unit(250, "lb"),
  31166. name: "Front",
  31167. image: {
  31168. source: "./media/characters/eikthynir/front.svg",
  31169. extra: 1332/1166,
  31170. bottom: 82/1414
  31171. }
  31172. },
  31173. back: {
  31174. height: math.unit(8, "feet"),
  31175. weight: math.unit(250, "lb"),
  31176. name: "Back",
  31177. image: {
  31178. source: "./media/characters/eikthynir/back.svg",
  31179. extra: 1342/1190,
  31180. bottom: 19/1361
  31181. }
  31182. },
  31183. dick: {
  31184. height: math.unit(2.35, "feet"),
  31185. name: "Dick",
  31186. image: {
  31187. source: "./media/characters/eikthynir/dick.svg"
  31188. }
  31189. },
  31190. },
  31191. [
  31192. {
  31193. name: "Normal",
  31194. height: math.unit(8, "feet"),
  31195. default: true
  31196. },
  31197. ]
  31198. ))
  31199. characterMakers.push(() => makeCharacter(
  31200. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31201. {
  31202. front: {
  31203. height: math.unit(99, "meters"),
  31204. weight: math.unit(13000, "tons"),
  31205. name: "Front",
  31206. image: {
  31207. source: "./media/characters/zlmos/front.svg",
  31208. extra: 2202/1992,
  31209. bottom: 315/2517
  31210. }
  31211. },
  31212. },
  31213. [
  31214. {
  31215. name: "Macro",
  31216. height: math.unit(99, "meters"),
  31217. default: true
  31218. },
  31219. ]
  31220. ))
  31221. characterMakers.push(() => makeCharacter(
  31222. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31223. {
  31224. front: {
  31225. height: math.unit(6 + 5/12, "feet"),
  31226. name: "Front",
  31227. image: {
  31228. source: "./media/characters/purri/front.svg",
  31229. extra: 1698/1610,
  31230. bottom: 32/1730
  31231. }
  31232. },
  31233. frontAlt: {
  31234. height: math.unit(6 + 5/12, "feet"),
  31235. name: "Front (Alt)",
  31236. image: {
  31237. source: "./media/characters/purri/front-alt.svg",
  31238. extra: 450/420,
  31239. bottom: 26/476
  31240. }
  31241. },
  31242. boots: {
  31243. height: math.unit(5.5, "feet"),
  31244. name: "Boots",
  31245. image: {
  31246. source: "./media/characters/purri/boots.svg",
  31247. extra: 905/853,
  31248. bottom: 18/923
  31249. }
  31250. },
  31251. lying: {
  31252. height: math.unit(2, "feet"),
  31253. name: "Lying",
  31254. image: {
  31255. source: "./media/characters/purri/lying.svg",
  31256. extra: 940/843,
  31257. bottom: 146/1086
  31258. }
  31259. },
  31260. devious: {
  31261. height: math.unit(1.77, "feet"),
  31262. name: "Devious",
  31263. image: {
  31264. source: "./media/characters/purri/devious.svg",
  31265. extra: 1440/1155,
  31266. bottom: 147/1587
  31267. }
  31268. },
  31269. bean: {
  31270. height: math.unit(1.94, "feet"),
  31271. name: "Bean",
  31272. image: {
  31273. source: "./media/characters/purri/bean.svg"
  31274. }
  31275. },
  31276. },
  31277. [
  31278. {
  31279. name: "Micro",
  31280. height: math.unit(1, "mm")
  31281. },
  31282. {
  31283. name: "Normal",
  31284. height: math.unit(6 + 5/12, "feet"),
  31285. default: true
  31286. },
  31287. {
  31288. name: "Macro :3c",
  31289. height: math.unit(2, "miles")
  31290. },
  31291. ]
  31292. ))
  31293. characterMakers.push(() => makeCharacter(
  31294. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31295. {
  31296. front: {
  31297. height: math.unit(6 + 2/12, "feet"),
  31298. weight: math.unit(250, "lb"),
  31299. name: "Front",
  31300. image: {
  31301. source: "./media/characters/moonlight/front.svg",
  31302. extra: 1044/908,
  31303. bottom: 56/1100
  31304. }
  31305. },
  31306. feral: {
  31307. height: math.unit(3 + 1/12, "feet"),
  31308. weight: math.unit(50, "kg"),
  31309. name: "Feral",
  31310. image: {
  31311. source: "./media/characters/moonlight/feral.svg",
  31312. extra: 3705/2791,
  31313. bottom: 145/3850
  31314. }
  31315. },
  31316. paw: {
  31317. height: math.unit(1, "feet"),
  31318. name: "Paw",
  31319. image: {
  31320. source: "./media/characters/moonlight/paw.svg"
  31321. }
  31322. },
  31323. paws: {
  31324. height: math.unit(0.98, "feet"),
  31325. name: "Paws",
  31326. image: {
  31327. source: "./media/characters/moonlight/paws.svg",
  31328. extra: 939/939,
  31329. bottom: 50/989
  31330. }
  31331. },
  31332. mouth: {
  31333. height: math.unit(0.48, "feet"),
  31334. name: "Mouth",
  31335. image: {
  31336. source: "./media/characters/moonlight/mouth.svg"
  31337. }
  31338. },
  31339. dick: {
  31340. height: math.unit(1.46, "feet"),
  31341. name: "Dick",
  31342. image: {
  31343. source: "./media/characters/moonlight/dick.svg"
  31344. }
  31345. },
  31346. },
  31347. [
  31348. {
  31349. name: "Normal",
  31350. height: math.unit(6 + 2/12, "feet"),
  31351. default: true
  31352. },
  31353. {
  31354. name: "Macro",
  31355. height: math.unit(300, "feet")
  31356. },
  31357. {
  31358. name: "Macro+",
  31359. height: math.unit(1, "mile")
  31360. },
  31361. {
  31362. name: "Mt. Moon",
  31363. height: math.unit(5, "miles")
  31364. },
  31365. {
  31366. name: "Megamacro",
  31367. height: math.unit(15, "miles")
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31373. {
  31374. back: {
  31375. height: math.unit(6, "feet"),
  31376. weight: math.unit(150, "lb"),
  31377. name: "Back",
  31378. image: {
  31379. source: "./media/characters/sylen/back.svg",
  31380. extra: 1335/1273,
  31381. bottom: 107/1442
  31382. }
  31383. },
  31384. },
  31385. [
  31386. {
  31387. name: "Normal",
  31388. height: math.unit(5 + 5/12, "feet")
  31389. },
  31390. {
  31391. name: "Megamacro",
  31392. height: math.unit(3, "miles"),
  31393. default: true
  31394. },
  31395. ]
  31396. ))
  31397. characterMakers.push(() => makeCharacter(
  31398. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31399. {
  31400. front: {
  31401. height: math.unit(6, "feet"),
  31402. weight: math.unit(190, "lb"),
  31403. name: "Front",
  31404. image: {
  31405. source: "./media/characters/huttser/front.svg",
  31406. extra: 1152/1058,
  31407. bottom: 23/1175
  31408. }
  31409. },
  31410. side: {
  31411. height: math.unit(6, "feet"),
  31412. weight: math.unit(190, "lb"),
  31413. name: "Side",
  31414. image: {
  31415. source: "./media/characters/huttser/side.svg",
  31416. extra: 1174/1065,
  31417. bottom: 18/1192
  31418. }
  31419. },
  31420. back: {
  31421. height: math.unit(6, "feet"),
  31422. weight: math.unit(190, "lb"),
  31423. name: "Back",
  31424. image: {
  31425. source: "./media/characters/huttser/back.svg",
  31426. extra: 1158/1056,
  31427. bottom: 12/1170
  31428. }
  31429. },
  31430. },
  31431. [
  31432. ]
  31433. ))
  31434. characterMakers.push(() => makeCharacter(
  31435. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31436. {
  31437. side: {
  31438. height: math.unit(12 + 9/12, "feet"),
  31439. weight: math.unit(15000, "lb"),
  31440. name: "Side",
  31441. image: {
  31442. source: "./media/characters/faan/side.svg",
  31443. extra: 2747/2697,
  31444. bottom: 0/2747
  31445. }
  31446. },
  31447. front: {
  31448. height: math.unit(12 + 9/12, "feet"),
  31449. weight: math.unit(15000, "lb"),
  31450. name: "Front",
  31451. image: {
  31452. source: "./media/characters/faan/front.svg",
  31453. extra: 607/571,
  31454. bottom: 24/631
  31455. }
  31456. },
  31457. head: {
  31458. height: math.unit(2.85, "feet"),
  31459. name: "Head",
  31460. image: {
  31461. source: "./media/characters/faan/head.svg"
  31462. }
  31463. },
  31464. headAlt: {
  31465. height: math.unit(3.13, "feet"),
  31466. name: "Head-alt",
  31467. image: {
  31468. source: "./media/characters/faan/head-alt.svg"
  31469. }
  31470. },
  31471. },
  31472. [
  31473. {
  31474. name: "Normal",
  31475. height: math.unit(12 + 9/12, "feet"),
  31476. default: true
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(6, "feet"),
  31485. weight: math.unit(300, "lb"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/tanio/front.svg",
  31489. extra: 711/673,
  31490. bottom: 25/736
  31491. }
  31492. },
  31493. },
  31494. [
  31495. {
  31496. name: "Normal",
  31497. height: math.unit(6, "feet"),
  31498. default: true
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(3, "inches"),
  31507. name: "Front",
  31508. image: {
  31509. source: "./media/characters/noboru/front.svg",
  31510. extra: 1039/932,
  31511. bottom: 18/1057
  31512. }
  31513. },
  31514. },
  31515. [
  31516. {
  31517. name: "Micro",
  31518. height: math.unit(3, "inches"),
  31519. default: true
  31520. },
  31521. ]
  31522. ))
  31523. characterMakers.push(() => makeCharacter(
  31524. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31525. {
  31526. front: {
  31527. height: math.unit(1.85, "meters"),
  31528. weight: math.unit(80, "kg"),
  31529. name: "Front",
  31530. image: {
  31531. source: "./media/characters/daniel-barrett/front.svg",
  31532. extra: 355/337,
  31533. bottom: 9/364
  31534. }
  31535. },
  31536. },
  31537. [
  31538. {
  31539. name: "Pico",
  31540. height: math.unit(0.0433, "mm")
  31541. },
  31542. {
  31543. name: "Nano",
  31544. height: math.unit(1.5, "mm")
  31545. },
  31546. {
  31547. name: "Micro",
  31548. height: math.unit(5.3, "cm"),
  31549. default: true
  31550. },
  31551. {
  31552. name: "Normal",
  31553. height: math.unit(1.85, "meters")
  31554. },
  31555. {
  31556. name: "Macro",
  31557. height: math.unit(64.7, "meters")
  31558. },
  31559. {
  31560. name: "Megamacro",
  31561. height: math.unit(2.26, "km")
  31562. },
  31563. {
  31564. name: "Gigamacro",
  31565. height: math.unit(79, "km")
  31566. },
  31567. {
  31568. name: "Teramacro",
  31569. height: math.unit(2765, "km")
  31570. },
  31571. {
  31572. name: "Petamacro",
  31573. height: math.unit(96678, "km")
  31574. },
  31575. ]
  31576. ))
  31577. characterMakers.push(() => makeCharacter(
  31578. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31579. {
  31580. front: {
  31581. height: math.unit(30, "meters"),
  31582. weight: math.unit(400, "tons"),
  31583. name: "Front",
  31584. image: {
  31585. source: "./media/characters/zeel/front.svg",
  31586. extra: 2599/2599,
  31587. bottom: 226/2825
  31588. }
  31589. },
  31590. },
  31591. [
  31592. {
  31593. name: "Macro",
  31594. height: math.unit(30, "meters"),
  31595. default: true
  31596. },
  31597. ]
  31598. ))
  31599. characterMakers.push(() => makeCharacter(
  31600. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31601. {
  31602. front: {
  31603. height: math.unit(6 + 7/12, "feet"),
  31604. weight: math.unit(210, "lb"),
  31605. name: "Front",
  31606. image: {
  31607. source: "./media/characters/tarn/front.svg",
  31608. extra: 3517/3220,
  31609. bottom: 91/3608
  31610. }
  31611. },
  31612. back: {
  31613. height: math.unit(6 + 7/12, "feet"),
  31614. weight: math.unit(210, "lb"),
  31615. name: "Back",
  31616. image: {
  31617. source: "./media/characters/tarn/back.svg",
  31618. extra: 3566/3241,
  31619. bottom: 34/3600
  31620. }
  31621. },
  31622. dick: {
  31623. height: math.unit(1.65, "feet"),
  31624. name: "Dick",
  31625. image: {
  31626. source: "./media/characters/tarn/dick.svg"
  31627. }
  31628. },
  31629. paw: {
  31630. height: math.unit(1.80, "feet"),
  31631. name: "Paw",
  31632. image: {
  31633. source: "./media/characters/tarn/paw.svg"
  31634. }
  31635. },
  31636. tongue: {
  31637. height: math.unit(0.97, "feet"),
  31638. name: "Tongue",
  31639. image: {
  31640. source: "./media/characters/tarn/tongue.svg"
  31641. }
  31642. },
  31643. },
  31644. [
  31645. {
  31646. name: "Micro",
  31647. height: math.unit(4, "inches")
  31648. },
  31649. {
  31650. name: "Normal",
  31651. height: math.unit(6 + 7/12, "feet"),
  31652. default: true
  31653. },
  31654. {
  31655. name: "Macro",
  31656. height: math.unit(300, "feet")
  31657. },
  31658. ]
  31659. ))
  31660. characterMakers.push(() => makeCharacter(
  31661. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31662. {
  31663. front: {
  31664. height: math.unit(5 + 7/12, "feet"),
  31665. weight: math.unit(80, "kg"),
  31666. name: "Front",
  31667. image: {
  31668. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31669. extra: 3023/2865,
  31670. bottom: 33/3056
  31671. }
  31672. },
  31673. back: {
  31674. height: math.unit(5 + 7/12, "feet"),
  31675. weight: math.unit(80, "kg"),
  31676. name: "Back",
  31677. image: {
  31678. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31679. extra: 3020/2886,
  31680. bottom: 30/3050
  31681. }
  31682. },
  31683. dick: {
  31684. height: math.unit(0.98, "feet"),
  31685. name: "Dick",
  31686. image: {
  31687. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31688. }
  31689. },
  31690. anatomy: {
  31691. height: math.unit(2.86, "feet"),
  31692. name: "Anatomy",
  31693. image: {
  31694. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31695. }
  31696. },
  31697. },
  31698. [
  31699. {
  31700. name: "Really Small",
  31701. height: math.unit(2, "inches")
  31702. },
  31703. {
  31704. name: "Micro",
  31705. height: math.unit(5.583, "inches")
  31706. },
  31707. {
  31708. name: "Normal",
  31709. height: math.unit(5 + 7/12, "feet"),
  31710. default: true
  31711. },
  31712. {
  31713. name: "Macro",
  31714. height: math.unit(67, "feet")
  31715. },
  31716. {
  31717. name: "Megamacro",
  31718. height: math.unit(134, "feet")
  31719. },
  31720. ]
  31721. ))
  31722. characterMakers.push(() => makeCharacter(
  31723. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31724. {
  31725. front: {
  31726. height: math.unit(9, "feet"),
  31727. weight: math.unit(120, "lb"),
  31728. name: "Front",
  31729. image: {
  31730. source: "./media/characters/sally/front.svg",
  31731. extra: 1506/1349,
  31732. bottom: 66/1572
  31733. }
  31734. },
  31735. },
  31736. [
  31737. {
  31738. name: "Normal",
  31739. height: math.unit(9, "feet"),
  31740. default: true
  31741. },
  31742. ]
  31743. ))
  31744. characterMakers.push(() => makeCharacter(
  31745. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31746. {
  31747. front: {
  31748. height: math.unit(8, "feet"),
  31749. weight: math.unit(900, "lb"),
  31750. name: "Front",
  31751. image: {
  31752. source: "./media/characters/owen/front.svg",
  31753. extra: 1761/1657,
  31754. bottom: 74/1835
  31755. }
  31756. },
  31757. side: {
  31758. height: math.unit(8, "feet"),
  31759. weight: math.unit(900, "lb"),
  31760. name: "Side",
  31761. image: {
  31762. source: "./media/characters/owen/side.svg",
  31763. extra: 1797/1734,
  31764. bottom: 30/1827
  31765. }
  31766. },
  31767. back: {
  31768. height: math.unit(8, "feet"),
  31769. weight: math.unit(900, "lb"),
  31770. name: "Back",
  31771. image: {
  31772. source: "./media/characters/owen/back.svg",
  31773. extra: 1796/1706,
  31774. bottom: 59/1855
  31775. }
  31776. },
  31777. maw: {
  31778. height: math.unit(1.76, "feet"),
  31779. name: "Maw",
  31780. image: {
  31781. source: "./media/characters/owen/maw.svg"
  31782. }
  31783. },
  31784. },
  31785. [
  31786. {
  31787. name: "Normal",
  31788. height: math.unit(8, "feet"),
  31789. default: true
  31790. },
  31791. ]
  31792. ))
  31793. characterMakers.push(() => makeCharacter(
  31794. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31795. {
  31796. front: {
  31797. height: math.unit(4, "feet"),
  31798. weight: math.unit(400, "lb"),
  31799. name: "Front",
  31800. image: {
  31801. source: "./media/characters/ryth/front.svg",
  31802. extra: 1920/1748,
  31803. bottom: 42/1962
  31804. }
  31805. },
  31806. back: {
  31807. height: math.unit(4, "feet"),
  31808. weight: math.unit(400, "lb"),
  31809. name: "Back",
  31810. image: {
  31811. source: "./media/characters/ryth/back.svg",
  31812. extra: 1897/1690,
  31813. bottom: 89/1986
  31814. }
  31815. },
  31816. mouth: {
  31817. height: math.unit(1.39, "feet"),
  31818. name: "Mouth",
  31819. image: {
  31820. source: "./media/characters/ryth/mouth.svg"
  31821. }
  31822. },
  31823. tailmaw: {
  31824. height: math.unit(1.23, "feet"),
  31825. name: "Tailmaw",
  31826. image: {
  31827. source: "./media/characters/ryth/tailmaw.svg"
  31828. }
  31829. },
  31830. goia: {
  31831. height: math.unit(12, "feet"),
  31832. weight: math.unit(10800, "lb"),
  31833. name: "Goia",
  31834. image: {
  31835. source: "./media/characters/ryth/goia.svg",
  31836. extra: 3450/3198,
  31837. bottom: 61/3511
  31838. }
  31839. },
  31840. },
  31841. [
  31842. {
  31843. name: "Normal",
  31844. height: math.unit(4, "feet"),
  31845. default: true
  31846. },
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31851. {
  31852. front: {
  31853. height: math.unit(7, "feet"),
  31854. weight: math.unit(180, "lb"),
  31855. name: "Front",
  31856. image: {
  31857. source: "./media/characters/necrolance/front.svg",
  31858. extra: 1062/947,
  31859. bottom: 41/1103
  31860. }
  31861. },
  31862. back: {
  31863. height: math.unit(7, "feet"),
  31864. weight: math.unit(180, "lb"),
  31865. name: "Back",
  31866. image: {
  31867. source: "./media/characters/necrolance/back.svg",
  31868. extra: 1045/984,
  31869. bottom: 14/1059
  31870. }
  31871. },
  31872. wing: {
  31873. height: math.unit(2.67, "feet"),
  31874. name: "Wing",
  31875. image: {
  31876. source: "./media/characters/necrolance/wing.svg"
  31877. }
  31878. },
  31879. },
  31880. [
  31881. {
  31882. name: "Normal",
  31883. height: math.unit(7, "feet"),
  31884. default: true
  31885. },
  31886. ]
  31887. ))
  31888. characterMakers.push(() => makeCharacter(
  31889. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31890. {
  31891. front: {
  31892. height: math.unit(76, "meters"),
  31893. weight: math.unit(30000, "tons"),
  31894. name: "Front",
  31895. image: {
  31896. source: "./media/characters/tyler/front.svg",
  31897. extra: 1640/1640,
  31898. bottom: 114/1754
  31899. }
  31900. },
  31901. },
  31902. [
  31903. {
  31904. name: "Macro",
  31905. height: math.unit(76, "meters"),
  31906. default: true
  31907. },
  31908. ]
  31909. ))
  31910. characterMakers.push(() => makeCharacter(
  31911. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31912. {
  31913. front: {
  31914. height: math.unit(4 + 11/12, "feet"),
  31915. weight: math.unit(132, "lb"),
  31916. name: "Front",
  31917. image: {
  31918. source: "./media/characters/icey/front.svg",
  31919. extra: 2750/2550,
  31920. bottom: 33/2783
  31921. }
  31922. },
  31923. back: {
  31924. height: math.unit(4 + 11/12, "feet"),
  31925. weight: math.unit(132, "lb"),
  31926. name: "Back",
  31927. image: {
  31928. source: "./media/characters/icey/back.svg",
  31929. extra: 2624/2481,
  31930. bottom: 35/2659
  31931. }
  31932. },
  31933. },
  31934. [
  31935. {
  31936. name: "Normal",
  31937. height: math.unit(4 + 11/12, "feet"),
  31938. default: true
  31939. },
  31940. ]
  31941. ))
  31942. characterMakers.push(() => makeCharacter(
  31943. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31944. {
  31945. front: {
  31946. height: math.unit(100, "feet"),
  31947. weight: math.unit(0, "lb"),
  31948. name: "Front",
  31949. image: {
  31950. source: "./media/characters/smile/front.svg",
  31951. extra: 2983/2912,
  31952. bottom: 162/3145
  31953. }
  31954. },
  31955. back: {
  31956. height: math.unit(100, "feet"),
  31957. weight: math.unit(0, "lb"),
  31958. name: "Back",
  31959. image: {
  31960. source: "./media/characters/smile/back.svg",
  31961. extra: 3143/3031,
  31962. bottom: 91/3234
  31963. }
  31964. },
  31965. head: {
  31966. height: math.unit(26.3, "feet"),
  31967. weight: math.unit(0, "lb"),
  31968. name: "Head",
  31969. image: {
  31970. source: "./media/characters/smile/head.svg"
  31971. }
  31972. },
  31973. collar: {
  31974. height: math.unit(5.3, "feet"),
  31975. weight: math.unit(0, "lb"),
  31976. name: "Collar",
  31977. image: {
  31978. source: "./media/characters/smile/collar.svg"
  31979. }
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Macro",
  31985. height: math.unit(100, "feet"),
  31986. default: true
  31987. },
  31988. ]
  31989. ))
  31990. characterMakers.push(() => makeCharacter(
  31991. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31992. {
  31993. dragon: {
  31994. height: math.unit(26, "feet"),
  31995. weight: math.unit(36, "tons"),
  31996. name: "Dragon",
  31997. image: {
  31998. source: "./media/characters/arimphae/dragon.svg",
  31999. extra: 1574/983,
  32000. bottom: 357/1931
  32001. }
  32002. },
  32003. drake: {
  32004. height: math.unit(9, "feet"),
  32005. weight: math.unit(1.5, "tons"),
  32006. name: "Drake",
  32007. image: {
  32008. source: "./media/characters/arimphae/drake.svg",
  32009. extra: 1120/925,
  32010. bottom: 435/1555
  32011. }
  32012. },
  32013. },
  32014. [
  32015. {
  32016. name: "Small",
  32017. height: math.unit(26*5/9, "feet")
  32018. },
  32019. {
  32020. name: "Normal",
  32021. height: math.unit(26, "feet"),
  32022. default: true
  32023. },
  32024. ]
  32025. ))
  32026. characterMakers.push(() => makeCharacter(
  32027. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32028. {
  32029. front: {
  32030. height: math.unit(8 + 9/12, "feet"),
  32031. name: "Front",
  32032. image: {
  32033. source: "./media/characters/xander/front.svg",
  32034. extra: 848/673,
  32035. bottom: 62/910
  32036. }
  32037. },
  32038. },
  32039. [
  32040. {
  32041. name: "Normal",
  32042. height: math.unit(8 + 9/12, "feet"),
  32043. default: true
  32044. },
  32045. {
  32046. name: "Gaze Grabber",
  32047. height: math.unit(13 + 8/12, "feet")
  32048. },
  32049. {
  32050. name: "Jaw Dropper",
  32051. height: math.unit(27, "feet")
  32052. },
  32053. {
  32054. name: "Show Stopper",
  32055. height: math.unit(136, "feet")
  32056. },
  32057. {
  32058. name: "Superstar",
  32059. height: math.unit(1.9e6, "miles")
  32060. },
  32061. ]
  32062. ))
  32063. characterMakers.push(() => makeCharacter(
  32064. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32065. {
  32066. side: {
  32067. height: math.unit(2100, "feet"),
  32068. name: "Side",
  32069. image: {
  32070. source: "./media/characters/osiris/side.svg",
  32071. extra: 1105/939,
  32072. bottom: 167/1272
  32073. }
  32074. },
  32075. },
  32076. [
  32077. {
  32078. name: "Macro",
  32079. height: math.unit(2100, "feet"),
  32080. default: true
  32081. },
  32082. ]
  32083. ))
  32084. characterMakers.push(() => makeCharacter(
  32085. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32086. {
  32087. front: {
  32088. height: math.unit(6 + 8/12, "feet"),
  32089. weight: math.unit(225, "lb"),
  32090. name: "Front",
  32091. image: {
  32092. source: "./media/characters/rhys-londe/front.svg",
  32093. extra: 2258/2141,
  32094. bottom: 188/2446
  32095. }
  32096. },
  32097. back: {
  32098. height: math.unit(6 + 8/12, "feet"),
  32099. weight: math.unit(225, "lb"),
  32100. name: "Back",
  32101. image: {
  32102. source: "./media/characters/rhys-londe/back.svg",
  32103. extra: 2237/2137,
  32104. bottom: 63/2300
  32105. }
  32106. },
  32107. frontNsfw: {
  32108. height: math.unit(6 + 8/12, "feet"),
  32109. weight: math.unit(225, "lb"),
  32110. name: "Front (NSFW)",
  32111. image: {
  32112. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32113. extra: 2258/2141,
  32114. bottom: 188/2446
  32115. }
  32116. },
  32117. backNsfw: {
  32118. height: math.unit(6 + 8/12, "feet"),
  32119. weight: math.unit(225, "lb"),
  32120. name: "Back (NSFW)",
  32121. image: {
  32122. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32123. extra: 2237/2137,
  32124. bottom: 63/2300
  32125. }
  32126. },
  32127. dick: {
  32128. height: math.unit(30, "inches"),
  32129. name: "Dick",
  32130. image: {
  32131. source: "./media/characters/rhys-londe/dick.svg"
  32132. }
  32133. },
  32134. maw: {
  32135. height: math.unit(1.6, "feet"),
  32136. name: "Maw",
  32137. image: {
  32138. source: "./media/characters/rhys-londe/maw.svg"
  32139. }
  32140. },
  32141. },
  32142. [
  32143. {
  32144. name: "Normal",
  32145. height: math.unit(6 + 8/12, "feet"),
  32146. default: true
  32147. },
  32148. ]
  32149. ))
  32150. characterMakers.push(() => makeCharacter(
  32151. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32152. {
  32153. front: {
  32154. height: math.unit(3 + 10/12, "feet"),
  32155. weight: math.unit(90, "lb"),
  32156. name: "Front",
  32157. image: {
  32158. source: "./media/characters/taivas-ensim/front.svg",
  32159. extra: 1327/1216,
  32160. bottom: 96/1423
  32161. }
  32162. },
  32163. back: {
  32164. height: math.unit(3 + 10/12, "feet"),
  32165. weight: math.unit(90, "lb"),
  32166. name: "Back",
  32167. image: {
  32168. source: "./media/characters/taivas-ensim/back.svg",
  32169. extra: 1355/1247,
  32170. bottom: 11/1366
  32171. }
  32172. },
  32173. frontNsfw: {
  32174. height: math.unit(3 + 10/12, "feet"),
  32175. weight: math.unit(90, "lb"),
  32176. name: "Front (NSFW)",
  32177. image: {
  32178. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32179. extra: 1327/1216,
  32180. bottom: 96/1423
  32181. }
  32182. },
  32183. backNsfw: {
  32184. height: math.unit(3 + 10/12, "feet"),
  32185. weight: math.unit(90, "lb"),
  32186. name: "Back (NSFW)",
  32187. image: {
  32188. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32189. extra: 1355/1247,
  32190. bottom: 11/1366
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Normal",
  32197. height: math.unit(3 + 10/12, "feet"),
  32198. default: true
  32199. },
  32200. ]
  32201. ))
  32202. characterMakers.push(() => makeCharacter(
  32203. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32204. {
  32205. front: {
  32206. height: math.unit(9 + 6/12, "feet"),
  32207. weight: math.unit(940, "lb"),
  32208. name: "Front",
  32209. image: {
  32210. source: "./media/characters/byliss/front.svg",
  32211. extra: 1327/1290,
  32212. bottom: 82/1409
  32213. }
  32214. },
  32215. back: {
  32216. height: math.unit(9 + 6/12, "feet"),
  32217. weight: math.unit(940, "lb"),
  32218. name: "Back",
  32219. image: {
  32220. source: "./media/characters/byliss/back.svg",
  32221. extra: 1376/1349,
  32222. bottom: 9/1385
  32223. }
  32224. },
  32225. frontNsfw: {
  32226. height: math.unit(9 + 6/12, "feet"),
  32227. weight: math.unit(940, "lb"),
  32228. name: "Front (NSFW)",
  32229. image: {
  32230. source: "./media/characters/byliss/front-nsfw.svg",
  32231. extra: 1327/1290,
  32232. bottom: 82/1409
  32233. }
  32234. },
  32235. backNsfw: {
  32236. height: math.unit(9 + 6/12, "feet"),
  32237. weight: math.unit(940, "lb"),
  32238. name: "Back (NSFW)",
  32239. image: {
  32240. source: "./media/characters/byliss/back-nsfw.svg",
  32241. extra: 1376/1349,
  32242. bottom: 9/1385
  32243. }
  32244. },
  32245. },
  32246. [
  32247. {
  32248. name: "Normal",
  32249. height: math.unit(9 + 6/12, "feet"),
  32250. default: true
  32251. },
  32252. ]
  32253. ))
  32254. characterMakers.push(() => makeCharacter(
  32255. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32256. {
  32257. front: {
  32258. height: math.unit(5 + 2/12, "feet"),
  32259. weight: math.unit(200, "lb"),
  32260. name: "Front",
  32261. image: {
  32262. source: "./media/characters/noraly/front.svg",
  32263. extra: 4985/4773,
  32264. bottom: 150/5135
  32265. }
  32266. },
  32267. full: {
  32268. height: math.unit(5 + 2/12, "feet"),
  32269. weight: math.unit(164, "lb"),
  32270. name: "Full",
  32271. image: {
  32272. source: "./media/characters/noraly/full.svg",
  32273. extra: 1114/1059,
  32274. bottom: 35/1149
  32275. }
  32276. },
  32277. fuller: {
  32278. height: math.unit(5 + 2/12, "feet"),
  32279. weight: math.unit(230, "lb"),
  32280. name: "Fuller",
  32281. image: {
  32282. source: "./media/characters/noraly/fuller.svg",
  32283. extra: 1114/1059,
  32284. bottom: 35/1149
  32285. }
  32286. },
  32287. fullest: {
  32288. height: math.unit(5 + 2/12, "feet"),
  32289. weight: math.unit(300, "lb"),
  32290. name: "Fullest",
  32291. image: {
  32292. source: "./media/characters/noraly/fullest.svg",
  32293. extra: 1114/1059,
  32294. bottom: 35/1149
  32295. }
  32296. },
  32297. },
  32298. [
  32299. {
  32300. name: "Normal",
  32301. height: math.unit(5 + 2/12, "feet"),
  32302. default: true
  32303. },
  32304. ]
  32305. ))
  32306. characterMakers.push(() => makeCharacter(
  32307. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32308. {
  32309. front: {
  32310. height: math.unit(5 + 2/12, "feet"),
  32311. weight: math.unit(210, "lb"),
  32312. name: "Front",
  32313. image: {
  32314. source: "./media/characters/pera/front.svg",
  32315. extra: 1560/1531,
  32316. bottom: 165/1725
  32317. }
  32318. },
  32319. back: {
  32320. height: math.unit(5 + 2/12, "feet"),
  32321. weight: math.unit(210, "lb"),
  32322. name: "Back",
  32323. image: {
  32324. source: "./media/characters/pera/back.svg",
  32325. extra: 1523/1493,
  32326. bottom: 152/1675
  32327. }
  32328. },
  32329. dick: {
  32330. height: math.unit(2.4, "feet"),
  32331. name: "Dick",
  32332. image: {
  32333. source: "./media/characters/pera/dick.svg"
  32334. }
  32335. },
  32336. },
  32337. [
  32338. {
  32339. name: "Normal",
  32340. height: math.unit(5 + 2/12, "feet"),
  32341. default: true
  32342. },
  32343. ]
  32344. ))
  32345. characterMakers.push(() => makeCharacter(
  32346. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32347. {
  32348. front: {
  32349. height: math.unit(12, "feet"),
  32350. weight: math.unit(3200, "lb"),
  32351. name: "Front",
  32352. image: {
  32353. source: "./media/characters/julian/front.svg",
  32354. extra: 2962/2701,
  32355. bottom: 184/3146
  32356. }
  32357. },
  32358. maw: {
  32359. height: math.unit(5.35, "feet"),
  32360. name: "Maw",
  32361. image: {
  32362. source: "./media/characters/julian/maw.svg"
  32363. }
  32364. },
  32365. paw: {
  32366. height: math.unit(3.07, "feet"),
  32367. name: "Paw",
  32368. image: {
  32369. source: "./media/characters/julian/paw.svg"
  32370. }
  32371. },
  32372. },
  32373. [
  32374. {
  32375. name: "Default",
  32376. height: math.unit(12, "feet"),
  32377. default: true
  32378. },
  32379. {
  32380. name: "Big",
  32381. height: math.unit(50, "feet")
  32382. },
  32383. {
  32384. name: "Really Big",
  32385. height: math.unit(1, "mile")
  32386. },
  32387. {
  32388. name: "Extremely Big",
  32389. height: math.unit(100, "miles")
  32390. },
  32391. {
  32392. name: "Planet Hugger",
  32393. height: math.unit(200, "megameters")
  32394. },
  32395. {
  32396. name: "Unreasonably Big",
  32397. height: math.unit(1e300, "meters")
  32398. },
  32399. ]
  32400. ))
  32401. characterMakers.push(() => makeCharacter(
  32402. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32403. {
  32404. solgooleo: {
  32405. height: math.unit(4, "meters"),
  32406. weight: math.unit(6000*1.5, "kg"),
  32407. volume: math.unit(6000, "liters"),
  32408. name: "Solgooleo",
  32409. image: {
  32410. source: "./media/characters/pi/solgooleo.svg",
  32411. extra: 388/331,
  32412. bottom: 29/417
  32413. }
  32414. },
  32415. },
  32416. [
  32417. {
  32418. name: "Normal",
  32419. height: math.unit(4, "meters"),
  32420. default: true
  32421. },
  32422. ]
  32423. ))
  32424. characterMakers.push(() => makeCharacter(
  32425. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32426. {
  32427. front: {
  32428. height: math.unit(8 + 2/12, "feet"),
  32429. weight: math.unit(4, "tons"),
  32430. name: "Front",
  32431. image: {
  32432. source: "./media/characters/shaun/front.svg",
  32433. extra: 1550/1505,
  32434. bottom: 353/1903
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Lorg",
  32441. height: math.unit(8 + 2/12, "feet"),
  32442. default: true
  32443. },
  32444. ]
  32445. ))
  32446. characterMakers.push(() => makeCharacter(
  32447. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32448. {
  32449. front: {
  32450. height: math.unit(7, "feet"),
  32451. name: "Front",
  32452. image: {
  32453. source: "./media/characters/sini/front.svg",
  32454. extra: 726/678,
  32455. bottom: 35/761
  32456. }
  32457. },
  32458. back: {
  32459. height: math.unit(7, "feet"),
  32460. name: "Back",
  32461. image: {
  32462. source: "./media/characters/sini/back.svg",
  32463. extra: 743/701,
  32464. bottom: 12/755
  32465. }
  32466. },
  32467. mawAnthro: {
  32468. height: math.unit(2.14, "feet"),
  32469. name: "Maw (Anthro)",
  32470. image: {
  32471. source: "./media/characters/sini/maw-anthro.svg"
  32472. }
  32473. },
  32474. dick: {
  32475. height: math.unit(1.45, "feet"),
  32476. name: "Dick (Anthro)",
  32477. image: {
  32478. source: "./media/characters/sini/dick-anthro.svg"
  32479. }
  32480. },
  32481. feral: {
  32482. height: math.unit(16, "feet"),
  32483. name: "Feral",
  32484. image: {
  32485. source: "./media/characters/sini/feral.svg",
  32486. extra: 814/605,
  32487. bottom: 11/825
  32488. }
  32489. },
  32490. mawFeral: {
  32491. height: math.unit(5.66, "feet"),
  32492. name: "Maw-feral",
  32493. image: {
  32494. source: "./media/characters/sini/maw-feral.svg"
  32495. }
  32496. },
  32497. footFeral: {
  32498. height: math.unit(5.17, "feet"),
  32499. name: "Foot-feral",
  32500. image: {
  32501. source: "./media/characters/sini/foot-feral.svg"
  32502. }
  32503. },
  32504. },
  32505. [
  32506. {
  32507. name: "Normal",
  32508. height: math.unit(7, "feet"),
  32509. default: true
  32510. },
  32511. ]
  32512. ))
  32513. characterMakers.push(() => makeCharacter(
  32514. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32515. {
  32516. side: {
  32517. height: math.unit(13, "meters"),
  32518. weight: math.unit(9072, "kg"),
  32519. name: "Side",
  32520. image: {
  32521. source: "./media/characters/raylldo/side.svg",
  32522. extra: 403/344,
  32523. bottom: 42/445
  32524. }
  32525. },
  32526. leaping: {
  32527. height: math.unit(12.3, "meters"),
  32528. weight: math.unit(9072, "kg"),
  32529. name: "Leaping",
  32530. image: {
  32531. source: "./media/characters/raylldo/leaping.svg",
  32532. extra: 470/249,
  32533. bottom: 13/483
  32534. }
  32535. },
  32536. flying: {
  32537. height: math.unit(18, "meters"),
  32538. weight: math.unit(9072, "kg"),
  32539. name: "Flying",
  32540. image: {
  32541. source: "./media/characters/raylldo/flying.svg"
  32542. }
  32543. },
  32544. head: {
  32545. height: math.unit(5.85, "meters"),
  32546. name: "Head",
  32547. image: {
  32548. source: "./media/characters/raylldo/head.svg"
  32549. }
  32550. },
  32551. maw: {
  32552. height: math.unit(5.32, "meters"),
  32553. name: "Maw",
  32554. image: {
  32555. source: "./media/characters/raylldo/maw.svg"
  32556. }
  32557. },
  32558. eye: {
  32559. height: math.unit(0.54, "meters"),
  32560. name: "Eye",
  32561. image: {
  32562. source: "./media/characters/raylldo/eye.svg"
  32563. }
  32564. },
  32565. },
  32566. [
  32567. {
  32568. name: "Normal",
  32569. height: math.unit(13, "meters"),
  32570. default: true
  32571. },
  32572. ]
  32573. ))
  32574. characterMakers.push(() => makeCharacter(
  32575. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32576. {
  32577. anthroFront: {
  32578. height: math.unit(9, "feet"),
  32579. weight: math.unit(600, "lb"),
  32580. name: "Anthro (Front)",
  32581. image: {
  32582. source: "./media/characters/glint/anthro-front.svg",
  32583. extra: 1097/1018,
  32584. bottom: 28/1125
  32585. }
  32586. },
  32587. anthroBack: {
  32588. height: math.unit(9, "feet"),
  32589. weight: math.unit(600, "lb"),
  32590. name: "Anthro (Back)",
  32591. image: {
  32592. source: "./media/characters/glint/anthro-back.svg",
  32593. extra: 1154/997,
  32594. bottom: 36/1190
  32595. }
  32596. },
  32597. feral: {
  32598. height: math.unit(11, "feet"),
  32599. weight: math.unit(50000, "lb"),
  32600. name: "Feral",
  32601. image: {
  32602. source: "./media/characters/glint/feral.svg",
  32603. extra: 3035/1585,
  32604. bottom: 1169/4204
  32605. }
  32606. },
  32607. dickAnthro: {
  32608. height: math.unit(0.7, "meters"),
  32609. name: "Dick (Anthro)",
  32610. image: {
  32611. source: "./media/characters/glint/dick-anthro.svg"
  32612. }
  32613. },
  32614. dickFeral: {
  32615. height: math.unit(2.65, "meters"),
  32616. name: "Dick (Feral)",
  32617. image: {
  32618. source: "./media/characters/glint/dick-feral.svg"
  32619. }
  32620. },
  32621. slitHidden: {
  32622. height: math.unit(5.85, "meters"),
  32623. name: "Slit (Hidden)",
  32624. image: {
  32625. source: "./media/characters/glint/slit-hidden.svg"
  32626. }
  32627. },
  32628. slitErect: {
  32629. height: math.unit(5.85, "meters"),
  32630. name: "Slit (Erect)",
  32631. image: {
  32632. source: "./media/characters/glint/slit-erect.svg"
  32633. }
  32634. },
  32635. mawAnthro: {
  32636. height: math.unit(0.63, "meters"),
  32637. name: "Maw (Anthro)",
  32638. image: {
  32639. source: "./media/characters/glint/maw.svg"
  32640. }
  32641. },
  32642. mawFeral: {
  32643. height: math.unit(2.89, "meters"),
  32644. name: "Maw (Feral)",
  32645. image: {
  32646. source: "./media/characters/glint/maw.svg"
  32647. }
  32648. },
  32649. },
  32650. [
  32651. {
  32652. name: "Normal",
  32653. height: math.unit(9, "feet"),
  32654. default: true
  32655. },
  32656. ]
  32657. ))
  32658. characterMakers.push(() => makeCharacter(
  32659. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32660. {
  32661. side: {
  32662. height: math.unit(15, "feet"),
  32663. weight: math.unit(5000, "kg"),
  32664. name: "Side",
  32665. image: {
  32666. source: "./media/characters/kairne/side.svg",
  32667. extra: 979/811,
  32668. bottom: 13/992
  32669. }
  32670. },
  32671. front: {
  32672. height: math.unit(15, "feet"),
  32673. weight: math.unit(5000, "kg"),
  32674. name: "Front",
  32675. image: {
  32676. source: "./media/characters/kairne/front.svg",
  32677. extra: 908/814,
  32678. bottom: 26/934
  32679. }
  32680. },
  32681. sideNsfw: {
  32682. height: math.unit(15, "feet"),
  32683. weight: math.unit(5000, "kg"),
  32684. name: "Side (NSFW)",
  32685. image: {
  32686. source: "./media/characters/kairne/side-nsfw.svg",
  32687. extra: 979/811,
  32688. bottom: 13/992
  32689. }
  32690. },
  32691. frontNsfw: {
  32692. height: math.unit(15, "feet"),
  32693. weight: math.unit(5000, "kg"),
  32694. name: "Front (NSFW)",
  32695. image: {
  32696. source: "./media/characters/kairne/front-nsfw.svg",
  32697. extra: 908/814,
  32698. bottom: 26/934
  32699. }
  32700. },
  32701. dickCaged: {
  32702. height: math.unit(0.65, "meters"),
  32703. name: "Dick-caged",
  32704. image: {
  32705. source: "./media/characters/kairne/dick-caged.svg"
  32706. }
  32707. },
  32708. dick: {
  32709. height: math.unit(0.79, "meters"),
  32710. name: "Dick",
  32711. image: {
  32712. source: "./media/characters/kairne/dick.svg"
  32713. }
  32714. },
  32715. genitals: {
  32716. height: math.unit(1.29, "meters"),
  32717. name: "Genitals",
  32718. image: {
  32719. source: "./media/characters/kairne/genitals.svg"
  32720. }
  32721. },
  32722. maw: {
  32723. height: math.unit(1.73, "meters"),
  32724. name: "Maw",
  32725. image: {
  32726. source: "./media/characters/kairne/maw.svg"
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Normal",
  32733. height: math.unit(15, "feet"),
  32734. default: true
  32735. },
  32736. ]
  32737. ))
  32738. characterMakers.push(() => makeCharacter(
  32739. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32740. {
  32741. front: {
  32742. height: math.unit(5 + 8/12, "feet"),
  32743. weight: math.unit(139, "lb"),
  32744. name: "Front",
  32745. image: {
  32746. source: "./media/characters/biscuit-jackal/front.svg",
  32747. extra: 2106/1961,
  32748. bottom: 58/2164
  32749. }
  32750. },
  32751. back: {
  32752. height: math.unit(5 + 8/12, "feet"),
  32753. weight: math.unit(139, "lb"),
  32754. name: "Back",
  32755. image: {
  32756. source: "./media/characters/biscuit-jackal/back.svg",
  32757. extra: 2132/1976,
  32758. bottom: 57/2189
  32759. }
  32760. },
  32761. werejackal: {
  32762. height: math.unit(6 + 3/12, "feet"),
  32763. weight: math.unit(188, "lb"),
  32764. name: "Werejackal",
  32765. image: {
  32766. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32767. extra: 2373/2178,
  32768. bottom: 53/2426
  32769. }
  32770. },
  32771. },
  32772. [
  32773. {
  32774. name: "Normal",
  32775. height: math.unit(5 + 8/12, "feet"),
  32776. default: true
  32777. },
  32778. ]
  32779. ))
  32780. characterMakers.push(() => makeCharacter(
  32781. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32782. {
  32783. front: {
  32784. height: math.unit(140, "cm"),
  32785. weight: math.unit(45, "kg"),
  32786. name: "Front",
  32787. image: {
  32788. source: "./media/characters/tayra-white/front.svg",
  32789. extra: 2229/2192,
  32790. bottom: 75/2304
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Normal",
  32797. height: math.unit(140, "cm"),
  32798. default: true
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32804. {
  32805. front: {
  32806. height: math.unit(4 + 5/12, "feet"),
  32807. name: "Front",
  32808. image: {
  32809. source: "./media/characters/scoop/front.svg",
  32810. extra: 1257/1136,
  32811. bottom: 69/1326
  32812. }
  32813. },
  32814. back: {
  32815. height: math.unit(4 + 5/12, "feet"),
  32816. name: "Back",
  32817. image: {
  32818. source: "./media/characters/scoop/back.svg",
  32819. extra: 1321/1152,
  32820. bottom: 32/1353
  32821. }
  32822. },
  32823. maw: {
  32824. height: math.unit(0.68, "feet"),
  32825. name: "Maw",
  32826. image: {
  32827. source: "./media/characters/scoop/maw.svg"
  32828. }
  32829. },
  32830. },
  32831. [
  32832. {
  32833. name: "Really Small",
  32834. height: math.unit(1, "mm")
  32835. },
  32836. {
  32837. name: "Micro",
  32838. height: math.unit(1, "inch")
  32839. },
  32840. {
  32841. name: "Normal",
  32842. height: math.unit(4 + 5/12, "feet"),
  32843. default: true
  32844. },
  32845. {
  32846. name: "Macro",
  32847. height: math.unit(200, "feet")
  32848. },
  32849. {
  32850. name: "Megamacro",
  32851. height: math.unit(3240, "feet")
  32852. },
  32853. {
  32854. name: "Teramacro",
  32855. height: math.unit(2500, "miles")
  32856. },
  32857. ]
  32858. ))
  32859. characterMakers.push(() => makeCharacter(
  32860. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32861. {
  32862. front: {
  32863. height: math.unit(15 + 7/12, "feet"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/saphinara/front.svg",
  32867. extra: 604/546,
  32868. bottom: 19/623
  32869. }
  32870. },
  32871. side: {
  32872. height: math.unit(15 + 7/12, "feet"),
  32873. name: "Side",
  32874. image: {
  32875. source: "./media/characters/saphinara/side.svg",
  32876. extra: 605/547,
  32877. bottom: 6/611
  32878. }
  32879. },
  32880. back: {
  32881. height: math.unit(15 + 7/12, "feet"),
  32882. name: "Back",
  32883. image: {
  32884. source: "./media/characters/saphinara/back.svg",
  32885. extra: 591/531,
  32886. bottom: 13/604
  32887. }
  32888. },
  32889. frontTail: {
  32890. height: math.unit(15 + 7/12, "feet"),
  32891. name: "Front (Full Tail)",
  32892. image: {
  32893. source: "./media/characters/saphinara/front-tail.svg",
  32894. extra: 748/547,
  32895. bottom: 66/814
  32896. }
  32897. },
  32898. },
  32899. [
  32900. {
  32901. name: "Normal",
  32902. height: math.unit(15 + 7/12, "feet"),
  32903. default: true
  32904. },
  32905. {
  32906. name: "Angry",
  32907. height: math.unit(30 + 6/12, "feet")
  32908. },
  32909. {
  32910. name: "Enraged",
  32911. height: math.unit(102 + 1/12, "feet")
  32912. },
  32913. ]
  32914. ))
  32915. characterMakers.push(() => makeCharacter(
  32916. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32917. {
  32918. front: {
  32919. height: math.unit(6 + 8/12, "feet"),
  32920. weight: math.unit(300, "lb"),
  32921. name: "Front",
  32922. image: {
  32923. source: "./media/characters/jrain/front.svg",
  32924. extra: 3039/2865,
  32925. bottom: 399/3438
  32926. }
  32927. },
  32928. back: {
  32929. height: math.unit(6 + 8/12, "feet"),
  32930. weight: math.unit(300, "lb"),
  32931. name: "Back",
  32932. image: {
  32933. source: "./media/characters/jrain/back.svg",
  32934. extra: 3089/2938,
  32935. bottom: 172/3261
  32936. }
  32937. },
  32938. head: {
  32939. height: math.unit(2.14, "feet"),
  32940. name: "Head",
  32941. image: {
  32942. source: "./media/characters/jrain/head.svg"
  32943. }
  32944. },
  32945. maw: {
  32946. height: math.unit(1.77, "feet"),
  32947. name: "Maw",
  32948. image: {
  32949. source: "./media/characters/jrain/maw.svg"
  32950. }
  32951. },
  32952. leftHand: {
  32953. height: math.unit(1.1, "feet"),
  32954. name: "Left Hand",
  32955. image: {
  32956. source: "./media/characters/jrain/left-hand.svg"
  32957. }
  32958. },
  32959. rightHand: {
  32960. height: math.unit(1.1, "feet"),
  32961. name: "Right Hand",
  32962. image: {
  32963. source: "./media/characters/jrain/right-hand.svg"
  32964. }
  32965. },
  32966. eye: {
  32967. height: math.unit(0.35, "feet"),
  32968. name: "Eye",
  32969. image: {
  32970. source: "./media/characters/jrain/eye.svg"
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(6 + 8/12, "feet"),
  32978. default: true
  32979. },
  32980. {
  32981. name: "Casually Large",
  32982. height: math.unit(25, "feet")
  32983. },
  32984. {
  32985. name: "Giant",
  32986. height: math.unit(100, "feet")
  32987. },
  32988. {
  32989. name: "Kaiju",
  32990. height: math.unit(300, "feet")
  32991. },
  32992. ]
  32993. ))
  32994. characterMakers.push(() => makeCharacter(
  32995. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32996. {
  32997. dragon: {
  32998. height: math.unit(5, "meters"),
  32999. name: "Dragon",
  33000. image: {
  33001. source: "./media/characters/sabrina/dragon.svg",
  33002. extra: 3670 / 2365,
  33003. bottom: 333 / 4003
  33004. }
  33005. },
  33006. gryphon: {
  33007. height: math.unit(3, "meters"),
  33008. name: "Gryphon",
  33009. image: {
  33010. source: "./media/characters/sabrina/gryphon.svg",
  33011. extra: 1576 / 945,
  33012. bottom: 71 / 1647
  33013. }
  33014. },
  33015. snake: {
  33016. height: math.unit(12, "meters"),
  33017. name: "Snake",
  33018. image: {
  33019. source: "./media/characters/sabrina/snake.svg",
  33020. extra: 1758 / 1320,
  33021. bottom: 186 / 1944
  33022. }
  33023. },
  33024. collar: {
  33025. height: math.unit(1.86, "meters"),
  33026. name: "Collar",
  33027. image: {
  33028. source: "./media/characters/sabrina/collar.svg"
  33029. }
  33030. },
  33031. eye: {
  33032. height: math.unit(0.53, "meters"),
  33033. name: "Eye",
  33034. image: {
  33035. source: "./media/characters/sabrina/eye.svg"
  33036. }
  33037. },
  33038. foot: {
  33039. height: math.unit(1.86, "meters"),
  33040. name: "Foot",
  33041. image: {
  33042. source: "./media/characters/sabrina/foot.svg"
  33043. }
  33044. },
  33045. hand: {
  33046. height: math.unit(1.32, "meters"),
  33047. name: "Hand",
  33048. image: {
  33049. source: "./media/characters/sabrina/hand.svg"
  33050. }
  33051. },
  33052. head: {
  33053. height: math.unit(2.44, "meters"),
  33054. name: "Head",
  33055. image: {
  33056. source: "./media/characters/sabrina/head.svg"
  33057. }
  33058. },
  33059. headAngry: {
  33060. height: math.unit(2.44, "meters"),
  33061. name: "Head (Angry))",
  33062. image: {
  33063. source: "./media/characters/sabrina/head-angry.svg"
  33064. }
  33065. },
  33066. maw: {
  33067. height: math.unit(1.65, "meters"),
  33068. name: "Maw",
  33069. image: {
  33070. source: "./media/characters/sabrina/maw.svg"
  33071. }
  33072. },
  33073. spikes: {
  33074. height: math.unit(1.69, "meters"),
  33075. name: "Spikes",
  33076. image: {
  33077. source: "./media/characters/sabrina/spikes.svg"
  33078. }
  33079. },
  33080. stomach: {
  33081. height: math.unit(1.15, "meters"),
  33082. name: "Stomach",
  33083. image: {
  33084. source: "./media/characters/sabrina/stomach.svg"
  33085. }
  33086. },
  33087. tongue: {
  33088. height: math.unit(1.27, "meters"),
  33089. name: "Tongue",
  33090. image: {
  33091. source: "./media/characters/sabrina/tongue.svg"
  33092. }
  33093. },
  33094. wingDorsal: {
  33095. height: math.unit(4.85, "meters"),
  33096. name: "Wing (Dorsal)",
  33097. image: {
  33098. source: "./media/characters/sabrina/wing-dorsal.svg"
  33099. }
  33100. },
  33101. wingVentral: {
  33102. height: math.unit(4.85, "meters"),
  33103. name: "Wing (Ventral)",
  33104. image: {
  33105. source: "./media/characters/sabrina/wing-ventral.svg"
  33106. }
  33107. },
  33108. },
  33109. [
  33110. {
  33111. name: "Normal",
  33112. height: math.unit(5, "meters"),
  33113. default: true
  33114. },
  33115. ]
  33116. ))
  33117. characterMakers.push(() => makeCharacter(
  33118. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33119. {
  33120. frontMaid: {
  33121. height: math.unit(5 + 5/12, "feet"),
  33122. weight: math.unit(130, "lb"),
  33123. name: "Front (Maid)",
  33124. image: {
  33125. source: "./media/characters/midnight-tales/front-maid.svg",
  33126. extra: 489/454,
  33127. bottom: 61/550
  33128. }
  33129. },
  33130. frontFormal: {
  33131. height: math.unit(5 + 5/12, "feet"),
  33132. weight: math.unit(130, "lb"),
  33133. name: "Front (Formal)",
  33134. image: {
  33135. source: "./media/characters/midnight-tales/front-formal.svg",
  33136. extra: 489/454,
  33137. bottom: 61/550
  33138. }
  33139. },
  33140. back: {
  33141. height: math.unit(5 + 5/12, "feet"),
  33142. weight: math.unit(130, "lb"),
  33143. name: "Back",
  33144. image: {
  33145. source: "./media/characters/midnight-tales/back.svg",
  33146. extra: 498/456,
  33147. bottom: 33/531
  33148. }
  33149. },
  33150. frontBeast: {
  33151. height: math.unit(40, "feet"),
  33152. weight: math.unit(64000, "lb"),
  33153. name: "Front (Beast)",
  33154. image: {
  33155. source: "./media/characters/midnight-tales/front-beast.svg",
  33156. extra: 927/860,
  33157. bottom: 53/980
  33158. }
  33159. },
  33160. backBeast: {
  33161. height: math.unit(40, "feet"),
  33162. weight: math.unit(64000, "lb"),
  33163. name: "Back (Beast)",
  33164. image: {
  33165. source: "./media/characters/midnight-tales/back-beast.svg",
  33166. extra: 929/855,
  33167. bottom: 16/945
  33168. }
  33169. },
  33170. footBeast: {
  33171. height: math.unit(6.7, "feet"),
  33172. name: "Foot (Beast)",
  33173. image: {
  33174. source: "./media/characters/midnight-tales/foot-beast.svg"
  33175. }
  33176. },
  33177. headBeast: {
  33178. height: math.unit(8, "feet"),
  33179. name: "Head (Beast)",
  33180. image: {
  33181. source: "./media/characters/midnight-tales/head-beast.svg"
  33182. }
  33183. },
  33184. },
  33185. [
  33186. {
  33187. name: "Normal",
  33188. height: math.unit(5 + 5 / 12, "feet"),
  33189. default: true
  33190. },
  33191. {
  33192. name: "Macro",
  33193. height: math.unit(25, "feet")
  33194. },
  33195. ]
  33196. ))
  33197. characterMakers.push(() => makeCharacter(
  33198. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33199. {
  33200. front: {
  33201. height: math.unit(5 + 10/12, "feet"),
  33202. name: "Front",
  33203. image: {
  33204. source: "./media/characters/argon/front.svg",
  33205. extra: 2009/1935,
  33206. bottom: 118/2127
  33207. }
  33208. },
  33209. back: {
  33210. height: math.unit(5 + 10/12, "feet"),
  33211. name: "Back",
  33212. image: {
  33213. source: "./media/characters/argon/back.svg",
  33214. extra: 2047/1992,
  33215. bottom: 20/2067
  33216. }
  33217. },
  33218. frontDressed: {
  33219. height: math.unit(5 + 10/12, "feet"),
  33220. name: "Front (Dressed)",
  33221. image: {
  33222. source: "./media/characters/argon/front-dressed.svg",
  33223. extra: 2009/1935,
  33224. bottom: 118/2127
  33225. }
  33226. },
  33227. },
  33228. [
  33229. {
  33230. name: "Normal",
  33231. height: math.unit(5 + 10/12, "feet"),
  33232. default: true
  33233. },
  33234. ]
  33235. ))
  33236. characterMakers.push(() => makeCharacter(
  33237. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33238. {
  33239. front: {
  33240. height: math.unit(8 + 6/12, "feet"),
  33241. weight: math.unit(1150, "lb"),
  33242. name: "Front",
  33243. image: {
  33244. source: "./media/characters/kichi/front.svg",
  33245. extra: 1267/1164,
  33246. bottom: 61/1328
  33247. }
  33248. },
  33249. back: {
  33250. height: math.unit(8 + 6/12, "feet"),
  33251. weight: math.unit(1150, "lb"),
  33252. name: "Back",
  33253. image: {
  33254. source: "./media/characters/kichi/back.svg",
  33255. extra: 1273/1166,
  33256. bottom: 33/1306
  33257. }
  33258. },
  33259. },
  33260. [
  33261. {
  33262. name: "Normal",
  33263. height: math.unit(8 + 6/12, "feet"),
  33264. default: true
  33265. },
  33266. ]
  33267. ))
  33268. characterMakers.push(() => makeCharacter(
  33269. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33270. {
  33271. front: {
  33272. height: math.unit(6, "feet"),
  33273. weight: math.unit(210, "lb"),
  33274. name: "Front",
  33275. image: {
  33276. source: "./media/characters/manetel-greyscale/front.svg",
  33277. extra: 350/312,
  33278. bottom: 8/358
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Micro",
  33285. height: math.unit(2, "inches")
  33286. },
  33287. {
  33288. name: "Normal",
  33289. height: math.unit(6, "feet"),
  33290. default: true
  33291. },
  33292. {
  33293. name: "Minimacro",
  33294. height: math.unit(17, "feet")
  33295. },
  33296. {
  33297. name: "Macro",
  33298. height: math.unit(117, "feet")
  33299. },
  33300. ]
  33301. ))
  33302. characterMakers.push(() => makeCharacter(
  33303. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33304. {
  33305. side: {
  33306. height: math.unit(5 + 1/12, "feet"),
  33307. weight: math.unit(418, "lb"),
  33308. name: "Side",
  33309. image: {
  33310. source: "./media/characters/softpurr/side.svg",
  33311. extra: 1993/1945,
  33312. bottom: 134/2127
  33313. }
  33314. },
  33315. front: {
  33316. height: math.unit(5 + 1/12, "feet"),
  33317. weight: math.unit(418, "lb"),
  33318. name: "Front",
  33319. image: {
  33320. source: "./media/characters/softpurr/front.svg",
  33321. extra: 1950/1856,
  33322. bottom: 174/2124
  33323. }
  33324. },
  33325. paw: {
  33326. height: math.unit(1, "feet"),
  33327. name: "Paw",
  33328. image: {
  33329. source: "./media/characters/softpurr/paw.svg"
  33330. }
  33331. },
  33332. },
  33333. [
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(5 + 1/12, "feet"),
  33337. default: true
  33338. },
  33339. ]
  33340. ))
  33341. characterMakers.push(() => makeCharacter(
  33342. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33343. {
  33344. front: {
  33345. height: math.unit(260, "meters"),
  33346. name: "Front",
  33347. image: {
  33348. source: "./media/characters/anahita/front.svg",
  33349. extra: 665/635,
  33350. bottom: 89/754
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Macro",
  33357. height: math.unit(260, "meters"),
  33358. default: true
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33364. {
  33365. front: {
  33366. height: math.unit(4 + 10/12, "feet"),
  33367. weight: math.unit(160, "lb"),
  33368. name: "Front",
  33369. image: {
  33370. source: "./media/characters/chip-mouse/front.svg",
  33371. extra: 3528/3408,
  33372. bottom: 0/3528
  33373. }
  33374. },
  33375. frontNsfw: {
  33376. height: math.unit(4 + 10/12, "feet"),
  33377. weight: math.unit(160, "lb"),
  33378. name: "Front (NSFW)",
  33379. image: {
  33380. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33381. extra: 3528/3408,
  33382. bottom: 0/3528
  33383. }
  33384. },
  33385. },
  33386. [
  33387. {
  33388. name: "Normal",
  33389. height: math.unit(4 + 10/12, "feet"),
  33390. default: true
  33391. },
  33392. ]
  33393. ))
  33394. characterMakers.push(() => makeCharacter(
  33395. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33396. {
  33397. side: {
  33398. height: math.unit(10, "feet"),
  33399. weight: math.unit(14000, "lb"),
  33400. name: "Side",
  33401. image: {
  33402. source: "./media/characters/kremm/side.svg",
  33403. extra: 1390/1053,
  33404. bottom: 90/1480
  33405. }
  33406. },
  33407. gut: {
  33408. height: math.unit(5.8, "feet"),
  33409. name: "Gut",
  33410. image: {
  33411. source: "./media/characters/kremm/gut.svg"
  33412. }
  33413. },
  33414. ass: {
  33415. height: math.unit(6.1, "feet"),
  33416. name: "Ass",
  33417. image: {
  33418. source: "./media/characters/kremm/ass.svg"
  33419. }
  33420. },
  33421. jaws: {
  33422. height: math.unit(2.2, "feet"),
  33423. name: "Jaws",
  33424. image: {
  33425. source: "./media/characters/kremm/jaws.svg"
  33426. }
  33427. },
  33428. dick: {
  33429. height: math.unit(4.26, "feet"),
  33430. name: "Dick",
  33431. image: {
  33432. source: "./media/characters/kremm/dick.svg"
  33433. }
  33434. },
  33435. },
  33436. [
  33437. {
  33438. name: "Normal",
  33439. height: math.unit(10, "feet"),
  33440. default: true
  33441. },
  33442. ]
  33443. ))
  33444. characterMakers.push(() => makeCharacter(
  33445. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33446. {
  33447. front: {
  33448. height: math.unit(30, "stories"),
  33449. name: "Front",
  33450. image: {
  33451. source: "./media/characters/kai/front.svg",
  33452. extra: 1892/1718,
  33453. bottom: 162/2054
  33454. }
  33455. },
  33456. },
  33457. [
  33458. {
  33459. name: "Macro",
  33460. height: math.unit(30, "stories"),
  33461. default: true
  33462. },
  33463. ]
  33464. ))
  33465. characterMakers.push(() => makeCharacter(
  33466. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33467. {
  33468. front: {
  33469. height: math.unit(6 + 4/12, "feet"),
  33470. weight: math.unit(145, "lb"),
  33471. name: "Front",
  33472. image: {
  33473. source: "./media/characters/sykes/front.svg",
  33474. extra: 1321 / 1187,
  33475. bottom: 66 / 1387
  33476. }
  33477. },
  33478. back: {
  33479. height: math.unit(6 + 4/12, "feet"),
  33480. weight: math.unit(145, "lb"),
  33481. name: "Back",
  33482. image: {
  33483. source: "./media/characters/sykes/back.svg",
  33484. extra: 1326/1181,
  33485. bottom: 31/1357
  33486. }
  33487. },
  33488. handBack: {
  33489. height: math.unit(0.9, "feet"),
  33490. name: "Hand (Back)",
  33491. image: {
  33492. source: "./media/characters/sykes/hand-back.svg"
  33493. }
  33494. },
  33495. handFront: {
  33496. height: math.unit(0.839, "feet"),
  33497. name: "Hand (Front)",
  33498. image: {
  33499. source: "./media/characters/sykes/hand-front.svg"
  33500. }
  33501. },
  33502. leftFoot: {
  33503. height: math.unit(1.2, "feet"),
  33504. name: "Foot (Left)",
  33505. image: {
  33506. source: "./media/characters/sykes/foot-left.svg"
  33507. }
  33508. },
  33509. rightFoot: {
  33510. height: math.unit(1.2, "feet"),
  33511. name: "Foot (Right)",
  33512. image: {
  33513. source: "./media/characters/sykes/foot-right.svg"
  33514. }
  33515. },
  33516. maw: {
  33517. height: math.unit(1.93, "feet"),
  33518. name: "Maw",
  33519. image: {
  33520. source: "./media/characters/sykes/maw.svg"
  33521. }
  33522. },
  33523. teeth: {
  33524. height: math.unit(0.51, "feet"),
  33525. name: "Teeth",
  33526. image: {
  33527. source: "./media/characters/sykes/teeth.svg"
  33528. }
  33529. },
  33530. tongue: {
  33531. height: math.unit(2.13, "feet"),
  33532. name: "Tongue",
  33533. image: {
  33534. source: "./media/characters/sykes/tongue.svg"
  33535. }
  33536. },
  33537. uvula: {
  33538. height: math.unit(0.16, "feet"),
  33539. name: "Uvula",
  33540. image: {
  33541. source: "./media/characters/sykes/uvula.svg"
  33542. }
  33543. },
  33544. collar: {
  33545. height: math.unit(0.287, "feet"),
  33546. name: "Collar",
  33547. image: {
  33548. source: "./media/characters/sykes/collar.svg"
  33549. }
  33550. },
  33551. },
  33552. [
  33553. {
  33554. name: "Shrunken",
  33555. height: math.unit(5, "inches")
  33556. },
  33557. {
  33558. name: "Normal",
  33559. height: math.unit(6 + 4 / 12, "feet"),
  33560. default: true
  33561. },
  33562. {
  33563. name: "Big",
  33564. height: math.unit(15, "feet")
  33565. },
  33566. ]
  33567. ))
  33568. characterMakers.push(() => makeCharacter(
  33569. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33570. {
  33571. front: {
  33572. height: math.unit(5 + 8/12, "feet"),
  33573. weight: math.unit(190, "lb"),
  33574. name: "Front",
  33575. image: {
  33576. source: "./media/characters/oven-otter/front.svg",
  33577. extra: 1809/1740,
  33578. bottom: 181/1990
  33579. }
  33580. },
  33581. back: {
  33582. height: math.unit(5 + 8/12, "feet"),
  33583. weight: math.unit(190, "lb"),
  33584. name: "Back",
  33585. image: {
  33586. source: "./media/characters/oven-otter/back.svg",
  33587. extra: 1709/1635,
  33588. bottom: 118/1827
  33589. }
  33590. },
  33591. hand: {
  33592. height: math.unit(1.07, "feet"),
  33593. name: "Hand",
  33594. image: {
  33595. source: "./media/characters/oven-otter/hand.svg"
  33596. }
  33597. },
  33598. beans: {
  33599. height: math.unit(1.74, "feet"),
  33600. name: "Beans",
  33601. image: {
  33602. source: "./media/characters/oven-otter/beans.svg"
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Micro",
  33609. height: math.unit(0.5, "inches")
  33610. },
  33611. {
  33612. name: "Normal",
  33613. height: math.unit(5 + 8/12, "feet"),
  33614. default: true
  33615. },
  33616. {
  33617. name: "Macro",
  33618. height: math.unit(250, "feet")
  33619. },
  33620. {
  33621. name: "Really High",
  33622. height: math.unit(420, "feet")
  33623. },
  33624. ]
  33625. ))
  33626. characterMakers.push(() => makeCharacter(
  33627. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33628. {
  33629. front: {
  33630. height: math.unit(5, "meters"),
  33631. weight: math.unit(292000000000000, "kg"),
  33632. name: "Front",
  33633. image: {
  33634. source: "./media/characters/devourer/front.svg",
  33635. extra: 1800/1733,
  33636. bottom: 211/2011
  33637. }
  33638. },
  33639. maw: {
  33640. height: math.unit(1.1, "meter"),
  33641. name: "Maw",
  33642. image: {
  33643. source: "./media/characters/devourer/maw.svg"
  33644. }
  33645. },
  33646. },
  33647. [
  33648. {
  33649. name: "Small",
  33650. height: math.unit(3, "meters")
  33651. },
  33652. {
  33653. name: "Large",
  33654. height: math.unit(5, "meters"),
  33655. default: true
  33656. },
  33657. ]
  33658. ))
  33659. characterMakers.push(() => makeCharacter(
  33660. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33661. {
  33662. front: {
  33663. height: math.unit(6, "feet"),
  33664. weight: math.unit(400, "lb"),
  33665. name: "Front",
  33666. image: {
  33667. source: "./media/characters/ellarby/front.svg",
  33668. extra: 1909/1763,
  33669. bottom: 80/1989
  33670. }
  33671. },
  33672. back: {
  33673. height: math.unit(6, "feet"),
  33674. weight: math.unit(400, "lb"),
  33675. name: "Back",
  33676. image: {
  33677. source: "./media/characters/ellarby/back.svg",
  33678. extra: 1914/1784,
  33679. bottom: 172/2086
  33680. }
  33681. },
  33682. },
  33683. [
  33684. {
  33685. name: "Mischief",
  33686. height: math.unit(18, "inches")
  33687. },
  33688. {
  33689. name: "Trouble",
  33690. height: math.unit(12, "feet")
  33691. },
  33692. {
  33693. name: "Havoc",
  33694. height: math.unit(200, "feet"),
  33695. default: true
  33696. },
  33697. {
  33698. name: "Pandemonium",
  33699. height: math.unit(1, "mile")
  33700. },
  33701. {
  33702. name: "Catastrophe",
  33703. height: math.unit(100, "miles")
  33704. },
  33705. ]
  33706. ))
  33707. characterMakers.push(() => makeCharacter(
  33708. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33709. {
  33710. front: {
  33711. height: math.unit(4.7, "meters"),
  33712. weight: math.unit(6500, "kg"),
  33713. name: "Front",
  33714. image: {
  33715. source: "./media/characters/vex/front.svg",
  33716. extra: 1288/1140,
  33717. bottom: 100/1388
  33718. }
  33719. },
  33720. },
  33721. [
  33722. {
  33723. name: "Normal",
  33724. height: math.unit(4.7, "meters"),
  33725. default: true
  33726. },
  33727. ]
  33728. ))
  33729. characterMakers.push(() => makeCharacter(
  33730. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33731. {
  33732. normal: {
  33733. height: math.unit(6, "feet"),
  33734. weight: math.unit(350, "lb"),
  33735. name: "Normal",
  33736. image: {
  33737. source: "./media/characters/teshy/normal.svg",
  33738. extra: 1795/1735,
  33739. bottom: 16/1811
  33740. }
  33741. },
  33742. monsterFront: {
  33743. height: math.unit(12, "feet"),
  33744. weight: math.unit(4700, "lb"),
  33745. name: "Monster (Front)",
  33746. image: {
  33747. source: "./media/characters/teshy/monster-front.svg",
  33748. extra: 2042/2034,
  33749. bottom: 128/2170
  33750. }
  33751. },
  33752. monsterSide: {
  33753. height: math.unit(12, "feet"),
  33754. weight: math.unit(4700, "lb"),
  33755. name: "Monster (Side)",
  33756. image: {
  33757. source: "./media/characters/teshy/monster-side.svg",
  33758. extra: 2067/2056,
  33759. bottom: 70/2137
  33760. }
  33761. },
  33762. monsterBack: {
  33763. height: math.unit(12, "feet"),
  33764. weight: math.unit(4700, "lb"),
  33765. name: "Monster (Back)",
  33766. image: {
  33767. source: "./media/characters/teshy/monster-back.svg",
  33768. extra: 1921/1914,
  33769. bottom: 171/2092
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(6, "feet"),
  33777. default: true
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33783. {
  33784. front: {
  33785. height: math.unit(6, "feet"),
  33786. name: "Front",
  33787. image: {
  33788. source: "./media/characters/ramey/front.svg",
  33789. extra: 790/787,
  33790. bottom: 27/817
  33791. }
  33792. },
  33793. },
  33794. [
  33795. {
  33796. name: "Normal",
  33797. height: math.unit(6, "feet"),
  33798. default: true
  33799. },
  33800. ]
  33801. ))
  33802. characterMakers.push(() => makeCharacter(
  33803. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33804. {
  33805. front: {
  33806. height: math.unit(5 + 5/12, "feet"),
  33807. weight: math.unit(120, "lb"),
  33808. name: "Front",
  33809. image: {
  33810. source: "./media/characters/phirae/front.svg",
  33811. extra: 2491/2436,
  33812. bottom: 38/2529
  33813. }
  33814. },
  33815. },
  33816. [
  33817. {
  33818. name: "Normal",
  33819. height: math.unit(5 + 5/12, "feet"),
  33820. default: true
  33821. },
  33822. ]
  33823. ))
  33824. characterMakers.push(() => makeCharacter(
  33825. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33826. {
  33827. front: {
  33828. height: math.unit(6, "feet"),
  33829. weight: math.unit(150, "lb"),
  33830. name: "Front",
  33831. image: {
  33832. source: "./media/characters/stagglas/front.svg",
  33833. extra: 962/882,
  33834. bottom: 53/1015
  33835. }
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Normal",
  33841. height: math.unit(5 + 3/12, "feet"),
  33842. default: true
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33848. {
  33849. front: {
  33850. height: math.unit(5 + 4/12, "feet"),
  33851. weight: math.unit(145, "lb"),
  33852. name: "Front",
  33853. image: {
  33854. source: "./media/characters/starra/front.svg",
  33855. extra: 1790/1691,
  33856. bottom: 91/1881
  33857. }
  33858. },
  33859. },
  33860. [
  33861. {
  33862. name: "Normal",
  33863. height: math.unit(5 + 4/12, "feet"),
  33864. default: true
  33865. },
  33866. ]
  33867. ))
  33868. characterMakers.push(() => makeCharacter(
  33869. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33870. {
  33871. front: {
  33872. height: math.unit(2.2, "meters"),
  33873. name: "Front",
  33874. image: {
  33875. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33876. extra: 1194/1005,
  33877. bottom: 25/1219
  33878. }
  33879. },
  33880. },
  33881. [
  33882. {
  33883. name: "Normal",
  33884. height: math.unit(2.2, "meters"),
  33885. default: true
  33886. },
  33887. ]
  33888. ))
  33889. characterMakers.push(() => makeCharacter(
  33890. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33891. {
  33892. side: {
  33893. height: math.unit(8 + 2/12, "feet"),
  33894. weight: math.unit(1240, "lb"),
  33895. name: "Side",
  33896. image: {
  33897. source: "./media/characters/mika-valentine/side.svg",
  33898. extra: 2670/2501,
  33899. bottom: 250/2920
  33900. }
  33901. },
  33902. },
  33903. [
  33904. {
  33905. name: "Normal",
  33906. height: math.unit(8 + 2/12, "feet"),
  33907. default: true
  33908. },
  33909. ]
  33910. ))
  33911. characterMakers.push(() => makeCharacter(
  33912. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33913. {
  33914. front: {
  33915. height: math.unit(7 + 2/12, "feet"),
  33916. name: "Front",
  33917. image: {
  33918. source: "./media/characters/xoltol/front.svg",
  33919. extra: 2212/2124,
  33920. bottom: 84/2296
  33921. }
  33922. },
  33923. side: {
  33924. height: math.unit(7 + 2/12, "feet"),
  33925. name: "Side",
  33926. image: {
  33927. source: "./media/characters/xoltol/side.svg",
  33928. extra: 2273/2197,
  33929. bottom: 26/2299
  33930. }
  33931. },
  33932. hand: {
  33933. height: math.unit(2.5, "feet"),
  33934. name: "Hand",
  33935. image: {
  33936. source: "./media/characters/xoltol/hand.svg"
  33937. }
  33938. },
  33939. },
  33940. [
  33941. {
  33942. name: "Small-ish",
  33943. height: math.unit(5 + 11/12, "feet")
  33944. },
  33945. {
  33946. name: "Normal",
  33947. height: math.unit(7 + 2/12, "feet")
  33948. },
  33949. {
  33950. name: "\"Macro\"",
  33951. height: math.unit(14 + 9/12, "feet"),
  33952. default: true
  33953. },
  33954. {
  33955. name: "Alternate Height",
  33956. height: math.unit(20, "feet")
  33957. },
  33958. {
  33959. name: "Actually Macro",
  33960. height: math.unit(100, "feet")
  33961. },
  33962. ]
  33963. ))
  33964. characterMakers.push(() => makeCharacter(
  33965. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33966. {
  33967. front: {
  33968. height: math.unit(5 + 2/12, "feet"),
  33969. name: "Front",
  33970. image: {
  33971. source: "./media/characters/kotetsu-redwood/front.svg",
  33972. extra: 1053/942,
  33973. bottom: 60/1113
  33974. }
  33975. },
  33976. },
  33977. [
  33978. {
  33979. name: "Normal",
  33980. height: math.unit(5 + 2/12, "feet"),
  33981. default: true
  33982. },
  33983. ]
  33984. ))
  33985. characterMakers.push(() => makeCharacter(
  33986. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33987. {
  33988. front: {
  33989. height: math.unit(2.4, "meters"),
  33990. weight: math.unit(125, "kg"),
  33991. name: "Front",
  33992. image: {
  33993. source: "./media/characters/lilith/front.svg",
  33994. extra: 1590/1513,
  33995. bottom: 203/1793
  33996. }
  33997. },
  33998. },
  33999. [
  34000. {
  34001. name: "Humanoid",
  34002. height: math.unit(2.4, "meters")
  34003. },
  34004. {
  34005. name: "Normal",
  34006. height: math.unit(6, "meters"),
  34007. default: true
  34008. },
  34009. {
  34010. name: "Largest",
  34011. height: math.unit(55, "meters")
  34012. },
  34013. ]
  34014. ))
  34015. characterMakers.push(() => makeCharacter(
  34016. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34017. {
  34018. front: {
  34019. height: math.unit(8 + 4/12, "feet"),
  34020. weight: math.unit(535, "lb"),
  34021. name: "Front",
  34022. image: {
  34023. source: "./media/characters/beh'kah-bolger/front.svg",
  34024. extra: 1660/1603,
  34025. bottom: 37/1697
  34026. }
  34027. },
  34028. },
  34029. [
  34030. {
  34031. name: "Normal",
  34032. height: math.unit(8 + 4/12, "feet"),
  34033. default: true
  34034. },
  34035. {
  34036. name: "Kaiju",
  34037. height: math.unit(250, "feet")
  34038. },
  34039. {
  34040. name: "Still Growing",
  34041. height: math.unit(10, "miles")
  34042. },
  34043. {
  34044. name: "Continental",
  34045. height: math.unit(5000, "miles")
  34046. },
  34047. {
  34048. name: "Final Form",
  34049. height: math.unit(2500000, "miles")
  34050. },
  34051. ]
  34052. ))
  34053. characterMakers.push(() => makeCharacter(
  34054. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34055. {
  34056. front: {
  34057. height: math.unit(7 + 2/12, "feet"),
  34058. weight: math.unit(230, "kg"),
  34059. name: "Front",
  34060. image: {
  34061. source: "./media/characters/tatyana-milewska/front.svg",
  34062. extra: 1199/1150,
  34063. bottom: 86/1285
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Normal",
  34070. height: math.unit(7 + 2/12, "feet"),
  34071. default: true
  34072. },
  34073. {
  34074. name: "Big",
  34075. height: math.unit(12, "feet")
  34076. },
  34077. {
  34078. name: "Minimacro",
  34079. height: math.unit(20, "feet")
  34080. },
  34081. {
  34082. name: "Macro",
  34083. height: math.unit(120, "feet")
  34084. },
  34085. ]
  34086. ))
  34087. characterMakers.push(() => makeCharacter(
  34088. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34089. {
  34090. front: {
  34091. height: math.unit(7 + 8/12, "feet"),
  34092. weight: math.unit(152, "kg"),
  34093. name: "Front",
  34094. image: {
  34095. source: "./media/characters/helen-arri/front.svg",
  34096. extra: 440/423,
  34097. bottom: 14/454
  34098. }
  34099. },
  34100. back: {
  34101. height: math.unit(7 + 8/12, "feet"),
  34102. weight: math.unit(152, "kg"),
  34103. name: "Back",
  34104. image: {
  34105. source: "./media/characters/helen-arri/back.svg",
  34106. extra: 443/426,
  34107. bottom: 8/451
  34108. }
  34109. },
  34110. },
  34111. [
  34112. {
  34113. name: "Normal",
  34114. height: math.unit(7 + 8/12, "feet"),
  34115. default: true
  34116. },
  34117. {
  34118. name: "Big",
  34119. height: math.unit(14, "feet")
  34120. },
  34121. {
  34122. name: "Minimacro",
  34123. height: math.unit(24, "feet")
  34124. },
  34125. {
  34126. name: "Macro",
  34127. height: math.unit(140, "feet")
  34128. },
  34129. ]
  34130. ))
  34131. characterMakers.push(() => makeCharacter(
  34132. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34133. {
  34134. front: {
  34135. height: math.unit(6, "meters"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/ehanu-rehu/front.svg",
  34139. extra: 1800/1800,
  34140. bottom: 59/1859
  34141. }
  34142. },
  34143. },
  34144. [
  34145. {
  34146. name: "Normal",
  34147. height: math.unit(6, "meters"),
  34148. default: true
  34149. },
  34150. ]
  34151. ))
  34152. characterMakers.push(() => makeCharacter(
  34153. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34154. {
  34155. front: {
  34156. height: math.unit(7 + 3/12, "feet"),
  34157. name: "Front",
  34158. image: {
  34159. source: "./media/characters/renholder/front.svg",
  34160. extra: 3096/2960,
  34161. bottom: 250/3346
  34162. }
  34163. },
  34164. },
  34165. [
  34166. {
  34167. name: "Normal Bat",
  34168. height: math.unit(7 + 3/12, "feet"),
  34169. default: true
  34170. },
  34171. {
  34172. name: "Slightly Tall Bat",
  34173. height: math.unit(100, "feet")
  34174. },
  34175. {
  34176. name: "Big Bat",
  34177. height: math.unit(1000, "feet")
  34178. },
  34179. {
  34180. name: "City-Sized Bat",
  34181. height: math.unit(200000, "feet")
  34182. },
  34183. {
  34184. name: "Bigger Bat",
  34185. height: math.unit(10000, "miles")
  34186. },
  34187. {
  34188. name: "Solar Sized Bat",
  34189. height: math.unit(100, "AU")
  34190. },
  34191. {
  34192. name: "Galactic Bat",
  34193. height: math.unit(200000, "lightyears")
  34194. },
  34195. {
  34196. name: "Universally Known Bat",
  34197. height: math.unit(1, "universe")
  34198. },
  34199. ]
  34200. ))
  34201. characterMakers.push(() => makeCharacter(
  34202. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34203. {
  34204. front: {
  34205. height: math.unit(6 + 11/12, "feet"),
  34206. weight: math.unit(250, "lb"),
  34207. name: "Front",
  34208. image: {
  34209. source: "./media/characters/cookiecat/front.svg",
  34210. extra: 893/827,
  34211. bottom: 14/907
  34212. }
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Micro",
  34218. height: math.unit(3, "inches")
  34219. },
  34220. {
  34221. name: "Normal",
  34222. height: math.unit(6 + 11/12, "feet"),
  34223. default: true
  34224. },
  34225. {
  34226. name: "Macro",
  34227. height: math.unit(100, "feet")
  34228. },
  34229. {
  34230. name: "Macro+",
  34231. height: math.unit(404, "feet")
  34232. },
  34233. {
  34234. name: "Megamacro",
  34235. height: math.unit(165, "miles")
  34236. },
  34237. {
  34238. name: "Planetary",
  34239. height: math.unit(4600, "miles")
  34240. },
  34241. ]
  34242. ))
  34243. characterMakers.push(() => makeCharacter(
  34244. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34245. {
  34246. front: {
  34247. height: math.unit(10 + 3/12, "feet"),
  34248. weight: math.unit(1500, "lb"),
  34249. name: "Front",
  34250. image: {
  34251. source: "./media/characters/tux-kusanagi/front.svg",
  34252. extra: 944/840,
  34253. bottom: 39/983
  34254. }
  34255. },
  34256. back: {
  34257. height: math.unit(10 + 3/12, "feet"),
  34258. weight: math.unit(1500, "lb"),
  34259. name: "Back",
  34260. image: {
  34261. source: "./media/characters/tux-kusanagi/back.svg",
  34262. extra: 941/842,
  34263. bottom: 28/969
  34264. }
  34265. },
  34266. rump: {
  34267. height: math.unit(5.25, "feet"),
  34268. name: "Rump",
  34269. image: {
  34270. source: "./media/characters/tux-kusanagi/rump.svg"
  34271. }
  34272. },
  34273. beak: {
  34274. height: math.unit(1.54, "feet"),
  34275. name: "Beak",
  34276. image: {
  34277. source: "./media/characters/tux-kusanagi/beak.svg"
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Normal",
  34284. height: math.unit(10 + 3/12, "feet"),
  34285. default: true
  34286. },
  34287. ]
  34288. ))
  34289. characterMakers.push(() => makeCharacter(
  34290. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34291. {
  34292. front: {
  34293. height: math.unit(58, "feet"),
  34294. weight: math.unit(200, "tons"),
  34295. name: "Front",
  34296. image: {
  34297. source: "./media/characters/uzarmazari/front.svg",
  34298. extra: 1575/1455,
  34299. bottom: 152/1727
  34300. }
  34301. },
  34302. back: {
  34303. height: math.unit(58, "feet"),
  34304. weight: math.unit(200, "tons"),
  34305. name: "Back",
  34306. image: {
  34307. source: "./media/characters/uzarmazari/back.svg",
  34308. extra: 1585/1510,
  34309. bottom: 157/1742
  34310. }
  34311. },
  34312. head: {
  34313. height: math.unit(26, "feet"),
  34314. name: "Head",
  34315. image: {
  34316. source: "./media/characters/uzarmazari/head.svg"
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(58, "feet"),
  34324. default: true
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34330. {
  34331. side: {
  34332. height: math.unit(15, "feet"),
  34333. name: "Side",
  34334. image: {
  34335. source: "./media/characters/akitu/side.svg",
  34336. extra: 1421/1321,
  34337. bottom: 157/1578
  34338. }
  34339. },
  34340. front: {
  34341. height: math.unit(15, "feet"),
  34342. name: "Front",
  34343. image: {
  34344. source: "./media/characters/akitu/front.svg",
  34345. extra: 1435/1326,
  34346. bottom: 232/1667
  34347. }
  34348. },
  34349. },
  34350. [
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(15, "feet"),
  34354. default: true
  34355. },
  34356. ]
  34357. ))
  34358. characterMakers.push(() => makeCharacter(
  34359. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34360. {
  34361. front: {
  34362. height: math.unit(10 + 8/12, "feet"),
  34363. name: "Front",
  34364. image: {
  34365. source: "./media/characters/azalie-croixland/front.svg",
  34366. extra: 1972/1856,
  34367. bottom: 31/2003
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Original Height",
  34374. height: math.unit(5 + 4/12, "feet")
  34375. },
  34376. {
  34377. name: "Normal Height",
  34378. height: math.unit(10 + 8/12, "feet"),
  34379. default: true
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34385. {
  34386. side: {
  34387. height: math.unit(7 + 1/12, "feet"),
  34388. weight: math.unit(245, "lb"),
  34389. name: "Side",
  34390. image: {
  34391. source: "./media/characters/kavus-kazian/side.svg",
  34392. extra: 349/342,
  34393. bottom: 15/364
  34394. }
  34395. },
  34396. },
  34397. [
  34398. {
  34399. name: "Normal",
  34400. height: math.unit(7 + 1/12, "feet"),
  34401. default: true
  34402. },
  34403. ]
  34404. ))
  34405. characterMakers.push(() => makeCharacter(
  34406. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34407. {
  34408. normal: {
  34409. height: math.unit(5 + 11/12, "feet"),
  34410. name: "Normal",
  34411. image: {
  34412. source: "./media/characters/moonlight-rose/normal.svg",
  34413. extra: 1979/1835,
  34414. bottom: 14/1993
  34415. }
  34416. },
  34417. demon: {
  34418. height: math.unit(5, "km"),
  34419. name: "Demon",
  34420. image: {
  34421. source: "./media/characters/moonlight-rose/demon.svg",
  34422. extra: 986/916,
  34423. bottom: 28/1014
  34424. }
  34425. },
  34426. },
  34427. [
  34428. {
  34429. name: "\"Natural\" height",
  34430. height: math.unit(5 + 11/12, "feet")
  34431. },
  34432. {
  34433. name: "Comfortable Size",
  34434. height: math.unit(40, "meters")
  34435. },
  34436. {
  34437. name: "Common Size",
  34438. height: math.unit(50, "km"),
  34439. default: true
  34440. },
  34441. {
  34442. name: "Demonic",
  34443. height: math.unit(1.24415e+21, "meters")
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34449. {
  34450. front: {
  34451. height: math.unit(16, "feet"),
  34452. weight: math.unit(610, "kg"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/huckle/front.svg",
  34456. extra: 1731/1625,
  34457. bottom: 33/1764
  34458. }
  34459. },
  34460. back: {
  34461. height: math.unit(16, "feet"),
  34462. weight: math.unit(610, "kg"),
  34463. name: "Back",
  34464. image: {
  34465. source: "./media/characters/huckle/back.svg",
  34466. extra: 1738/1651,
  34467. bottom: 37/1775
  34468. }
  34469. },
  34470. laughing: {
  34471. height: math.unit(3.75, "feet"),
  34472. name: "Laughing",
  34473. image: {
  34474. source: "./media/characters/huckle/laughing.svg"
  34475. }
  34476. },
  34477. angry: {
  34478. height: math.unit(4.15, "feet"),
  34479. name: "Angry",
  34480. image: {
  34481. source: "./media/characters/huckle/angry.svg"
  34482. }
  34483. },
  34484. },
  34485. [
  34486. {
  34487. name: "Normal",
  34488. height: math.unit(16, "feet"),
  34489. default: true
  34490. },
  34491. {
  34492. name: "Mini Macro",
  34493. height: math.unit(463, "feet")
  34494. },
  34495. {
  34496. name: "Macro",
  34497. height: math.unit(1680, "meters")
  34498. },
  34499. {
  34500. name: "Mega Macro",
  34501. height: math.unit(175, "km")
  34502. },
  34503. {
  34504. name: "Terra Macro",
  34505. height: math.unit(32, "gigameters")
  34506. },
  34507. {
  34508. name: "Multiverse+",
  34509. height: math.unit(2.56e23, "yottameters")
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(6 + 9/12, "feet"),
  34518. weight: math.unit(280, "lb"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/candy/front.svg",
  34522. extra: 234/217,
  34523. bottom: 11/245
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Really Small",
  34530. height: math.unit(0.1, "nm")
  34531. },
  34532. {
  34533. name: "Micro",
  34534. height: math.unit(2, "inches")
  34535. },
  34536. {
  34537. name: "Normal",
  34538. height: math.unit(6 + 9/12, "feet"),
  34539. default: true
  34540. },
  34541. {
  34542. name: "Small Macro",
  34543. height: math.unit(69, "feet")
  34544. },
  34545. {
  34546. name: "Macro",
  34547. height: math.unit(160, "feet")
  34548. },
  34549. {
  34550. name: "Megamacro",
  34551. height: math.unit(22000, "miles")
  34552. },
  34553. {
  34554. name: "Gigamacro",
  34555. height: math.unit(50000, "miles")
  34556. },
  34557. ]
  34558. ))
  34559. characterMakers.push(() => makeCharacter(
  34560. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34561. {
  34562. front: {
  34563. height: math.unit(4, "feet"),
  34564. weight: math.unit(90, "lb"),
  34565. name: "Front",
  34566. image: {
  34567. source: "./media/characters/joey-mcdonald/front.svg",
  34568. extra: 1059/852,
  34569. bottom: 33/1092
  34570. }
  34571. },
  34572. back: {
  34573. height: math.unit(4, "feet"),
  34574. weight: math.unit(90, "lb"),
  34575. name: "Back",
  34576. image: {
  34577. source: "./media/characters/joey-mcdonald/back.svg",
  34578. extra: 1077/879,
  34579. bottom: 5/1082
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(4, "feet"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(12 + 6/12, "feet"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/kass-lockheed/front.svg",
  34599. extra: 354/343,
  34600. bottom: 9/363
  34601. }
  34602. },
  34603. back: {
  34604. height: math.unit(12 + 6/12, "feet"),
  34605. name: "Back",
  34606. image: {
  34607. source: "./media/characters/kass-lockheed/back.svg",
  34608. extra: 364/352,
  34609. bottom: 3/367
  34610. }
  34611. },
  34612. dick: {
  34613. height: math.unit(3.12, "feet"),
  34614. name: "Dick",
  34615. image: {
  34616. source: "./media/characters/kass-lockheed/dick.svg"
  34617. }
  34618. },
  34619. head: {
  34620. height: math.unit(2.6, "feet"),
  34621. name: "Head",
  34622. image: {
  34623. source: "./media/characters/kass-lockheed/head.svg"
  34624. }
  34625. },
  34626. bleh: {
  34627. height: math.unit(2.85, "feet"),
  34628. name: "Bleh",
  34629. image: {
  34630. source: "./media/characters/kass-lockheed/bleh.svg"
  34631. }
  34632. },
  34633. smug: {
  34634. height: math.unit(2.85, "feet"),
  34635. name: "Smug",
  34636. image: {
  34637. source: "./media/characters/kass-lockheed/smug.svg"
  34638. }
  34639. },
  34640. },
  34641. [
  34642. {
  34643. name: "Normal",
  34644. height: math.unit(12 + 6/12, "feet"),
  34645. default: true
  34646. },
  34647. ]
  34648. ))
  34649. characterMakers.push(() => makeCharacter(
  34650. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34651. {
  34652. front: {
  34653. height: math.unit(6 + 2/12, "feet"),
  34654. name: "Front",
  34655. image: {
  34656. source: "./media/characters/taylor/front.svg",
  34657. extra: 639/495,
  34658. bottom: 12/651
  34659. }
  34660. },
  34661. },
  34662. [
  34663. {
  34664. name: "Normal",
  34665. height: math.unit(6 + 2/12, "feet"),
  34666. default: true
  34667. },
  34668. {
  34669. name: "Big",
  34670. height: math.unit(15, "feet")
  34671. },
  34672. {
  34673. name: "Lorg",
  34674. height: math.unit(80, "feet")
  34675. },
  34676. {
  34677. name: "Too Lorg",
  34678. height: math.unit(120, "feet")
  34679. },
  34680. ]
  34681. ))
  34682. characterMakers.push(() => makeCharacter(
  34683. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34684. {
  34685. front: {
  34686. height: math.unit(15, "feet"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/kaizer/front.svg",
  34690. extra: 1612/1436,
  34691. bottom: 43/1655
  34692. }
  34693. },
  34694. },
  34695. [
  34696. {
  34697. name: "Normal",
  34698. height: math.unit(15, "feet"),
  34699. default: true
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(2, "feet"),
  34708. weight: math.unit(30, "lb"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/sandy/front.svg",
  34712. extra: 1439/1307,
  34713. bottom: 194/1633
  34714. }
  34715. },
  34716. },
  34717. [
  34718. {
  34719. name: "Normal",
  34720. height: math.unit(2, "feet"),
  34721. default: true
  34722. },
  34723. ]
  34724. ))
  34725. characterMakers.push(() => makeCharacter(
  34726. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34727. {
  34728. front: {
  34729. height: math.unit(3, "feet"),
  34730. name: "Front",
  34731. image: {
  34732. source: "./media/characters/mellvi/front.svg",
  34733. extra: 1831/1630,
  34734. bottom: 58/1889
  34735. }
  34736. },
  34737. },
  34738. [
  34739. {
  34740. name: "Normal",
  34741. height: math.unit(3, "feet"),
  34742. default: true
  34743. },
  34744. ]
  34745. ))
  34746. characterMakers.push(() => makeCharacter(
  34747. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34748. {
  34749. front: {
  34750. height: math.unit(5 + 11/12, "feet"),
  34751. weight: math.unit(200, "lb"),
  34752. name: "Front",
  34753. image: {
  34754. source: "./media/characters/shirou/front.svg",
  34755. extra: 2491/2383,
  34756. bottom: 189/2680
  34757. }
  34758. },
  34759. back: {
  34760. height: math.unit(5 + 11/12, "feet"),
  34761. weight: math.unit(200, "lb"),
  34762. name: "Back",
  34763. image: {
  34764. source: "./media/characters/shirou/back.svg",
  34765. extra: 2554/2450,
  34766. bottom: 76/2630
  34767. }
  34768. },
  34769. },
  34770. [
  34771. {
  34772. name: "Normal",
  34773. height: math.unit(5 + 11/12, "feet"),
  34774. default: true
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34780. {
  34781. front: {
  34782. height: math.unit(6 + 3/12, "feet"),
  34783. weight: math.unit(177, "lb"),
  34784. name: "Front",
  34785. image: {
  34786. source: "./media/characters/noryu/front.svg",
  34787. extra: 973/885,
  34788. bottom: 10/983
  34789. }
  34790. },
  34791. },
  34792. [
  34793. {
  34794. name: "Normal",
  34795. height: math.unit(6 + 3/12, "feet"),
  34796. default: true
  34797. },
  34798. ]
  34799. ))
  34800. characterMakers.push(() => makeCharacter(
  34801. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34802. {
  34803. front: {
  34804. height: math.unit(5 + 6/12, "feet"),
  34805. weight: math.unit(170, "lb"),
  34806. name: "Front",
  34807. image: {
  34808. source: "./media/characters/mevolas-rubenido/front.svg",
  34809. extra: 2109/1901,
  34810. bottom: 96/2205
  34811. }
  34812. },
  34813. },
  34814. [
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(5 + 6/12, "feet"),
  34818. default: true
  34819. },
  34820. ]
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34824. {
  34825. front: {
  34826. height: math.unit(100, "feet"),
  34827. name: "Front",
  34828. image: {
  34829. source: "./media/characters/dee/front.svg",
  34830. extra: 2153/2036,
  34831. bottom: 59/2212
  34832. }
  34833. },
  34834. back: {
  34835. height: math.unit(100, "feet"),
  34836. name: "Back",
  34837. image: {
  34838. source: "./media/characters/dee/back.svg",
  34839. extra: 2183/2058,
  34840. bottom: 75/2258
  34841. }
  34842. },
  34843. foot: {
  34844. height: math.unit(19.43, "feet"),
  34845. name: "Foot",
  34846. image: {
  34847. source: "./media/characters/dee/foot.svg"
  34848. }
  34849. },
  34850. hoof: {
  34851. height: math.unit(20.6, "feet"),
  34852. name: "Hoof",
  34853. image: {
  34854. source: "./media/characters/dee/hoof.svg"
  34855. }
  34856. },
  34857. },
  34858. [
  34859. {
  34860. name: "Macro",
  34861. height: math.unit(100, "feet"),
  34862. default: true
  34863. },
  34864. ]
  34865. ))
  34866. characterMakers.push(() => makeCharacter(
  34867. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34868. {
  34869. front: {
  34870. height: math.unit(5 + 6/12, "feet"),
  34871. name: "Front",
  34872. image: {
  34873. source: "./media/characters/teh/front.svg",
  34874. extra: 1002/847,
  34875. bottom: 62/1064
  34876. }
  34877. },
  34878. },
  34879. [
  34880. {
  34881. name: "Normal",
  34882. height: math.unit(5 + 6/12, "feet"),
  34883. default: true
  34884. },
  34885. ]
  34886. ))
  34887. characterMakers.push(() => makeCharacter(
  34888. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34889. {
  34890. side: {
  34891. height: math.unit(6 + 1/12, "feet"),
  34892. weight: math.unit(204, "lb"),
  34893. name: "Side",
  34894. image: {
  34895. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34896. extra: 974/775,
  34897. bottom: 169/1143
  34898. }
  34899. },
  34900. sitting: {
  34901. height: math.unit(6 + 2/12, "feet"),
  34902. weight: math.unit(204, "lb"),
  34903. name: "Sitting",
  34904. image: {
  34905. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34906. extra: 1175/964,
  34907. bottom: 378/1553
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Normal",
  34914. height: math.unit(6 + 1/12, "feet"),
  34915. default: true
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34921. {
  34922. front: {
  34923. height: math.unit(6, "inches"),
  34924. name: "Front",
  34925. image: {
  34926. source: "./media/characters/tululi/front.svg",
  34927. extra: 1997/1876,
  34928. bottom: 20/2017
  34929. }
  34930. },
  34931. },
  34932. [
  34933. {
  34934. name: "Normal",
  34935. height: math.unit(6, "inches"),
  34936. default: true
  34937. },
  34938. ]
  34939. ))
  34940. characterMakers.push(() => makeCharacter(
  34941. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34942. {
  34943. front: {
  34944. height: math.unit(4 + 1/12, "feet"),
  34945. name: "Front",
  34946. image: {
  34947. source: "./media/characters/star/front.svg",
  34948. extra: 1493/1189,
  34949. bottom: 48/1541
  34950. }
  34951. },
  34952. },
  34953. [
  34954. {
  34955. name: "Normal",
  34956. height: math.unit(4 + 1/12, "feet"),
  34957. default: true
  34958. },
  34959. ]
  34960. ))
  34961. characterMakers.push(() => makeCharacter(
  34962. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34963. {
  34964. front: {
  34965. height: math.unit(6 + 3/12, "feet"),
  34966. name: "Front",
  34967. image: {
  34968. source: "./media/characters/comet/front.svg",
  34969. extra: 1681/1462,
  34970. bottom: 26/1707
  34971. }
  34972. },
  34973. },
  34974. [
  34975. {
  34976. name: "Normal",
  34977. height: math.unit(6 + 3/12, "feet"),
  34978. default: true
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34984. {
  34985. front: {
  34986. height: math.unit(950, "feet"),
  34987. name: "Front",
  34988. image: {
  34989. source: "./media/characters/vortex/front.svg",
  34990. extra: 1497/1434,
  34991. bottom: 56/1553
  34992. }
  34993. },
  34994. maw: {
  34995. height: math.unit(285, "feet"),
  34996. name: "Maw",
  34997. image: {
  34998. source: "./media/characters/vortex/maw.svg"
  34999. }
  35000. },
  35001. },
  35002. [
  35003. {
  35004. name: "Macro",
  35005. height: math.unit(950, "feet"),
  35006. default: true
  35007. },
  35008. ]
  35009. ))
  35010. characterMakers.push(() => makeCharacter(
  35011. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35012. {
  35013. front: {
  35014. height: math.unit(600, "feet"),
  35015. weight: math.unit(0.02, "grams"),
  35016. name: "Front",
  35017. image: {
  35018. source: "./media/characters/doodle/front.svg",
  35019. extra: 1578/1413,
  35020. bottom: 37/1615
  35021. }
  35022. },
  35023. },
  35024. [
  35025. {
  35026. name: "Macro",
  35027. height: math.unit(600, "feet"),
  35028. default: true
  35029. },
  35030. ]
  35031. ))
  35032. characterMakers.push(() => makeCharacter(
  35033. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35034. {
  35035. front: {
  35036. height: math.unit(6 + 6/12, "feet"),
  35037. name: "Front",
  35038. image: {
  35039. source: "./media/characters/jai/front.svg",
  35040. extra: 1645/1534,
  35041. bottom: 115/1760
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(6 + 6/12, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(6 + 8/12, "feet"),
  35058. name: "Front",
  35059. image: {
  35060. source: "./media/characters/pixel/front.svg",
  35061. extra: 1900/1735,
  35062. bottom: 63/1963
  35063. }
  35064. },
  35065. },
  35066. [
  35067. {
  35068. name: "Normal",
  35069. height: math.unit(6 + 8/12, "feet"),
  35070. default: true
  35071. },
  35072. ]
  35073. ))
  35074. characterMakers.push(() => makeCharacter(
  35075. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35076. {
  35077. front: {
  35078. height: math.unit(4 + 11/12, "feet"),
  35079. weight: math.unit(111, "lb"),
  35080. name: "Front",
  35081. image: {
  35082. source: "./media/characters/rhett/front.svg",
  35083. extra: 1682/1586,
  35084. bottom: 92/1774
  35085. }
  35086. },
  35087. },
  35088. [
  35089. {
  35090. name: "Mini",
  35091. height: math.unit(1 + 1/12, "feet")
  35092. },
  35093. {
  35094. name: "Normal",
  35095. height: math.unit(4 + 11/12, "feet"),
  35096. default: true
  35097. },
  35098. ]
  35099. ))
  35100. characterMakers.push(() => makeCharacter(
  35101. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35102. {
  35103. front: {
  35104. height: math.unit(3 + 3/12, "feet"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/penny/front.svg",
  35108. extra: 1406/1311,
  35109. bottom: 26/1432
  35110. }
  35111. },
  35112. },
  35113. [
  35114. {
  35115. name: "Normal",
  35116. height: math.unit(3 + 3/12, "feet"),
  35117. default: true
  35118. },
  35119. ]
  35120. ))
  35121. characterMakers.push(() => makeCharacter(
  35122. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35123. {
  35124. front: {
  35125. height: math.unit(4 + 11/12, "feet"),
  35126. name: "Front",
  35127. image: {
  35128. source: "./media/characters/monty/front.svg",
  35129. extra: 1479/1209,
  35130. bottom: 0/1479
  35131. }
  35132. },
  35133. },
  35134. [
  35135. {
  35136. name: "Normal",
  35137. height: math.unit(4 + 11/12, "feet"),
  35138. default: true
  35139. },
  35140. ]
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(8 + 4/12, "feet"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/sterling/front.svg",
  35150. extra: 1420/1236,
  35151. bottom: 27/1447
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(8 + 4/12, "feet"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(15, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/marble/front.svg",
  35171. extra: 973/937,
  35172. bottom: 32/1005
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(15, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35186. {
  35187. front: {
  35188. height: math.unit(3, "inches"),
  35189. name: "Front",
  35190. image: {
  35191. source: "./media/characters/powder/front.svg",
  35192. extra: 1504/1334,
  35193. bottom: 518/2022
  35194. }
  35195. },
  35196. },
  35197. [
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(3, "inches"),
  35201. default: true
  35202. },
  35203. ]
  35204. ))
  35205. characterMakers.push(() => makeCharacter(
  35206. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35207. {
  35208. front: {
  35209. height: math.unit(4 + 5/12, "feet"),
  35210. name: "Front",
  35211. image: {
  35212. source: "./media/characters/joey-raccoon/front.svg",
  35213. extra: 1273/1197,
  35214. bottom: 0/1273
  35215. }
  35216. },
  35217. },
  35218. [
  35219. {
  35220. name: "Normal",
  35221. height: math.unit(4 + 5/12, "feet"),
  35222. default: true
  35223. },
  35224. ]
  35225. ))
  35226. characterMakers.push(() => makeCharacter(
  35227. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35228. {
  35229. front: {
  35230. height: math.unit(8 + 4/12, "feet"),
  35231. name: "Front",
  35232. image: {
  35233. source: "./media/characters/vick/front.svg",
  35234. extra: 2187/2118,
  35235. bottom: 47/2234
  35236. }
  35237. },
  35238. },
  35239. [
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(8 + 4/12, "feet"),
  35243. default: true
  35244. },
  35245. ]
  35246. ))
  35247. characterMakers.push(() => makeCharacter(
  35248. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35249. {
  35250. front: {
  35251. height: math.unit(5 + 5/12, "feet"),
  35252. name: "Front",
  35253. image: {
  35254. source: "./media/characters/mitsy/front.svg",
  35255. extra: 1842/1695,
  35256. bottom: 0/1842
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(5 + 5/12, "feet"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(6 + 3/12, "feet"),
  35273. name: "Front",
  35274. image: {
  35275. source: "./media/characters/silvy/front.svg",
  35276. extra: 1995/1836,
  35277. bottom: 225/2220
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Normal",
  35284. height: math.unit(6 + 3/12, "feet"),
  35285. default: true
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35291. {
  35292. front: {
  35293. height: math.unit(3 + 8/12, "feet"),
  35294. name: "Front",
  35295. image: {
  35296. source: "./media/characters/rodney/front.svg",
  35297. extra: 1956/1747,
  35298. bottom: 31/1987
  35299. }
  35300. },
  35301. frontDressed: {
  35302. height: math.unit(2.9, "feet"),
  35303. name: "Front (Dressed)",
  35304. image: {
  35305. source: "./media/characters/rodney/front-dressed.svg",
  35306. extra: 1382/1241,
  35307. bottom: 385/1767
  35308. }
  35309. },
  35310. },
  35311. [
  35312. {
  35313. name: "Normal",
  35314. height: math.unit(3 + 8/12, "feet"),
  35315. default: true
  35316. },
  35317. ]
  35318. ))
  35319. characterMakers.push(() => makeCharacter(
  35320. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35321. {
  35322. front: {
  35323. height: math.unit(5 + 9/12, "feet"),
  35324. weight: math.unit(194, "lbs"),
  35325. name: "Front",
  35326. image: {
  35327. source: "./media/characters/zakail-sudekai/front.svg",
  35328. extra: 2696/2533,
  35329. bottom: 248/2944
  35330. }
  35331. },
  35332. maw: {
  35333. height: math.unit(1.35, "feet"),
  35334. name: "Maw",
  35335. image: {
  35336. source: "./media/characters/zakail-sudekai/maw.svg"
  35337. }
  35338. },
  35339. },
  35340. [
  35341. {
  35342. name: "Normal",
  35343. height: math.unit(5 + 9/12, "feet"),
  35344. default: true
  35345. },
  35346. ]
  35347. ))
  35348. characterMakers.push(() => makeCharacter(
  35349. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35350. {
  35351. front: {
  35352. height: math.unit(8 + 4/12, "feet"),
  35353. weight: math.unit(1200, "lb"),
  35354. name: "Front",
  35355. image: {
  35356. source: "./media/characters/eleanor/front.svg",
  35357. extra: 1226/1192,
  35358. bottom: 52/1278
  35359. }
  35360. },
  35361. back: {
  35362. height: math.unit(8 + 4/12, "feet"),
  35363. weight: math.unit(1200, "lb"),
  35364. name: "Back",
  35365. image: {
  35366. source: "./media/characters/eleanor/back.svg",
  35367. extra: 1242/1184,
  35368. bottom: 60/1302
  35369. }
  35370. },
  35371. head: {
  35372. height: math.unit(2.62, "feet"),
  35373. name: "Head",
  35374. image: {
  35375. source: "./media/characters/eleanor/head.svg"
  35376. }
  35377. },
  35378. },
  35379. [
  35380. {
  35381. name: "Normal",
  35382. height: math.unit(8 + 4/12, "feet"),
  35383. default: true
  35384. },
  35385. ]
  35386. ))
  35387. characterMakers.push(() => makeCharacter(
  35388. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35389. {
  35390. front: {
  35391. height: math.unit(8 + 4/12, "feet"),
  35392. weight: math.unit(750, "lb"),
  35393. name: "Front",
  35394. image: {
  35395. source: "./media/characters/tanya/front.svg",
  35396. extra: 1749/1615,
  35397. bottom: 33/1782
  35398. }
  35399. },
  35400. },
  35401. [
  35402. {
  35403. name: "Normal",
  35404. height: math.unit(8 + 4/12, "feet"),
  35405. default: true
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35411. {
  35412. front: {
  35413. height: math.unit(5, "feet"),
  35414. weight: math.unit(225, "lb"),
  35415. name: "Front",
  35416. image: {
  35417. source: "./media/characters/cindy/front.svg",
  35418. extra: 1320/1250,
  35419. bottom: 42/1362
  35420. }
  35421. },
  35422. frontDressed: {
  35423. height: math.unit(5, "feet"),
  35424. weight: math.unit(225, "lb"),
  35425. name: "Front (Dressed)",
  35426. image: {
  35427. source: "./media/characters/cindy/front-dressed.svg",
  35428. extra: 1320/1250,
  35429. bottom: 42/1362
  35430. }
  35431. },
  35432. back: {
  35433. height: math.unit(5, "feet"),
  35434. weight: math.unit(225, "lb"),
  35435. name: "Back",
  35436. image: {
  35437. source: "./media/characters/cindy/back.svg",
  35438. extra: 1384/1346,
  35439. bottom: 14/1398
  35440. }
  35441. },
  35442. },
  35443. [
  35444. {
  35445. name: "Normal",
  35446. height: math.unit(5, "feet"),
  35447. default: true
  35448. },
  35449. ]
  35450. ))
  35451. characterMakers.push(() => makeCharacter(
  35452. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35453. {
  35454. front: {
  35455. height: math.unit(6 + 9/12, "feet"),
  35456. weight: math.unit(440, "lb"),
  35457. name: "Front",
  35458. image: {
  35459. source: "./media/characters/wilbur-owen/front.svg",
  35460. extra: 1575/1448,
  35461. bottom: 72/1647
  35462. }
  35463. },
  35464. back: {
  35465. height: math.unit(6 + 9/12, "feet"),
  35466. weight: math.unit(440, "lb"),
  35467. name: "Back",
  35468. image: {
  35469. source: "./media/characters/wilbur-owen/back.svg",
  35470. extra: 1578/1445,
  35471. bottom: 36/1614
  35472. }
  35473. },
  35474. },
  35475. [
  35476. {
  35477. name: "Normal",
  35478. height: math.unit(6 + 9/12, "feet"),
  35479. default: true
  35480. },
  35481. ]
  35482. ))
  35483. characterMakers.push(() => makeCharacter(
  35484. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35485. {
  35486. front: {
  35487. height: math.unit(6 + 5/12, "feet"),
  35488. weight: math.unit(650, "lb"),
  35489. name: "Front",
  35490. image: {
  35491. source: "./media/characters/keegan/front.svg",
  35492. extra: 2387/2198,
  35493. bottom: 33/2420
  35494. }
  35495. },
  35496. side: {
  35497. height: math.unit(6 + 5/12, "feet"),
  35498. weight: math.unit(650, "lb"),
  35499. name: "Side",
  35500. image: {
  35501. source: "./media/characters/keegan/side.svg",
  35502. extra: 2390/2202,
  35503. bottom: 47/2437
  35504. }
  35505. },
  35506. back: {
  35507. height: math.unit(6 + 5/12, "feet"),
  35508. weight: math.unit(650, "lb"),
  35509. name: "Back",
  35510. image: {
  35511. source: "./media/characters/keegan/back.svg",
  35512. extra: 2418/2268,
  35513. bottom: 15/2433
  35514. }
  35515. },
  35516. frontSfw: {
  35517. height: math.unit(6 + 5/12, "feet"),
  35518. weight: math.unit(650, "lb"),
  35519. name: "Front (SFW)",
  35520. image: {
  35521. source: "./media/characters/keegan/front-sfw.svg",
  35522. extra: 2387/2198,
  35523. bottom: 33/2420
  35524. }
  35525. },
  35526. beans: {
  35527. height: math.unit(1.85, "feet"),
  35528. name: "Beans",
  35529. image: {
  35530. source: "./media/characters/keegan/beans.svg"
  35531. }
  35532. },
  35533. },
  35534. [
  35535. {
  35536. name: "Normal",
  35537. height: math.unit(6 + 5/12, "feet"),
  35538. default: true
  35539. },
  35540. ]
  35541. ))
  35542. characterMakers.push(() => makeCharacter(
  35543. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35544. {
  35545. front: {
  35546. height: math.unit(9, "feet"),
  35547. name: "Front",
  35548. image: {
  35549. source: "./media/characters/colton/front.svg",
  35550. extra: 1589/1326,
  35551. bottom: 139/1728
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Normal",
  35558. height: math.unit(9, "feet"),
  35559. default: true
  35560. },
  35561. ]
  35562. ))
  35563. characterMakers.push(() => makeCharacter(
  35564. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35565. {
  35566. front: {
  35567. height: math.unit(2 + 9/12, "feet"),
  35568. name: "Front",
  35569. image: {
  35570. source: "./media/characters/bora/front.svg",
  35571. extra: 1265/1250,
  35572. bottom: 24/1289
  35573. }
  35574. },
  35575. },
  35576. [
  35577. {
  35578. name: "Normal",
  35579. height: math.unit(2 + 9/12, "feet"),
  35580. default: true
  35581. },
  35582. ]
  35583. ))
  35584. characterMakers.push(() => makeCharacter(
  35585. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35586. {
  35587. front: {
  35588. height: math.unit(8, "feet"),
  35589. name: "Front",
  35590. image: {
  35591. source: "./media/characters/myu-myu/front.svg",
  35592. extra: 1949/1857,
  35593. bottom: 90/2039
  35594. }
  35595. },
  35596. },
  35597. [
  35598. {
  35599. name: "Normal",
  35600. height: math.unit(8, "feet"),
  35601. default: true
  35602. },
  35603. {
  35604. name: "Big",
  35605. height: math.unit(15, "feet")
  35606. },
  35607. {
  35608. name: "BIG",
  35609. height: math.unit(25, "feet")
  35610. },
  35611. ]
  35612. ))
  35613. characterMakers.push(() => makeCharacter(
  35614. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35615. {
  35616. side: {
  35617. height: math.unit(7 + 5/12, "feet"),
  35618. weight: math.unit(2800, "lb"),
  35619. name: "Side",
  35620. image: {
  35621. source: "./media/characters/haloren/side.svg",
  35622. extra: 1793/409,
  35623. bottom: 59/1852
  35624. }
  35625. },
  35626. frontPaw: {
  35627. height: math.unit(2.36, "feet"),
  35628. name: "Front paw",
  35629. image: {
  35630. source: "./media/characters/haloren/front-paw.svg"
  35631. }
  35632. },
  35633. hindPaw: {
  35634. height: math.unit(3.18, "feet"),
  35635. name: "Hind paw",
  35636. image: {
  35637. source: "./media/characters/haloren/hind-paw.svg"
  35638. }
  35639. },
  35640. maw: {
  35641. height: math.unit(5.05, "feet"),
  35642. name: "Maw",
  35643. image: {
  35644. source: "./media/characters/haloren/maw.svg"
  35645. }
  35646. },
  35647. dick: {
  35648. height: math.unit(2.90, "feet"),
  35649. name: "Dick",
  35650. image: {
  35651. source: "./media/characters/haloren/dick.svg"
  35652. }
  35653. },
  35654. },
  35655. [
  35656. {
  35657. name: "Normal",
  35658. height: math.unit(7 + 5/12, "feet"),
  35659. default: true
  35660. },
  35661. {
  35662. name: "Enhanced",
  35663. height: math.unit(14 + 3/12, "feet")
  35664. },
  35665. ]
  35666. ))
  35667. characterMakers.push(() => makeCharacter(
  35668. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35669. {
  35670. front: {
  35671. height: math.unit(171, "cm"),
  35672. name: "Front",
  35673. image: {
  35674. source: "./media/characters/kimmy/front.svg",
  35675. extra: 1491/1435,
  35676. bottom: 53/1544
  35677. }
  35678. },
  35679. },
  35680. [
  35681. {
  35682. name: "Small",
  35683. height: math.unit(9, "cm")
  35684. },
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(171, "cm"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35694. {
  35695. front: {
  35696. height: math.unit(8, "feet"),
  35697. weight: math.unit(300, "lb"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/galeboomer/front.svg",
  35701. extra: 4651/4415,
  35702. bottom: 162/4813
  35703. }
  35704. },
  35705. back: {
  35706. height: math.unit(8, "feet"),
  35707. weight: math.unit(300, "lb"),
  35708. name: "Back",
  35709. image: {
  35710. source: "./media/characters/galeboomer/back.svg",
  35711. extra: 4544/4314,
  35712. bottom: 16/4560
  35713. }
  35714. },
  35715. frontAlt: {
  35716. height: math.unit(8, "feet"),
  35717. weight: math.unit(300, "lb"),
  35718. name: "Front (Alt)",
  35719. image: {
  35720. source: "./media/characters/galeboomer/front-alt.svg",
  35721. extra: 4458/4228,
  35722. bottom: 68/4526
  35723. }
  35724. },
  35725. maw: {
  35726. height: math.unit(1.2, "feet"),
  35727. name: "Maw",
  35728. image: {
  35729. source: "./media/characters/galeboomer/maw.svg"
  35730. }
  35731. },
  35732. },
  35733. [
  35734. {
  35735. name: "Normal",
  35736. height: math.unit(8, "feet"),
  35737. default: true
  35738. },
  35739. ]
  35740. ))
  35741. characterMakers.push(() => makeCharacter(
  35742. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35743. {
  35744. front: {
  35745. height: math.unit(5 + 9/12, "feet"),
  35746. weight: math.unit(120, "lb"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/chyr/front.svg",
  35750. extra: 1323/1254,
  35751. bottom: 63/1386
  35752. }
  35753. },
  35754. back: {
  35755. height: math.unit(5 + 9/12, "feet"),
  35756. weight: math.unit(120, "lb"),
  35757. name: "Back",
  35758. image: {
  35759. source: "./media/characters/chyr/back.svg",
  35760. extra: 1323/1252,
  35761. bottom: 48/1371
  35762. }
  35763. },
  35764. },
  35765. [
  35766. {
  35767. name: "Normal",
  35768. height: math.unit(5 + 9/12, "feet"),
  35769. default: true
  35770. },
  35771. ]
  35772. ))
  35773. characterMakers.push(() => makeCharacter(
  35774. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35775. {
  35776. front: {
  35777. height: math.unit(7, "feet"),
  35778. weight: math.unit(310, "lb"),
  35779. name: "Front",
  35780. image: {
  35781. source: "./media/characters/solarus/front.svg",
  35782. extra: 2415/2021,
  35783. bottom: 103/2518
  35784. }
  35785. },
  35786. back: {
  35787. height: math.unit(7, "feet"),
  35788. weight: math.unit(310, "lb"),
  35789. name: "Back",
  35790. image: {
  35791. source: "./media/characters/solarus/back.svg",
  35792. extra: 2463/2089,
  35793. bottom: 79/2542
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(7, "feet"),
  35801. default: true
  35802. },
  35803. ]
  35804. ))
  35805. characterMakers.push(() => makeCharacter(
  35806. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35807. {
  35808. front: {
  35809. height: math.unit(16, "feet"),
  35810. name: "Front",
  35811. image: {
  35812. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35813. extra: 1844/1780,
  35814. bottom: 58/1902
  35815. }
  35816. },
  35817. winterCoat: {
  35818. height: math.unit(16, "feet"),
  35819. name: "Winter Coat",
  35820. image: {
  35821. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35822. extra: 1807/1775,
  35823. bottom: 69/1876
  35824. }
  35825. },
  35826. },
  35827. [
  35828. {
  35829. name: "Normal",
  35830. height: math.unit(16, "feet"),
  35831. default: true
  35832. },
  35833. {
  35834. name: "Chicago Size",
  35835. height: math.unit(560, "feet")
  35836. },
  35837. ]
  35838. ))
  35839. characterMakers.push(() => makeCharacter(
  35840. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35841. {
  35842. front: {
  35843. height: math.unit(11 + 6/12, "feet"),
  35844. weight: math.unit(1366, "lb"),
  35845. name: "Front",
  35846. image: {
  35847. source: "./media/characters/lexor/front.svg",
  35848. extra: 1560/1481,
  35849. bottom: 211/1771
  35850. }
  35851. },
  35852. back: {
  35853. height: math.unit(11 + 6/12, "feet"),
  35854. weight: math.unit(1366, "lb"),
  35855. name: "Back",
  35856. image: {
  35857. source: "./media/characters/lexor/back.svg",
  35858. extra: 1614/1533,
  35859. bottom: 76/1690
  35860. }
  35861. },
  35862. maw: {
  35863. height: math.unit(3, "feet"),
  35864. name: "Maw",
  35865. image: {
  35866. source: "./media/characters/lexor/maw.svg"
  35867. }
  35868. },
  35869. dick: {
  35870. height: math.unit(2.59, "feet"),
  35871. name: "Dick",
  35872. image: {
  35873. source: "./media/characters/lexor/dick.svg"
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Normal",
  35880. height: math.unit(11 + 6/12, "feet"),
  35881. default: true
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(5 + 8/12, "feet"),
  35890. name: "Front",
  35891. image: {
  35892. source: "./media/characters/magnum/front.svg",
  35893. extra: 942/855,
  35894. bottom: 26/968
  35895. }
  35896. },
  35897. },
  35898. [
  35899. {
  35900. name: "Normal",
  35901. height: math.unit(5 + 8/12, "feet"),
  35902. default: true
  35903. },
  35904. ]
  35905. ))
  35906. characterMakers.push(() => makeCharacter(
  35907. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35908. {
  35909. front: {
  35910. height: math.unit(18 + 4/12, "feet"),
  35911. weight: math.unit(1500, "kg"),
  35912. name: "Front",
  35913. image: {
  35914. source: "./media/characters/solas-sharpsman/front.svg",
  35915. extra: 1698/1589,
  35916. bottom: 0/1698
  35917. }
  35918. },
  35919. },
  35920. [
  35921. {
  35922. name: "Normal",
  35923. height: math.unit(18 + 4/12, "feet"),
  35924. default: true
  35925. },
  35926. ]
  35927. ))
  35928. characterMakers.push(() => makeCharacter(
  35929. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35930. {
  35931. front: {
  35932. height: math.unit(5 + 5/12, "feet"),
  35933. weight: math.unit(180, "lb"),
  35934. name: "Front",
  35935. image: {
  35936. source: "./media/characters/october/front.svg",
  35937. extra: 1800/1650,
  35938. bottom: 0/1800
  35939. }
  35940. },
  35941. frontNsfw: {
  35942. height: math.unit(5 + 5/12, "feet"),
  35943. weight: math.unit(180, "lb"),
  35944. name: "Front (NSFW)",
  35945. image: {
  35946. source: "./media/characters/october/front-nsfw.svg",
  35947. extra: 1392/1307,
  35948. bottom: 42/1434
  35949. }
  35950. },
  35951. },
  35952. [
  35953. {
  35954. name: "Normal",
  35955. height: math.unit(5 + 5/12, "feet"),
  35956. default: true
  35957. },
  35958. ]
  35959. ))
  35960. characterMakers.push(() => makeCharacter(
  35961. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35962. {
  35963. front: {
  35964. height: math.unit(8 + 6/12, "feet"),
  35965. name: "Front",
  35966. image: {
  35967. source: "./media/characters/essynkardi/front.svg",
  35968. extra: 1914/1846,
  35969. bottom: 22/1936
  35970. }
  35971. },
  35972. },
  35973. [
  35974. {
  35975. name: "Normal",
  35976. height: math.unit(8 + 6/12, "feet"),
  35977. default: true
  35978. },
  35979. ]
  35980. ))
  35981. characterMakers.push(() => makeCharacter(
  35982. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35983. {
  35984. front: {
  35985. height: math.unit(6 + 6/12, "feet"),
  35986. weight: math.unit(7, "lb"),
  35987. name: "Front",
  35988. image: {
  35989. source: "./media/characters/icky/front.svg",
  35990. extra: 813/782,
  35991. bottom: 66/879
  35992. }
  35993. },
  35994. back: {
  35995. height: math.unit(6 + 6/12, "feet"),
  35996. weight: math.unit(7, "lb"),
  35997. name: "Back",
  35998. image: {
  35999. source: "./media/characters/icky/back.svg",
  36000. extra: 754/735,
  36001. bottom: 56/810
  36002. }
  36003. },
  36004. },
  36005. [
  36006. {
  36007. name: "Normal",
  36008. height: math.unit(6 + 6/12, "feet"),
  36009. default: true
  36010. },
  36011. ]
  36012. ))
  36013. characterMakers.push(() => makeCharacter(
  36014. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36015. {
  36016. front: {
  36017. height: math.unit(15, "feet"),
  36018. name: "Front",
  36019. image: {
  36020. source: "./media/characters/rojas/front.svg",
  36021. extra: 1462/1408,
  36022. bottom: 95/1557
  36023. }
  36024. },
  36025. back: {
  36026. height: math.unit(15, "feet"),
  36027. name: "Back",
  36028. image: {
  36029. source: "./media/characters/rojas/back.svg",
  36030. extra: 1023/954,
  36031. bottom: 28/1051
  36032. }
  36033. },
  36034. },
  36035. [
  36036. {
  36037. name: "Normal",
  36038. height: math.unit(15, "feet"),
  36039. default: true
  36040. },
  36041. ]
  36042. ))
  36043. characterMakers.push(() => makeCharacter(
  36044. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36045. {
  36046. frontHuman: {
  36047. height: math.unit(5 + 7/12, "feet"),
  36048. name: "Front (Human)",
  36049. image: {
  36050. source: "./media/characters/alek-dryagan/front-human.svg",
  36051. extra: 1687/1667,
  36052. bottom: 69/1756
  36053. }
  36054. },
  36055. backHuman: {
  36056. height: math.unit(5 + 7/12, "feet"),
  36057. name: "Back (Human)",
  36058. image: {
  36059. source: "./media/characters/alek-dryagan/back-human.svg",
  36060. extra: 1670/1649,
  36061. bottom: 65/1735
  36062. }
  36063. },
  36064. frontDemi: {
  36065. height: math.unit(65, "feet"),
  36066. name: "Front (Demi)",
  36067. image: {
  36068. source: "./media/characters/alek-dryagan/front-demi.svg",
  36069. extra: 1669/1642,
  36070. bottom: 49/1718
  36071. }
  36072. },
  36073. backDemi: {
  36074. height: math.unit(65, "feet"),
  36075. name: "Back (Demi)",
  36076. image: {
  36077. source: "./media/characters/alek-dryagan/back-demi.svg",
  36078. extra: 1658/1637,
  36079. bottom: 40/1698
  36080. }
  36081. },
  36082. mawHuman: {
  36083. height: math.unit(0.3, "feet"),
  36084. name: "Maw (Human)",
  36085. image: {
  36086. source: "./media/characters/alek-dryagan/maw-human.svg"
  36087. }
  36088. },
  36089. mawDemi: {
  36090. height: math.unit(3.8, "feet"),
  36091. name: "Maw (Demi)",
  36092. image: {
  36093. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36094. }
  36095. },
  36096. },
  36097. [
  36098. {
  36099. name: "Normal",
  36100. height: math.unit(5 + 7/12, "feet"),
  36101. default: true
  36102. },
  36103. ]
  36104. ))
  36105. characterMakers.push(() => makeCharacter(
  36106. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36107. {
  36108. frontHuman: {
  36109. height: math.unit(5 + 2/12, "feet"),
  36110. name: "Front (Human)",
  36111. image: {
  36112. source: "./media/characters/gen/front-human.svg",
  36113. extra: 1627/1538,
  36114. bottom: 71/1698
  36115. }
  36116. },
  36117. backHuman: {
  36118. height: math.unit(5 + 2/12, "feet"),
  36119. name: "Back (Human)",
  36120. image: {
  36121. source: "./media/characters/gen/back-human.svg",
  36122. extra: 1638/1548,
  36123. bottom: 69/1707
  36124. }
  36125. },
  36126. frontDemi: {
  36127. height: math.unit(5 + 2/12, "feet"),
  36128. name: "Front (Demi)",
  36129. image: {
  36130. source: "./media/characters/gen/front-demi.svg",
  36131. extra: 1627/1538,
  36132. bottom: 71/1698
  36133. }
  36134. },
  36135. backDemi: {
  36136. height: math.unit(5 + 2/12, "feet"),
  36137. name: "Back (Demi)",
  36138. image: {
  36139. source: "./media/characters/gen/back-demi.svg",
  36140. extra: 1638/1548,
  36141. bottom: 69/1707
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(5 + 2/12, "feet"),
  36149. default: true
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36155. {
  36156. frontImp: {
  36157. height: math.unit(1 + 11/12, "feet"),
  36158. name: "Front (Imp)",
  36159. image: {
  36160. source: "./media/characters/max-kobold/front-imp.svg",
  36161. extra: 1238/1134,
  36162. bottom: 81/1319
  36163. }
  36164. },
  36165. backImp: {
  36166. height: math.unit(1 + 11/12, "feet"),
  36167. name: "Back (Imp)",
  36168. image: {
  36169. source: "./media/characters/max-kobold/back-imp.svg",
  36170. extra: 1334/1175,
  36171. bottom: 34/1368
  36172. }
  36173. },
  36174. frontDemi: {
  36175. height: math.unit(5 + 9/12, "feet"),
  36176. name: "Front (Demi)",
  36177. image: {
  36178. source: "./media/characters/max-kobold/front-demi.svg",
  36179. extra: 1715/1685,
  36180. bottom: 54/1769
  36181. }
  36182. },
  36183. backDemi: {
  36184. height: math.unit(5 + 9/12, "feet"),
  36185. name: "Back (Demi)",
  36186. image: {
  36187. source: "./media/characters/max-kobold/back-demi.svg",
  36188. extra: 1752/1729,
  36189. bottom: 41/1793
  36190. }
  36191. },
  36192. handImp: {
  36193. height: math.unit(0.45, "feet"),
  36194. name: "Hand (Imp)",
  36195. image: {
  36196. source: "./media/characters/max-kobold/hand.svg"
  36197. }
  36198. },
  36199. pawImp: {
  36200. height: math.unit(0.46, "feet"),
  36201. name: "Paw (Imp)",
  36202. image: {
  36203. source: "./media/characters/max-kobold/paw.svg"
  36204. }
  36205. },
  36206. handDemi: {
  36207. height: math.unit(0.80, "feet"),
  36208. name: "Hand (Demi)",
  36209. image: {
  36210. source: "./media/characters/max-kobold/hand.svg"
  36211. }
  36212. },
  36213. pawDemi: {
  36214. height: math.unit(1.1, "feet"),
  36215. name: "Paw (Demi)",
  36216. image: {
  36217. source: "./media/characters/max-kobold/paw.svg"
  36218. }
  36219. },
  36220. headImp: {
  36221. height: math.unit(1.33, "feet"),
  36222. name: "Head (Imp)",
  36223. image: {
  36224. source: "./media/characters/max-kobold/head-imp.svg"
  36225. }
  36226. },
  36227. mawImp: {
  36228. height: math.unit(0.75, "feet"),
  36229. name: "Maw (Imp)",
  36230. image: {
  36231. source: "./media/characters/max-kobold/maw-imp.svg"
  36232. }
  36233. },
  36234. mawDemi: {
  36235. height: math.unit(0.42, "feet"),
  36236. name: "Maw (Demi)",
  36237. image: {
  36238. source: "./media/characters/max-kobold/maw-demi.svg"
  36239. }
  36240. },
  36241. },
  36242. [
  36243. {
  36244. name: "Normal",
  36245. height: math.unit(1 + 11/12, "feet"),
  36246. default: true
  36247. },
  36248. ]
  36249. ))
  36250. characterMakers.push(() => makeCharacter(
  36251. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36252. {
  36253. front: {
  36254. height: math.unit(7 + 5/12, "feet"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/carbon/front.svg",
  36258. extra: 1754/1689,
  36259. bottom: 65/1819
  36260. }
  36261. },
  36262. back: {
  36263. height: math.unit(7 + 5/12, "feet"),
  36264. name: "Back",
  36265. image: {
  36266. source: "./media/characters/carbon/back.svg",
  36267. extra: 1762/1695,
  36268. bottom: 24/1786
  36269. }
  36270. },
  36271. frontGigantamax: {
  36272. height: math.unit(150, "feet"),
  36273. name: "Front (Gigantamax)",
  36274. image: {
  36275. source: "./media/characters/carbon/front-gigantamax.svg",
  36276. extra: 1826/1669,
  36277. bottom: 59/1885
  36278. }
  36279. },
  36280. backGigantamax: {
  36281. height: math.unit(150, "feet"),
  36282. name: "Back (Gigantamax)",
  36283. image: {
  36284. source: "./media/characters/carbon/back-gigantamax.svg",
  36285. extra: 1796/1653,
  36286. bottom: 53/1849
  36287. }
  36288. },
  36289. maw: {
  36290. height: math.unit(0.48, "feet"),
  36291. name: "Maw",
  36292. image: {
  36293. source: "./media/characters/carbon/maw.svg"
  36294. }
  36295. },
  36296. mawGigantamax: {
  36297. height: math.unit(7.5, "feet"),
  36298. name: "Maw (Gigantamax)",
  36299. image: {
  36300. source: "./media/characters/carbon/maw-gigantamax.svg"
  36301. }
  36302. },
  36303. },
  36304. [
  36305. {
  36306. name: "Normal",
  36307. height: math.unit(7 + 5/12, "feet"),
  36308. default: true
  36309. },
  36310. ]
  36311. ))
  36312. characterMakers.push(() => makeCharacter(
  36313. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36314. {
  36315. front: {
  36316. height: math.unit(6, "feet"),
  36317. name: "Front",
  36318. image: {
  36319. source: "./media/characters/maverick/front.svg",
  36320. extra: 1672/1661,
  36321. bottom: 85/1757
  36322. }
  36323. },
  36324. back: {
  36325. height: math.unit(6, "feet"),
  36326. name: "Back",
  36327. image: {
  36328. source: "./media/characters/maverick/back.svg",
  36329. extra: 1642/1631,
  36330. bottom: 38/1680
  36331. }
  36332. },
  36333. },
  36334. [
  36335. {
  36336. name: "Normal",
  36337. height: math.unit(6, "feet"),
  36338. default: true
  36339. },
  36340. ]
  36341. ))
  36342. characterMakers.push(() => makeCharacter(
  36343. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36344. {
  36345. front: {
  36346. height: math.unit(15, "feet"),
  36347. weight: math.unit(615, "lb"),
  36348. name: "Front",
  36349. image: {
  36350. source: "./media/characters/grockle/front.svg",
  36351. extra: 1535/1427,
  36352. bottom: 56/1591
  36353. }
  36354. },
  36355. },
  36356. [
  36357. {
  36358. name: "Normal",
  36359. height: math.unit(15, "feet"),
  36360. default: true
  36361. },
  36362. {
  36363. name: "Large",
  36364. height: math.unit(150, "feet")
  36365. },
  36366. {
  36367. name: "Macro",
  36368. height: math.unit(1876, "feet")
  36369. },
  36370. {
  36371. name: "Mega Macro",
  36372. height: math.unit(121940, "feet")
  36373. },
  36374. {
  36375. name: "Giga Macro",
  36376. height: math.unit(750, "km")
  36377. },
  36378. {
  36379. name: "Tera Macro",
  36380. height: math.unit(750000, "km")
  36381. },
  36382. {
  36383. name: "Galactic",
  36384. height: math.unit(1.4e5, "km")
  36385. },
  36386. {
  36387. name: "Godlike",
  36388. height: math.unit(9.8e280, "galaxies")
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36394. {
  36395. front: {
  36396. height: math.unit(11, "meters"),
  36397. weight: math.unit(20, "tonnes"),
  36398. name: "Front",
  36399. image: {
  36400. source: "./media/characters/alistair/front.svg",
  36401. extra: 1265/1009,
  36402. bottom: 93/1358
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Normal",
  36409. height: math.unit(11, "meters"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(5 + 8/12, "feet"),
  36419. name: "Front",
  36420. image: {
  36421. source: "./media/characters/haruka/front.svg",
  36422. extra: 2012/1952,
  36423. bottom: 0/2012
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Normal",
  36430. height: math.unit(5 + 8/12, "feet"),
  36431. default: true
  36432. },
  36433. ]
  36434. ))
  36435. characterMakers.push(() => makeCharacter(
  36436. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36437. {
  36438. back: {
  36439. height: math.unit(9, "feet"),
  36440. name: "Back",
  36441. image: {
  36442. source: "./media/characters/vivian-sylveon/back.svg",
  36443. extra: 1853/1714,
  36444. bottom: 0/1853
  36445. }
  36446. },
  36447. },
  36448. [
  36449. {
  36450. name: "Normal",
  36451. height: math.unit(9, "feet"),
  36452. default: true
  36453. },
  36454. {
  36455. name: "Macro",
  36456. height: math.unit(500, "feet")
  36457. },
  36458. {
  36459. name: "Megamacro",
  36460. height: math.unit(600, "miles")
  36461. },
  36462. {
  36463. name: "Gigamacro",
  36464. height: math.unit(30000, "miles")
  36465. },
  36466. ]
  36467. ))
  36468. characterMakers.push(() => makeCharacter(
  36469. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36470. {
  36471. anthro: {
  36472. height: math.unit(5 + 10/12, "feet"),
  36473. weight: math.unit(100, "lb"),
  36474. name: "Anthro",
  36475. image: {
  36476. source: "./media/characters/daiki/anthro.svg",
  36477. extra: 1115/1027,
  36478. bottom: 69/1184
  36479. }
  36480. },
  36481. feral: {
  36482. height: math.unit(200, "feet"),
  36483. name: "Feral",
  36484. image: {
  36485. source: "./media/characters/daiki/feral.svg",
  36486. extra: 1256/313,
  36487. bottom: 39/1295
  36488. }
  36489. },
  36490. feralHead: {
  36491. height: math.unit(171, "feet"),
  36492. name: "Feral Head",
  36493. image: {
  36494. source: "./media/characters/daiki/feral-head.svg"
  36495. }
  36496. },
  36497. manaDragon: {
  36498. height: math.unit(170, "meters"),
  36499. name: "Mana-dragon",
  36500. image: {
  36501. source: "./media/characters/daiki/mana-dragon.svg",
  36502. extra: 763/420,
  36503. bottom: 97/860
  36504. }
  36505. },
  36506. },
  36507. [
  36508. {
  36509. name: "Normal",
  36510. height: math.unit(5 + 10/12, "feet"),
  36511. default: true
  36512. },
  36513. ]
  36514. ))
  36515. characterMakers.push(() => makeCharacter(
  36516. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36517. {
  36518. fullyEquippedFront: {
  36519. height: math.unit(3 + 1/12, "feet"),
  36520. weight: math.unit(24, "lb"),
  36521. name: "Fully Equipped (Front)",
  36522. image: {
  36523. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36524. extra: 687/605,
  36525. bottom: 18/705
  36526. }
  36527. },
  36528. fullyEquippedBack: {
  36529. height: math.unit(3 + 1/12, "feet"),
  36530. weight: math.unit(24, "lb"),
  36531. name: "Fully Equipped (Back)",
  36532. image: {
  36533. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36534. extra: 689/590,
  36535. bottom: 18/707
  36536. }
  36537. },
  36538. dailyWear: {
  36539. height: math.unit(3 + 1/12, "feet"),
  36540. weight: math.unit(24, "lb"),
  36541. name: "Daily Wear",
  36542. image: {
  36543. source: "./media/characters/tea-spot/daily-wear.svg",
  36544. extra: 701/620,
  36545. bottom: 21/722
  36546. }
  36547. },
  36548. maidWork: {
  36549. height: math.unit(3 + 1/12, "feet"),
  36550. weight: math.unit(24, "lb"),
  36551. name: "Maid Work",
  36552. image: {
  36553. source: "./media/characters/tea-spot/maid-work.svg",
  36554. extra: 693/609,
  36555. bottom: 15/708
  36556. }
  36557. },
  36558. },
  36559. [
  36560. {
  36561. name: "Normal",
  36562. height: math.unit(3 + 1/12, "feet"),
  36563. default: true
  36564. },
  36565. ]
  36566. ))
  36567. characterMakers.push(() => makeCharacter(
  36568. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36569. {
  36570. front: {
  36571. height: math.unit(175, "cm"),
  36572. weight: math.unit(75, "kg"),
  36573. name: "Front",
  36574. image: {
  36575. source: "./media/characters/chee/front.svg",
  36576. extra: 1796/1740,
  36577. bottom: 40/1836
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Micro-Micro",
  36584. height: math.unit(1, "nm")
  36585. },
  36586. {
  36587. name: "Micro-erst",
  36588. height: math.unit(1, "micrometer")
  36589. },
  36590. {
  36591. name: "Micro-er",
  36592. height: math.unit(1, "cm")
  36593. },
  36594. {
  36595. name: "Normal",
  36596. height: math.unit(175, "cm"),
  36597. default: true
  36598. },
  36599. {
  36600. name: "Macro",
  36601. height: math.unit(100, "m")
  36602. },
  36603. {
  36604. name: "Macro-er",
  36605. height: math.unit(1, "km")
  36606. },
  36607. {
  36608. name: "Macro-erst",
  36609. height: math.unit(10, "km")
  36610. },
  36611. {
  36612. name: "Macro-Macro",
  36613. height: math.unit(100, "km")
  36614. },
  36615. ]
  36616. ))
  36617. characterMakers.push(() => makeCharacter(
  36618. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36619. {
  36620. front: {
  36621. height: math.unit(11 + 9/12, "feet"),
  36622. weight: math.unit(935, "lb"),
  36623. name: "Front",
  36624. image: {
  36625. source: "./media/characters/kingsley/front.svg",
  36626. extra: 1803/1674,
  36627. bottom: 127/1930
  36628. }
  36629. },
  36630. frontNude: {
  36631. height: math.unit(11 + 9/12, "feet"),
  36632. weight: math.unit(935, "lb"),
  36633. name: "Front (Nude)",
  36634. image: {
  36635. source: "./media/characters/kingsley/front-nude.svg",
  36636. extra: 1803/1674,
  36637. bottom: 127/1930
  36638. }
  36639. },
  36640. },
  36641. [
  36642. {
  36643. name: "Normal",
  36644. height: math.unit(11 + 9/12, "feet"),
  36645. default: true
  36646. },
  36647. ]
  36648. ))
  36649. characterMakers.push(() => makeCharacter(
  36650. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36651. {
  36652. side: {
  36653. height: math.unit(9, "feet"),
  36654. name: "Side",
  36655. image: {
  36656. source: "./media/characters/rymel/side.svg",
  36657. extra: 792/469,
  36658. bottom: 121/913
  36659. }
  36660. },
  36661. maw: {
  36662. height: math.unit(2.4, "meters"),
  36663. name: "Maw",
  36664. image: {
  36665. source: "./media/characters/rymel/maw.svg"
  36666. }
  36667. },
  36668. },
  36669. [
  36670. {
  36671. name: "House Drake",
  36672. height: math.unit(2, "feet")
  36673. },
  36674. {
  36675. name: "Reduced",
  36676. height: math.unit(4.5, "feet")
  36677. },
  36678. {
  36679. name: "Normal",
  36680. height: math.unit(9, "feet"),
  36681. default: true
  36682. },
  36683. ]
  36684. ))
  36685. characterMakers.push(() => makeCharacter(
  36686. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36687. {
  36688. front: {
  36689. height: math.unit(1.74, "meters"),
  36690. weight: math.unit(55, "kg"),
  36691. name: "Front",
  36692. image: {
  36693. source: "./media/characters/rubus/front.svg",
  36694. extra: 1894/1742,
  36695. bottom: 44/1938
  36696. }
  36697. },
  36698. },
  36699. [
  36700. {
  36701. name: "Normal",
  36702. height: math.unit(1.74, "meters"),
  36703. default: true
  36704. },
  36705. ]
  36706. ))
  36707. characterMakers.push(() => makeCharacter(
  36708. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36709. {
  36710. front: {
  36711. height: math.unit(5 + 2/12, "feet"),
  36712. weight: math.unit(112, "lb"),
  36713. name: "Front",
  36714. image: {
  36715. source: "./media/characters/cassie-kingston/front.svg",
  36716. extra: 1438/1390,
  36717. bottom: 47/1485
  36718. }
  36719. },
  36720. },
  36721. [
  36722. {
  36723. name: "Normal",
  36724. height: math.unit(5 + 2/12, "feet"),
  36725. default: true
  36726. },
  36727. {
  36728. name: "Macro",
  36729. height: math.unit(128, "feet")
  36730. },
  36731. {
  36732. name: "Megamacro",
  36733. height: math.unit(2.56, "miles")
  36734. },
  36735. ]
  36736. ))
  36737. characterMakers.push(() => makeCharacter(
  36738. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36739. {
  36740. front: {
  36741. height: math.unit(7, "feet"),
  36742. name: "Front",
  36743. image: {
  36744. source: "./media/characters/fox/front.svg",
  36745. extra: 1798/1703,
  36746. bottom: 55/1853
  36747. }
  36748. },
  36749. back: {
  36750. height: math.unit(7, "feet"),
  36751. name: "Back",
  36752. image: {
  36753. source: "./media/characters/fox/back.svg",
  36754. extra: 1748/1649,
  36755. bottom: 32/1780
  36756. }
  36757. },
  36758. head: {
  36759. height: math.unit(1.95, "feet"),
  36760. name: "Head",
  36761. image: {
  36762. source: "./media/characters/fox/head.svg"
  36763. }
  36764. },
  36765. dick: {
  36766. height: math.unit(1.33, "feet"),
  36767. name: "Dick",
  36768. image: {
  36769. source: "./media/characters/fox/dick.svg"
  36770. }
  36771. },
  36772. foot: {
  36773. height: math.unit(1, "feet"),
  36774. name: "Foot",
  36775. image: {
  36776. source: "./media/characters/fox/foot.svg"
  36777. }
  36778. },
  36779. paw: {
  36780. height: math.unit(0.92, "feet"),
  36781. name: "Paw",
  36782. image: {
  36783. source: "./media/characters/fox/paw.svg"
  36784. }
  36785. },
  36786. },
  36787. [
  36788. {
  36789. name: "Small",
  36790. height: math.unit(3, "inches")
  36791. },
  36792. {
  36793. name: "\"Realistic\"",
  36794. height: math.unit(7, "feet")
  36795. },
  36796. {
  36797. name: "Normal",
  36798. height: math.unit(150, "feet"),
  36799. default: true
  36800. },
  36801. {
  36802. name: "BIG",
  36803. height: math.unit(1200, "feet")
  36804. },
  36805. {
  36806. name: "👀",
  36807. height: math.unit(5, "miles")
  36808. },
  36809. {
  36810. name: "👀👀👀",
  36811. height: math.unit(64, "miles")
  36812. },
  36813. ]
  36814. ))
  36815. characterMakers.push(() => makeCharacter(
  36816. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36817. {
  36818. front: {
  36819. height: math.unit(625, "feet"),
  36820. name: "Front",
  36821. image: {
  36822. source: "./media/characters/asonja-rossa/front.svg",
  36823. extra: 1833/1686,
  36824. bottom: 24/1857
  36825. }
  36826. },
  36827. back: {
  36828. height: math.unit(625, "feet"),
  36829. name: "Back",
  36830. image: {
  36831. source: "./media/characters/asonja-rossa/back.svg",
  36832. extra: 1852/1753,
  36833. bottom: 26/1878
  36834. }
  36835. },
  36836. },
  36837. [
  36838. {
  36839. name: "Macro",
  36840. height: math.unit(625, "feet"),
  36841. default: true
  36842. },
  36843. ]
  36844. ))
  36845. characterMakers.push(() => makeCharacter(
  36846. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36847. {
  36848. side: {
  36849. height: math.unit(8, "feet"),
  36850. name: "Side",
  36851. image: {
  36852. source: "./media/characters/rezukii/side.svg",
  36853. extra: 979/542,
  36854. bottom: 87/1066
  36855. }
  36856. },
  36857. sitting: {
  36858. height: math.unit(14.6, "feet"),
  36859. name: "Sitting",
  36860. image: {
  36861. source: "./media/characters/rezukii/sitting.svg",
  36862. extra: 1023/813,
  36863. bottom: 45/1068
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Tiny",
  36870. height: math.unit(2, "feet")
  36871. },
  36872. {
  36873. name: "Smol",
  36874. height: math.unit(4, "feet")
  36875. },
  36876. {
  36877. name: "Normal",
  36878. height: math.unit(8, "feet"),
  36879. default: true
  36880. },
  36881. {
  36882. name: "Big",
  36883. height: math.unit(12, "feet")
  36884. },
  36885. {
  36886. name: "Macro",
  36887. height: math.unit(30, "feet")
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36893. {
  36894. front: {
  36895. height: math.unit(14, "feet"),
  36896. weight: math.unit(9.5, "tonnes"),
  36897. name: "Front",
  36898. image: {
  36899. source: "./media/characters/dawnheart/front.svg",
  36900. extra: 2792/2675,
  36901. bottom: 64/2856
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Normal",
  36908. height: math.unit(14, "feet"),
  36909. default: true
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36915. {
  36916. front: {
  36917. height: math.unit(1.7, "m"),
  36918. name: "Front",
  36919. image: {
  36920. source: "./media/characters/gladi/front.svg",
  36921. extra: 1460/1362,
  36922. bottom: 19/1479
  36923. }
  36924. },
  36925. back: {
  36926. height: math.unit(1.7, "m"),
  36927. name: "Back",
  36928. image: {
  36929. source: "./media/characters/gladi/back.svg",
  36930. extra: 1459/1357,
  36931. bottom: 12/1471
  36932. }
  36933. },
  36934. feral: {
  36935. height: math.unit(2.05, "m"),
  36936. name: "Feral",
  36937. image: {
  36938. source: "./media/characters/gladi/feral.svg",
  36939. extra: 821/557,
  36940. bottom: 91/912
  36941. }
  36942. },
  36943. },
  36944. [
  36945. {
  36946. name: "Shortest",
  36947. height: math.unit(70, "cm")
  36948. },
  36949. {
  36950. name: "Normal",
  36951. height: math.unit(1.7, "m")
  36952. },
  36953. {
  36954. name: "Macro",
  36955. height: math.unit(10, "m"),
  36956. default: true
  36957. },
  36958. {
  36959. name: "Tallest",
  36960. height: math.unit(200, "m")
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36966. {
  36967. front: {
  36968. height: math.unit(5 + 7/12, "feet"),
  36969. weight: math.unit(2, "tons"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/erdno/front.svg",
  36973. extra: 1234/1129,
  36974. bottom: 35/1269
  36975. }
  36976. },
  36977. angled: {
  36978. height: math.unit(5 + 7/12, "feet"),
  36979. weight: math.unit(2, "tons"),
  36980. name: "Angled",
  36981. image: {
  36982. source: "./media/characters/erdno/angled.svg",
  36983. extra: 1185/1139,
  36984. bottom: 36/1221
  36985. }
  36986. },
  36987. side: {
  36988. height: math.unit(5 + 7/12, "feet"),
  36989. weight: math.unit(2, "tons"),
  36990. name: "Side",
  36991. image: {
  36992. source: "./media/characters/erdno/side.svg",
  36993. extra: 1191/1144,
  36994. bottom: 40/1231
  36995. }
  36996. },
  36997. back: {
  36998. height: math.unit(5 + 7/12, "feet"),
  36999. weight: math.unit(2, "tons"),
  37000. name: "Back",
  37001. image: {
  37002. source: "./media/characters/erdno/back.svg",
  37003. extra: 1202/1146,
  37004. bottom: 17/1219
  37005. }
  37006. },
  37007. frontNsfw: {
  37008. height: math.unit(5 + 7/12, "feet"),
  37009. weight: math.unit(2, "tons"),
  37010. name: "Front (NSFW)",
  37011. image: {
  37012. source: "./media/characters/erdno/front-nsfw.svg",
  37013. extra: 1234/1129,
  37014. bottom: 35/1269
  37015. }
  37016. },
  37017. angledNsfw: {
  37018. height: math.unit(5 + 7/12, "feet"),
  37019. weight: math.unit(2, "tons"),
  37020. name: "Angled (NSFW)",
  37021. image: {
  37022. source: "./media/characters/erdno/angled-nsfw.svg",
  37023. extra: 1185/1139,
  37024. bottom: 36/1221
  37025. }
  37026. },
  37027. sideNsfw: {
  37028. height: math.unit(5 + 7/12, "feet"),
  37029. weight: math.unit(2, "tons"),
  37030. name: "Side (NSFW)",
  37031. image: {
  37032. source: "./media/characters/erdno/side-nsfw.svg",
  37033. extra: 1191/1144,
  37034. bottom: 40/1231
  37035. }
  37036. },
  37037. backNsfw: {
  37038. height: math.unit(5 + 7/12, "feet"),
  37039. weight: math.unit(2, "tons"),
  37040. name: "Back (NSFW)",
  37041. image: {
  37042. source: "./media/characters/erdno/back-nsfw.svg",
  37043. extra: 1202/1146,
  37044. bottom: 17/1219
  37045. }
  37046. },
  37047. frontHyper: {
  37048. height: math.unit(5 + 7/12, "feet"),
  37049. weight: math.unit(2, "tons"),
  37050. name: "Front (Hyper)",
  37051. image: {
  37052. source: "./media/characters/erdno/front-hyper.svg",
  37053. extra: 1298/1136,
  37054. bottom: 35/1333
  37055. }
  37056. },
  37057. },
  37058. [
  37059. {
  37060. name: "Normal",
  37061. height: math.unit(5 + 7/12, "feet"),
  37062. default: true
  37063. },
  37064. {
  37065. name: "Big",
  37066. height: math.unit(5.7, "meters")
  37067. },
  37068. {
  37069. name: "Macro",
  37070. height: math.unit(5.7, "kilometers")
  37071. },
  37072. {
  37073. name: "Megamacro",
  37074. height: math.unit(5.7, "earths")
  37075. },
  37076. ]
  37077. ))
  37078. characterMakers.push(() => makeCharacter(
  37079. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37080. {
  37081. front: {
  37082. height: math.unit(5 + 10/12, "feet"),
  37083. weight: math.unit(150, "lb"),
  37084. name: "Front",
  37085. image: {
  37086. source: "./media/characters/jamie/front.svg",
  37087. extra: 1908/1768,
  37088. bottom: 19/1927
  37089. }
  37090. },
  37091. },
  37092. [
  37093. {
  37094. name: "Minimum",
  37095. height: math.unit(2, "cm")
  37096. },
  37097. {
  37098. name: "Micro",
  37099. height: math.unit(3, "inches")
  37100. },
  37101. {
  37102. name: "Normal",
  37103. height: math.unit(5 + 10/12, "feet"),
  37104. default: true
  37105. },
  37106. {
  37107. name: "Macro",
  37108. height: math.unit(150, "feet")
  37109. },
  37110. {
  37111. name: "Megamacro",
  37112. height: math.unit(10000, "m")
  37113. },
  37114. ]
  37115. ))
  37116. characterMakers.push(() => makeCharacter(
  37117. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37118. {
  37119. front: {
  37120. height: math.unit(2, "meters"),
  37121. weight: math.unit(100, "kg"),
  37122. name: "Front",
  37123. image: {
  37124. source: "./media/characters/shiron/front.svg",
  37125. extra: 2103/1985,
  37126. bottom: 98/2201
  37127. }
  37128. },
  37129. back: {
  37130. height: math.unit(2, "meters"),
  37131. weight: math.unit(100, "kg"),
  37132. name: "Back",
  37133. image: {
  37134. source: "./media/characters/shiron/back.svg",
  37135. extra: 2110/2015,
  37136. bottom: 89/2199
  37137. }
  37138. },
  37139. hand: {
  37140. height: math.unit(0.96, "feet"),
  37141. name: "Hand",
  37142. image: {
  37143. source: "./media/characters/shiron/hand.svg"
  37144. }
  37145. },
  37146. foot: {
  37147. height: math.unit(1.464, "feet"),
  37148. name: "Foot",
  37149. image: {
  37150. source: "./media/characters/shiron/foot.svg"
  37151. }
  37152. },
  37153. },
  37154. [
  37155. {
  37156. name: "Normal",
  37157. height: math.unit(2, "meters")
  37158. },
  37159. {
  37160. name: "Macro",
  37161. height: math.unit(500, "meters"),
  37162. default: true
  37163. },
  37164. {
  37165. name: "Megamacro",
  37166. height: math.unit(20, "km")
  37167. },
  37168. ]
  37169. ))
  37170. characterMakers.push(() => makeCharacter(
  37171. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37172. {
  37173. front: {
  37174. height: math.unit(6, "feet"),
  37175. name: "Front",
  37176. image: {
  37177. source: "./media/characters/sam/front.svg",
  37178. extra: 849/826,
  37179. bottom: 19/868
  37180. }
  37181. },
  37182. },
  37183. [
  37184. {
  37185. name: "Normal",
  37186. height: math.unit(6, "feet"),
  37187. default: true
  37188. },
  37189. ]
  37190. ))
  37191. characterMakers.push(() => makeCharacter(
  37192. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37193. {
  37194. front: {
  37195. height: math.unit(8 + 4/12, "feet"),
  37196. weight: math.unit(122, "kg"),
  37197. name: "Front",
  37198. image: {
  37199. source: "./media/characters/namori-kurogawa/front.svg",
  37200. extra: 1894/1576,
  37201. bottom: 34/1928
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(8 + 4/12, "feet"),
  37209. default: true
  37210. },
  37211. ]
  37212. ))
  37213. characterMakers.push(() => makeCharacter(
  37214. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37215. {
  37216. front: {
  37217. height: math.unit(9, "feet"),
  37218. weight: math.unit(621, "lb"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/unmru/front.svg",
  37222. extra: 1853/1747,
  37223. bottom: 73/1926
  37224. }
  37225. },
  37226. side: {
  37227. height: math.unit(9, "feet"),
  37228. weight: math.unit(621, "lb"),
  37229. name: "Side",
  37230. image: {
  37231. source: "./media/characters/unmru/side.svg",
  37232. extra: 1781/1671,
  37233. bottom: 127/1908
  37234. }
  37235. },
  37236. back: {
  37237. height: math.unit(9, "feet"),
  37238. weight: math.unit(621, "lb"),
  37239. name: "Back",
  37240. image: {
  37241. source: "./media/characters/unmru/back.svg",
  37242. extra: 1894/1765,
  37243. bottom: 75/1969
  37244. }
  37245. },
  37246. dick: {
  37247. height: math.unit(3, "feet"),
  37248. weight: math.unit(35, "lb"),
  37249. name: "Dick",
  37250. image: {
  37251. source: "./media/characters/unmru/dick.svg"
  37252. }
  37253. },
  37254. },
  37255. [
  37256. {
  37257. name: "Normal",
  37258. height: math.unit(9, "feet")
  37259. },
  37260. {
  37261. name: "Natural",
  37262. height: math.unit(27, "feet"),
  37263. default: true
  37264. },
  37265. {
  37266. name: "Giant",
  37267. height: math.unit(90, "feet")
  37268. },
  37269. {
  37270. name: "Kaiju",
  37271. height: math.unit(270, "feet")
  37272. },
  37273. {
  37274. name: "Macro",
  37275. height: math.unit(900, "feet")
  37276. },
  37277. {
  37278. name: "Macro+",
  37279. height: math.unit(2700, "feet")
  37280. },
  37281. {
  37282. name: "Megamacro",
  37283. height: math.unit(9000, "feet")
  37284. },
  37285. {
  37286. name: "City-Crushing",
  37287. height: math.unit(27000, "feet")
  37288. },
  37289. {
  37290. name: "Mountain-Mashing",
  37291. height: math.unit(90000, "feet")
  37292. },
  37293. {
  37294. name: "Earth-Eclipsing",
  37295. height: math.unit(2.7e8, "feet")
  37296. },
  37297. {
  37298. name: "Sol-Swallowing",
  37299. height: math.unit(9e10, "feet")
  37300. },
  37301. {
  37302. name: "Majoris-Munching",
  37303. height: math.unit(2.7e13, "feet")
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37309. {
  37310. front: {
  37311. height: math.unit(1, "inch"),
  37312. name: "Front",
  37313. image: {
  37314. source: "./media/characters/squeaks-mouse/front.svg",
  37315. extra: 352/308,
  37316. bottom: 25/377
  37317. }
  37318. },
  37319. },
  37320. [
  37321. {
  37322. name: "Micro",
  37323. height: math.unit(1, "inch"),
  37324. default: true
  37325. },
  37326. ]
  37327. ))
  37328. characterMakers.push(() => makeCharacter(
  37329. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37330. {
  37331. side: {
  37332. height: math.unit(35, "feet"),
  37333. name: "Side",
  37334. image: {
  37335. source: "./media/characters/sayko/side.svg",
  37336. extra: 1697/1021,
  37337. bottom: 82/1779
  37338. }
  37339. },
  37340. head: {
  37341. height: math.unit(16, "feet"),
  37342. name: "Head",
  37343. image: {
  37344. source: "./media/characters/sayko/head.svg"
  37345. }
  37346. },
  37347. forepaw: {
  37348. height: math.unit(7.85, "feet"),
  37349. name: "Forepaw",
  37350. image: {
  37351. source: "./media/characters/sayko/forepaw.svg"
  37352. }
  37353. },
  37354. hindpaw: {
  37355. height: math.unit(8.8, "feet"),
  37356. name: "Hindpaw",
  37357. image: {
  37358. source: "./media/characters/sayko/hindpaw.svg"
  37359. }
  37360. },
  37361. },
  37362. [
  37363. {
  37364. name: "Normal",
  37365. height: math.unit(35, "feet"),
  37366. default: true
  37367. },
  37368. {
  37369. name: "Colossus",
  37370. height: math.unit(100, "meters")
  37371. },
  37372. {
  37373. name: "\"Small\" Deity",
  37374. height: math.unit(1, "km")
  37375. },
  37376. {
  37377. name: "\"Large\" Deity",
  37378. height: math.unit(15, "km")
  37379. },
  37380. ]
  37381. ))
  37382. characterMakers.push(() => makeCharacter(
  37383. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37384. {
  37385. front: {
  37386. height: math.unit(6, "feet"),
  37387. weight: math.unit(250, "lb"),
  37388. name: "Front",
  37389. image: {
  37390. source: "./media/characters/mukiro/front.svg",
  37391. extra: 1368/1310,
  37392. bottom: 34/1402
  37393. }
  37394. },
  37395. },
  37396. [
  37397. {
  37398. name: "Normal",
  37399. height: math.unit(6, "feet"),
  37400. default: true
  37401. },
  37402. ]
  37403. ))
  37404. characterMakers.push(() => makeCharacter(
  37405. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37406. {
  37407. front: {
  37408. height: math.unit(12 + 4/12, "feet"),
  37409. name: "Front",
  37410. image: {
  37411. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37412. extra: 1346/1311,
  37413. bottom: 65/1411
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Base",
  37420. height: math.unit(12 + 4/12, "feet"),
  37421. default: true
  37422. },
  37423. {
  37424. name: "Macro",
  37425. height: math.unit(150, "feet")
  37426. },
  37427. {
  37428. name: "Mega",
  37429. height: math.unit(2, "miles")
  37430. },
  37431. {
  37432. name: "Demi God",
  37433. height: math.unit(4, "AU")
  37434. },
  37435. {
  37436. name: "God Size",
  37437. height: math.unit(1, "universe")
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37443. {
  37444. front: {
  37445. height: math.unit(3 + 3/12, "feet"),
  37446. weight: math.unit(88, "lb"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/trey/front.svg",
  37450. extra: 1815/1509,
  37451. bottom: 60/1875
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(3 + 3/12, "feet"),
  37459. default: true
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37465. {
  37466. front: {
  37467. height: math.unit(4, "meters"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/adelonda/front.svg",
  37471. extra: 1077/982,
  37472. bottom: 39/1116
  37473. }
  37474. },
  37475. back: {
  37476. height: math.unit(4, "meters"),
  37477. name: "Back",
  37478. image: {
  37479. source: "./media/characters/adelonda/back.svg",
  37480. extra: 1105/1003,
  37481. bottom: 25/1130
  37482. }
  37483. },
  37484. },
  37485. [
  37486. {
  37487. name: "Normal",
  37488. height: math.unit(4, "meters"),
  37489. default: true
  37490. },
  37491. ]
  37492. ))
  37493. characterMakers.push(() => makeCharacter(
  37494. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37495. {
  37496. front: {
  37497. height: math.unit(8 + 4/12, "feet"),
  37498. weight: math.unit(670, "lb"),
  37499. name: "Front",
  37500. image: {
  37501. source: "./media/characters/acadiel/front.svg",
  37502. extra: 1901/1595,
  37503. bottom: 142/2043
  37504. }
  37505. },
  37506. },
  37507. [
  37508. {
  37509. name: "Normal",
  37510. height: math.unit(8 + 4/12, "feet"),
  37511. default: true
  37512. },
  37513. {
  37514. name: "Macro",
  37515. height: math.unit(200, "feet")
  37516. },
  37517. ]
  37518. ))
  37519. characterMakers.push(() => makeCharacter(
  37520. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37521. {
  37522. front: {
  37523. height: math.unit(6 + 2/12, "feet"),
  37524. weight: math.unit(185, "lb"),
  37525. name: "Front",
  37526. image: {
  37527. source: "./media/characters/kayne-ein/front.svg",
  37528. extra: 1780/1560,
  37529. bottom: 81/1861
  37530. }
  37531. },
  37532. },
  37533. [
  37534. {
  37535. name: "Normal",
  37536. height: math.unit(6 + 2/12, "feet"),
  37537. default: true
  37538. },
  37539. {
  37540. name: "Transformation Stage",
  37541. height: math.unit(15, "feet")
  37542. },
  37543. {
  37544. name: "Macro",
  37545. height: math.unit(150, "feet")
  37546. },
  37547. {
  37548. name: "Earth's Shadow",
  37549. height: math.unit(6200, "miles")
  37550. },
  37551. {
  37552. name: "Universal Demon",
  37553. height: math.unit(28e9, "parsecs")
  37554. },
  37555. {
  37556. name: "Multiverse God",
  37557. height: math.unit(3, "multiverses")
  37558. },
  37559. ]
  37560. ))
  37561. characterMakers.push(() => makeCharacter(
  37562. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37563. {
  37564. front: {
  37565. height: math.unit(5 + 5/12, "feet"),
  37566. name: "Front",
  37567. image: {
  37568. source: "./media/characters/fawn/front.svg",
  37569. extra: 1873/1731,
  37570. bottom: 95/1968
  37571. }
  37572. },
  37573. back: {
  37574. height: math.unit(5 + 5/12, "feet"),
  37575. name: "Back",
  37576. image: {
  37577. source: "./media/characters/fawn/back.svg",
  37578. extra: 1813/1700,
  37579. bottom: 14/1827
  37580. }
  37581. },
  37582. hoof: {
  37583. height: math.unit(1.45, "feet"),
  37584. name: "Hoof",
  37585. image: {
  37586. source: "./media/characters/fawn/hoof.svg"
  37587. }
  37588. },
  37589. },
  37590. [
  37591. {
  37592. name: "Normal",
  37593. height: math.unit(5 + 5/12, "feet"),
  37594. default: true
  37595. },
  37596. ]
  37597. ))
  37598. characterMakers.push(() => makeCharacter(
  37599. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37600. {
  37601. front: {
  37602. height: math.unit(2 + 5/12, "feet"),
  37603. name: "Front",
  37604. image: {
  37605. source: "./media/characters/orion/front.svg",
  37606. extra: 1366/1304,
  37607. bottom: 43/1409
  37608. }
  37609. },
  37610. paw: {
  37611. height: math.unit(0.52, "feet"),
  37612. name: "Paw",
  37613. image: {
  37614. source: "./media/characters/orion/paw.svg"
  37615. }
  37616. },
  37617. },
  37618. [
  37619. {
  37620. name: "Normal",
  37621. height: math.unit(2 + 5/12, "feet"),
  37622. default: true
  37623. },
  37624. ]
  37625. ))
  37626. characterMakers.push(() => makeCharacter(
  37627. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37628. {
  37629. front: {
  37630. height: math.unit(5 + 10/12, "feet"),
  37631. name: "Front",
  37632. image: {
  37633. source: "./media/characters/vera/front.svg",
  37634. extra: 1680/1575,
  37635. bottom: 49/1729
  37636. }
  37637. },
  37638. back: {
  37639. height: math.unit(5 + 10/12, "feet"),
  37640. name: "Back",
  37641. image: {
  37642. source: "./media/characters/vera/back.svg",
  37643. extra: 1700/1588,
  37644. bottom: 18/1718
  37645. }
  37646. },
  37647. arcanine: {
  37648. height: math.unit(6 + 8/12, "feet"),
  37649. name: "Arcanine",
  37650. image: {
  37651. source: "./media/characters/vera/arcanine.svg",
  37652. extra: 1590/1511,
  37653. bottom: 71/1661
  37654. }
  37655. },
  37656. maw: {
  37657. height: math.unit(0.82, "feet"),
  37658. name: "Maw",
  37659. image: {
  37660. source: "./media/characters/vera/maw.svg"
  37661. }
  37662. },
  37663. mawArcanine: {
  37664. height: math.unit(0.97, "feet"),
  37665. name: "Maw (Arcanine)",
  37666. image: {
  37667. source: "./media/characters/vera/maw-arcanine.svg"
  37668. }
  37669. },
  37670. paw: {
  37671. height: math.unit(0.75, "feet"),
  37672. name: "Paw",
  37673. image: {
  37674. source: "./media/characters/vera/paw.svg"
  37675. }
  37676. },
  37677. pawprint: {
  37678. height: math.unit(0.52, "feet"),
  37679. name: "Pawprint",
  37680. image: {
  37681. source: "./media/characters/vera/pawprint.svg"
  37682. }
  37683. },
  37684. },
  37685. [
  37686. {
  37687. name: "Normal",
  37688. height: math.unit(5 + 10/12, "feet"),
  37689. default: true
  37690. },
  37691. {
  37692. name: "Macro",
  37693. height: math.unit(75, "feet")
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37699. {
  37700. front: {
  37701. height: math.unit(4, "feet"),
  37702. weight: math.unit(40, "lb"),
  37703. name: "Front",
  37704. image: {
  37705. source: "./media/characters/orvan-rabbit/front.svg",
  37706. extra: 1896/1642,
  37707. bottom: 29/1925
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Normal",
  37714. height: math.unit(4, "feet"),
  37715. default: true
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37721. {
  37722. front: {
  37723. height: math.unit(6, "feet"),
  37724. weight: math.unit(168, "lb"),
  37725. name: "Front",
  37726. image: {
  37727. source: "./media/characters/lisa/front.svg",
  37728. extra: 2065/1867,
  37729. bottom: 46/2111
  37730. }
  37731. },
  37732. back: {
  37733. height: math.unit(6, "feet"),
  37734. weight: math.unit(168, "lb"),
  37735. name: "Back",
  37736. image: {
  37737. source: "./media/characters/lisa/back.svg",
  37738. extra: 1982/1838,
  37739. bottom: 29/2011
  37740. }
  37741. },
  37742. maw: {
  37743. height: math.unit(0.81, "feet"),
  37744. name: "Maw",
  37745. image: {
  37746. source: "./media/characters/lisa/maw.svg"
  37747. }
  37748. },
  37749. paw: {
  37750. height: math.unit(0.9, "feet"),
  37751. name: "Paw",
  37752. image: {
  37753. source: "./media/characters/lisa/paw.svg"
  37754. }
  37755. },
  37756. caribousune: {
  37757. height: math.unit(7 + 2/12, "feet"),
  37758. weight: math.unit(268, "lb"),
  37759. name: "Caribousune",
  37760. image: {
  37761. source: "./media/characters/lisa/caribousune.svg",
  37762. extra: 1843/1633,
  37763. bottom: 29/1872
  37764. }
  37765. },
  37766. frontCaribousune: {
  37767. height: math.unit(7 + 2/12, "feet"),
  37768. weight: math.unit(268, "lb"),
  37769. name: "Front (Caribousune)",
  37770. image: {
  37771. source: "./media/characters/lisa/front-caribousune.svg",
  37772. extra: 1818/1638,
  37773. bottom: 52/1870
  37774. }
  37775. },
  37776. sideCaribousune: {
  37777. height: math.unit(7 + 2/12, "feet"),
  37778. weight: math.unit(268, "lb"),
  37779. name: "Side (Caribousune)",
  37780. image: {
  37781. source: "./media/characters/lisa/side-caribousune.svg",
  37782. extra: 1851/1635,
  37783. bottom: 16/1867
  37784. }
  37785. },
  37786. backCaribousune: {
  37787. height: math.unit(7 + 2/12, "feet"),
  37788. weight: math.unit(268, "lb"),
  37789. name: "Back (Caribousune)",
  37790. image: {
  37791. source: "./media/characters/lisa/back-caribousune.svg",
  37792. extra: 1801/1604,
  37793. bottom: 44/1845
  37794. }
  37795. },
  37796. caribou: {
  37797. height: math.unit(7 + 2/12, "feet"),
  37798. weight: math.unit(268, "lb"),
  37799. name: "Caribou",
  37800. image: {
  37801. source: "./media/characters/lisa/caribou.svg",
  37802. extra: 1843/1633,
  37803. bottom: 29/1872
  37804. }
  37805. },
  37806. frontCaribou: {
  37807. height: math.unit(7 + 2/12, "feet"),
  37808. weight: math.unit(268, "lb"),
  37809. name: "Front (Caribou)",
  37810. image: {
  37811. source: "./media/characters/lisa/front-caribou.svg",
  37812. extra: 1818/1638,
  37813. bottom: 52/1870
  37814. }
  37815. },
  37816. sideCaribou: {
  37817. height: math.unit(7 + 2/12, "feet"),
  37818. weight: math.unit(268, "lb"),
  37819. name: "Side (Caribou)",
  37820. image: {
  37821. source: "./media/characters/lisa/side-caribou.svg",
  37822. extra: 1851/1635,
  37823. bottom: 16/1867
  37824. }
  37825. },
  37826. backCaribou: {
  37827. height: math.unit(7 + 2/12, "feet"),
  37828. weight: math.unit(268, "lb"),
  37829. name: "Back (Caribou)",
  37830. image: {
  37831. source: "./media/characters/lisa/back-caribou.svg",
  37832. extra: 1801/1604,
  37833. bottom: 44/1845
  37834. }
  37835. },
  37836. mawCaribou: {
  37837. height: math.unit(1.45, "feet"),
  37838. name: "Maw (Caribou)",
  37839. image: {
  37840. source: "./media/characters/lisa/maw-caribou.svg"
  37841. }
  37842. },
  37843. mawCaribousune: {
  37844. height: math.unit(1.45, "feet"),
  37845. name: "Maw (Caribousune)",
  37846. image: {
  37847. source: "./media/characters/lisa/maw-caribousune.svg"
  37848. }
  37849. },
  37850. pawCaribousune: {
  37851. height: math.unit(1.61, "feet"),
  37852. name: "Paw (Caribou)",
  37853. image: {
  37854. source: "./media/characters/lisa/paw-caribousune.svg"
  37855. }
  37856. },
  37857. },
  37858. [
  37859. {
  37860. name: "Normal",
  37861. height: math.unit(6, "feet")
  37862. },
  37863. {
  37864. name: "God Size",
  37865. height: math.unit(72, "feet"),
  37866. default: true
  37867. },
  37868. {
  37869. name: "Towering",
  37870. height: math.unit(288, "feet")
  37871. },
  37872. {
  37873. name: "City Size",
  37874. height: math.unit(48384, "feet")
  37875. },
  37876. {
  37877. name: "Continental",
  37878. height: math.unit(4200, "miles")
  37879. },
  37880. {
  37881. name: "Planet Eater",
  37882. height: math.unit(42, "earths")
  37883. },
  37884. {
  37885. name: "Star Swallower",
  37886. height: math.unit(42, "solarradii")
  37887. },
  37888. {
  37889. name: "System Swallower",
  37890. height: math.unit(84000, "AU")
  37891. },
  37892. {
  37893. name: "Galaxy Gobbler",
  37894. height: math.unit(42, "galaxies")
  37895. },
  37896. {
  37897. name: "Universe Devourer",
  37898. height: math.unit(42, "universes")
  37899. },
  37900. {
  37901. name: "Multiverse Muncher",
  37902. height: math.unit(42, "multiverses")
  37903. },
  37904. ]
  37905. ))
  37906. characterMakers.push(() => makeCharacter(
  37907. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37908. {
  37909. front: {
  37910. height: math.unit(36, "feet"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/shadow-rat/front.svg",
  37914. extra: 1845/1758,
  37915. bottom: 83/1928
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Macro",
  37922. height: math.unit(36, "feet"),
  37923. default: true
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37929. {
  37930. side: {
  37931. height: math.unit(8, "feet"),
  37932. weight: math.unit(2630, "lb"),
  37933. name: "Side",
  37934. image: {
  37935. source: "./media/characters/torallia/side.svg",
  37936. extra: 2164/2021,
  37937. bottom: 371/2535
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Mortal Interaction",
  37944. height: math.unit(8, "feet")
  37945. },
  37946. {
  37947. name: "Natural",
  37948. height: math.unit(24, "feet"),
  37949. default: true
  37950. },
  37951. {
  37952. name: "Giant",
  37953. height: math.unit(80, "feet")
  37954. },
  37955. {
  37956. name: "Kaiju",
  37957. height: math.unit(240, "feet")
  37958. },
  37959. {
  37960. name: "Macro",
  37961. height: math.unit(800, "feet")
  37962. },
  37963. {
  37964. name: "Macro+",
  37965. height: math.unit(2400, "feet")
  37966. },
  37967. {
  37968. name: "Macro++",
  37969. height: math.unit(8000, "feet")
  37970. },
  37971. {
  37972. name: "City-Crushing",
  37973. height: math.unit(24000, "feet")
  37974. },
  37975. {
  37976. name: "Mountain-Mashing",
  37977. height: math.unit(80000, "feet")
  37978. },
  37979. {
  37980. name: "District Demolisher",
  37981. height: math.unit(240000, "feet")
  37982. },
  37983. {
  37984. name: "Tri-County Terror",
  37985. height: math.unit(800000, "feet")
  37986. },
  37987. {
  37988. name: "State Smasher",
  37989. height: math.unit(2.4e6, "feet")
  37990. },
  37991. {
  37992. name: "Nation Nemesis",
  37993. height: math.unit(8e6, "feet")
  37994. },
  37995. {
  37996. name: "Continent Cracker",
  37997. height: math.unit(2.4e7, "feet")
  37998. },
  37999. {
  38000. name: "Planet-Pillaging",
  38001. height: math.unit(8e7, "feet")
  38002. },
  38003. {
  38004. name: "Earth-Eclipsing",
  38005. height: math.unit(2.4e8, "feet")
  38006. },
  38007. {
  38008. name: "Jovian-Jostling",
  38009. height: math.unit(8e8, "feet")
  38010. },
  38011. {
  38012. name: "Gas Giant Gulper",
  38013. height: math.unit(2.4e9, "feet")
  38014. },
  38015. {
  38016. name: "Astral Annihilator",
  38017. height: math.unit(8e9, "feet")
  38018. },
  38019. {
  38020. name: "Celestial Conqueror",
  38021. height: math.unit(2.4e10, "feet")
  38022. },
  38023. {
  38024. name: "Sol-Swallowing",
  38025. height: math.unit(8e10, "feet")
  38026. },
  38027. {
  38028. name: "Hunter of the Heavens",
  38029. height: math.unit(2.4e13, "feet")
  38030. },
  38031. ]
  38032. ))
  38033. characterMakers.push(() => makeCharacter(
  38034. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38035. {
  38036. front: {
  38037. height: math.unit(6 + 8/12, "feet"),
  38038. name: "Front",
  38039. image: {
  38040. source: "./media/characters/rebecca-pawlson/front.svg",
  38041. extra: 1737/1596,
  38042. bottom: 107/1844
  38043. }
  38044. },
  38045. back: {
  38046. height: math.unit(6 + 8/12, "feet"),
  38047. name: "Back",
  38048. image: {
  38049. source: "./media/characters/rebecca-pawlson/back.svg",
  38050. extra: 1702/1523,
  38051. bottom: 86/1788
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Normal",
  38058. height: math.unit(6 + 8/12, "feet")
  38059. },
  38060. {
  38061. name: "Mini Macro",
  38062. height: math.unit(10, "feet"),
  38063. default: true
  38064. },
  38065. {
  38066. name: "Macro",
  38067. height: math.unit(100, "feet")
  38068. },
  38069. {
  38070. name: "Mega Macro",
  38071. height: math.unit(2500, "feet")
  38072. },
  38073. {
  38074. name: "Giga Macro",
  38075. height: math.unit(50, "miles")
  38076. },
  38077. ]
  38078. ))
  38079. characterMakers.push(() => makeCharacter(
  38080. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38081. {
  38082. front: {
  38083. height: math.unit(7 + 6/12, "feet"),
  38084. weight: math.unit(600, "lb"),
  38085. name: "Front",
  38086. image: {
  38087. source: "./media/characters/moxie-nova/front.svg",
  38088. extra: 1734/1652,
  38089. bottom: 41/1775
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(7 + 6/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38103. {
  38104. goat: {
  38105. height: math.unit(4, "feet"),
  38106. weight: math.unit(180, "lb"),
  38107. name: "Goat",
  38108. image: {
  38109. source: "./media/characters/tiffany/goat.svg",
  38110. extra: 1845/1595,
  38111. bottom: 106/1951
  38112. }
  38113. },
  38114. front: {
  38115. height: math.unit(5, "feet"),
  38116. weight: math.unit(150, "lb"),
  38117. name: "Foxcoon",
  38118. image: {
  38119. source: "./media/characters/tiffany/foxcoon.svg",
  38120. extra: 1941/1845,
  38121. bottom: 58/1999
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Normal",
  38128. height: math.unit(5, "feet"),
  38129. default: true
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(8, "feet"),
  38138. weight: math.unit(300, "lb"),
  38139. name: "Front",
  38140. image: {
  38141. source: "./media/characters/raxinath/front.svg",
  38142. extra: 1407/1309,
  38143. bottom: 39/1446
  38144. }
  38145. },
  38146. back: {
  38147. height: math.unit(8, "feet"),
  38148. weight: math.unit(300, "lb"),
  38149. name: "Back",
  38150. image: {
  38151. source: "./media/characters/raxinath/back.svg",
  38152. extra: 1405/1315,
  38153. bottom: 9/1414
  38154. }
  38155. },
  38156. },
  38157. [
  38158. {
  38159. name: "Speck",
  38160. height: math.unit(0.5, "nm")
  38161. },
  38162. {
  38163. name: "Micro",
  38164. height: math.unit(3, "inches")
  38165. },
  38166. {
  38167. name: "Kobold",
  38168. height: math.unit(3, "feet")
  38169. },
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(8, "feet"),
  38173. default: true
  38174. },
  38175. {
  38176. name: "Giant",
  38177. height: math.unit(50, "feet")
  38178. },
  38179. {
  38180. name: "Macro",
  38181. height: math.unit(1000, "feet")
  38182. },
  38183. {
  38184. name: "Megamacro",
  38185. height: math.unit(1, "mile")
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38191. {
  38192. front: {
  38193. height: math.unit(10, "feet"),
  38194. weight: math.unit(1442, "lb"),
  38195. name: "Front",
  38196. image: {
  38197. source: "./media/characters/mal-dragon/front.svg",
  38198. extra: 1515/1444,
  38199. bottom: 113/1628
  38200. }
  38201. },
  38202. back: {
  38203. height: math.unit(10, "feet"),
  38204. weight: math.unit(1442, "lb"),
  38205. name: "Back",
  38206. image: {
  38207. source: "./media/characters/mal-dragon/back.svg",
  38208. extra: 1527/1434,
  38209. bottom: 25/1552
  38210. }
  38211. },
  38212. },
  38213. [
  38214. {
  38215. name: "Mortal Interaction",
  38216. height: math.unit(10, "feet"),
  38217. default: true
  38218. },
  38219. {
  38220. name: "Large",
  38221. height: math.unit(30, "feet")
  38222. },
  38223. {
  38224. name: "Kaiju",
  38225. height: math.unit(300, "feet")
  38226. },
  38227. {
  38228. name: "Megamacro",
  38229. height: math.unit(10000, "feet")
  38230. },
  38231. {
  38232. name: "Continent Cracker",
  38233. height: math.unit(30000000, "feet")
  38234. },
  38235. {
  38236. name: "Sol-Swallowing",
  38237. height: math.unit(1e11, "feet")
  38238. },
  38239. {
  38240. name: "Light Universal",
  38241. height: math.unit(5, "universes")
  38242. },
  38243. {
  38244. name: "Universe Atoms",
  38245. height: math.unit(1.829e9, "universes")
  38246. },
  38247. {
  38248. name: "Light Multiversal",
  38249. height: math.unit(5, "multiverses")
  38250. },
  38251. {
  38252. name: "Multiverse Atoms",
  38253. height: math.unit(1.829e9, "multiverses")
  38254. },
  38255. {
  38256. name: "Fabric of Time",
  38257. height: math.unit(1e262, "multiverses")
  38258. },
  38259. ]
  38260. ))
  38261. characterMakers.push(() => makeCharacter(
  38262. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38263. {
  38264. front: {
  38265. height: math.unit(9, "feet"),
  38266. weight: math.unit(1050, "lb"),
  38267. name: "Front",
  38268. image: {
  38269. source: "./media/characters/tabitha/front.svg",
  38270. extra: 2083/1994,
  38271. bottom: 68/2151
  38272. }
  38273. },
  38274. },
  38275. [
  38276. {
  38277. name: "Baseline",
  38278. height: math.unit(9, "feet"),
  38279. default: true
  38280. },
  38281. {
  38282. name: "Giant",
  38283. height: math.unit(90, "feet")
  38284. },
  38285. {
  38286. name: "Macro",
  38287. height: math.unit(900, "feet")
  38288. },
  38289. {
  38290. name: "Megamacro",
  38291. height: math.unit(9000, "feet")
  38292. },
  38293. {
  38294. name: "City-Crushing",
  38295. height: math.unit(27000, "feet")
  38296. },
  38297. {
  38298. name: "Mountain-Mashing",
  38299. height: math.unit(90000, "feet")
  38300. },
  38301. {
  38302. name: "Nation Nemesis",
  38303. height: math.unit(9e6, "feet")
  38304. },
  38305. {
  38306. name: "Continent Cracker",
  38307. height: math.unit(27e6, "feet")
  38308. },
  38309. {
  38310. name: "Earth-Eclipsing",
  38311. height: math.unit(2.7e8, "feet")
  38312. },
  38313. {
  38314. name: "Gas Giant Gulper",
  38315. height: math.unit(2.7e9, "feet")
  38316. },
  38317. {
  38318. name: "Sol-Swallowing",
  38319. height: math.unit(9e10, "feet")
  38320. },
  38321. {
  38322. name: "Galaxy Gulper",
  38323. height: math.unit(9, "galaxies")
  38324. },
  38325. {
  38326. name: "Cosmos Churner",
  38327. height: math.unit(9, "universes")
  38328. },
  38329. ]
  38330. ))
  38331. characterMakers.push(() => makeCharacter(
  38332. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38333. {
  38334. front: {
  38335. height: math.unit(160, "cm"),
  38336. weight: math.unit(55, "kg"),
  38337. name: "Front",
  38338. image: {
  38339. source: "./media/characters/tow/front.svg",
  38340. extra: 1751/1722,
  38341. bottom: 74/1825
  38342. }
  38343. },
  38344. },
  38345. [
  38346. {
  38347. name: "Norm",
  38348. height: math.unit(160, "cm")
  38349. },
  38350. {
  38351. name: "Casual",
  38352. height: math.unit(3200, "m"),
  38353. default: true
  38354. },
  38355. {
  38356. name: "Show-Off",
  38357. height: math.unit(160, "km")
  38358. },
  38359. ]
  38360. ))
  38361. characterMakers.push(() => makeCharacter(
  38362. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38363. {
  38364. front: {
  38365. height: math.unit(7 + 11/12, "feet"),
  38366. weight: math.unit(342.8, "lb"),
  38367. name: "Front",
  38368. image: {
  38369. source: "./media/characters/vivian-orca-dragon/front.svg",
  38370. extra: 1890/1865,
  38371. bottom: 28/1918
  38372. }
  38373. },
  38374. },
  38375. [
  38376. {
  38377. name: "Micro",
  38378. height: math.unit(5, "inches")
  38379. },
  38380. {
  38381. name: "Normal",
  38382. height: math.unit(7 + 11/12, "feet"),
  38383. default: true
  38384. },
  38385. {
  38386. name: "Macro",
  38387. height: math.unit(395 + 7/12, "feet")
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38393. {
  38394. side: {
  38395. height: math.unit(10, "feet"),
  38396. weight: math.unit(1442, "lb"),
  38397. name: "Side",
  38398. image: {
  38399. source: "./media/characters/lotherakon/side.svg",
  38400. extra: 1604/1497,
  38401. bottom: 89/1693
  38402. }
  38403. },
  38404. },
  38405. [
  38406. {
  38407. name: "Mortal Interaction",
  38408. height: math.unit(10, "feet")
  38409. },
  38410. {
  38411. name: "Large",
  38412. height: math.unit(30, "feet"),
  38413. default: true
  38414. },
  38415. {
  38416. name: "Giant",
  38417. height: math.unit(100, "feet")
  38418. },
  38419. {
  38420. name: "Kaiju",
  38421. height: math.unit(300, "feet")
  38422. },
  38423. {
  38424. name: "Macro",
  38425. height: math.unit(1000, "feet")
  38426. },
  38427. {
  38428. name: "Macro+",
  38429. height: math.unit(3000, "feet")
  38430. },
  38431. {
  38432. name: "Megamacro",
  38433. height: math.unit(10000, "feet")
  38434. },
  38435. {
  38436. name: "City-Crushing",
  38437. height: math.unit(30000, "feet")
  38438. },
  38439. {
  38440. name: "Continent Cracker",
  38441. height: math.unit(30e6, "feet")
  38442. },
  38443. {
  38444. name: "Earth Eclipsing",
  38445. height: math.unit(3e8, "feet")
  38446. },
  38447. {
  38448. name: "Gas Giant Gulper",
  38449. height: math.unit(3e9, "feet")
  38450. },
  38451. {
  38452. name: "Sol-Swallowing",
  38453. height: math.unit(1e11, "feet")
  38454. },
  38455. {
  38456. name: "System Swallower",
  38457. height: math.unit(3e14, "feet")
  38458. },
  38459. {
  38460. name: "Galaxy Gulper",
  38461. height: math.unit(10, "galaxies")
  38462. },
  38463. {
  38464. name: "Light Universal",
  38465. height: math.unit(5, "universes")
  38466. },
  38467. {
  38468. name: "Universe Palm",
  38469. height: math.unit(20, "universes")
  38470. },
  38471. {
  38472. name: "Light Multiversal",
  38473. height: math.unit(5, "multiverses")
  38474. },
  38475. {
  38476. name: "Multiverse Palm",
  38477. height: math.unit(20, "multiverses")
  38478. },
  38479. {
  38480. name: "Inferno Incarnate",
  38481. height: math.unit(1e7, "multiverses")
  38482. },
  38483. ]
  38484. ))
  38485. characterMakers.push(() => makeCharacter(
  38486. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38487. {
  38488. front: {
  38489. height: math.unit(8, "feet"),
  38490. weight: math.unit(1200, "lb"),
  38491. name: "Front",
  38492. image: {
  38493. source: "./media/characters/malithee/front.svg",
  38494. extra: 1675/1640,
  38495. bottom: 162/1837
  38496. }
  38497. },
  38498. },
  38499. [
  38500. {
  38501. name: "Mortal Interaction",
  38502. height: math.unit(8, "feet"),
  38503. default: true
  38504. },
  38505. {
  38506. name: "Large",
  38507. height: math.unit(24, "feet")
  38508. },
  38509. {
  38510. name: "Kaiju",
  38511. height: math.unit(240, "feet")
  38512. },
  38513. {
  38514. name: "Megamacro",
  38515. height: math.unit(8000, "feet")
  38516. },
  38517. {
  38518. name: "Continent Cracker",
  38519. height: math.unit(24e6, "feet")
  38520. },
  38521. {
  38522. name: "Earth-Eclipsing",
  38523. height: math.unit(2.4e8, "feet")
  38524. },
  38525. {
  38526. name: "Sol-Swallowing",
  38527. height: math.unit(8e10, "feet")
  38528. },
  38529. {
  38530. name: "Galaxy Gulper",
  38531. height: math.unit(8, "galaxies")
  38532. },
  38533. {
  38534. name: "Light Universal",
  38535. height: math.unit(4, "universes")
  38536. },
  38537. {
  38538. name: "Universe Atoms",
  38539. height: math.unit(1.829e9, "universes")
  38540. },
  38541. {
  38542. name: "Light Multiversal",
  38543. height: math.unit(4, "multiverses")
  38544. },
  38545. {
  38546. name: "Multiverse Atoms",
  38547. height: math.unit(1.829e9, "multiverses")
  38548. },
  38549. {
  38550. name: "Nigh-Omnipresence",
  38551. height: math.unit(8e261, "multiverses")
  38552. },
  38553. ]
  38554. ))
  38555. characterMakers.push(() => makeCharacter(
  38556. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38557. {
  38558. front: {
  38559. height: math.unit(10, "feet"),
  38560. weight: math.unit(1500, "lb"),
  38561. name: "Front",
  38562. image: {
  38563. source: "./media/characters/miles-thestia/front.svg",
  38564. extra: 1812/1727,
  38565. bottom: 86/1898
  38566. }
  38567. },
  38568. back: {
  38569. height: math.unit(10, "feet"),
  38570. weight: math.unit(1500, "lb"),
  38571. name: "Back",
  38572. image: {
  38573. source: "./media/characters/miles-thestia/back.svg",
  38574. extra: 1799/1690,
  38575. bottom: 47/1846
  38576. }
  38577. },
  38578. frontNsfw: {
  38579. height: math.unit(10, "feet"),
  38580. weight: math.unit(1500, "lb"),
  38581. name: "Front (NSFW)",
  38582. image: {
  38583. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38584. extra: 1812/1727,
  38585. bottom: 86/1898
  38586. }
  38587. },
  38588. },
  38589. [
  38590. {
  38591. name: "Mini-Macro",
  38592. height: math.unit(10, "feet"),
  38593. default: true
  38594. },
  38595. ]
  38596. ))
  38597. characterMakers.push(() => makeCharacter(
  38598. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38599. {
  38600. front: {
  38601. height: math.unit(25, "feet"),
  38602. name: "Front",
  38603. image: {
  38604. source: "./media/characters/titan-s-wulf/front.svg",
  38605. extra: 1560/1484,
  38606. bottom: 76/1636
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Smallest",
  38613. height: math.unit(25, "feet"),
  38614. default: true
  38615. },
  38616. {
  38617. name: "Normal",
  38618. height: math.unit(200, "feet")
  38619. },
  38620. {
  38621. name: "Macro",
  38622. height: math.unit(200000, "feet")
  38623. },
  38624. {
  38625. name: "Multiversal Original",
  38626. height: math.unit(10000, "multiverses")
  38627. },
  38628. ]
  38629. ))
  38630. characterMakers.push(() => makeCharacter(
  38631. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38632. {
  38633. front: {
  38634. height: math.unit(8, "feet"),
  38635. weight: math.unit(553, "lb"),
  38636. name: "Front",
  38637. image: {
  38638. source: "./media/characters/tawendeh/front.svg",
  38639. extra: 2365/2268,
  38640. bottom: 83/2448
  38641. }
  38642. },
  38643. frontClothed: {
  38644. height: math.unit(8, "feet"),
  38645. weight: math.unit(553, "lb"),
  38646. name: "Front (Clothed)",
  38647. image: {
  38648. source: "./media/characters/tawendeh/front-clothed.svg",
  38649. extra: 2365/2268,
  38650. bottom: 83/2448
  38651. }
  38652. },
  38653. back: {
  38654. height: math.unit(8, "feet"),
  38655. weight: math.unit(553, "lb"),
  38656. name: "Back",
  38657. image: {
  38658. source: "./media/characters/tawendeh/back.svg",
  38659. extra: 2397/2294,
  38660. bottom: 42/2439
  38661. }
  38662. },
  38663. },
  38664. [
  38665. {
  38666. name: "Mortal Interaction",
  38667. height: math.unit(8, "feet"),
  38668. default: true
  38669. },
  38670. {
  38671. name: "Giant",
  38672. height: math.unit(80, "feet")
  38673. },
  38674. {
  38675. name: "Macro",
  38676. height: math.unit(800, "feet")
  38677. },
  38678. {
  38679. name: "Megamacro",
  38680. height: math.unit(8000, "feet")
  38681. },
  38682. {
  38683. name: "City-Crushing",
  38684. height: math.unit(24000, "feet")
  38685. },
  38686. {
  38687. name: "Mountain-Mashing",
  38688. height: math.unit(80000, "feet")
  38689. },
  38690. {
  38691. name: "Nation Nemesis",
  38692. height: math.unit(8e6, "feet")
  38693. },
  38694. {
  38695. name: "Continent Cracker",
  38696. height: math.unit(24e6, "feet")
  38697. },
  38698. {
  38699. name: "Earth-Eclipsing",
  38700. height: math.unit(2.4e8, "feet")
  38701. },
  38702. {
  38703. name: "Gas Giant Gulper",
  38704. height: math.unit(2.4e9, "feet")
  38705. },
  38706. {
  38707. name: "Sol-Swallowing",
  38708. height: math.unit(8e10, "feet")
  38709. },
  38710. {
  38711. name: "Galaxy Gulper",
  38712. height: math.unit(8, "galaxies")
  38713. },
  38714. {
  38715. name: "Cosmos Churner",
  38716. height: math.unit(8, "universes")
  38717. },
  38718. {
  38719. name: "Omnipotent Otter",
  38720. height: math.unit(80, "universes")
  38721. },
  38722. ]
  38723. ))
  38724. characterMakers.push(() => makeCharacter(
  38725. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38726. {
  38727. front: {
  38728. height: math.unit(2.6, "meters"),
  38729. weight: math.unit(900, "kg"),
  38730. name: "Front",
  38731. image: {
  38732. source: "./media/characters/neesha/front.svg",
  38733. extra: 1803/1653,
  38734. bottom: 128/1931
  38735. }
  38736. },
  38737. },
  38738. [
  38739. {
  38740. name: "Normal",
  38741. height: math.unit(2.6, "meters"),
  38742. default: true
  38743. },
  38744. {
  38745. name: "Macro",
  38746. height: math.unit(50, "meters")
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38752. {
  38753. front: {
  38754. height: math.unit(5, "feet"),
  38755. weight: math.unit(185, "lb"),
  38756. name: "Front",
  38757. image: {
  38758. source: "./media/characters/kyera/front.svg",
  38759. extra: 1875/1790,
  38760. bottom: 96/1971
  38761. }
  38762. },
  38763. },
  38764. [
  38765. {
  38766. name: "Normal",
  38767. height: math.unit(5, "feet"),
  38768. default: true
  38769. },
  38770. ]
  38771. ))
  38772. characterMakers.push(() => makeCharacter(
  38773. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38774. {
  38775. front: {
  38776. height: math.unit(7 + 6/12, "feet"),
  38777. weight: math.unit(540, "lb"),
  38778. name: "Front",
  38779. image: {
  38780. source: "./media/characters/yuko/front.svg",
  38781. extra: 1282/1222,
  38782. bottom: 101/1383
  38783. }
  38784. },
  38785. frontClothed: {
  38786. height: math.unit(7 + 6/12, "feet"),
  38787. weight: math.unit(540, "lb"),
  38788. name: "Front (Clothed)",
  38789. image: {
  38790. source: "./media/characters/yuko/front-clothed.svg",
  38791. extra: 1282/1222,
  38792. bottom: 101/1383
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Normal",
  38799. height: math.unit(7 + 6/12, "feet"),
  38800. default: true
  38801. },
  38802. {
  38803. name: "Macro",
  38804. height: math.unit(26 + 9/12, "feet")
  38805. },
  38806. {
  38807. name: "Megamacro",
  38808. height: math.unit(300, "feet")
  38809. },
  38810. {
  38811. name: "Gigamacro",
  38812. height: math.unit(5000, "feet")
  38813. },
  38814. {
  38815. name: "Planetary",
  38816. height: math.unit(10000, "miles")
  38817. },
  38818. ]
  38819. ))
  38820. characterMakers.push(() => makeCharacter(
  38821. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38822. {
  38823. front: {
  38824. height: math.unit(8 + 2/12, "feet"),
  38825. weight: math.unit(600, "lb"),
  38826. name: "Front",
  38827. image: {
  38828. source: "./media/characters/deam-nitrel/front.svg",
  38829. extra: 1308/1234,
  38830. bottom: 125/1433
  38831. }
  38832. },
  38833. },
  38834. [
  38835. {
  38836. name: "Normal",
  38837. height: math.unit(8 + 2/12, "feet"),
  38838. default: true
  38839. },
  38840. ]
  38841. ))
  38842. characterMakers.push(() => makeCharacter(
  38843. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38844. {
  38845. front: {
  38846. height: math.unit(6.1, "feet"),
  38847. weight: math.unit(180, "lb"),
  38848. name: "Front",
  38849. image: {
  38850. source: "./media/characters/skyress/front.svg",
  38851. extra: 1045/915,
  38852. bottom: 28/1073
  38853. }
  38854. },
  38855. maw: {
  38856. height: math.unit(1, "feet"),
  38857. name: "Maw",
  38858. image: {
  38859. source: "./media/characters/skyress/maw.svg"
  38860. }
  38861. },
  38862. },
  38863. [
  38864. {
  38865. name: "Normal",
  38866. height: math.unit(6.1, "feet"),
  38867. default: true
  38868. },
  38869. {
  38870. name: "Macro",
  38871. height: math.unit(200, "feet")
  38872. },
  38873. ]
  38874. ))
  38875. characterMakers.push(() => makeCharacter(
  38876. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38877. {
  38878. front: {
  38879. height: math.unit(4 + 2/12, "feet"),
  38880. weight: math.unit(40, "kg"),
  38881. name: "Front",
  38882. image: {
  38883. source: "./media/characters/amethyst-jones/front.svg",
  38884. extra: 1220/1150,
  38885. bottom: 101/1321
  38886. }
  38887. },
  38888. },
  38889. [
  38890. {
  38891. name: "Normal",
  38892. height: math.unit(4 + 2/12, "feet"),
  38893. default: true
  38894. },
  38895. ]
  38896. ))
  38897. characterMakers.push(() => makeCharacter(
  38898. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38899. {
  38900. front: {
  38901. height: math.unit(1.7, "m"),
  38902. weight: math.unit(135, "lb"),
  38903. name: "Front",
  38904. image: {
  38905. source: "./media/characters/jade/front.svg",
  38906. extra: 1818/1767,
  38907. bottom: 32/1850
  38908. }
  38909. },
  38910. back: {
  38911. height: math.unit(1.7, "m"),
  38912. weight: math.unit(135, "lb"),
  38913. name: "Back",
  38914. image: {
  38915. source: "./media/characters/jade/back.svg",
  38916. extra: 1869/1809,
  38917. bottom: 35/1904
  38918. }
  38919. },
  38920. hand: {
  38921. height: math.unit(0.24, "m"),
  38922. name: "Hand",
  38923. image: {
  38924. source: "./media/characters/jade/hand.svg"
  38925. }
  38926. },
  38927. foot: {
  38928. height: math.unit(0.263, "m"),
  38929. name: "Foot",
  38930. image: {
  38931. source: "./media/characters/jade/foot.svg"
  38932. }
  38933. },
  38934. dick: {
  38935. height: math.unit(0.47, "m"),
  38936. name: "Dick",
  38937. image: {
  38938. source: "./media/characters/jade/dick.svg"
  38939. }
  38940. },
  38941. },
  38942. [
  38943. {
  38944. name: "Micro",
  38945. height: math.unit(22, "cm")
  38946. },
  38947. {
  38948. name: "Normal",
  38949. height: math.unit(1.7, "m"),
  38950. default: true
  38951. },
  38952. {
  38953. name: "Macro",
  38954. height: math.unit(152, "m")
  38955. },
  38956. ]
  38957. ))
  38958. characterMakers.push(() => makeCharacter(
  38959. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38960. {
  38961. front: {
  38962. height: math.unit(100, "miles"),
  38963. weight: math.unit(20000, "tons"),
  38964. name: "Front",
  38965. image: {
  38966. source: "./media/characters/cookie/front.svg",
  38967. extra: 1125/1070,
  38968. bottom: 30/1155
  38969. }
  38970. },
  38971. },
  38972. [
  38973. {
  38974. name: "Big",
  38975. height: math.unit(50, "feet")
  38976. },
  38977. {
  38978. name: "Macro",
  38979. height: math.unit(100, "miles"),
  38980. default: true
  38981. },
  38982. {
  38983. name: "Megamacro",
  38984. height: math.unit(90000, "miles")
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(6, "feet"),
  38993. weight: math.unit(145, "lb"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/farzian/front.svg",
  38997. extra: 1902/1693,
  38998. bottom: 108/2010
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Macro",
  39005. height: math.unit(500, "feet"),
  39006. default: true
  39007. },
  39008. ]
  39009. ))
  39010. characterMakers.push(() => makeCharacter(
  39011. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39012. {
  39013. front: {
  39014. height: math.unit(3 + 6/12, "feet"),
  39015. weight: math.unit(50, "lb"),
  39016. name: "Front",
  39017. image: {
  39018. source: "./media/characters/kimberly-tilson/front.svg",
  39019. extra: 1400/1322,
  39020. bottom: 36/1436
  39021. }
  39022. },
  39023. back: {
  39024. height: math.unit(3 + 6/12, "feet"),
  39025. weight: math.unit(50, "lb"),
  39026. name: "Back",
  39027. image: {
  39028. source: "./media/characters/kimberly-tilson/back.svg",
  39029. extra: 1370/1307,
  39030. bottom: 20/1390
  39031. }
  39032. },
  39033. },
  39034. [
  39035. {
  39036. name: "Normal",
  39037. height: math.unit(3 + 6/12, "feet"),
  39038. default: true
  39039. },
  39040. ]
  39041. ))
  39042. characterMakers.push(() => makeCharacter(
  39043. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39044. {
  39045. front: {
  39046. height: math.unit(1148, "feet"),
  39047. weight: math.unit(34057, "lb"),
  39048. name: "Front",
  39049. image: {
  39050. source: "./media/characters/harthos/front.svg",
  39051. extra: 1391/1339,
  39052. bottom: 13/1404
  39053. }
  39054. },
  39055. },
  39056. [
  39057. {
  39058. name: "Macro",
  39059. height: math.unit(1148, "feet"),
  39060. default: true
  39061. },
  39062. ]
  39063. ))
  39064. characterMakers.push(() => makeCharacter(
  39065. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39066. {
  39067. front: {
  39068. height: math.unit(15, "feet"),
  39069. name: "Front",
  39070. image: {
  39071. source: "./media/characters/hypatia/front.svg",
  39072. extra: 1653/1591,
  39073. bottom: 79/1732
  39074. }
  39075. },
  39076. },
  39077. [
  39078. {
  39079. name: "Normal",
  39080. height: math.unit(15, "feet")
  39081. },
  39082. {
  39083. name: "Small",
  39084. height: math.unit(300, "feet")
  39085. },
  39086. {
  39087. name: "Macro",
  39088. height: math.unit(2500, "feet"),
  39089. default: true
  39090. },
  39091. {
  39092. name: "Mega Macro",
  39093. height: math.unit(1500, "miles")
  39094. },
  39095. {
  39096. name: "Giga Macro",
  39097. height: math.unit(1.5e6, "miles")
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(6, "feet"),
  39106. weight: math.unit(200, "lb"),
  39107. name: "Front",
  39108. image: {
  39109. source: "./media/characters/wulver/front.svg",
  39110. extra: 1724/1632,
  39111. bottom: 130/1854
  39112. }
  39113. },
  39114. frontNsfw: {
  39115. height: math.unit(6, "feet"),
  39116. weight: math.unit(200, "lb"),
  39117. name: "Front (NSFW)",
  39118. image: {
  39119. source: "./media/characters/wulver/front-nsfw.svg",
  39120. extra: 1724/1632,
  39121. bottom: 130/1854
  39122. }
  39123. },
  39124. },
  39125. [
  39126. {
  39127. name: "Human-Sized",
  39128. height: math.unit(6, "feet")
  39129. },
  39130. {
  39131. name: "Normal",
  39132. height: math.unit(4, "meters"),
  39133. default: true
  39134. },
  39135. {
  39136. name: "Large",
  39137. height: math.unit(6, "m")
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(7, "feet"),
  39146. name: "Front",
  39147. image: {
  39148. source: "./media/characters/maru/front.svg",
  39149. extra: 1595/1570,
  39150. bottom: 0/1595
  39151. }
  39152. },
  39153. },
  39154. [
  39155. {
  39156. name: "Normal",
  39157. height: math.unit(7, "feet"),
  39158. default: true
  39159. },
  39160. {
  39161. name: "Macro",
  39162. height: math.unit(700, "feet")
  39163. },
  39164. {
  39165. name: "Mega Macro",
  39166. height: math.unit(25, "miles")
  39167. },
  39168. ]
  39169. ))
  39170. characterMakers.push(() => makeCharacter(
  39171. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39172. {
  39173. front: {
  39174. height: math.unit(6, "feet"),
  39175. weight: math.unit(170, "lb"),
  39176. name: "Front",
  39177. image: {
  39178. source: "./media/characters/xenon/front.svg",
  39179. extra: 1376/1305,
  39180. bottom: 56/1432
  39181. }
  39182. },
  39183. back: {
  39184. height: math.unit(6, "feet"),
  39185. weight: math.unit(170, "lb"),
  39186. name: "Back",
  39187. image: {
  39188. source: "./media/characters/xenon/back.svg",
  39189. extra: 1328/1259,
  39190. bottom: 95/1423
  39191. }
  39192. },
  39193. maw: {
  39194. height: math.unit(0.52, "feet"),
  39195. name: "Maw",
  39196. image: {
  39197. source: "./media/characters/xenon/maw.svg"
  39198. }
  39199. },
  39200. hand: {
  39201. height: math.unit(0.82, "feet"),
  39202. name: "Hand",
  39203. image: {
  39204. source: "./media/characters/xenon/hand.svg"
  39205. }
  39206. },
  39207. foot: {
  39208. height: math.unit(1.13, "feet"),
  39209. name: "Foot",
  39210. image: {
  39211. source: "./media/characters/xenon/foot.svg"
  39212. }
  39213. },
  39214. },
  39215. [
  39216. {
  39217. name: "Micro",
  39218. height: math.unit(0.8, "inches")
  39219. },
  39220. {
  39221. name: "Normal",
  39222. height: math.unit(6, "feet")
  39223. },
  39224. {
  39225. name: "Macro",
  39226. height: math.unit(50, "feet"),
  39227. default: true
  39228. },
  39229. {
  39230. name: "Macro+",
  39231. height: math.unit(250, "feet")
  39232. },
  39233. {
  39234. name: "Megamacro",
  39235. height: math.unit(1500, "feet")
  39236. },
  39237. ]
  39238. ))
  39239. characterMakers.push(() => makeCharacter(
  39240. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39241. {
  39242. front: {
  39243. height: math.unit(7 + 5/12, "feet"),
  39244. name: "Front",
  39245. image: {
  39246. source: "./media/characters/zane/front.svg",
  39247. extra: 1260/1203,
  39248. bottom: 94/1354
  39249. }
  39250. },
  39251. back: {
  39252. height: math.unit(5.05, "feet"),
  39253. name: "Back",
  39254. image: {
  39255. source: "./media/characters/zane/back.svg",
  39256. extra: 893/829,
  39257. bottom: 30/923
  39258. }
  39259. },
  39260. werewolf: {
  39261. height: math.unit(11, "feet"),
  39262. name: "Werewolf",
  39263. image: {
  39264. source: "./media/characters/zane/werewolf.svg",
  39265. extra: 1383/1323,
  39266. bottom: 89/1472
  39267. }
  39268. },
  39269. foot: {
  39270. height: math.unit(1.46, "feet"),
  39271. name: "Foot",
  39272. image: {
  39273. source: "./media/characters/zane/foot.svg"
  39274. }
  39275. },
  39276. footFront: {
  39277. height: math.unit(0.784, "feet"),
  39278. name: "Foot (Front)",
  39279. image: {
  39280. source: "./media/characters/zane/foot-front.svg"
  39281. }
  39282. },
  39283. dick: {
  39284. height: math.unit(1.95, "feet"),
  39285. name: "Dick",
  39286. image: {
  39287. source: "./media/characters/zane/dick.svg"
  39288. }
  39289. },
  39290. dickWerewolf: {
  39291. height: math.unit(3.77, "feet"),
  39292. name: "Dick (Werewolf)",
  39293. image: {
  39294. source: "./media/characters/zane/dick.svg"
  39295. }
  39296. },
  39297. },
  39298. [
  39299. {
  39300. name: "Normal",
  39301. height: math.unit(7 + 5/12, "feet"),
  39302. default: true
  39303. },
  39304. ]
  39305. ))
  39306. characterMakers.push(() => makeCharacter(
  39307. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39308. {
  39309. front: {
  39310. height: math.unit(6 + 2/12, "feet"),
  39311. weight: math.unit(284, "lb"),
  39312. name: "Front",
  39313. image: {
  39314. source: "./media/characters/benni-desparque/front.svg",
  39315. extra: 1353/1126,
  39316. bottom: 69/1422
  39317. }
  39318. },
  39319. },
  39320. [
  39321. {
  39322. name: "Civilian",
  39323. height: math.unit(6 + 2/12, "feet")
  39324. },
  39325. {
  39326. name: "Normal",
  39327. height: math.unit(98, "feet"),
  39328. default: true
  39329. },
  39330. {
  39331. name: "Kaiju Fighter",
  39332. height: math.unit(268, "feet")
  39333. },
  39334. ]
  39335. ))
  39336. characterMakers.push(() => makeCharacter(
  39337. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39338. {
  39339. front: {
  39340. height: math.unit(5, "feet"),
  39341. weight: math.unit(105, "lb"),
  39342. name: "Front",
  39343. image: {
  39344. source: "./media/characters/maxine/front.svg",
  39345. extra: 1386/1250,
  39346. bottom: 71/1457
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Normal",
  39353. height: math.unit(5, "feet"),
  39354. default: true
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(11 + 7/12, "feet"),
  39363. weight: math.unit(9576, "lb"),
  39364. name: "Front",
  39365. image: {
  39366. source: "./media/characters/scaly/front.svg",
  39367. extra: 888/867,
  39368. bottom: 36/924
  39369. }
  39370. },
  39371. },
  39372. [
  39373. {
  39374. name: "Normal",
  39375. height: math.unit(11 + 7/12, "feet"),
  39376. default: true
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(9, "inches"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/saelria/front.svg",
  39388. extra: 662/621,
  39389. bottom: 12/674
  39390. }
  39391. },
  39392. },
  39393. [
  39394. {
  39395. name: "Tiny",
  39396. height: math.unit(9, "inches"),
  39397. default: true
  39398. },
  39399. ]
  39400. ))
  39401. characterMakers.push(() => makeCharacter(
  39402. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39403. {
  39404. front: {
  39405. height: math.unit(80, "meters"),
  39406. weight: math.unit(7000, "tonnes"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/tef/front.svg",
  39410. extra: 2036/1991,
  39411. bottom: 54/2090
  39412. }
  39413. },
  39414. back: {
  39415. height: math.unit(80, "meters"),
  39416. weight: math.unit(7000, "tonnes"),
  39417. name: "Back",
  39418. image: {
  39419. source: "./media/characters/tef/back.svg",
  39420. extra: 2036/1991,
  39421. bottom: 54/2090
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "Macro",
  39428. height: math.unit(80, "meters"),
  39429. default: true
  39430. },
  39431. ]
  39432. ))
  39433. characterMakers.push(() => makeCharacter(
  39434. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39435. {
  39436. front: {
  39437. height: math.unit(13, "feet"),
  39438. weight: math.unit(6, "tons"),
  39439. name: "Front",
  39440. image: {
  39441. source: "./media/characters/rover/front.svg",
  39442. extra: 1233/1156,
  39443. bottom: 50/1283
  39444. }
  39445. },
  39446. back: {
  39447. height: math.unit(13, "feet"),
  39448. weight: math.unit(6, "tons"),
  39449. name: "Back",
  39450. image: {
  39451. source: "./media/characters/rover/back.svg",
  39452. extra: 1327/1258,
  39453. bottom: 39/1366
  39454. }
  39455. },
  39456. },
  39457. [
  39458. {
  39459. name: "Normal",
  39460. height: math.unit(13, "feet"),
  39461. default: true
  39462. },
  39463. {
  39464. name: "Macro",
  39465. height: math.unit(1300, "feet")
  39466. },
  39467. {
  39468. name: "Megamacro",
  39469. height: math.unit(1300, "miles")
  39470. },
  39471. {
  39472. name: "Gigamacro",
  39473. height: math.unit(1300000, "miles")
  39474. },
  39475. ]
  39476. ))
  39477. characterMakers.push(() => makeCharacter(
  39478. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39479. {
  39480. front: {
  39481. height: math.unit(6, "feet"),
  39482. weight: math.unit(150, "lb"),
  39483. name: "Front",
  39484. image: {
  39485. source: "./media/characters/ariz/front.svg",
  39486. extra: 1401/1346,
  39487. bottom: 5/1406
  39488. }
  39489. },
  39490. },
  39491. [
  39492. {
  39493. name: "Normal",
  39494. height: math.unit(10, "feet"),
  39495. default: true
  39496. },
  39497. ]
  39498. ))
  39499. characterMakers.push(() => makeCharacter(
  39500. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39501. {
  39502. front: {
  39503. height: math.unit(6, "feet"),
  39504. weight: math.unit(140, "lb"),
  39505. name: "Front",
  39506. image: {
  39507. source: "./media/characters/sigrun/front.svg",
  39508. extra: 1418/1359,
  39509. bottom: 27/1445
  39510. }
  39511. },
  39512. },
  39513. [
  39514. {
  39515. name: "Macro",
  39516. height: math.unit(35, "feet"),
  39517. default: true
  39518. },
  39519. ]
  39520. ))
  39521. characterMakers.push(() => makeCharacter(
  39522. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39523. {
  39524. front: {
  39525. height: math.unit(6, "feet"),
  39526. weight: math.unit(150, "lb"),
  39527. name: "Front",
  39528. image: {
  39529. source: "./media/characters/numin/front.svg",
  39530. extra: 1433/1388,
  39531. bottom: 12/1445
  39532. }
  39533. },
  39534. },
  39535. [
  39536. {
  39537. name: "Macro",
  39538. height: math.unit(21.5, "km"),
  39539. default: true
  39540. },
  39541. ]
  39542. ))
  39543. characterMakers.push(() => makeCharacter(
  39544. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39545. {
  39546. front: {
  39547. height: math.unit(6, "feet"),
  39548. weight: math.unit(463, "lb"),
  39549. name: "Front",
  39550. image: {
  39551. source: "./media/characters/melwa/front.svg",
  39552. extra: 1307/1248,
  39553. bottom: 93/1400
  39554. }
  39555. },
  39556. },
  39557. [
  39558. {
  39559. name: "Macro",
  39560. height: math.unit(50, "meters"),
  39561. default: true
  39562. },
  39563. ]
  39564. ))
  39565. characterMakers.push(() => makeCharacter(
  39566. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39567. {
  39568. front: {
  39569. height: math.unit(325, "feet"),
  39570. name: "Front",
  39571. image: {
  39572. source: "./media/characters/zorkaiju/front.svg",
  39573. extra: 1955/1814,
  39574. bottom: 40/1995
  39575. }
  39576. },
  39577. frontExtended: {
  39578. height: math.unit(325, "feet"),
  39579. name: "Front (Extended)",
  39580. image: {
  39581. source: "./media/characters/zorkaiju/front-extended.svg",
  39582. extra: 1955/1814,
  39583. bottom: 40/1995
  39584. }
  39585. },
  39586. side: {
  39587. height: math.unit(325, "feet"),
  39588. name: "Side",
  39589. image: {
  39590. source: "./media/characters/zorkaiju/side.svg",
  39591. extra: 1495/1396,
  39592. bottom: 17/1512
  39593. }
  39594. },
  39595. sideExtended: {
  39596. height: math.unit(325, "feet"),
  39597. name: "Side (Extended)",
  39598. image: {
  39599. source: "./media/characters/zorkaiju/side-extended.svg",
  39600. extra: 1495/1396,
  39601. bottom: 17/1512
  39602. }
  39603. },
  39604. back: {
  39605. height: math.unit(325, "feet"),
  39606. name: "Back",
  39607. image: {
  39608. source: "./media/characters/zorkaiju/back.svg",
  39609. extra: 1959/1821,
  39610. bottom: 31/1990
  39611. }
  39612. },
  39613. backExtended: {
  39614. height: math.unit(325, "feet"),
  39615. name: "Back (Extended)",
  39616. image: {
  39617. source: "./media/characters/zorkaiju/back-extended.svg",
  39618. extra: 1959/1821,
  39619. bottom: 31/1990
  39620. }
  39621. },
  39622. hand: {
  39623. height: math.unit(58.4, "feet"),
  39624. name: "Hand",
  39625. image: {
  39626. source: "./media/characters/zorkaiju/hand.svg"
  39627. }
  39628. },
  39629. handExtended: {
  39630. height: math.unit(61.4, "feet"),
  39631. name: "Hand (Extended)",
  39632. image: {
  39633. source: "./media/characters/zorkaiju/hand-extended.svg"
  39634. }
  39635. },
  39636. foot: {
  39637. height: math.unit(95, "feet"),
  39638. name: "Foot",
  39639. image: {
  39640. source: "./media/characters/zorkaiju/foot.svg"
  39641. }
  39642. },
  39643. leftArm: {
  39644. height: math.unit(59, "feet"),
  39645. name: "Left Arm",
  39646. image: {
  39647. source: "./media/characters/zorkaiju/left-arm.svg"
  39648. }
  39649. },
  39650. rightArm: {
  39651. height: math.unit(59, "feet"),
  39652. name: "Right Arm",
  39653. image: {
  39654. source: "./media/characters/zorkaiju/right-arm.svg"
  39655. }
  39656. },
  39657. tail: {
  39658. height: math.unit(104, "feet"),
  39659. name: "Tail",
  39660. image: {
  39661. source: "./media/characters/zorkaiju/tail.svg"
  39662. }
  39663. },
  39664. tailExtended: {
  39665. height: math.unit(104, "feet"),
  39666. name: "Tail (Extended)",
  39667. image: {
  39668. source: "./media/characters/zorkaiju/tail-extended.svg"
  39669. }
  39670. },
  39671. tailBottom: {
  39672. height: math.unit(104, "feet"),
  39673. name: "Tail Bottom",
  39674. image: {
  39675. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39676. }
  39677. },
  39678. crystal: {
  39679. height: math.unit(27.54, "feet"),
  39680. name: "Crystal",
  39681. image: {
  39682. source: "./media/characters/zorkaiju/crystal.svg"
  39683. }
  39684. },
  39685. },
  39686. [
  39687. {
  39688. name: "Kaiju",
  39689. height: math.unit(325, "feet"),
  39690. default: true
  39691. },
  39692. ]
  39693. ))
  39694. characterMakers.push(() => makeCharacter(
  39695. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39696. {
  39697. front: {
  39698. height: math.unit(6 + 1/12, "feet"),
  39699. weight: math.unit(115, "lb"),
  39700. name: "Front",
  39701. image: {
  39702. source: "./media/characters/bailey-belfry/front.svg",
  39703. extra: 1240/1121,
  39704. bottom: 101/1341
  39705. }
  39706. },
  39707. },
  39708. [
  39709. {
  39710. name: "Normal",
  39711. height: math.unit(6 + 1/12, "feet"),
  39712. default: true
  39713. },
  39714. ]
  39715. ))
  39716. characterMakers.push(() => makeCharacter(
  39717. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39718. {
  39719. side: {
  39720. height: math.unit(4, "meters"),
  39721. weight: math.unit(250, "kg"),
  39722. name: "Side",
  39723. image: {
  39724. source: "./media/characters/blacky/side.svg",
  39725. extra: 1027/919,
  39726. bottom: 43/1070
  39727. }
  39728. },
  39729. maw: {
  39730. height: math.unit(1, "meters"),
  39731. name: "Maw",
  39732. image: {
  39733. source: "./media/characters/blacky/maw.svg"
  39734. }
  39735. },
  39736. paw: {
  39737. height: math.unit(1, "meters"),
  39738. name: "Paw",
  39739. image: {
  39740. source: "./media/characters/blacky/paw.svg"
  39741. }
  39742. },
  39743. },
  39744. [
  39745. {
  39746. name: "Normal",
  39747. height: math.unit(4, "meters"),
  39748. default: true
  39749. },
  39750. ]
  39751. ))
  39752. characterMakers.push(() => makeCharacter(
  39753. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39754. {
  39755. front: {
  39756. height: math.unit(170, "cm"),
  39757. weight: math.unit(66, "kg"),
  39758. name: "Front",
  39759. image: {
  39760. source: "./media/characters/thux-ei/front.svg",
  39761. extra: 1109/1011,
  39762. bottom: 8/1117
  39763. }
  39764. },
  39765. },
  39766. [
  39767. {
  39768. name: "Normal",
  39769. height: math.unit(170, "cm"),
  39770. default: true
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39776. {
  39777. front: {
  39778. height: math.unit(5, "feet"),
  39779. weight: math.unit(120, "lb"),
  39780. name: "Front",
  39781. image: {
  39782. source: "./media/characters/roxanne-voltaire/front.svg",
  39783. extra: 1901/1779,
  39784. bottom: 53/1954
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Normal",
  39791. height: math.unit(5, "feet"),
  39792. default: true
  39793. },
  39794. {
  39795. name: "Giant",
  39796. height: math.unit(50, "feet")
  39797. },
  39798. {
  39799. name: "Titan",
  39800. height: math.unit(500, "feet")
  39801. },
  39802. {
  39803. name: "Macro",
  39804. height: math.unit(5000, "feet")
  39805. },
  39806. {
  39807. name: "Megamacro",
  39808. height: math.unit(50000, "feet")
  39809. },
  39810. {
  39811. name: "Gigamacro",
  39812. height: math.unit(500000, "feet")
  39813. },
  39814. {
  39815. name: "Teramacro",
  39816. height: math.unit(5e6, "feet")
  39817. },
  39818. ]
  39819. ))
  39820. characterMakers.push(() => makeCharacter(
  39821. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39822. {
  39823. front: {
  39824. height: math.unit(6 + 2/12, "feet"),
  39825. name: "Front",
  39826. image: {
  39827. source: "./media/characters/squeaks/front.svg",
  39828. extra: 1823/1768,
  39829. bottom: 138/1961
  39830. }
  39831. },
  39832. },
  39833. [
  39834. {
  39835. name: "Micro",
  39836. height: math.unit(0.5, "inches")
  39837. },
  39838. {
  39839. name: "Normal",
  39840. height: math.unit(6 + 2/12, "feet"),
  39841. default: true
  39842. },
  39843. {
  39844. name: "Macro",
  39845. height: math.unit(600, "feet")
  39846. },
  39847. ]
  39848. ))
  39849. characterMakers.push(() => makeCharacter(
  39850. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39851. {
  39852. front: {
  39853. height: math.unit(1.72, "meters"),
  39854. name: "Front",
  39855. image: {
  39856. source: "./media/characters/archinger/front.svg",
  39857. extra: 1861/1675,
  39858. bottom: 125/1986
  39859. }
  39860. },
  39861. back: {
  39862. height: math.unit(1.72, "meters"),
  39863. name: "Back",
  39864. image: {
  39865. source: "./media/characters/archinger/back.svg",
  39866. extra: 1844/1701,
  39867. bottom: 104/1948
  39868. }
  39869. },
  39870. cock: {
  39871. height: math.unit(0.59, "feet"),
  39872. name: "Cock",
  39873. image: {
  39874. source: "./media/characters/archinger/cock.svg"
  39875. }
  39876. },
  39877. },
  39878. [
  39879. {
  39880. name: "Normal",
  39881. height: math.unit(1.72, "meters"),
  39882. default: true
  39883. },
  39884. {
  39885. name: "Macro",
  39886. height: math.unit(84, "meters")
  39887. },
  39888. {
  39889. name: "Macro+",
  39890. height: math.unit(112, "meters")
  39891. },
  39892. {
  39893. name: "Macro++",
  39894. height: math.unit(960, "meters")
  39895. },
  39896. {
  39897. name: "Macro+++",
  39898. height: math.unit(4, "km")
  39899. },
  39900. {
  39901. name: "Macro++++",
  39902. height: math.unit(48, "km")
  39903. },
  39904. {
  39905. name: "Macro+++++",
  39906. height: math.unit(4500, "km")
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39912. {
  39913. front: {
  39914. height: math.unit(5 + 5/12, "feet"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/alsnapz/front.svg",
  39918. extra: 1157/1065,
  39919. bottom: 42/1199
  39920. }
  39921. },
  39922. },
  39923. [
  39924. {
  39925. name: "Normal",
  39926. height: math.unit(5 + 5/12, "feet"),
  39927. default: true
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39933. {
  39934. side: {
  39935. height: math.unit(3.2, "earths"),
  39936. name: "Side",
  39937. image: {
  39938. source: "./media/characters/mag/side.svg",
  39939. extra: 1331/1008,
  39940. bottom: 52/1383
  39941. }
  39942. },
  39943. wing: {
  39944. height: math.unit(1.94, "earths"),
  39945. name: "Wing",
  39946. image: {
  39947. source: "./media/characters/mag/wing.svg"
  39948. }
  39949. },
  39950. dick: {
  39951. height: math.unit(1.8, "earths"),
  39952. name: "Dick",
  39953. image: {
  39954. source: "./media/characters/mag/dick.svg"
  39955. }
  39956. },
  39957. ass: {
  39958. height: math.unit(1.33, "earths"),
  39959. name: "Ass",
  39960. image: {
  39961. source: "./media/characters/mag/ass.svg"
  39962. }
  39963. },
  39964. head: {
  39965. height: math.unit(1.1, "earths"),
  39966. name: "Head",
  39967. image: {
  39968. source: "./media/characters/mag/head.svg"
  39969. }
  39970. },
  39971. maw: {
  39972. height: math.unit(1.62, "earths"),
  39973. name: "Maw",
  39974. image: {
  39975. source: "./media/characters/mag/maw.svg"
  39976. }
  39977. },
  39978. },
  39979. [
  39980. {
  39981. name: "Small",
  39982. height: math.unit(162, "feet")
  39983. },
  39984. {
  39985. name: "Normal",
  39986. height: math.unit(3.2, "earths"),
  39987. default: true
  39988. },
  39989. ]
  39990. ))
  39991. characterMakers.push(() => makeCharacter(
  39992. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39993. {
  39994. front: {
  39995. height: math.unit(512, "feet"),
  39996. weight: math.unit(63509, "tonnes"),
  39997. name: "Front",
  39998. image: {
  39999. source: "./media/characters/vorrel-harroc/front.svg",
  40000. extra: 1075/1063,
  40001. bottom: 62/1137
  40002. }
  40003. },
  40004. },
  40005. [
  40006. {
  40007. name: "Normal",
  40008. height: math.unit(10, "feet")
  40009. },
  40010. {
  40011. name: "Macro",
  40012. height: math.unit(512, "feet"),
  40013. default: true
  40014. },
  40015. {
  40016. name: "Megamacro",
  40017. height: math.unit(256, "miles")
  40018. },
  40019. {
  40020. name: "Gigamacro",
  40021. height: math.unit(4096, "miles")
  40022. },
  40023. ]
  40024. ))
  40025. characterMakers.push(() => makeCharacter(
  40026. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40027. {
  40028. side: {
  40029. height: math.unit(50, "feet"),
  40030. name: "Side",
  40031. image: {
  40032. source: "./media/characters/froimar/side.svg",
  40033. extra: 855/638,
  40034. bottom: 99/954
  40035. }
  40036. },
  40037. },
  40038. [
  40039. {
  40040. name: "Macro",
  40041. height: math.unit(50, "feet"),
  40042. default: true
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40048. {
  40049. front: {
  40050. height: math.unit(210, "miles"),
  40051. name: "Front",
  40052. image: {
  40053. source: "./media/characters/timothy/front.svg",
  40054. extra: 1007/943,
  40055. bottom: 62/1069
  40056. }
  40057. },
  40058. frontSkirt: {
  40059. height: math.unit(210, "miles"),
  40060. name: "Front (Skirt)",
  40061. image: {
  40062. source: "./media/characters/timothy/front-skirt.svg",
  40063. extra: 1007/943,
  40064. bottom: 62/1069
  40065. }
  40066. },
  40067. frontCoat: {
  40068. height: math.unit(210, "miles"),
  40069. name: "Front (Coat)",
  40070. image: {
  40071. source: "./media/characters/timothy/front-coat.svg",
  40072. extra: 1007/943,
  40073. bottom: 62/1069
  40074. }
  40075. },
  40076. },
  40077. [
  40078. {
  40079. name: "Macro",
  40080. height: math.unit(210, "miles"),
  40081. default: true
  40082. },
  40083. {
  40084. name: "Megamacro",
  40085. height: math.unit(210000, "miles")
  40086. },
  40087. ]
  40088. ))
  40089. characterMakers.push(() => makeCharacter(
  40090. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40091. {
  40092. front: {
  40093. height: math.unit(188, "feet"),
  40094. name: "Front",
  40095. image: {
  40096. source: "./media/characters/pyotr/front.svg",
  40097. extra: 1912/1826,
  40098. bottom: 18/1930
  40099. }
  40100. },
  40101. },
  40102. [
  40103. {
  40104. name: "Macro",
  40105. height: math.unit(188, "feet"),
  40106. default: true
  40107. },
  40108. {
  40109. name: "Megamacro",
  40110. height: math.unit(8, "miles")
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40116. {
  40117. side: {
  40118. height: math.unit(10, "feet"),
  40119. weight: math.unit(4500, "lb"),
  40120. name: "Side",
  40121. image: {
  40122. source: "./media/characters/ackart/side.svg",
  40123. extra: 1776/1668,
  40124. bottom: 116/1892
  40125. }
  40126. },
  40127. },
  40128. [
  40129. {
  40130. name: "Normal",
  40131. height: math.unit(10, "feet"),
  40132. default: true
  40133. },
  40134. ]
  40135. ))
  40136. characterMakers.push(() => makeCharacter(
  40137. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40138. {
  40139. side: {
  40140. height: math.unit(21, "feet"),
  40141. name: "Side",
  40142. image: {
  40143. source: "./media/characters/nolow/side.svg",
  40144. extra: 1484/1434,
  40145. bottom: 85/1569
  40146. }
  40147. },
  40148. sideErect: {
  40149. height: math.unit(21, "feet"),
  40150. name: "Side-erect",
  40151. image: {
  40152. source: "./media/characters/nolow/side-erect.svg",
  40153. extra: 1484/1434,
  40154. bottom: 85/1569
  40155. }
  40156. },
  40157. },
  40158. [
  40159. {
  40160. name: "Regular",
  40161. height: math.unit(12, "feet")
  40162. },
  40163. {
  40164. name: "Big Chee",
  40165. height: math.unit(21, "feet"),
  40166. default: true
  40167. },
  40168. ]
  40169. ))
  40170. characterMakers.push(() => makeCharacter(
  40171. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40172. {
  40173. front: {
  40174. height: math.unit(7, "feet"),
  40175. weight: math.unit(250, "lb"),
  40176. name: "Front",
  40177. image: {
  40178. source: "./media/characters/nines/front.svg",
  40179. extra: 1741/1607,
  40180. bottom: 41/1782
  40181. }
  40182. },
  40183. side: {
  40184. height: math.unit(7, "feet"),
  40185. weight: math.unit(250, "lb"),
  40186. name: "Side",
  40187. image: {
  40188. source: "./media/characters/nines/side.svg",
  40189. extra: 1854/1735,
  40190. bottom: 93/1947
  40191. }
  40192. },
  40193. back: {
  40194. height: math.unit(7, "feet"),
  40195. weight: math.unit(250, "lb"),
  40196. name: "Back",
  40197. image: {
  40198. source: "./media/characters/nines/back.svg",
  40199. extra: 1748/1615,
  40200. bottom: 20/1768
  40201. }
  40202. },
  40203. },
  40204. [
  40205. {
  40206. name: "Megamacro",
  40207. height: math.unit(99, "km"),
  40208. default: true
  40209. },
  40210. ]
  40211. ))
  40212. characterMakers.push(() => makeCharacter(
  40213. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40214. {
  40215. front: {
  40216. height: math.unit(5 + 10/12, "feet"),
  40217. weight: math.unit(210, "lb"),
  40218. name: "Front",
  40219. image: {
  40220. source: "./media/characters/zenith/front.svg",
  40221. extra: 1531/1452,
  40222. bottom: 198/1729
  40223. }
  40224. },
  40225. back: {
  40226. height: math.unit(5 + 10/12, "feet"),
  40227. weight: math.unit(210, "lb"),
  40228. name: "Back",
  40229. image: {
  40230. source: "./media/characters/zenith/back.svg",
  40231. extra: 1571/1487,
  40232. bottom: 75/1646
  40233. }
  40234. },
  40235. },
  40236. [
  40237. {
  40238. name: "Normal",
  40239. height: math.unit(5 + 10/12, "feet"),
  40240. default: true
  40241. }
  40242. ]
  40243. ))
  40244. characterMakers.push(() => makeCharacter(
  40245. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40246. {
  40247. front: {
  40248. height: math.unit(4, "feet"),
  40249. weight: math.unit(60, "lb"),
  40250. name: "Front",
  40251. image: {
  40252. source: "./media/characters/jasper/front.svg",
  40253. extra: 1450/1379,
  40254. bottom: 19/1469
  40255. }
  40256. },
  40257. },
  40258. [
  40259. {
  40260. name: "Normal",
  40261. height: math.unit(4, "feet"),
  40262. default: true
  40263. },
  40264. ]
  40265. ))
  40266. characterMakers.push(() => makeCharacter(
  40267. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40268. {
  40269. front: {
  40270. height: math.unit(6 + 5/12, "feet"),
  40271. weight: math.unit(290, "lb"),
  40272. name: "Front",
  40273. image: {
  40274. source: "./media/characters/tiberius-thyben/front.svg",
  40275. extra: 757/739,
  40276. bottom: 39/796
  40277. }
  40278. },
  40279. },
  40280. [
  40281. {
  40282. name: "Micro",
  40283. height: math.unit(1.5, "inches")
  40284. },
  40285. {
  40286. name: "Normal",
  40287. height: math.unit(6 + 5/12, "feet"),
  40288. default: true
  40289. },
  40290. {
  40291. name: "Macro",
  40292. height: math.unit(300, "feet")
  40293. },
  40294. ]
  40295. ))
  40296. characterMakers.push(() => makeCharacter(
  40297. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40298. {
  40299. front: {
  40300. height: math.unit(5 + 6/12, "feet"),
  40301. weight: math.unit(60, "kg"),
  40302. name: "Front",
  40303. image: {
  40304. source: "./media/characters/sabre/front.svg",
  40305. extra: 738/671,
  40306. bottom: 27/765
  40307. }
  40308. },
  40309. },
  40310. [
  40311. {
  40312. name: "Teeny",
  40313. height: math.unit(2, "inches")
  40314. },
  40315. {
  40316. name: "Smol",
  40317. height: math.unit(8, "inches")
  40318. },
  40319. {
  40320. name: "Normal",
  40321. height: math.unit(5 + 6/12, "feet"),
  40322. default: true
  40323. },
  40324. {
  40325. name: "Mini-Macro",
  40326. height: math.unit(15, "feet")
  40327. },
  40328. {
  40329. name: "Macro",
  40330. height: math.unit(50, "feet")
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(6 + 4/12, "feet"),
  40339. weight: math.unit(170, "lb"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/charlie/front.svg",
  40343. extra: 1348/1228,
  40344. bottom: 15/1363
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Macro",
  40351. height: math.unit(1700, "meters"),
  40352. default: true
  40353. },
  40354. {
  40355. name: "MegaMacro",
  40356. height: math.unit(20400, "meters")
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40362. {
  40363. front: {
  40364. height: math.unit(6 + 3/12, "feet"),
  40365. weight: math.unit(185, "lb"),
  40366. name: "Front",
  40367. image: {
  40368. source: "./media/characters/susan-grant/front.svg",
  40369. extra: 1351/1327,
  40370. bottom: 26/1377
  40371. }
  40372. },
  40373. },
  40374. [
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(6 + 3/12, "feet"),
  40378. default: true
  40379. },
  40380. {
  40381. name: "Macro",
  40382. height: math.unit(225, "feet")
  40383. },
  40384. {
  40385. name: "Macro+",
  40386. height: math.unit(900, "feet")
  40387. },
  40388. {
  40389. name: "MegaMacro",
  40390. height: math.unit(14400, "feet")
  40391. },
  40392. ]
  40393. ))
  40394. characterMakers.push(() => makeCharacter(
  40395. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40396. {
  40397. front: {
  40398. height: math.unit(5 + 4/12, "feet"),
  40399. weight: math.unit(110, "lb"),
  40400. name: "Front",
  40401. image: {
  40402. source: "./media/characters/axel-isanov/front.svg",
  40403. extra: 1096/1065,
  40404. bottom: 13/1109
  40405. }
  40406. },
  40407. },
  40408. [
  40409. {
  40410. name: "Normal",
  40411. height: math.unit(5 + 4/12, "feet"),
  40412. default: true
  40413. },
  40414. ]
  40415. ))
  40416. characterMakers.push(() => makeCharacter(
  40417. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40418. {
  40419. front: {
  40420. height: math.unit(9, "feet"),
  40421. weight: math.unit(467, "lb"),
  40422. name: "Front",
  40423. image: {
  40424. source: "./media/characters/necahual/front.svg",
  40425. extra: 920/873,
  40426. bottom: 26/946
  40427. }
  40428. },
  40429. back: {
  40430. height: math.unit(9, "feet"),
  40431. weight: math.unit(467, "lb"),
  40432. name: "Back",
  40433. image: {
  40434. source: "./media/characters/necahual/back.svg",
  40435. extra: 930/884,
  40436. bottom: 16/946
  40437. }
  40438. },
  40439. frontUnderwear: {
  40440. height: math.unit(9, "feet"),
  40441. weight: math.unit(467, "lb"),
  40442. name: "Front (Underwear)",
  40443. image: {
  40444. source: "./media/characters/necahual/front-underwear.svg",
  40445. extra: 920/873,
  40446. bottom: 26/946
  40447. }
  40448. },
  40449. frontDressed: {
  40450. height: math.unit(9, "feet"),
  40451. weight: math.unit(467, "lb"),
  40452. name: "Front (Dressed)",
  40453. image: {
  40454. source: "./media/characters/necahual/front-dressed.svg",
  40455. extra: 920/873,
  40456. bottom: 26/946
  40457. }
  40458. },
  40459. },
  40460. [
  40461. {
  40462. name: "Comprsesed",
  40463. height: math.unit(9, "feet")
  40464. },
  40465. {
  40466. name: "Natural",
  40467. height: math.unit(15, "feet"),
  40468. default: true
  40469. },
  40470. {
  40471. name: "Boosted",
  40472. height: math.unit(50, "feet")
  40473. },
  40474. {
  40475. name: "Boosted+",
  40476. height: math.unit(150, "feet")
  40477. },
  40478. {
  40479. name: "Max",
  40480. height: math.unit(500, "feet")
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40486. {
  40487. front: {
  40488. height: math.unit(22 + 1/12, "feet"),
  40489. weight: math.unit(3200, "lb"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/theo-acacia/front.svg",
  40493. extra: 1796/1741,
  40494. bottom: 83/1879
  40495. }
  40496. },
  40497. frontUnderwear: {
  40498. height: math.unit(22 + 1/12, "feet"),
  40499. weight: math.unit(3200, "lb"),
  40500. name: "Front (Underwear)",
  40501. image: {
  40502. source: "./media/characters/theo-acacia/front-underwear.svg",
  40503. extra: 1796/1741,
  40504. bottom: 83/1879
  40505. }
  40506. },
  40507. frontNude: {
  40508. height: math.unit(22 + 1/12, "feet"),
  40509. weight: math.unit(3200, "lb"),
  40510. name: "Front (Nude)",
  40511. image: {
  40512. source: "./media/characters/theo-acacia/front-nude.svg",
  40513. extra: 1796/1741,
  40514. bottom: 83/1879
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Normal",
  40521. height: math.unit(22 + 1/12, "feet"),
  40522. default: true
  40523. },
  40524. ]
  40525. ))
  40526. characterMakers.push(() => makeCharacter(
  40527. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40528. {
  40529. front: {
  40530. height: math.unit(20, "feet"),
  40531. name: "Front",
  40532. image: {
  40533. source: "./media/characters/astra/front.svg",
  40534. extra: 1850/1714,
  40535. bottom: 106/1956
  40536. }
  40537. },
  40538. frontUndressed: {
  40539. height: math.unit(20, "feet"),
  40540. name: "Front (Undressed)",
  40541. image: {
  40542. source: "./media/characters/astra/front-undressed.svg",
  40543. extra: 1926/1749,
  40544. bottom: 0/1926
  40545. }
  40546. },
  40547. hand: {
  40548. height: math.unit(1.53, "feet"),
  40549. name: "Hand",
  40550. image: {
  40551. source: "./media/characters/astra/hand.svg"
  40552. }
  40553. },
  40554. paw: {
  40555. height: math.unit(1.53, "feet"),
  40556. name: "Paw",
  40557. image: {
  40558. source: "./media/characters/astra/paw.svg"
  40559. }
  40560. },
  40561. },
  40562. [
  40563. {
  40564. name: "Smallest",
  40565. height: math.unit(20, "feet")
  40566. },
  40567. {
  40568. name: "Normal",
  40569. height: math.unit(1e9, "miles"),
  40570. default: true
  40571. },
  40572. {
  40573. name: "Larger",
  40574. height: math.unit(5, "multiverses")
  40575. },
  40576. {
  40577. name: "Largest",
  40578. height: math.unit(1e9, "multiverses")
  40579. },
  40580. ]
  40581. ))
  40582. characterMakers.push(() => makeCharacter(
  40583. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40584. {
  40585. front: {
  40586. height: math.unit(8, "feet"),
  40587. name: "Front",
  40588. image: {
  40589. source: "./media/characters/breanna/front.svg",
  40590. extra: 1912/1632,
  40591. bottom: 33/1945
  40592. }
  40593. },
  40594. },
  40595. [
  40596. {
  40597. name: "Smallest",
  40598. height: math.unit(8, "feet")
  40599. },
  40600. {
  40601. name: "Normal",
  40602. height: math.unit(1, "mile"),
  40603. default: true
  40604. },
  40605. {
  40606. name: "Maximum",
  40607. height: math.unit(1500000000000, "lightyears")
  40608. },
  40609. ]
  40610. ))
  40611. characterMakers.push(() => makeCharacter(
  40612. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40613. {
  40614. front: {
  40615. height: math.unit(5 + 11/12, "feet"),
  40616. weight: math.unit(155, "lb"),
  40617. name: "Front",
  40618. image: {
  40619. source: "./media/characters/cai/front.svg",
  40620. extra: 1823/1702,
  40621. bottom: 32/1855
  40622. }
  40623. },
  40624. back: {
  40625. height: math.unit(5 + 11/12, "feet"),
  40626. weight: math.unit(155, "lb"),
  40627. name: "Back",
  40628. image: {
  40629. source: "./media/characters/cai/back.svg",
  40630. extra: 1809/1708,
  40631. bottom: 31/1840
  40632. }
  40633. },
  40634. },
  40635. [
  40636. {
  40637. name: "Normal",
  40638. height: math.unit(5 + 11/12, "feet"),
  40639. default: true
  40640. },
  40641. {
  40642. name: "Big",
  40643. height: math.unit(15, "feet")
  40644. },
  40645. {
  40646. name: "Macro",
  40647. height: math.unit(200, "feet")
  40648. },
  40649. ]
  40650. ))
  40651. characterMakers.push(() => makeCharacter(
  40652. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40653. {
  40654. front: {
  40655. height: math.unit(5 + 6/12, "feet"),
  40656. weight: math.unit(160, "lb"),
  40657. name: "Front",
  40658. image: {
  40659. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40660. extra: 1227/1174,
  40661. bottom: 37/1264
  40662. }
  40663. },
  40664. },
  40665. [
  40666. {
  40667. name: "Macro",
  40668. height: math.unit(444, "meters"),
  40669. default: true
  40670. },
  40671. ]
  40672. ))
  40673. characterMakers.push(() => makeCharacter(
  40674. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40675. {
  40676. front: {
  40677. height: math.unit(18 + 7/12, "feet"),
  40678. name: "Front",
  40679. image: {
  40680. source: "./media/characters/rex/front.svg",
  40681. extra: 1941/1807,
  40682. bottom: 66/2007
  40683. }
  40684. },
  40685. back: {
  40686. height: math.unit(18 + 7/12, "feet"),
  40687. name: "Back",
  40688. image: {
  40689. source: "./media/characters/rex/back.svg",
  40690. extra: 1937/1822,
  40691. bottom: 42/1979
  40692. }
  40693. },
  40694. boot: {
  40695. height: math.unit(3.45, "feet"),
  40696. name: "Boot",
  40697. image: {
  40698. source: "./media/characters/rex/boot.svg"
  40699. }
  40700. },
  40701. paw: {
  40702. height: math.unit(4.17, "feet"),
  40703. name: "Paw",
  40704. image: {
  40705. source: "./media/characters/rex/paw.svg"
  40706. }
  40707. },
  40708. head: {
  40709. height: math.unit(6.728, "feet"),
  40710. name: "Head",
  40711. image: {
  40712. source: "./media/characters/rex/head.svg"
  40713. }
  40714. },
  40715. },
  40716. [
  40717. {
  40718. name: "Nano",
  40719. height: math.unit(18 + 7/12, "feet")
  40720. },
  40721. {
  40722. name: "Micro",
  40723. height: math.unit(1.5, "megameters")
  40724. },
  40725. {
  40726. name: "Normal",
  40727. height: math.unit(440, "megameters"),
  40728. default: true
  40729. },
  40730. {
  40731. name: "Macro",
  40732. height: math.unit(2.5, "gigameters")
  40733. },
  40734. {
  40735. name: "Gigamacro",
  40736. height: math.unit(2, "galaxies")
  40737. },
  40738. ]
  40739. ))
  40740. characterMakers.push(() => makeCharacter(
  40741. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40742. {
  40743. side: {
  40744. height: math.unit(32, "feet"),
  40745. weight: math.unit(250000, "lb"),
  40746. name: "Side",
  40747. image: {
  40748. source: "./media/characters/silverwing/side.svg",
  40749. extra: 1100/1019,
  40750. bottom: 204/1304
  40751. }
  40752. },
  40753. },
  40754. [
  40755. {
  40756. name: "Normal",
  40757. height: math.unit(32, "feet"),
  40758. default: true
  40759. },
  40760. ]
  40761. ))
  40762. characterMakers.push(() => makeCharacter(
  40763. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40764. {
  40765. front: {
  40766. height: math.unit(6 + 6/12, "feet"),
  40767. weight: math.unit(350, "lb"),
  40768. name: "Front",
  40769. image: {
  40770. source: "./media/characters/tristan-hawthorne/front.svg",
  40771. extra: 1159/1124,
  40772. bottom: 37/1196
  40773. }
  40774. },
  40775. },
  40776. [
  40777. {
  40778. name: "Normal",
  40779. height: math.unit(6 + 6/12, "feet"),
  40780. default: true
  40781. },
  40782. ]
  40783. ))
  40784. characterMakers.push(() => makeCharacter(
  40785. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40786. {
  40787. front: {
  40788. height: math.unit(5 + 11/12, "feet"),
  40789. weight: math.unit(190, "lb"),
  40790. name: "Front",
  40791. image: {
  40792. source: "./media/characters/mizu/front.svg",
  40793. extra: 1988/1788,
  40794. bottom: 14/2002
  40795. }
  40796. },
  40797. },
  40798. [
  40799. {
  40800. name: "Normal",
  40801. height: math.unit(5 + 11/12, "feet"),
  40802. default: true
  40803. },
  40804. ]
  40805. ))
  40806. characterMakers.push(() => makeCharacter(
  40807. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40808. {
  40809. front: {
  40810. height: math.unit(6, "feet"),
  40811. name: "Front",
  40812. image: {
  40813. source: "./media/characters/moonlight-rose-terra/front.svg",
  40814. extra: 1434/1252,
  40815. bottom: 48/1482
  40816. }
  40817. },
  40818. },
  40819. [
  40820. {
  40821. name: "TRAPPIST-1D",
  40822. height: math.unit(4992*2, "km")
  40823. },
  40824. {
  40825. name: "Earth",
  40826. height: math.unit(6367*2, "km"),
  40827. default: true
  40828. },
  40829. {
  40830. name: "Kepler-22b",
  40831. height: math.unit(15282*2, "km")
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40837. {
  40838. front: {
  40839. height: math.unit(6, "feet"),
  40840. name: "Front",
  40841. image: {
  40842. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40843. extra: 1851/1712,
  40844. bottom: 0/1851
  40845. }
  40846. },
  40847. },
  40848. [
  40849. {
  40850. name: "Enceladus",
  40851. height: math.unit(513*2, "km")
  40852. },
  40853. {
  40854. name: "Europe",
  40855. height: math.unit(1560*2, "km")
  40856. },
  40857. {
  40858. name: "Neptune",
  40859. height: math.unit(24622*2, "km"),
  40860. default: true
  40861. },
  40862. {
  40863. name: "CoRoT-9b",
  40864. height: math.unit(75067*2, "km")
  40865. },
  40866. ]
  40867. ))
  40868. characterMakers.push(() => makeCharacter(
  40869. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40870. {
  40871. front: {
  40872. height: math.unit(6, "feet"),
  40873. name: "Front",
  40874. image: {
  40875. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40876. extra: 1367/1286,
  40877. bottom: 55/1422
  40878. }
  40879. },
  40880. },
  40881. [
  40882. {
  40883. name: "Saturn",
  40884. height: math.unit(58232*2, "km")
  40885. },
  40886. {
  40887. name: "Jupiter",
  40888. height: math.unit(69911*2, "km"),
  40889. default: true
  40890. },
  40891. {
  40892. name: "HD 100546 b",
  40893. height: math.unit(482938, "km")
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(1.7, "feet"),
  40902. weight: math.unit(50, "lb"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/dechroma/front.svg",
  40906. extra: 1095/859,
  40907. bottom: 64/1159
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Normal",
  40914. height: math.unit(1.7, "feet"),
  40915. default: true
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40921. {
  40922. side: {
  40923. height: math.unit(30, "feet"),
  40924. name: "Side",
  40925. image: {
  40926. source: "./media/characters/veluren-thanazel/side.svg",
  40927. extra: 1611/633,
  40928. bottom: 118/1729
  40929. }
  40930. },
  40931. front: {
  40932. height: math.unit(30, "feet"),
  40933. name: "Front",
  40934. image: {
  40935. source: "./media/characters/veluren-thanazel/front.svg",
  40936. extra: 1486/636,
  40937. bottom: 238/1724
  40938. }
  40939. },
  40940. head: {
  40941. height: math.unit(21.4, "feet"),
  40942. name: "Head",
  40943. image: {
  40944. source: "./media/characters/veluren-thanazel/head.svg"
  40945. }
  40946. },
  40947. genitals: {
  40948. height: math.unit(19.4, "feet"),
  40949. name: "Genitals",
  40950. image: {
  40951. source: "./media/characters/veluren-thanazel/genitals.svg"
  40952. }
  40953. },
  40954. },
  40955. [
  40956. {
  40957. name: "Social",
  40958. height: math.unit(6, "feet")
  40959. },
  40960. {
  40961. name: "Play",
  40962. height: math.unit(12, "feet")
  40963. },
  40964. {
  40965. name: "True",
  40966. height: math.unit(30, "feet"),
  40967. default: true
  40968. },
  40969. ]
  40970. ))
  40971. characterMakers.push(() => makeCharacter(
  40972. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40973. {
  40974. front: {
  40975. height: math.unit(7 + 6/12, "feet"),
  40976. weight: math.unit(500, "kg"),
  40977. name: "Front",
  40978. image: {
  40979. source: "./media/characters/arcturas/front.svg",
  40980. extra: 1700/1500,
  40981. bottom: 145/1845
  40982. }
  40983. },
  40984. },
  40985. [
  40986. {
  40987. name: "Normal",
  40988. height: math.unit(7 + 6/12, "feet"),
  40989. default: true
  40990. },
  40991. ]
  40992. ))
  40993. characterMakers.push(() => makeCharacter(
  40994. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40995. {
  40996. side: {
  40997. height: math.unit(6, "feet"),
  40998. weight: math.unit(2, "tons"),
  40999. name: "Side",
  41000. image: {
  41001. source: "./media/characters/vitaen/side.svg",
  41002. extra: 1157/617,
  41003. bottom: 122/1279
  41004. }
  41005. },
  41006. },
  41007. [
  41008. {
  41009. name: "Normal",
  41010. height: math.unit(6, "feet"),
  41011. default: true
  41012. },
  41013. ]
  41014. ))
  41015. characterMakers.push(() => makeCharacter(
  41016. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41017. {
  41018. front: {
  41019. height: math.unit(19, "feet"),
  41020. name: "Front",
  41021. image: {
  41022. source: "./media/characters/fia-dreamweaver/front.svg",
  41023. extra: 1630/1504,
  41024. bottom: 25/1655
  41025. }
  41026. },
  41027. },
  41028. [
  41029. {
  41030. name: "Normal",
  41031. height: math.unit(19, "feet"),
  41032. default: true
  41033. },
  41034. ]
  41035. ))
  41036. characterMakers.push(() => makeCharacter(
  41037. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41038. {
  41039. front: {
  41040. height: math.unit(5 + 4/12, "feet"),
  41041. name: "Front",
  41042. image: {
  41043. source: "./media/characters/artan/front.svg",
  41044. extra: 1618/1535,
  41045. bottom: 46/1664
  41046. }
  41047. },
  41048. back: {
  41049. height: math.unit(5 + 4/12, "feet"),
  41050. name: "Back",
  41051. image: {
  41052. source: "./media/characters/artan/back.svg",
  41053. extra: 1618/1543,
  41054. bottom: 31/1649
  41055. }
  41056. },
  41057. },
  41058. [
  41059. {
  41060. name: "Normal",
  41061. height: math.unit(5 + 4/12, "feet"),
  41062. default: true
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41068. {
  41069. side: {
  41070. height: math.unit(182, "cm"),
  41071. weight: math.unit(1000, "lb"),
  41072. name: "Side",
  41073. image: {
  41074. source: "./media/characters/silver-dragon/side.svg",
  41075. extra: 710/287,
  41076. bottom: 88/798
  41077. }
  41078. },
  41079. },
  41080. [
  41081. {
  41082. name: "Normal",
  41083. height: math.unit(182, "cm"),
  41084. default: true
  41085. },
  41086. ]
  41087. ))
  41088. characterMakers.push(() => makeCharacter(
  41089. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41090. {
  41091. side: {
  41092. height: math.unit(6 + 6/12, "feet"),
  41093. weight: math.unit(1.5, "tons"),
  41094. name: "Side",
  41095. image: {
  41096. source: "./media/characters/zephyr/side.svg",
  41097. extra: 1433/586,
  41098. bottom: 109/1542
  41099. }
  41100. },
  41101. },
  41102. [
  41103. {
  41104. name: "Normal",
  41105. height: math.unit(6 + 6/12, "feet"),
  41106. default: true
  41107. },
  41108. ]
  41109. ))
  41110. characterMakers.push(() => makeCharacter(
  41111. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41112. {
  41113. side: {
  41114. height: math.unit(1, "feet"),
  41115. name: "Side",
  41116. image: {
  41117. source: "./media/characters/vixye/side.svg",
  41118. extra: 632/541,
  41119. bottom: 0/632
  41120. }
  41121. },
  41122. },
  41123. [
  41124. {
  41125. name: "Normal",
  41126. height: math.unit(1, "feet"),
  41127. default: true
  41128. },
  41129. {
  41130. name: "True",
  41131. height: math.unit(1e15, "multiverses")
  41132. },
  41133. ]
  41134. ))
  41135. characterMakers.push(() => makeCharacter(
  41136. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41137. {
  41138. front: {
  41139. height: math.unit(8 + 2/12, "feet"),
  41140. weight: math.unit(650, "lb"),
  41141. name: "Front",
  41142. image: {
  41143. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41144. extra: 1174/1137,
  41145. bottom: 82/1256
  41146. }
  41147. },
  41148. back: {
  41149. height: math.unit(8 + 2/12, "feet"),
  41150. weight: math.unit(650, "lb"),
  41151. name: "Back",
  41152. image: {
  41153. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41154. extra: 1204/1157,
  41155. bottom: 46/1250
  41156. }
  41157. },
  41158. },
  41159. [
  41160. {
  41161. name: "Wildform",
  41162. height: math.unit(8 + 2/12, "feet"),
  41163. default: true
  41164. },
  41165. ]
  41166. ))
  41167. characterMakers.push(() => makeCharacter(
  41168. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41169. {
  41170. front: {
  41171. height: math.unit(18, "feet"),
  41172. name: "Front",
  41173. image: {
  41174. source: "./media/characters/cyphin/front.svg",
  41175. extra: 970/886,
  41176. bottom: 42/1012
  41177. }
  41178. },
  41179. back: {
  41180. height: math.unit(18, "feet"),
  41181. name: "Back",
  41182. image: {
  41183. source: "./media/characters/cyphin/back.svg",
  41184. extra: 1009/894,
  41185. bottom: 24/1033
  41186. }
  41187. },
  41188. head: {
  41189. height: math.unit(5.05, "feet"),
  41190. name: "Head",
  41191. image: {
  41192. source: "./media/characters/cyphin/head.svg"
  41193. }
  41194. },
  41195. tailbud: {
  41196. height: math.unit(5, "feet"),
  41197. name: "Tailbud",
  41198. image: {
  41199. source: "./media/characters/cyphin/tailbud.svg"
  41200. }
  41201. },
  41202. },
  41203. [
  41204. ]
  41205. ))
  41206. characterMakers.push(() => makeCharacter(
  41207. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41208. {
  41209. side: {
  41210. height: math.unit(10, "feet"),
  41211. weight: math.unit(6, "tons"),
  41212. name: "Side",
  41213. image: {
  41214. source: "./media/characters/raijin/side.svg",
  41215. extra: 1529/613,
  41216. bottom: 337/1866
  41217. }
  41218. },
  41219. },
  41220. [
  41221. {
  41222. name: "Normal",
  41223. height: math.unit(10, "feet"),
  41224. default: true
  41225. },
  41226. ]
  41227. ))
  41228. characterMakers.push(() => makeCharacter(
  41229. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41230. {
  41231. side: {
  41232. height: math.unit(9, "feet"),
  41233. name: "Side",
  41234. image: {
  41235. source: "./media/characters/nilghais/side.svg",
  41236. extra: 1047/744,
  41237. bottom: 91/1138
  41238. }
  41239. },
  41240. head: {
  41241. height: math.unit(3.14, "feet"),
  41242. name: "Head",
  41243. image: {
  41244. source: "./media/characters/nilghais/head.svg"
  41245. }
  41246. },
  41247. mouth: {
  41248. height: math.unit(4.6, "feet"),
  41249. name: "Mouth",
  41250. image: {
  41251. source: "./media/characters/nilghais/mouth.svg"
  41252. }
  41253. },
  41254. wings: {
  41255. height: math.unit(24, "feet"),
  41256. name: "Wings",
  41257. image: {
  41258. source: "./media/characters/nilghais/wings.svg"
  41259. }
  41260. },
  41261. ass: {
  41262. height: math.unit(6.12, "feet"),
  41263. name: "Ass",
  41264. image: {
  41265. source: "./media/characters/nilghais/ass.svg"
  41266. }
  41267. },
  41268. },
  41269. [
  41270. {
  41271. name: "Normal",
  41272. height: math.unit(9, "feet"),
  41273. default: true
  41274. },
  41275. ]
  41276. ))
  41277. characterMakers.push(() => makeCharacter(
  41278. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41279. {
  41280. regular: {
  41281. height: math.unit(16 + 2/12, "feet"),
  41282. weight: math.unit(2300, "lb"),
  41283. name: "Regular",
  41284. image: {
  41285. source: "./media/characters/zolgar/regular.svg",
  41286. extra: 1246/1004,
  41287. bottom: 124/1370
  41288. }
  41289. },
  41290. boxers: {
  41291. height: math.unit(16 + 2/12, "feet"),
  41292. weight: math.unit(2300, "lb"),
  41293. name: "Boxers",
  41294. image: {
  41295. source: "./media/characters/zolgar/boxers.svg",
  41296. extra: 1246/1004,
  41297. bottom: 124/1370
  41298. }
  41299. },
  41300. armored: {
  41301. height: math.unit(16 + 2/12, "feet"),
  41302. weight: math.unit(2300, "lb"),
  41303. name: "Armored",
  41304. image: {
  41305. source: "./media/characters/zolgar/armored.svg",
  41306. extra: 1246/1004,
  41307. bottom: 124/1370
  41308. }
  41309. },
  41310. goth: {
  41311. height: math.unit(16 + 2/12, "feet"),
  41312. weight: math.unit(2300, "lb"),
  41313. name: "Goth",
  41314. image: {
  41315. source: "./media/characters/zolgar/goth.svg",
  41316. extra: 1246/1004,
  41317. bottom: 124/1370
  41318. }
  41319. },
  41320. },
  41321. [
  41322. {
  41323. name: "Shrunken Down",
  41324. height: math.unit(9 + 2/12, "feet")
  41325. },
  41326. {
  41327. name: "Normal",
  41328. height: math.unit(16 + 2/12, "feet"),
  41329. default: true
  41330. },
  41331. ]
  41332. ))
  41333. characterMakers.push(() => makeCharacter(
  41334. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41335. {
  41336. front: {
  41337. height: math.unit(6, "feet"),
  41338. weight: math.unit(168, "lb"),
  41339. name: "Front",
  41340. image: {
  41341. source: "./media/characters/luca/front.svg",
  41342. extra: 841/667,
  41343. bottom: 102/943
  41344. }
  41345. },
  41346. },
  41347. [
  41348. {
  41349. name: "Normal",
  41350. height: math.unit(6, "feet"),
  41351. default: true
  41352. },
  41353. ]
  41354. ))
  41355. characterMakers.push(() => makeCharacter(
  41356. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41357. {
  41358. side: {
  41359. height: math.unit(7 + 3/12, "feet"),
  41360. weight: math.unit(312, "lb"),
  41361. name: "Side",
  41362. image: {
  41363. source: "./media/characters/zezo/side.svg",
  41364. extra: 1192/1067,
  41365. bottom: 63/1255
  41366. }
  41367. },
  41368. },
  41369. [
  41370. {
  41371. name: "Normal",
  41372. height: math.unit(7 + 3/12, "feet"),
  41373. default: true
  41374. },
  41375. ]
  41376. ))
  41377. characterMakers.push(() => makeCharacter(
  41378. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41379. {
  41380. front: {
  41381. height: math.unit(5 + 5/12, "feet"),
  41382. weight: math.unit(170, "lb"),
  41383. name: "Front",
  41384. image: {
  41385. source: "./media/characters/mayso/front.svg",
  41386. extra: 1215/1108,
  41387. bottom: 16/1231
  41388. }
  41389. },
  41390. },
  41391. [
  41392. {
  41393. name: "Normal",
  41394. height: math.unit(5 + 5/12, "feet"),
  41395. default: true
  41396. },
  41397. ]
  41398. ))
  41399. characterMakers.push(() => makeCharacter(
  41400. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41401. {
  41402. front: {
  41403. height: math.unit(4 + 3/12, "feet"),
  41404. weight: math.unit(80, "lb"),
  41405. name: "Front",
  41406. image: {
  41407. source: "./media/characters/hess/front.svg",
  41408. extra: 1200/1123,
  41409. bottom: 16/1216
  41410. }
  41411. },
  41412. },
  41413. [
  41414. {
  41415. name: "Normal",
  41416. height: math.unit(4 + 3/12, "feet"),
  41417. default: true
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41423. {
  41424. front: {
  41425. height: math.unit(1.9, "meters"),
  41426. name: "Front",
  41427. image: {
  41428. source: "./media/characters/ashgar/front.svg",
  41429. extra: 1177/1146,
  41430. bottom: 99/1276
  41431. }
  41432. },
  41433. back: {
  41434. height: math.unit(1.9, "meters"),
  41435. name: "Back",
  41436. image: {
  41437. source: "./media/characters/ashgar/back.svg",
  41438. extra: 1201/1183,
  41439. bottom: 53/1254
  41440. }
  41441. },
  41442. feral: {
  41443. height: math.unit(1.4, "meters"),
  41444. name: "Feral",
  41445. image: {
  41446. source: "./media/characters/ashgar/feral.svg",
  41447. extra: 370/345,
  41448. bottom: 45/415
  41449. }
  41450. },
  41451. },
  41452. [
  41453. {
  41454. name: "Normal",
  41455. height: math.unit(1.9, "meters"),
  41456. default: true
  41457. },
  41458. ]
  41459. ))
  41460. characterMakers.push(() => makeCharacter(
  41461. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41462. {
  41463. regular: {
  41464. height: math.unit(6, "feet"),
  41465. weight: math.unit(220, "lb"),
  41466. name: "Regular",
  41467. image: {
  41468. source: "./media/characters/phillip/regular.svg",
  41469. extra: 1373/1277,
  41470. bottom: 75/1448
  41471. }
  41472. },
  41473. dressed: {
  41474. height: math.unit(6, "feet"),
  41475. weight: math.unit(220, "lb"),
  41476. name: "Dressed",
  41477. image: {
  41478. source: "./media/characters/phillip/dressed.svg",
  41479. extra: 1373/1277,
  41480. bottom: 75/1448
  41481. }
  41482. },
  41483. paw: {
  41484. height: math.unit(1.44, "feet"),
  41485. name: "Paw",
  41486. image: {
  41487. source: "./media/characters/phillip/paw.svg"
  41488. }
  41489. },
  41490. },
  41491. [
  41492. {
  41493. name: "Normal",
  41494. height: math.unit(6, "feet"),
  41495. default: true
  41496. },
  41497. ]
  41498. ))
  41499. characterMakers.push(() => makeCharacter(
  41500. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41501. {
  41502. side: {
  41503. height: math.unit(42, "feet"),
  41504. name: "Side",
  41505. image: {
  41506. source: "./media/characters/uvula/side.svg",
  41507. extra: 683/586,
  41508. bottom: 60/743
  41509. }
  41510. },
  41511. front: {
  41512. height: math.unit(42, "feet"),
  41513. name: "Front",
  41514. image: {
  41515. source: "./media/characters/uvula/front.svg",
  41516. extra: 705/613,
  41517. bottom: 54/759
  41518. }
  41519. },
  41520. maw: {
  41521. height: math.unit(23.5, "feet"),
  41522. name: "Maw",
  41523. image: {
  41524. source: "./media/characters/uvula/maw.svg"
  41525. }
  41526. },
  41527. },
  41528. [
  41529. {
  41530. name: "Original Size",
  41531. height: math.unit(14, "inches")
  41532. },
  41533. {
  41534. name: "Human Size",
  41535. height: math.unit(6, "feet")
  41536. },
  41537. {
  41538. name: "Big",
  41539. height: math.unit(42, "feet"),
  41540. default: true
  41541. },
  41542. {
  41543. name: "Bigger",
  41544. height: math.unit(100, "feet")
  41545. },
  41546. ]
  41547. ))
  41548. characterMakers.push(() => makeCharacter(
  41549. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41550. {
  41551. front: {
  41552. height: math.unit(5 + 11/12, "feet"),
  41553. name: "Front",
  41554. image: {
  41555. source: "./media/characters/lannah/front.svg",
  41556. extra: 1208/1113,
  41557. bottom: 97/1305
  41558. }
  41559. },
  41560. },
  41561. [
  41562. {
  41563. name: "Normal",
  41564. height: math.unit(5 + 11/12, "feet"),
  41565. default: true
  41566. },
  41567. ]
  41568. ))
  41569. characterMakers.push(() => makeCharacter(
  41570. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41571. {
  41572. front: {
  41573. height: math.unit(6 + 3/12, "feet"),
  41574. weight: math.unit(3.5, "tons"),
  41575. name: "Front",
  41576. image: {
  41577. source: "./media/characters/emberflame/front.svg",
  41578. extra: 1198/672,
  41579. bottom: 82/1280
  41580. }
  41581. },
  41582. side: {
  41583. height: math.unit(6 + 3/12, "feet"),
  41584. weight: math.unit(3.5, "tons"),
  41585. name: "Side",
  41586. image: {
  41587. source: "./media/characters/emberflame/side.svg",
  41588. extra: 938/527,
  41589. bottom: 56/994
  41590. }
  41591. },
  41592. },
  41593. [
  41594. {
  41595. name: "Normal",
  41596. height: math.unit(6 + 3/12, "feet"),
  41597. default: true
  41598. },
  41599. ]
  41600. ))
  41601. characterMakers.push(() => makeCharacter(
  41602. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41603. {
  41604. side: {
  41605. height: math.unit(17.5, "feet"),
  41606. weight: math.unit(35, "tons"),
  41607. name: "Side",
  41608. image: {
  41609. source: "./media/characters/sophie-ambrose/side.svg",
  41610. extra: 1573/1242,
  41611. bottom: 71/1644
  41612. }
  41613. },
  41614. maw: {
  41615. height: math.unit(7.4, "feet"),
  41616. name: "Maw",
  41617. image: {
  41618. source: "./media/characters/sophie-ambrose/maw.svg"
  41619. }
  41620. },
  41621. },
  41622. [
  41623. {
  41624. name: "Normal",
  41625. height: math.unit(17.5, "feet"),
  41626. default: true
  41627. },
  41628. ]
  41629. ))
  41630. characterMakers.push(() => makeCharacter(
  41631. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41632. {
  41633. front: {
  41634. height: math.unit(280, "feet"),
  41635. weight: math.unit(550, "tons"),
  41636. name: "Front",
  41637. image: {
  41638. source: "./media/characters/king-mugi/front.svg",
  41639. extra: 1102/947,
  41640. bottom: 104/1206
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "King Mugi",
  41647. height: math.unit(280, "feet"),
  41648. default: true
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(64, "meters"),
  41657. name: "Front",
  41658. image: {
  41659. source: "./media/characters/nova-fox/front.svg",
  41660. extra: 1310/1246,
  41661. bottom: 65/1375
  41662. }
  41663. },
  41664. },
  41665. [
  41666. {
  41667. name: "Macro",
  41668. height: math.unit(64, "meters"),
  41669. default: true
  41670. },
  41671. ]
  41672. ))
  41673. characterMakers.push(() => makeCharacter(
  41674. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41675. {
  41676. front: {
  41677. height: math.unit(6 + 3/12, "feet"),
  41678. weight: math.unit(170, "lb"),
  41679. name: "Front",
  41680. image: {
  41681. source: "./media/characters/sam-bat/front.svg",
  41682. extra: 1601/1411,
  41683. bottom: 125/1726
  41684. }
  41685. },
  41686. back: {
  41687. height: math.unit(6 + 3/12, "feet"),
  41688. weight: math.unit(170, "lb"),
  41689. name: "Back",
  41690. image: {
  41691. source: "./media/characters/sam-bat/back.svg",
  41692. extra: 1577/1405,
  41693. bottom: 58/1635
  41694. }
  41695. },
  41696. },
  41697. [
  41698. {
  41699. name: "Normal",
  41700. height: math.unit(6 + 3/12, "feet"),
  41701. default: true
  41702. },
  41703. ]
  41704. ))
  41705. characterMakers.push(() => makeCharacter(
  41706. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41707. {
  41708. front: {
  41709. height: math.unit(59, "feet"),
  41710. weight: math.unit(40000, "lb"),
  41711. name: "Front",
  41712. image: {
  41713. source: "./media/characters/inari/front.svg",
  41714. extra: 1884/1350,
  41715. bottom: 95/1979
  41716. }
  41717. },
  41718. },
  41719. [
  41720. {
  41721. name: "Gigantamax",
  41722. height: math.unit(59, "feet"),
  41723. default: true
  41724. },
  41725. ]
  41726. ))
  41727. characterMakers.push(() => makeCharacter(
  41728. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41729. {
  41730. front: {
  41731. height: math.unit(5 + 8/12, "feet"),
  41732. name: "Front",
  41733. image: {
  41734. source: "./media/characters/elizabeth/front.svg",
  41735. extra: 1395/1298,
  41736. bottom: 54/1449
  41737. }
  41738. },
  41739. mouth: {
  41740. height: math.unit(1.97, "feet"),
  41741. name: "Mouth",
  41742. image: {
  41743. source: "./media/characters/elizabeth/mouth.svg"
  41744. }
  41745. },
  41746. foot: {
  41747. height: math.unit(1.17, "feet"),
  41748. name: "Foot",
  41749. image: {
  41750. source: "./media/characters/elizabeth/foot.svg"
  41751. }
  41752. },
  41753. },
  41754. [
  41755. {
  41756. name: "Normal",
  41757. height: math.unit(5 + 8/12, "feet"),
  41758. default: true
  41759. },
  41760. {
  41761. name: "Minimacro",
  41762. height: math.unit(18, "feet")
  41763. },
  41764. {
  41765. name: "Macro",
  41766. height: math.unit(180, "feet")
  41767. },
  41768. ]
  41769. ))
  41770. characterMakers.push(() => makeCharacter(
  41771. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41772. {
  41773. front: {
  41774. height: math.unit(5 + 2/12, "feet"),
  41775. name: "Front",
  41776. image: {
  41777. source: "./media/characters/october-gossamer/front.svg",
  41778. extra: 505/454,
  41779. bottom: 7/512
  41780. }
  41781. },
  41782. back: {
  41783. height: math.unit(5 + 2/12, "feet"),
  41784. name: "Back",
  41785. image: {
  41786. source: "./media/characters/october-gossamer/back.svg",
  41787. extra: 501/454,
  41788. bottom: 11/512
  41789. }
  41790. },
  41791. },
  41792. [
  41793. {
  41794. name: "Normal",
  41795. height: math.unit(5 + 2/12, "feet"),
  41796. default: true
  41797. },
  41798. ]
  41799. ))
  41800. characterMakers.push(() => makeCharacter(
  41801. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41802. {
  41803. front: {
  41804. height: math.unit(5, "feet"),
  41805. name: "Front",
  41806. image: {
  41807. source: "./media/characters/epiglottis/front.svg",
  41808. extra: 923/849,
  41809. bottom: 17/940
  41810. }
  41811. },
  41812. },
  41813. [
  41814. {
  41815. name: "Original Size",
  41816. height: math.unit(10, "inches")
  41817. },
  41818. {
  41819. name: "Human Size",
  41820. height: math.unit(5, "feet"),
  41821. default: true
  41822. },
  41823. {
  41824. name: "Big",
  41825. height: math.unit(25, "feet")
  41826. },
  41827. {
  41828. name: "Bigger",
  41829. height: math.unit(50, "feet")
  41830. },
  41831. {
  41832. name: "oh lawd",
  41833. height: math.unit(75, "feet")
  41834. },
  41835. ]
  41836. ))
  41837. characterMakers.push(() => makeCharacter(
  41838. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41839. {
  41840. front: {
  41841. height: math.unit(2 + 4/12, "feet"),
  41842. weight: math.unit(60, "lb"),
  41843. name: "Front",
  41844. image: {
  41845. source: "./media/characters/lerm/front.svg",
  41846. extra: 796/790,
  41847. bottom: 79/875
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(2 + 4/12, "feet"),
  41855. default: true
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41861. {
  41862. front: {
  41863. height: math.unit(5.5, "feet"),
  41864. weight: math.unit(130, "lb"),
  41865. name: "Front",
  41866. image: {
  41867. source: "./media/characters/xena-nebadon/front.svg",
  41868. extra: 1828/1730,
  41869. bottom: 79/1907
  41870. }
  41871. },
  41872. },
  41873. [
  41874. {
  41875. name: "Tiny Puppy",
  41876. height: math.unit(3, "inches")
  41877. },
  41878. {
  41879. name: "Normal",
  41880. height: math.unit(5.5, "feet"),
  41881. default: true
  41882. },
  41883. {
  41884. name: "Lotta Lady",
  41885. height: math.unit(12, "feet")
  41886. },
  41887. {
  41888. name: "Pretty Big",
  41889. height: math.unit(100, "feet")
  41890. },
  41891. {
  41892. name: "Big",
  41893. height: math.unit(500, "feet")
  41894. },
  41895. {
  41896. name: "Skyscraper Toys",
  41897. height: math.unit(2500, "feet")
  41898. },
  41899. {
  41900. name: "Plane Catcher",
  41901. height: math.unit(8, "miles")
  41902. },
  41903. {
  41904. name: "Planet Toys",
  41905. height: math.unit(15, "earths")
  41906. },
  41907. {
  41908. name: "Stardust",
  41909. height: math.unit(0.25, "galaxies")
  41910. },
  41911. {
  41912. name: "Snacks",
  41913. height: math.unit(70, "universes")
  41914. },
  41915. ]
  41916. ))
  41917. characterMakers.push(() => makeCharacter(
  41918. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41919. {
  41920. front: {
  41921. height: math.unit(1.6, "meters"),
  41922. weight: math.unit(60, "kg"),
  41923. name: "Front",
  41924. image: {
  41925. source: "./media/characters/bounty/front.svg",
  41926. extra: 1426/1308,
  41927. bottom: 15/1441
  41928. }
  41929. },
  41930. },
  41931. [
  41932. {
  41933. name: "Normal",
  41934. height: math.unit(1.6, "meters"),
  41935. default: true
  41936. },
  41937. {
  41938. name: "Macro",
  41939. height: math.unit(300, "meters")
  41940. },
  41941. ]
  41942. ))
  41943. characterMakers.push(() => makeCharacter(
  41944. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41945. {
  41946. front: {
  41947. height: math.unit(2 + 8/12, "feet"),
  41948. weight: math.unit(15, "lb"),
  41949. name: "Front",
  41950. image: {
  41951. source: "./media/characters/mochi/front.svg",
  41952. extra: 1022/852,
  41953. bottom: 435/1457
  41954. }
  41955. },
  41956. back: {
  41957. height: math.unit(2 + 8/12, "feet"),
  41958. weight: math.unit(15, "lb"),
  41959. name: "Back",
  41960. image: {
  41961. source: "./media/characters/mochi/back.svg",
  41962. extra: 1335/1119,
  41963. bottom: 39/1374
  41964. }
  41965. },
  41966. bird: {
  41967. height: math.unit(2 + 8/12, "feet"),
  41968. weight: math.unit(15, "lb"),
  41969. name: "Bird",
  41970. image: {
  41971. source: "./media/characters/mochi/bird.svg",
  41972. extra: 1251/1113,
  41973. bottom: 178/1429
  41974. }
  41975. },
  41976. kaiju: {
  41977. height: math.unit(154, "feet"),
  41978. weight: math.unit(1e7, "lb"),
  41979. name: "Kaiju",
  41980. image: {
  41981. source: "./media/characters/mochi/kaiju.svg",
  41982. extra: 460/324,
  41983. bottom: 40/500
  41984. }
  41985. },
  41986. head: {
  41987. height: math.unit(1.21, "feet"),
  41988. name: "Head",
  41989. image: {
  41990. source: "./media/characters/mochi/head.svg"
  41991. }
  41992. },
  41993. alternateTail: {
  41994. height: math.unit(2 + 8/12, "feet"),
  41995. weight: math.unit(45, "lb"),
  41996. name: "Alternate Tail",
  41997. image: {
  41998. source: "./media/characters/mochi/alternate-tail.svg",
  41999. extra: 139/76,
  42000. bottom: 45/184
  42001. }
  42002. },
  42003. },
  42004. [
  42005. {
  42006. name: "Micro",
  42007. height: math.unit(2, "inches")
  42008. },
  42009. {
  42010. name: "Normal",
  42011. height: math.unit(2 + 8/12, "feet"),
  42012. default: true
  42013. },
  42014. {
  42015. name: "Macro",
  42016. height: math.unit(106, "feet")
  42017. },
  42018. ]
  42019. ))
  42020. characterMakers.push(() => makeCharacter(
  42021. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42022. {
  42023. front: {
  42024. height: math.unit(5.67, "feet"),
  42025. weight: math.unit(135, "lb"),
  42026. name: "Front",
  42027. image: {
  42028. source: "./media/characters/sarel/front.svg",
  42029. extra: 865/788,
  42030. bottom: 97/962
  42031. }
  42032. },
  42033. back: {
  42034. height: math.unit(5.67, "feet"),
  42035. weight: math.unit(135, "lb"),
  42036. name: "Back",
  42037. image: {
  42038. source: "./media/characters/sarel/back.svg",
  42039. extra: 857/777,
  42040. bottom: 32/889
  42041. }
  42042. },
  42043. chozoan: {
  42044. height: math.unit(5.67, "feet"),
  42045. weight: math.unit(135, "lb"),
  42046. name: "Chozoan",
  42047. image: {
  42048. source: "./media/characters/sarel/chozoan.svg",
  42049. extra: 865/788,
  42050. bottom: 97/962
  42051. }
  42052. },
  42053. current: {
  42054. height: math.unit(5.67, "feet"),
  42055. weight: math.unit(135, "lb"),
  42056. name: "Current",
  42057. image: {
  42058. source: "./media/characters/sarel/current.svg",
  42059. extra: 865/788,
  42060. bottom: 97/962
  42061. }
  42062. },
  42063. head: {
  42064. height: math.unit(1.77, "feet"),
  42065. name: "Head",
  42066. image: {
  42067. source: "./media/characters/sarel/head.svg"
  42068. }
  42069. },
  42070. claws: {
  42071. height: math.unit(1.8, "feet"),
  42072. name: "Claws",
  42073. image: {
  42074. source: "./media/characters/sarel/claws.svg"
  42075. }
  42076. },
  42077. clawsAlt: {
  42078. height: math.unit(1.8, "feet"),
  42079. name: "Claws-alt",
  42080. image: {
  42081. source: "./media/characters/sarel/claws-alt.svg"
  42082. }
  42083. },
  42084. },
  42085. [
  42086. {
  42087. name: "Normal",
  42088. height: math.unit(5.67, "feet"),
  42089. default: true
  42090. },
  42091. ]
  42092. ))
  42093. characterMakers.push(() => makeCharacter(
  42094. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42095. {
  42096. front: {
  42097. height: math.unit(5500, "feet"),
  42098. name: "Front",
  42099. image: {
  42100. source: "./media/characters/alyonia/front.svg",
  42101. extra: 1200/1135,
  42102. bottom: 29/1229
  42103. }
  42104. },
  42105. back: {
  42106. height: math.unit(5500, "feet"),
  42107. name: "Back",
  42108. image: {
  42109. source: "./media/characters/alyonia/back.svg",
  42110. extra: 1205/1138,
  42111. bottom: 10/1215
  42112. }
  42113. },
  42114. },
  42115. [
  42116. {
  42117. name: "Small",
  42118. height: math.unit(10, "feet")
  42119. },
  42120. {
  42121. name: "Macro",
  42122. height: math.unit(500, "feet")
  42123. },
  42124. {
  42125. name: "Mega Macro",
  42126. height: math.unit(5500, "feet"),
  42127. default: true
  42128. },
  42129. {
  42130. name: "Mega Macro+",
  42131. height: math.unit(500000, "feet")
  42132. },
  42133. {
  42134. name: "Giga Macro",
  42135. height: math.unit(3000, "miles")
  42136. },
  42137. {
  42138. name: "Tera Macro",
  42139. height: math.unit(2.8e6, "miles")
  42140. },
  42141. {
  42142. name: "Galactic",
  42143. height: math.unit(120000, "lightyears")
  42144. },
  42145. ]
  42146. ))
  42147. characterMakers.push(() => makeCharacter(
  42148. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42149. {
  42150. werewolf: {
  42151. height: math.unit(8, "feet"),
  42152. weight: math.unit(425, "lb"),
  42153. name: "Werewolf",
  42154. image: {
  42155. source: "./media/characters/autumn/werewolf.svg",
  42156. extra: 2154/2031,
  42157. bottom: 160/2314
  42158. }
  42159. },
  42160. human: {
  42161. height: math.unit(5 + 8/12, "feet"),
  42162. weight: math.unit(150, "lb"),
  42163. name: "Human",
  42164. image: {
  42165. source: "./media/characters/autumn/human.svg",
  42166. extra: 1200/1149,
  42167. bottom: 30/1230
  42168. }
  42169. },
  42170. },
  42171. [
  42172. {
  42173. name: "Normal",
  42174. height: math.unit(8, "feet"),
  42175. default: true
  42176. },
  42177. ]
  42178. ))
  42179. characterMakers.push(() => makeCharacter(
  42180. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42181. {
  42182. front: {
  42183. height: math.unit(8 + 5/12, "feet"),
  42184. weight: math.unit(825, "lb"),
  42185. name: "Front",
  42186. image: {
  42187. source: "./media/characters/cobalt-charizard/front.svg",
  42188. extra: 1268/1155,
  42189. bottom: 122/1390
  42190. }
  42191. },
  42192. side: {
  42193. height: math.unit(8 + 5/12, "feet"),
  42194. weight: math.unit(825, "lb"),
  42195. name: "Side",
  42196. image: {
  42197. source: "./media/characters/cobalt-charizard/side.svg",
  42198. extra: 1348/1257,
  42199. bottom: 58/1406
  42200. }
  42201. },
  42202. gMax: {
  42203. height: math.unit(134 + 11/12, "feet"),
  42204. name: "G-Max",
  42205. image: {
  42206. source: "./media/characters/cobalt-charizard/g-max.svg",
  42207. extra: 1835/1541,
  42208. bottom: 151/1986
  42209. }
  42210. },
  42211. },
  42212. [
  42213. {
  42214. name: "Normal",
  42215. height: math.unit(8 + 5/12, "feet"),
  42216. default: true
  42217. },
  42218. ]
  42219. ))
  42220. characterMakers.push(() => makeCharacter(
  42221. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42222. {
  42223. front: {
  42224. height: math.unit(6 + 3/12, "feet"),
  42225. weight: math.unit(210, "lb"),
  42226. name: "Front",
  42227. image: {
  42228. source: "./media/characters/stella/front.svg",
  42229. extra: 3549/3335,
  42230. bottom: 51/3600
  42231. }
  42232. },
  42233. },
  42234. [
  42235. {
  42236. name: "Normal",
  42237. height: math.unit(6 + 3/12, "feet"),
  42238. default: true
  42239. },
  42240. ]
  42241. ))
  42242. characterMakers.push(() => makeCharacter(
  42243. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42244. {
  42245. front: {
  42246. height: math.unit(5, "feet"),
  42247. weight: math.unit(90, "lb"),
  42248. name: "Front",
  42249. image: {
  42250. source: "./media/characters/riley-bishop/front.svg",
  42251. extra: 1450/1428,
  42252. bottom: 152/1602
  42253. }
  42254. },
  42255. },
  42256. [
  42257. {
  42258. name: "Normal",
  42259. height: math.unit(5, "feet"),
  42260. default: true
  42261. },
  42262. ]
  42263. ))
  42264. characterMakers.push(() => makeCharacter(
  42265. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42266. {
  42267. side: {
  42268. height: math.unit(8 + 2/12, "feet"),
  42269. weight: math.unit(500, "kg"),
  42270. name: "Side",
  42271. image: {
  42272. source: "./media/characters/theo-arcanine/side.svg",
  42273. extra: 1342/1074,
  42274. bottom: 111/1453
  42275. }
  42276. },
  42277. },
  42278. [
  42279. {
  42280. name: "Normal",
  42281. height: math.unit(8 + 2/12, "feet"),
  42282. default: true
  42283. },
  42284. ]
  42285. ))
  42286. characterMakers.push(() => makeCharacter(
  42287. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42288. {
  42289. front: {
  42290. height: math.unit(4, "feet"),
  42291. name: "Front",
  42292. image: {
  42293. source: "./media/characters/kali/front.svg",
  42294. extra: 1921/1357,
  42295. bottom: 70/1991
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Normal",
  42302. height: math.unit(4, "feet"),
  42303. default: true
  42304. },
  42305. {
  42306. name: "Macro",
  42307. height: math.unit(32, "meters")
  42308. },
  42309. {
  42310. name: "Macro+",
  42311. height: math.unit(150, "meters")
  42312. },
  42313. {
  42314. name: "Megamacro",
  42315. height: math.unit(7500, "meters")
  42316. },
  42317. {
  42318. name: "Megamacro+",
  42319. height: math.unit(80, "kilometers")
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42325. {
  42326. side: {
  42327. height: math.unit(5 + 11/12, "feet"),
  42328. weight: math.unit(236, "lb"),
  42329. name: "Side",
  42330. image: {
  42331. source: "./media/characters/gapp/side.svg",
  42332. extra: 775/340,
  42333. bottom: 58/833
  42334. }
  42335. },
  42336. mouth: {
  42337. height: math.unit(2.98, "feet"),
  42338. name: "Mouth",
  42339. image: {
  42340. source: "./media/characters/gapp/mouth.svg"
  42341. }
  42342. },
  42343. },
  42344. [
  42345. {
  42346. name: "Normal",
  42347. height: math.unit(5 + 1/12, "feet"),
  42348. default: true
  42349. },
  42350. ]
  42351. ))
  42352. characterMakers.push(() => makeCharacter(
  42353. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42354. {
  42355. front: {
  42356. height: math.unit(6, "feet"),
  42357. name: "Front",
  42358. image: {
  42359. source: "./media/characters/persephone/front.svg",
  42360. extra: 1895/1717,
  42361. bottom: 96/1991
  42362. }
  42363. },
  42364. back: {
  42365. height: math.unit(6, "feet"),
  42366. name: "Back",
  42367. image: {
  42368. source: "./media/characters/persephone/back.svg",
  42369. extra: 1868/1679,
  42370. bottom: 26/1894
  42371. }
  42372. },
  42373. casual: {
  42374. height: math.unit(6, "feet"),
  42375. name: "Casual",
  42376. image: {
  42377. source: "./media/characters/persephone/casual.svg",
  42378. extra: 1713/1541,
  42379. bottom: 76/1789
  42380. }
  42381. },
  42382. },
  42383. [
  42384. {
  42385. name: "Human Size",
  42386. height: math.unit(6, "feet"),
  42387. default: true
  42388. },
  42389. {
  42390. name: "Galaxy Brain",
  42391. height: math.unit(1, "zettameter")
  42392. },
  42393. ]
  42394. ))
  42395. characterMakers.push(() => makeCharacter(
  42396. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42397. {
  42398. front: {
  42399. height: math.unit(1.85, "meters"),
  42400. name: "Front",
  42401. image: {
  42402. source: "./media/characters/riley-foxthing/front.svg",
  42403. extra: 1495/1354,
  42404. bottom: 122/1617
  42405. }
  42406. },
  42407. frontAlt: {
  42408. height: math.unit(1.85, "meters"),
  42409. name: "Front (Alt)",
  42410. image: {
  42411. source: "./media/characters/riley-foxthing/front-alt.svg",
  42412. extra: 1572/1389,
  42413. bottom: 116/1688
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Normal Sized",
  42420. height: math.unit(1.85, "meters"),
  42421. default: true
  42422. },
  42423. {
  42424. name: "Quite Sizable",
  42425. height: math.unit(5, "meters")
  42426. },
  42427. {
  42428. name: "Rather Large",
  42429. height: math.unit(20, "meters")
  42430. },
  42431. {
  42432. name: "Macro",
  42433. height: math.unit(450, "meters")
  42434. },
  42435. {
  42436. name: "Giga",
  42437. height: math.unit(5, "km")
  42438. },
  42439. ]
  42440. ))
  42441. characterMakers.push(() => makeCharacter(
  42442. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42443. {
  42444. front: {
  42445. height: math.unit(6, "feet"),
  42446. weight: math.unit(200, "lb"),
  42447. name: "Front",
  42448. image: {
  42449. source: "./media/characters/blizzard/front.svg",
  42450. extra: 1136/990,
  42451. bottom: 136/1272
  42452. }
  42453. },
  42454. back: {
  42455. height: math.unit(6, "feet"),
  42456. weight: math.unit(200, "lb"),
  42457. name: "Back",
  42458. image: {
  42459. source: "./media/characters/blizzard/back.svg",
  42460. extra: 1175/1034,
  42461. bottom: 97/1272
  42462. }
  42463. },
  42464. sitting: {
  42465. height: math.unit(3.725, "feet"),
  42466. weight: math.unit(200, "lb"),
  42467. name: "Sitting",
  42468. image: {
  42469. source: "./media/characters/blizzard/sitting.svg",
  42470. extra: 581/485,
  42471. bottom: 90/671
  42472. }
  42473. },
  42474. frontWizard: {
  42475. height: math.unit(7.9, "feet"),
  42476. weight: math.unit(200, "lb"),
  42477. name: "Front (Wizard)",
  42478. image: {
  42479. source: "./media/characters/blizzard/front-wizard.svg"
  42480. }
  42481. },
  42482. backWizard: {
  42483. height: math.unit(7.9, "feet"),
  42484. weight: math.unit(200, "lb"),
  42485. name: "Back (Wizard)",
  42486. image: {
  42487. source: "./media/characters/blizzard/back-wizard.svg"
  42488. }
  42489. },
  42490. frontNsfw: {
  42491. height: math.unit(6, "feet"),
  42492. weight: math.unit(200, "lb"),
  42493. name: "Front (NSFW)",
  42494. image: {
  42495. source: "./media/characters/blizzard/front-nsfw.svg",
  42496. extra: 1136/990,
  42497. bottom: 136/1272
  42498. }
  42499. },
  42500. backNsfw: {
  42501. height: math.unit(6, "feet"),
  42502. weight: math.unit(200, "lb"),
  42503. name: "Back (NSFW)",
  42504. image: {
  42505. source: "./media/characters/blizzard/back-nsfw.svg",
  42506. extra: 1175/1034,
  42507. bottom: 97/1272
  42508. }
  42509. },
  42510. sittingNsfw: {
  42511. height: math.unit(3.725, "feet"),
  42512. weight: math.unit(200, "lb"),
  42513. name: "Sitting (NSFW)",
  42514. image: {
  42515. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42516. extra: 581/485,
  42517. bottom: 90/671
  42518. }
  42519. },
  42520. wizardFrontNsfw: {
  42521. height: math.unit(7.9, "feet"),
  42522. weight: math.unit(200, "lb"),
  42523. name: "Wizard (Front, NSFW)",
  42524. image: {
  42525. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42526. }
  42527. },
  42528. },
  42529. [
  42530. {
  42531. name: "Normal",
  42532. height: math.unit(6, "feet"),
  42533. default: true
  42534. },
  42535. ]
  42536. ))
  42537. //characters
  42538. function makeCharacters() {
  42539. const results = [];
  42540. characterMakers.forEach(character => {
  42541. results.push(character());
  42542. });
  42543. return results;
  42544. }