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

42474 строки
1.0 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "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. }
  1735. //species
  1736. function getSpeciesInfo(speciesList) {
  1737. let result = new Set();
  1738. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1739. result.add(entry)
  1740. });
  1741. return Array.from(result);
  1742. };
  1743. function getSpeciesInfoHelper(species) {
  1744. if (!speciesData[species]) {
  1745. console.warn(species + " doesn't exist");
  1746. return [];
  1747. }
  1748. if (speciesData[species].parents) {
  1749. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1750. } else {
  1751. return [species];
  1752. }
  1753. }
  1754. characterMakers.push(() => makeCharacter(
  1755. {
  1756. name: "Fen",
  1757. species: ["crux"],
  1758. description: {
  1759. title: "Bio",
  1760. text: "Very furry. Sheds on everything."
  1761. },
  1762. tags: [
  1763. "anthro",
  1764. "goo"
  1765. ]
  1766. },
  1767. {
  1768. back: {
  1769. height: math.unit(2.2428, "meter"),
  1770. weight: math.unit(124.738, "kg"),
  1771. name: "Back",
  1772. image: {
  1773. source: "./media/characters/fen/back.svg",
  1774. },
  1775. info: {
  1776. description: {
  1777. mode: "append",
  1778. text: "\n\nHe is not currently looking at you."
  1779. }
  1780. }
  1781. },
  1782. full: {
  1783. height: math.unit(1.34, "meter"),
  1784. weight: math.unit(225, "kg"),
  1785. name: "Full",
  1786. image: {
  1787. source: "./media/characters/fen/full.svg"
  1788. },
  1789. info: {
  1790. description: {
  1791. mode: "append",
  1792. text: "\n\nMunch."
  1793. }
  1794. }
  1795. },
  1796. kneeling: {
  1797. height: math.unit(5.4, "feet"),
  1798. weight: math.unit(124.738, "kg"),
  1799. name: "Kneeling",
  1800. image: {
  1801. source: "./media/characters/fen/kneeling.svg",
  1802. extra: 563 / 507
  1803. }
  1804. },
  1805. goo: {
  1806. height: math.unit(2.8, "feet"),
  1807. weight: math.unit(125, "kg"),
  1808. capacity: math.unit(1, "people"),
  1809. name: "Goo",
  1810. image: {
  1811. source: "./media/characters/fen/goo.svg",
  1812. bottom: 116 / 613
  1813. }
  1814. },
  1815. lounging: {
  1816. height: math.unit(6.5, "feet"),
  1817. weight: math.unit(125, "kg"),
  1818. name: "Lounging",
  1819. image: {
  1820. source: "./media/characters/fen/lounging.svg"
  1821. }
  1822. },
  1823. },
  1824. [
  1825. {
  1826. name: "Normal",
  1827. height: math.unit(2.2428, "meter")
  1828. },
  1829. {
  1830. name: "Big",
  1831. height: math.unit(12, "feet")
  1832. },
  1833. {
  1834. name: "Minimacro",
  1835. height: math.unit(40, "feet"),
  1836. default: true,
  1837. info: {
  1838. description: {
  1839. mode: "append",
  1840. text: "\n\nTOO DAMN BIG"
  1841. }
  1842. }
  1843. },
  1844. {
  1845. name: "Macro",
  1846. height: math.unit(100, "feet"),
  1847. info: {
  1848. description: {
  1849. mode: "append",
  1850. text: "\n\nTOO DAMN BIG"
  1851. }
  1852. }
  1853. },
  1854. {
  1855. name: "Macro+",
  1856. height: math.unit(300, "feet")
  1857. },
  1858. {
  1859. name: "Megamacro",
  1860. height: math.unit(2, "miles")
  1861. }
  1862. ]
  1863. ))
  1864. characterMakers.push(() => makeCharacter(
  1865. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1866. {
  1867. front: {
  1868. height: math.unit(183, "cm"),
  1869. weight: math.unit(80, "kg"),
  1870. name: "Front",
  1871. image: {
  1872. source: "./media/characters/sofia-fluttertail/front.svg",
  1873. bottom: 0.01,
  1874. extra: 2154 / 2081
  1875. }
  1876. },
  1877. frontAlt: {
  1878. height: math.unit(183, "cm"),
  1879. weight: math.unit(80, "kg"),
  1880. name: "Front (alt)",
  1881. image: {
  1882. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1883. }
  1884. },
  1885. back: {
  1886. height: math.unit(183, "cm"),
  1887. weight: math.unit(80, "kg"),
  1888. name: "Back",
  1889. image: {
  1890. source: "./media/characters/sofia-fluttertail/back.svg"
  1891. }
  1892. },
  1893. kneeling: {
  1894. height: math.unit(125, "cm"),
  1895. weight: math.unit(80, "kg"),
  1896. name: "Kneeling",
  1897. image: {
  1898. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1899. extra: 1033 / 977,
  1900. bottom: 23.7 / 1057
  1901. }
  1902. },
  1903. maw: {
  1904. height: math.unit(183 / 5, "cm"),
  1905. name: "Maw",
  1906. image: {
  1907. source: "./media/characters/sofia-fluttertail/maw.svg"
  1908. }
  1909. },
  1910. mawcloseup: {
  1911. height: math.unit(183 / 5 * 0.41, "cm"),
  1912. name: "Maw (Closeup)",
  1913. image: {
  1914. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1915. }
  1916. },
  1917. paws: {
  1918. height: math.unit(1.17, "feet"),
  1919. name: "Paws",
  1920. image: {
  1921. source: "./media/characters/sofia-fluttertail/paws.svg",
  1922. extra: 851 / 851,
  1923. bottom: 17 / 868
  1924. }
  1925. },
  1926. },
  1927. [
  1928. {
  1929. name: "Normal",
  1930. height: math.unit(1.83, "meter")
  1931. },
  1932. {
  1933. name: "Size Thief",
  1934. height: math.unit(18, "feet")
  1935. },
  1936. {
  1937. name: "50 Foot Collie",
  1938. height: math.unit(50, "feet")
  1939. },
  1940. {
  1941. name: "Macro",
  1942. height: math.unit(96, "feet"),
  1943. default: true
  1944. },
  1945. {
  1946. name: "Megamerger",
  1947. height: math.unit(650, "feet")
  1948. },
  1949. ]
  1950. ))
  1951. characterMakers.push(() => makeCharacter(
  1952. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1953. {
  1954. front: {
  1955. height: math.unit(7, "feet"),
  1956. weight: math.unit(100, "kg"),
  1957. name: "Front",
  1958. image: {
  1959. source: "./media/characters/march/front.svg",
  1960. extra: 1992/1851,
  1961. bottom: 39/2031
  1962. }
  1963. },
  1964. foot: {
  1965. height: math.unit(0.9, "feet"),
  1966. name: "Foot",
  1967. image: {
  1968. source: "./media/characters/march/foot.svg"
  1969. }
  1970. },
  1971. },
  1972. [
  1973. {
  1974. name: "Normal",
  1975. height: math.unit(7.9, "feet")
  1976. },
  1977. {
  1978. name: "Macro",
  1979. height: math.unit(220, "meters")
  1980. },
  1981. {
  1982. name: "Megamacro",
  1983. height: math.unit(2.98, "km"),
  1984. default: true
  1985. },
  1986. {
  1987. name: "Gigamacro",
  1988. height: math.unit(15963, "km")
  1989. },
  1990. {
  1991. name: "Teramacro",
  1992. height: math.unit(2980000000, "km")
  1993. },
  1994. {
  1995. name: "Examacro",
  1996. height: math.unit(250, "parsecs")
  1997. },
  1998. ]
  1999. ))
  2000. characterMakers.push(() => makeCharacter(
  2001. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2002. {
  2003. front: {
  2004. height: math.unit(6, "feet"),
  2005. weight: math.unit(60, "kg"),
  2006. name: "Front",
  2007. image: {
  2008. source: "./media/characters/noir/front.svg",
  2009. extra: 1,
  2010. bottom: 0.032
  2011. }
  2012. },
  2013. },
  2014. [
  2015. {
  2016. name: "Normal",
  2017. height: math.unit(6.6, "feet")
  2018. },
  2019. {
  2020. name: "Macro",
  2021. height: math.unit(500, "feet")
  2022. },
  2023. {
  2024. name: "Megamacro",
  2025. height: math.unit(2.5, "km"),
  2026. default: true
  2027. },
  2028. {
  2029. name: "Gigamacro",
  2030. height: math.unit(22500, "km")
  2031. },
  2032. {
  2033. name: "Teramacro",
  2034. height: math.unit(2500000000, "km")
  2035. },
  2036. {
  2037. name: "Examacro",
  2038. height: math.unit(200, "parsecs")
  2039. },
  2040. ]
  2041. ))
  2042. characterMakers.push(() => makeCharacter(
  2043. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2044. {
  2045. front: {
  2046. height: math.unit(7, "feet"),
  2047. weight: math.unit(100, "kg"),
  2048. name: "Front",
  2049. image: {
  2050. source: "./media/characters/okuri/front.svg",
  2051. extra: 1,
  2052. bottom: 0.037
  2053. }
  2054. },
  2055. back: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(100, "kg"),
  2058. name: "Back",
  2059. image: {
  2060. source: "./media/characters/okuri/back.svg",
  2061. extra: 1,
  2062. bottom: 0.007
  2063. }
  2064. },
  2065. },
  2066. [
  2067. {
  2068. name: "Megamacro",
  2069. height: math.unit(100, "miles"),
  2070. default: true
  2071. },
  2072. ]
  2073. ))
  2074. characterMakers.push(() => makeCharacter(
  2075. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2076. {
  2077. front: {
  2078. height: math.unit(7, "feet"),
  2079. weight: math.unit(100, "kg"),
  2080. name: "Front",
  2081. image: {
  2082. source: "./media/characters/manny/front.svg",
  2083. extra: 1,
  2084. bottom: 0.06
  2085. }
  2086. },
  2087. back: {
  2088. height: math.unit(7, "feet"),
  2089. weight: math.unit(100, "kg"),
  2090. name: "Back",
  2091. image: {
  2092. source: "./media/characters/manny/back.svg",
  2093. extra: 1,
  2094. bottom: 0.014
  2095. }
  2096. },
  2097. },
  2098. [
  2099. {
  2100. name: "Normal",
  2101. height: math.unit(7, "feet"),
  2102. },
  2103. {
  2104. name: "Macro",
  2105. height: math.unit(78, "feet"),
  2106. default: true
  2107. },
  2108. {
  2109. name: "Macro+",
  2110. height: math.unit(300, "meters")
  2111. },
  2112. {
  2113. name: "Macro++",
  2114. height: math.unit(2400, "meters")
  2115. },
  2116. {
  2117. name: "Megamacro",
  2118. height: math.unit(5167, "meters")
  2119. },
  2120. {
  2121. name: "Gigamacro",
  2122. height: math.unit(41769, "miles")
  2123. },
  2124. ]
  2125. ))
  2126. characterMakers.push(() => makeCharacter(
  2127. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2128. {
  2129. front: {
  2130. height: math.unit(7, "feet"),
  2131. weight: math.unit(100, "kg"),
  2132. name: "Front",
  2133. image: {
  2134. source: "./media/characters/adake/front-1.svg"
  2135. }
  2136. },
  2137. frontAlt: {
  2138. height: math.unit(7, "feet"),
  2139. weight: math.unit(100, "kg"),
  2140. name: "Front (Alt)",
  2141. image: {
  2142. source: "./media/characters/adake/front-2.svg",
  2143. extra: 1,
  2144. bottom: 0.01
  2145. }
  2146. },
  2147. back: {
  2148. height: math.unit(7, "feet"),
  2149. weight: math.unit(100, "kg"),
  2150. name: "Back",
  2151. image: {
  2152. source: "./media/characters/adake/back.svg",
  2153. }
  2154. },
  2155. kneel: {
  2156. height: math.unit(5.385, "feet"),
  2157. weight: math.unit(100, "kg"),
  2158. name: "Kneeling",
  2159. image: {
  2160. source: "./media/characters/adake/kneel.svg",
  2161. bottom: 0.052
  2162. }
  2163. },
  2164. },
  2165. [
  2166. {
  2167. name: "Normal",
  2168. height: math.unit(7, "feet"),
  2169. },
  2170. {
  2171. name: "Macro",
  2172. height: math.unit(78, "feet"),
  2173. default: true
  2174. },
  2175. {
  2176. name: "Macro+",
  2177. height: math.unit(300, "meters")
  2178. },
  2179. {
  2180. name: "Macro++",
  2181. height: math.unit(2400, "meters")
  2182. },
  2183. {
  2184. name: "Megamacro",
  2185. height: math.unit(5167, "meters")
  2186. },
  2187. {
  2188. name: "Gigamacro",
  2189. height: math.unit(41769, "miles")
  2190. },
  2191. ]
  2192. ))
  2193. characterMakers.push(() => makeCharacter(
  2194. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2195. {
  2196. front: {
  2197. height: math.unit(1.65, "meters"),
  2198. weight: math.unit(50, "kg"),
  2199. name: "Front",
  2200. image: {
  2201. source: "./media/characters/elijah/front.svg",
  2202. extra: 858 / 830,
  2203. bottom: 95.5 / 953.8559
  2204. }
  2205. },
  2206. back: {
  2207. height: math.unit(1.65, "meters"),
  2208. weight: math.unit(50, "kg"),
  2209. name: "Back",
  2210. image: {
  2211. source: "./media/characters/elijah/back.svg",
  2212. extra: 895 / 850,
  2213. bottom: 5.3 / 897.956
  2214. }
  2215. },
  2216. frontNsfw: {
  2217. height: math.unit(1.65, "meters"),
  2218. weight: math.unit(50, "kg"),
  2219. name: "Front (NSFW)",
  2220. image: {
  2221. source: "./media/characters/elijah/front-nsfw.svg",
  2222. extra: 858 / 830,
  2223. bottom: 95.5 / 953.8559
  2224. }
  2225. },
  2226. backNsfw: {
  2227. height: math.unit(1.65, "meters"),
  2228. weight: math.unit(50, "kg"),
  2229. name: "Back (NSFW)",
  2230. image: {
  2231. source: "./media/characters/elijah/back-nsfw.svg",
  2232. extra: 895 / 850,
  2233. bottom: 5.3 / 897.956
  2234. }
  2235. },
  2236. dick: {
  2237. height: math.unit(1, "feet"),
  2238. name: "Dick",
  2239. image: {
  2240. source: "./media/characters/elijah/dick.svg"
  2241. }
  2242. },
  2243. beakOpen: {
  2244. height: math.unit(1.25, "feet"),
  2245. name: "Beak (Open)",
  2246. image: {
  2247. source: "./media/characters/elijah/beak-open.svg"
  2248. }
  2249. },
  2250. beakShut: {
  2251. height: math.unit(1.25, "feet"),
  2252. name: "Beak (Shut)",
  2253. image: {
  2254. source: "./media/characters/elijah/beak-shut.svg"
  2255. }
  2256. },
  2257. footFlexing: {
  2258. height: math.unit(1.61, "feet"),
  2259. name: "Foot (Flexing)",
  2260. image: {
  2261. source: "./media/characters/elijah/foot-flexing.svg"
  2262. }
  2263. },
  2264. footStepping: {
  2265. height: math.unit(1.44, "feet"),
  2266. name: "Foot (Stepping)",
  2267. image: {
  2268. source: "./media/characters/elijah/foot-stepping.svg"
  2269. }
  2270. },
  2271. plantigradeLeg: {
  2272. height: math.unit(2.34, "feet"),
  2273. name: "Plantigrade Leg",
  2274. image: {
  2275. source: "./media/characters/elijah/plantigrade-leg.svg"
  2276. }
  2277. },
  2278. plantigradeFootLeft: {
  2279. height: math.unit(0.9, "feet"),
  2280. name: "Plantigrade Foot (Left)",
  2281. image: {
  2282. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2283. }
  2284. },
  2285. plantigradeFootRight: {
  2286. height: math.unit(0.9, "feet"),
  2287. name: "Plantigrade Foot (Right)",
  2288. image: {
  2289. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Normal",
  2296. height: math.unit(1.65, "meters")
  2297. },
  2298. {
  2299. name: "Macro",
  2300. height: math.unit(55, "meters"),
  2301. default: true
  2302. },
  2303. {
  2304. name: "Macro+",
  2305. height: math.unit(105, "meters")
  2306. },
  2307. ]
  2308. ))
  2309. characterMakers.push(() => makeCharacter(
  2310. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2311. {
  2312. front: {
  2313. height: math.unit(11, "feet"),
  2314. weight: math.unit(320, "kg"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/rai/front.svg",
  2318. extra: 1802/1696,
  2319. bottom: 68/1870
  2320. }
  2321. },
  2322. frontDressed: {
  2323. height: math.unit(11, "feet"),
  2324. weight: math.unit(320, "kg"),
  2325. name: "Front (Dressed)",
  2326. image: {
  2327. source: "./media/characters/rai/front-dressed.svg",
  2328. extra: 1802/1696,
  2329. bottom: 68/1870
  2330. }
  2331. },
  2332. side: {
  2333. height: math.unit(11, "feet"),
  2334. weight: math.unit(320, "kg"),
  2335. name: "Side",
  2336. image: {
  2337. source: "./media/characters/rai/side.svg",
  2338. extra: 1789/1710,
  2339. bottom: 115/1904
  2340. }
  2341. },
  2342. back: {
  2343. height: math.unit(11, "feet"),
  2344. weight: math.unit(320, "kg"),
  2345. name: "Back",
  2346. image: {
  2347. source: "./media/characters/rai/back.svg",
  2348. extra: 1770/1707,
  2349. bottom: 28/1798
  2350. }
  2351. },
  2352. feral: {
  2353. height: math.unit(11, "feet"),
  2354. weight: math.unit(640, "kg"),
  2355. name: "Feral",
  2356. image: {
  2357. source: "./media/characters/rai/feral.svg",
  2358. extra: 1035/642,
  2359. bottom: 86/1121
  2360. }
  2361. },
  2362. dragon: {
  2363. height: math.unit(23, "feet"),
  2364. weight: math.unit(50000, "lb"),
  2365. name: "Dragon",
  2366. image: {
  2367. source: "./media/characters/rai/dragon.svg",
  2368. extra: 2498 / 2030,
  2369. bottom: 85.2 / 2584
  2370. }
  2371. },
  2372. maw: {
  2373. height: math.unit(6 / 3.81416, "feet"),
  2374. name: "Maw",
  2375. image: {
  2376. source: "./media/characters/rai/maw.svg"
  2377. }
  2378. },
  2379. },
  2380. [
  2381. {
  2382. name: "Normal",
  2383. height: math.unit(11, "feet")
  2384. },
  2385. {
  2386. name: "Macro",
  2387. height: math.unit(302, "feet"),
  2388. default: true
  2389. },
  2390. ]
  2391. ))
  2392. characterMakers.push(() => makeCharacter(
  2393. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2394. {
  2395. frontDressed: {
  2396. height: math.unit(216, "feet"),
  2397. weight: math.unit(7000000, "lb"),
  2398. name: "Front (Dressed)",
  2399. image: {
  2400. source: "./media/characters/jazzy/front-dressed.svg",
  2401. extra: 2738 / 2651,
  2402. bottom: 41.8 / 2786
  2403. }
  2404. },
  2405. backDressed: {
  2406. height: math.unit(216, "feet"),
  2407. weight: math.unit(7000000, "lb"),
  2408. name: "Back (Dressed)",
  2409. image: {
  2410. source: "./media/characters/jazzy/back-dressed.svg",
  2411. extra: 2775 / 2673,
  2412. bottom: 36.8 / 2817
  2413. }
  2414. },
  2415. front: {
  2416. height: math.unit(216, "feet"),
  2417. weight: math.unit(7000000, "lb"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/jazzy/front.svg",
  2421. extra: 2738 / 2651,
  2422. bottom: 41.8 / 2786
  2423. }
  2424. },
  2425. back: {
  2426. height: math.unit(216, "feet"),
  2427. weight: math.unit(7000000, "lb"),
  2428. name: "Back",
  2429. image: {
  2430. source: "./media/characters/jazzy/back.svg",
  2431. extra: 2775 / 2673,
  2432. bottom: 36.8 / 2817
  2433. }
  2434. },
  2435. maw: {
  2436. height: math.unit(20, "feet"),
  2437. name: "Maw",
  2438. image: {
  2439. source: "./media/characters/jazzy/maw.svg"
  2440. }
  2441. },
  2442. paws: {
  2443. height: math.unit(27.5, "feet"),
  2444. name: "Paws",
  2445. image: {
  2446. source: "./media/characters/jazzy/paws.svg"
  2447. }
  2448. },
  2449. eye: {
  2450. height: math.unit(4.4, "feet"),
  2451. name: "Eye",
  2452. image: {
  2453. source: "./media/characters/jazzy/eye.svg"
  2454. }
  2455. },
  2456. droneOffense: {
  2457. height: math.unit(9.5, "inches"),
  2458. name: "Drone (Offense)",
  2459. image: {
  2460. source: "./media/characters/jazzy/drone-offense.svg"
  2461. }
  2462. },
  2463. droneRecon: {
  2464. height: math.unit(9.5, "inches"),
  2465. name: "Drone (Recon)",
  2466. image: {
  2467. source: "./media/characters/jazzy/drone-recon.svg"
  2468. }
  2469. },
  2470. droneDefense: {
  2471. height: math.unit(9.5, "inches"),
  2472. name: "Drone (Defense)",
  2473. image: {
  2474. source: "./media/characters/jazzy/drone-defense.svg"
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(216, "feet"),
  2482. default: true
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(9 + 6/12, "feet"),
  2491. weight: math.unit(700, "lb"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/flamm/front.svg",
  2495. extra: 1751/1632,
  2496. bottom: 46/1797
  2497. }
  2498. },
  2499. buff: {
  2500. height: math.unit(9 + 6/12, "feet"),
  2501. weight: math.unit(950, "lb"),
  2502. name: "Buff",
  2503. image: {
  2504. source: "./media/characters/flamm/buff.svg",
  2505. extra: 3018/2874,
  2506. bottom: 221/3239
  2507. }
  2508. },
  2509. },
  2510. [
  2511. {
  2512. name: "Normal",
  2513. height: math.unit(9.5, "feet")
  2514. },
  2515. {
  2516. name: "Macro",
  2517. height: math.unit(200, "feet"),
  2518. default: true
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(5 + 3/12, "feet"),
  2527. weight: math.unit(60, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/zephiro/front.svg",
  2531. extra: 2309 / 2162,
  2532. bottom: 0.069
  2533. }
  2534. },
  2535. side: {
  2536. height: math.unit(5 + 3/12, "feet"),
  2537. weight: math.unit(60, "kg"),
  2538. name: "Side",
  2539. image: {
  2540. source: "./media/characters/zephiro/side.svg",
  2541. extra: 2403 / 2279,
  2542. bottom: 0.015
  2543. }
  2544. },
  2545. back: {
  2546. height: math.unit(5 + 3/12, "feet"),
  2547. weight: math.unit(60, "kg"),
  2548. name: "Back",
  2549. image: {
  2550. source: "./media/characters/zephiro/back.svg",
  2551. extra: 2373 / 2244,
  2552. bottom: 0.013
  2553. }
  2554. },
  2555. hand: {
  2556. height: math.unit(0.68, "feet"),
  2557. name: "Hand",
  2558. image: {
  2559. source: "./media/characters/zephiro/hand.svg"
  2560. }
  2561. },
  2562. paw: {
  2563. height: math.unit(1, "feet"),
  2564. name: "Paw",
  2565. image: {
  2566. source: "./media/characters/zephiro/paw.svg"
  2567. }
  2568. },
  2569. beans: {
  2570. height: math.unit(0.93, "feet"),
  2571. name: "Beans",
  2572. image: {
  2573. source: "./media/characters/zephiro/beans.svg"
  2574. }
  2575. },
  2576. },
  2577. [
  2578. {
  2579. name: "Micro",
  2580. height: math.unit(3, "inches")
  2581. },
  2582. {
  2583. name: "Normal",
  2584. height: math.unit(5 + 3 / 12, "feet"),
  2585. default: true
  2586. },
  2587. {
  2588. name: "Macro",
  2589. height: math.unit(118, "feet")
  2590. },
  2591. ]
  2592. ))
  2593. characterMakers.push(() => makeCharacter(
  2594. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2595. {
  2596. front: {
  2597. height: math.unit(5, "feet"),
  2598. weight: math.unit(90, "kg"),
  2599. name: "Front",
  2600. image: {
  2601. source: "./media/characters/fory/front.svg",
  2602. extra: 2862 / 2674,
  2603. bottom: 180 / 3043.8
  2604. }
  2605. },
  2606. back: {
  2607. height: math.unit(5, "feet"),
  2608. weight: math.unit(90, "kg"),
  2609. name: "Back",
  2610. image: {
  2611. source: "./media/characters/fory/back.svg",
  2612. extra: 2962 / 2791,
  2613. bottom: 106 / 3071.8
  2614. }
  2615. },
  2616. foot: {
  2617. height: math.unit(2.14, "feet"),
  2618. name: "Foot",
  2619. image: {
  2620. source: "./media/characters/fory/foot.svg"
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Normal",
  2627. height: math.unit(5, "feet")
  2628. },
  2629. {
  2630. name: "Macro",
  2631. height: math.unit(50, "feet"),
  2632. default: true
  2633. },
  2634. {
  2635. name: "Megamacro",
  2636. height: math.unit(10, "miles")
  2637. },
  2638. {
  2639. name: "Gigamacro",
  2640. height: math.unit(5, "earths")
  2641. },
  2642. ]
  2643. ))
  2644. characterMakers.push(() => makeCharacter(
  2645. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2646. {
  2647. front: {
  2648. height: math.unit(7, "feet"),
  2649. weight: math.unit(90, "kg"),
  2650. name: "Front",
  2651. image: {
  2652. source: "./media/characters/kurrikage/front.svg",
  2653. extra: 1,
  2654. bottom: 0.035
  2655. }
  2656. },
  2657. back: {
  2658. height: math.unit(7, "feet"),
  2659. weight: math.unit(90, "lb"),
  2660. name: "Back",
  2661. image: {
  2662. source: "./media/characters/kurrikage/back.svg"
  2663. }
  2664. },
  2665. paw: {
  2666. height: math.unit(1.5, "feet"),
  2667. name: "Paw",
  2668. image: {
  2669. source: "./media/characters/kurrikage/paw.svg"
  2670. }
  2671. },
  2672. staff: {
  2673. height: math.unit(6.7, "feet"),
  2674. name: "Staff",
  2675. image: {
  2676. source: "./media/characters/kurrikage/staff.svg"
  2677. }
  2678. },
  2679. peek: {
  2680. height: math.unit(1.05, "feet"),
  2681. name: "Peeking",
  2682. image: {
  2683. source: "./media/characters/kurrikage/peek.svg",
  2684. bottom: 0.08
  2685. }
  2686. },
  2687. },
  2688. [
  2689. {
  2690. name: "Normal",
  2691. height: math.unit(12, "feet"),
  2692. default: true
  2693. },
  2694. {
  2695. name: "Big",
  2696. height: math.unit(20, "feet")
  2697. },
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(500, "feet")
  2701. },
  2702. {
  2703. name: "Megamacro",
  2704. height: math.unit(20, "miles")
  2705. },
  2706. ]
  2707. ))
  2708. characterMakers.push(() => makeCharacter(
  2709. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2710. {
  2711. front: {
  2712. height: math.unit(6, "feet"),
  2713. weight: math.unit(75, "kg"),
  2714. name: "Front",
  2715. image: {
  2716. source: "./media/characters/shingo/front.svg",
  2717. extra: 1900/1825,
  2718. bottom: 82/1982
  2719. }
  2720. },
  2721. side: {
  2722. height: math.unit(6, "feet"),
  2723. weight: math.unit(75, "kg"),
  2724. name: "Side",
  2725. image: {
  2726. source: "./media/characters/shingo/side.svg",
  2727. extra: 1930/1865,
  2728. bottom: 16/1946
  2729. }
  2730. },
  2731. back: {
  2732. height: math.unit(6, "feet"),
  2733. weight: math.unit(75, "kg"),
  2734. name: "Back",
  2735. image: {
  2736. source: "./media/characters/shingo/back.svg",
  2737. extra: 1922/1852,
  2738. bottom: 16/1938
  2739. }
  2740. },
  2741. frontDressed: {
  2742. height: math.unit(6, "feet"),
  2743. weight: math.unit(150, "lb"),
  2744. name: "Front-dressed",
  2745. image: {
  2746. source: "./media/characters/shingo/front-dressed.svg",
  2747. extra: 1900/1825,
  2748. bottom: 82/1982
  2749. }
  2750. },
  2751. paw: {
  2752. height: math.unit(1.29, "feet"),
  2753. name: "Paw",
  2754. image: {
  2755. source: "./media/characters/shingo/paw.svg"
  2756. }
  2757. },
  2758. hand: {
  2759. height: math.unit(1.07, "feet"),
  2760. name: "Hand",
  2761. image: {
  2762. source: "./media/characters/shingo/hand.svg"
  2763. }
  2764. },
  2765. frontAlt: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Front (Alt)",
  2769. image: {
  2770. source: "./media/characters/shingo/front-alt.svg",
  2771. extra: 3511 / 3338,
  2772. bottom: 0.005
  2773. }
  2774. },
  2775. frontAlt2: {
  2776. height: math.unit(6, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Front (Alt 2)",
  2779. image: {
  2780. source: "./media/characters/shingo/front-alt-2.svg",
  2781. extra: 706/681,
  2782. bottom: 11/717
  2783. }
  2784. },
  2785. pawAlt: {
  2786. height: math.unit(1, "feet"),
  2787. name: "Paw (Alt)",
  2788. image: {
  2789. source: "./media/characters/shingo/paw-alt.svg"
  2790. }
  2791. },
  2792. },
  2793. [
  2794. {
  2795. name: "Micro",
  2796. height: math.unit(4, "inches")
  2797. },
  2798. {
  2799. name: "Normal",
  2800. height: math.unit(6, "feet"),
  2801. default: true
  2802. },
  2803. {
  2804. name: "Macro",
  2805. height: math.unit(108, "feet")
  2806. },
  2807. {
  2808. name: "Macro+",
  2809. height: math.unit(1500, "feet")
  2810. },
  2811. ]
  2812. ))
  2813. characterMakers.push(() => makeCharacter(
  2814. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2815. {
  2816. side: {
  2817. height: math.unit(6, "feet"),
  2818. weight: math.unit(75, "kg"),
  2819. name: "Side",
  2820. image: {
  2821. source: "./media/characters/aigey/side.svg"
  2822. }
  2823. },
  2824. },
  2825. [
  2826. {
  2827. name: "Macro",
  2828. height: math.unit(200, "feet"),
  2829. default: true
  2830. },
  2831. {
  2832. name: "Megamacro",
  2833. height: math.unit(100, "miles")
  2834. },
  2835. ]
  2836. )
  2837. )
  2838. characterMakers.push(() => makeCharacter(
  2839. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2840. {
  2841. front: {
  2842. height: math.unit(5 + 5 / 12, "feet"),
  2843. weight: math.unit(75, "kg"),
  2844. name: "Front",
  2845. image: {
  2846. source: "./media/characters/natasha/front.svg",
  2847. extra: 859 / 824,
  2848. bottom: 23 / 879.6
  2849. }
  2850. },
  2851. frontNsfw: {
  2852. height: math.unit(5 + 5 / 12, "feet"),
  2853. weight: math.unit(75, "kg"),
  2854. name: "Front (NSFW)",
  2855. image: {
  2856. source: "./media/characters/natasha/front-nsfw.svg",
  2857. extra: 859 / 824,
  2858. bottom: 23 / 879.6
  2859. }
  2860. },
  2861. frontErect: {
  2862. height: math.unit(5 + 5 / 12, "feet"),
  2863. weight: math.unit(75, "kg"),
  2864. name: "Front (Erect)",
  2865. image: {
  2866. source: "./media/characters/natasha/front-erect.svg",
  2867. extra: 859 / 824,
  2868. bottom: 23 / 879.6
  2869. }
  2870. },
  2871. back: {
  2872. height: math.unit(5 + 5 / 12, "feet"),
  2873. weight: math.unit(75, "kg"),
  2874. name: "Back",
  2875. image: {
  2876. source: "./media/characters/natasha/back.svg",
  2877. extra: 887.9 / 852.6,
  2878. bottom: 9.7 / 896.4
  2879. }
  2880. },
  2881. backAlt: {
  2882. height: math.unit(5 + 5 / 12, "feet"),
  2883. weight: math.unit(75, "kg"),
  2884. name: "Back (Alt)",
  2885. image: {
  2886. source: "./media/characters/natasha/back-alt.svg",
  2887. extra: 1236.7 / 1192,
  2888. bottom: 22.3 / 1258.2
  2889. }
  2890. },
  2891. dick: {
  2892. height: math.unit(1.772, "feet"),
  2893. name: "Dick",
  2894. image: {
  2895. source: "./media/characters/natasha/dick.svg"
  2896. }
  2897. },
  2898. paw: {
  2899. height: math.unit(0.250, "meters"),
  2900. name: "Paw",
  2901. image: {
  2902. source: "./media/characters/natasha/paw.svg"
  2903. }
  2904. },
  2905. },
  2906. [
  2907. {
  2908. name: "Normal",
  2909. height: math.unit(5 + 5 / 12, "feet")
  2910. },
  2911. {
  2912. name: "Large",
  2913. height: math.unit(12, "feet")
  2914. },
  2915. {
  2916. name: "Macro",
  2917. height: math.unit(100, "feet"),
  2918. default: true
  2919. },
  2920. {
  2921. name: "Macro+",
  2922. height: math.unit(260, "feet")
  2923. },
  2924. {
  2925. name: "Macro++",
  2926. height: math.unit(1, "mile")
  2927. },
  2928. ]
  2929. ))
  2930. characterMakers.push(() => makeCharacter(
  2931. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2932. {
  2933. front: {
  2934. height: math.unit(6, "feet"),
  2935. weight: math.unit(75, "kg"),
  2936. name: "Front",
  2937. image: {
  2938. source: "./media/characters/malik/front.svg"
  2939. }
  2940. },
  2941. side: {
  2942. height: math.unit(6, "feet"),
  2943. weight: math.unit(75, "kg"),
  2944. name: "Side",
  2945. image: {
  2946. source: "./media/characters/malik/side.svg",
  2947. extra: 1.1539
  2948. }
  2949. },
  2950. back: {
  2951. height: math.unit(6, "feet"),
  2952. weight: math.unit(75, "kg"),
  2953. name: "Back",
  2954. image: {
  2955. source: "./media/characters/malik/back.svg"
  2956. }
  2957. },
  2958. },
  2959. [
  2960. {
  2961. name: "Macro",
  2962. height: math.unit(156, "feet"),
  2963. default: true
  2964. },
  2965. {
  2966. name: "Macro+",
  2967. height: math.unit(1188, "feet")
  2968. },
  2969. ]
  2970. ))
  2971. characterMakers.push(() => makeCharacter(
  2972. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2973. {
  2974. front: {
  2975. height: math.unit(6, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Front",
  2978. image: {
  2979. source: "./media/characters/sefer/front.svg",
  2980. extra: 848 / 659,
  2981. bottom: 28.3 / 876.442
  2982. }
  2983. },
  2984. back: {
  2985. height: math.unit(6, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Back",
  2988. image: {
  2989. source: "./media/characters/sefer/back.svg",
  2990. extra: 864 / 695,
  2991. bottom: 10 / 871
  2992. }
  2993. },
  2994. frontDressed: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Front (Dressed)",
  2998. image: {
  2999. source: "./media/characters/sefer/front-dressed.svg",
  3000. extra: 839 / 653,
  3001. bottom: 37.6 / 878
  3002. }
  3003. },
  3004. },
  3005. [
  3006. {
  3007. name: "Normal",
  3008. height: math.unit(6, "feet"),
  3009. default: true
  3010. },
  3011. ]
  3012. ))
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3015. {
  3016. body: {
  3017. height: math.unit(2.2428, "meter"),
  3018. weight: math.unit(124.738, "kg"),
  3019. name: "Body",
  3020. image: {
  3021. extra: 1225 / 1050,
  3022. source: "./media/characters/north/front.svg"
  3023. }
  3024. }
  3025. },
  3026. [
  3027. {
  3028. name: "Micro",
  3029. height: math.unit(4, "inches")
  3030. },
  3031. {
  3032. name: "Macro",
  3033. height: math.unit(63, "meters")
  3034. },
  3035. {
  3036. name: "Megamacro",
  3037. height: math.unit(101, "miles"),
  3038. default: true
  3039. }
  3040. ]
  3041. ))
  3042. characterMakers.push(() => makeCharacter(
  3043. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3044. {
  3045. angled: {
  3046. height: math.unit(4, "meter"),
  3047. weight: math.unit(150, "kg"),
  3048. name: "Angled",
  3049. image: {
  3050. source: "./media/characters/talan/angled-sfw.svg",
  3051. bottom: 29 / 3734
  3052. }
  3053. },
  3054. angledNsfw: {
  3055. height: math.unit(4, "meter"),
  3056. weight: math.unit(150, "kg"),
  3057. name: "Angled (NSFW)",
  3058. image: {
  3059. source: "./media/characters/talan/angled-nsfw.svg",
  3060. bottom: 29 / 3734
  3061. }
  3062. },
  3063. frontNsfw: {
  3064. height: math.unit(4, "meter"),
  3065. weight: math.unit(150, "kg"),
  3066. name: "Front (NSFW)",
  3067. image: {
  3068. source: "./media/characters/talan/front-nsfw.svg",
  3069. bottom: 29 / 3734
  3070. }
  3071. },
  3072. sideNsfw: {
  3073. height: math.unit(4, "meter"),
  3074. weight: math.unit(150, "kg"),
  3075. name: "Side (NSFW)",
  3076. image: {
  3077. source: "./media/characters/talan/side-nsfw.svg",
  3078. bottom: 29 / 3734
  3079. }
  3080. },
  3081. back: {
  3082. height: math.unit(4, "meter"),
  3083. weight: math.unit(150, "kg"),
  3084. name: "Back",
  3085. image: {
  3086. source: "./media/characters/talan/back.svg"
  3087. }
  3088. },
  3089. dickBottom: {
  3090. height: math.unit(0.621, "meter"),
  3091. name: "Dick (Bottom)",
  3092. image: {
  3093. source: "./media/characters/talan/dick-bottom.svg"
  3094. }
  3095. },
  3096. dickTop: {
  3097. height: math.unit(0.621, "meter"),
  3098. name: "Dick (Top)",
  3099. image: {
  3100. source: "./media/characters/talan/dick-top.svg"
  3101. }
  3102. },
  3103. dickSide: {
  3104. height: math.unit(0.305, "meter"),
  3105. name: "Dick (Side)",
  3106. image: {
  3107. source: "./media/characters/talan/dick-side.svg"
  3108. }
  3109. },
  3110. dickFront: {
  3111. height: math.unit(0.305, "meter"),
  3112. name: "Dick (Front)",
  3113. image: {
  3114. source: "./media/characters/talan/dick-front.svg"
  3115. }
  3116. },
  3117. },
  3118. [
  3119. {
  3120. name: "Normal",
  3121. height: math.unit(4, "meters")
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(100, "meters")
  3126. },
  3127. {
  3128. name: "Megamacro",
  3129. height: math.unit(2, "miles"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Gigamacro",
  3134. height: math.unit(5000, "miles")
  3135. },
  3136. {
  3137. name: "Teramacro",
  3138. height: math.unit(100, "parsecs")
  3139. }
  3140. ]
  3141. ))
  3142. characterMakers.push(() => makeCharacter(
  3143. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3144. {
  3145. front: {
  3146. height: math.unit(2, "meter"),
  3147. weight: math.unit(90, "kg"),
  3148. name: "Front",
  3149. image: {
  3150. source: "./media/characters/gael'rathus/front.svg"
  3151. }
  3152. },
  3153. frontAlt: {
  3154. height: math.unit(2, "meter"),
  3155. weight: math.unit(90, "kg"),
  3156. name: "Front (alt)",
  3157. image: {
  3158. source: "./media/characters/gael'rathus/front-alt.svg"
  3159. }
  3160. },
  3161. frontAlt2: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(90, "kg"),
  3164. name: "Front (alt 2)",
  3165. image: {
  3166. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3167. }
  3168. }
  3169. },
  3170. [
  3171. {
  3172. name: "Normal",
  3173. height: math.unit(9, "feet"),
  3174. default: true
  3175. },
  3176. {
  3177. name: "Large",
  3178. height: math.unit(25, "feet")
  3179. },
  3180. {
  3181. name: "Macro",
  3182. height: math.unit(0.25, "miles")
  3183. },
  3184. {
  3185. name: "Megamacro",
  3186. height: math.unit(10, "miles")
  3187. }
  3188. ]
  3189. ))
  3190. characterMakers.push(() => makeCharacter(
  3191. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3192. {
  3193. side: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(140, "kg"),
  3196. name: "Side",
  3197. image: {
  3198. source: "./media/characters/sosha/side.svg",
  3199. bottom: 0.042
  3200. }
  3201. },
  3202. },
  3203. [
  3204. {
  3205. name: "Normal",
  3206. height: math.unit(12, "feet"),
  3207. default: true
  3208. }
  3209. ]
  3210. ))
  3211. characterMakers.push(() => makeCharacter(
  3212. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3213. {
  3214. side: {
  3215. height: math.unit(5 + 5 / 12, "feet"),
  3216. weight: math.unit(170, "kg"),
  3217. name: "Side",
  3218. image: {
  3219. source: "./media/characters/runnola/side.svg",
  3220. extra: 741 / 448,
  3221. bottom: 0.05
  3222. }
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Small",
  3228. height: math.unit(3, "feet")
  3229. },
  3230. {
  3231. name: "Normal",
  3232. height: math.unit(5 + 5 / 12, "feet"),
  3233. default: true
  3234. },
  3235. {
  3236. name: "Big",
  3237. height: math.unit(10, "feet")
  3238. },
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3243. {
  3244. front: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(50, "kg"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/kurribird/front.svg",
  3250. bottom: 0.015
  3251. }
  3252. },
  3253. frontAlt: {
  3254. height: math.unit(1.5, "meter"),
  3255. weight: math.unit(50, "kg"),
  3256. name: "Front (Alt)",
  3257. image: {
  3258. source: "./media/characters/kurribird/front-alt.svg",
  3259. extra: 1.45
  3260. }
  3261. },
  3262. },
  3263. [
  3264. {
  3265. name: "Normal",
  3266. height: math.unit(7, "feet")
  3267. },
  3268. {
  3269. name: "Big",
  3270. height: math.unit(12, "feet"),
  3271. default: true
  3272. },
  3273. {
  3274. name: "Macro",
  3275. height: math.unit(1500, "feet")
  3276. },
  3277. {
  3278. name: "Megamacro",
  3279. height: math.unit(2, "miles")
  3280. }
  3281. ]
  3282. ))
  3283. characterMakers.push(() => makeCharacter(
  3284. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3285. {
  3286. front: {
  3287. height: math.unit(2, "meter"),
  3288. weight: math.unit(80, "kg"),
  3289. name: "Front",
  3290. image: {
  3291. source: "./media/characters/elbial/front.svg",
  3292. extra: 1643 / 1556,
  3293. bottom: 60.2 / 1696
  3294. }
  3295. },
  3296. side: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(80, "kg"),
  3299. name: "Side",
  3300. image: {
  3301. source: "./media/characters/elbial/side.svg",
  3302. extra: 1630 / 1565,
  3303. bottom: 71.5 / 1697
  3304. }
  3305. },
  3306. back: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(80, "kg"),
  3309. name: "Back",
  3310. image: {
  3311. source: "./media/characters/elbial/back.svg",
  3312. extra: 1668 / 1595,
  3313. bottom: 5.6 / 1672
  3314. }
  3315. },
  3316. frontDressed: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(80, "kg"),
  3319. name: "Front (Dressed)",
  3320. image: {
  3321. source: "./media/characters/elbial/front-dressed.svg",
  3322. extra: 1653 / 1584,
  3323. bottom: 57 / 1708
  3324. }
  3325. },
  3326. genitals: {
  3327. height: math.unit(2 / 3.367, "meter"),
  3328. name: "Genitals",
  3329. image: {
  3330. source: "./media/characters/elbial/genitals.svg"
  3331. }
  3332. },
  3333. },
  3334. [
  3335. {
  3336. name: "Large",
  3337. height: math.unit(100, "feet")
  3338. },
  3339. {
  3340. name: "Macro",
  3341. height: math.unit(500, "feet"),
  3342. default: true
  3343. },
  3344. {
  3345. name: "Megamacro",
  3346. height: math.unit(10, "miles")
  3347. },
  3348. {
  3349. name: "Gigamacro",
  3350. height: math.unit(25000, "miles")
  3351. },
  3352. {
  3353. name: "Full-Size",
  3354. height: math.unit(8000000, "gigaparsecs")
  3355. }
  3356. ]
  3357. ))
  3358. characterMakers.push(() => makeCharacter(
  3359. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3360. {
  3361. front: {
  3362. height: math.unit(2, "meter"),
  3363. weight: math.unit(60, "kg"),
  3364. name: "Front",
  3365. image: {
  3366. source: "./media/characters/noah/front.svg"
  3367. }
  3368. },
  3369. talons: {
  3370. height: math.unit(0.315, "meter"),
  3371. name: "Talons",
  3372. image: {
  3373. source: "./media/characters/noah/talons.svg"
  3374. }
  3375. }
  3376. },
  3377. [
  3378. {
  3379. name: "Large",
  3380. height: math.unit(50, "feet")
  3381. },
  3382. {
  3383. name: "Macro",
  3384. height: math.unit(750, "feet"),
  3385. default: true
  3386. },
  3387. {
  3388. name: "Megamacro",
  3389. height: math.unit(50, "miles")
  3390. },
  3391. {
  3392. name: "Gigamacro",
  3393. height: math.unit(100000, "miles")
  3394. },
  3395. {
  3396. name: "Full-Size",
  3397. height: math.unit(3000000000, "miles")
  3398. }
  3399. ]
  3400. ))
  3401. characterMakers.push(() => makeCharacter(
  3402. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3403. {
  3404. front: {
  3405. height: math.unit(2, "meter"),
  3406. weight: math.unit(80, "kg"),
  3407. name: "Front",
  3408. image: {
  3409. source: "./media/characters/natalya/front.svg"
  3410. }
  3411. },
  3412. back: {
  3413. height: math.unit(2, "meter"),
  3414. weight: math.unit(80, "kg"),
  3415. name: "Back",
  3416. image: {
  3417. source: "./media/characters/natalya/back.svg"
  3418. }
  3419. }
  3420. },
  3421. [
  3422. {
  3423. name: "Normal",
  3424. height: math.unit(150, "feet"),
  3425. default: true
  3426. },
  3427. {
  3428. name: "Megamacro",
  3429. height: math.unit(5, "miles")
  3430. },
  3431. {
  3432. name: "Full-Size",
  3433. height: math.unit(600, "kiloparsecs")
  3434. }
  3435. ]
  3436. ))
  3437. characterMakers.push(() => makeCharacter(
  3438. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3439. {
  3440. front: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(50, "kg"),
  3443. name: "Front",
  3444. image: {
  3445. source: "./media/characters/erestrebah/front.svg",
  3446. extra: 208 / 193,
  3447. bottom: 0.055
  3448. }
  3449. },
  3450. back: {
  3451. height: math.unit(2, "meter"),
  3452. weight: math.unit(50, "kg"),
  3453. name: "Back",
  3454. image: {
  3455. source: "./media/characters/erestrebah/back.svg",
  3456. extra: 1.3
  3457. }
  3458. }
  3459. },
  3460. [
  3461. {
  3462. name: "Normal",
  3463. height: math.unit(10, "feet")
  3464. },
  3465. {
  3466. name: "Large",
  3467. height: math.unit(50, "feet"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro",
  3472. height: math.unit(300, "feet")
  3473. },
  3474. {
  3475. name: "Macro+",
  3476. height: math.unit(750, "feet")
  3477. },
  3478. {
  3479. name: "Megamacro",
  3480. height: math.unit(3, "miles")
  3481. }
  3482. ]
  3483. ))
  3484. characterMakers.push(() => makeCharacter(
  3485. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3486. {
  3487. front: {
  3488. height: math.unit(2, "meter"),
  3489. weight: math.unit(80, "kg"),
  3490. name: "Front",
  3491. image: {
  3492. source: "./media/characters/jennifer/front.svg",
  3493. bottom: 0.11,
  3494. extra: 1.16
  3495. }
  3496. },
  3497. frontAlt: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(80, "kg"),
  3500. name: "Front (Alt)",
  3501. image: {
  3502. source: "./media/characters/jennifer/front-alt.svg"
  3503. }
  3504. }
  3505. },
  3506. [
  3507. {
  3508. name: "Canon Height",
  3509. height: math.unit(120, "feet"),
  3510. default: true
  3511. },
  3512. {
  3513. name: "Macro+",
  3514. height: math.unit(300, "feet")
  3515. },
  3516. {
  3517. name: "Megamacro",
  3518. height: math.unit(20000, "feet")
  3519. }
  3520. ]
  3521. ))
  3522. characterMakers.push(() => makeCharacter(
  3523. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3524. {
  3525. front: {
  3526. height: math.unit(2, "meter"),
  3527. weight: math.unit(50, "kg"),
  3528. name: "Front",
  3529. image: {
  3530. source: "./media/characters/kalista/front.svg",
  3531. extra: 1947 / 1700,
  3532. bottom: 76.6 / 1412.98
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(50, "kg"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/kalista/back.svg",
  3541. extra: 1366 / 1156,
  3542. bottom: 33.9 / 1362.78
  3543. }
  3544. }
  3545. },
  3546. [
  3547. {
  3548. name: "Uncomfortably Small",
  3549. height: math.unit(10, "feet")
  3550. },
  3551. {
  3552. name: "Small",
  3553. height: math.unit(30, "feet")
  3554. },
  3555. {
  3556. name: "Macro",
  3557. height: math.unit(100, "feet"),
  3558. default: true
  3559. },
  3560. {
  3561. name: "Macro+",
  3562. height: math.unit(2000, "feet")
  3563. },
  3564. {
  3565. name: "True Form",
  3566. height: math.unit(8924, "miles")
  3567. }
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3572. {
  3573. front: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(120, "kg"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/ggv/front.svg"
  3579. }
  3580. },
  3581. side: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(120, "kg"),
  3584. name: "Side",
  3585. image: {
  3586. source: "./media/characters/ggv/side.svg"
  3587. }
  3588. }
  3589. },
  3590. [
  3591. {
  3592. name: "Extremely Puny",
  3593. height: math.unit(9 + 5 / 12, "feet")
  3594. },
  3595. {
  3596. name: "Horribly Small",
  3597. height: math.unit(47.7, "miles"),
  3598. default: true
  3599. },
  3600. {
  3601. name: "Reasonably Sized",
  3602. height: math.unit(25000, "parsecs")
  3603. },
  3604. {
  3605. name: "Slightly Uncompressed",
  3606. height: math.unit(7.77e31, "parsecs")
  3607. },
  3608. {
  3609. name: "Omniversal",
  3610. height: math.unit(1e300, "meters")
  3611. },
  3612. ]
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(2, "meter"),
  3619. weight: math.unit(75, "lb"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/napalm/front.svg"
  3623. }
  3624. },
  3625. back: {
  3626. height: math.unit(2, "meter"),
  3627. weight: math.unit(75, "lb"),
  3628. name: "Back",
  3629. image: {
  3630. source: "./media/characters/napalm/back.svg"
  3631. }
  3632. }
  3633. },
  3634. [
  3635. {
  3636. name: "Standard",
  3637. height: math.unit(55, "feet"),
  3638. default: true
  3639. }
  3640. ]
  3641. ))
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(7 + 5 / 6, "feet"),
  3647. weight: math.unit(325, "lb"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/asana/front.svg",
  3651. extra: 1133 / 1060,
  3652. bottom: 15.2 / 1148.6
  3653. }
  3654. },
  3655. back: {
  3656. height: math.unit(7 + 5 / 6, "feet"),
  3657. weight: math.unit(325, "lb"),
  3658. name: "Back",
  3659. image: {
  3660. source: "./media/characters/asana/back.svg",
  3661. extra: 1114 / 1043,
  3662. bottom: 5 / 1120
  3663. }
  3664. },
  3665. dressedDark: {
  3666. height: math.unit(7 + 5 / 6, "feet"),
  3667. weight: math.unit(325, "lb"),
  3668. name: "Dressed (Dark)",
  3669. image: {
  3670. source: "./media/characters/asana/dressed-dark.svg",
  3671. extra: 1133 / 1060,
  3672. bottom: 15.2 / 1148.6
  3673. }
  3674. },
  3675. dressedLight: {
  3676. height: math.unit(7 + 5 / 6, "feet"),
  3677. weight: math.unit(325, "lb"),
  3678. name: "Dressed (Light)",
  3679. image: {
  3680. source: "./media/characters/asana/dressed-light.svg",
  3681. extra: 1133 / 1060,
  3682. bottom: 15.2 / 1148.6
  3683. }
  3684. },
  3685. },
  3686. [
  3687. {
  3688. name: "Standard",
  3689. height: math.unit(7 + 5 / 6, "feet"),
  3690. default: true
  3691. },
  3692. {
  3693. name: "Large",
  3694. height: math.unit(10, "meters")
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(2500, "meters")
  3699. },
  3700. {
  3701. name: "Megamacro",
  3702. height: math.unit(5e6, "meters")
  3703. },
  3704. {
  3705. name: "Examacro",
  3706. height: math.unit(5e12, "lightyears")
  3707. },
  3708. {
  3709. name: "Max Size",
  3710. height: math.unit(1e31, "lightyears")
  3711. }
  3712. ]
  3713. ))
  3714. characterMakers.push(() => makeCharacter(
  3715. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3716. {
  3717. front: {
  3718. height: math.unit(2, "meter"),
  3719. weight: math.unit(60, "kg"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/ebony/front.svg",
  3723. bottom: 0.03,
  3724. extra: 1045 / 810 + 0.03
  3725. }
  3726. },
  3727. side: {
  3728. height: math.unit(2, "meter"),
  3729. weight: math.unit(60, "kg"),
  3730. name: "Side",
  3731. image: {
  3732. source: "./media/characters/ebony/side.svg",
  3733. bottom: 0.03,
  3734. extra: 1045 / 810 + 0.03
  3735. }
  3736. },
  3737. back: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(60, "kg"),
  3740. name: "Back",
  3741. image: {
  3742. source: "./media/characters/ebony/back.svg",
  3743. bottom: 0.01,
  3744. extra: 1045 / 810 + 0.01
  3745. }
  3746. },
  3747. },
  3748. [
  3749. // TODO check why I did this lol
  3750. {
  3751. name: "Standard",
  3752. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3753. default: true
  3754. },
  3755. {
  3756. name: "Macro",
  3757. height: math.unit(200, "feet")
  3758. },
  3759. {
  3760. name: "Gigamacro",
  3761. height: math.unit(13000, "km")
  3762. }
  3763. ]
  3764. ))
  3765. characterMakers.push(() => makeCharacter(
  3766. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3767. {
  3768. front: {
  3769. height: math.unit(6, "feet"),
  3770. weight: math.unit(175, "lb"),
  3771. name: "Front",
  3772. image: {
  3773. source: "./media/characters/mountain/front.svg",
  3774. extra: 972 / 955,
  3775. bottom: 64 / 1036.6
  3776. }
  3777. },
  3778. back: {
  3779. height: math.unit(6, "feet"),
  3780. weight: math.unit(175, "lb"),
  3781. name: "Back",
  3782. image: {
  3783. source: "./media/characters/mountain/back.svg",
  3784. extra: 970 / 950,
  3785. bottom: 28.25 / 999
  3786. }
  3787. },
  3788. },
  3789. [
  3790. {
  3791. name: "Large",
  3792. height: math.unit(20, "meters")
  3793. },
  3794. {
  3795. name: "Macro",
  3796. height: math.unit(300, "meters")
  3797. },
  3798. {
  3799. name: "Gigamacro",
  3800. height: math.unit(10000, "km"),
  3801. default: true
  3802. },
  3803. {
  3804. name: "Examacro",
  3805. height: math.unit(10e9, "lightyears")
  3806. }
  3807. ]
  3808. ))
  3809. characterMakers.push(() => makeCharacter(
  3810. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3811. {
  3812. front: {
  3813. height: math.unit(8, "feet"),
  3814. weight: math.unit(500, "lb"),
  3815. name: "Front",
  3816. image: {
  3817. source: "./media/characters/rick/front.svg"
  3818. }
  3819. }
  3820. },
  3821. [
  3822. {
  3823. name: "Normal",
  3824. height: math.unit(8, "feet"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Macro",
  3829. height: math.unit(5, "km")
  3830. }
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(8, "feet"),
  3838. weight: math.unit(120, "lb"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/ona/front.svg"
  3842. }
  3843. },
  3844. frontAlt: {
  3845. height: math.unit(8, "feet"),
  3846. weight: math.unit(120, "lb"),
  3847. name: "Front (Alt)",
  3848. image: {
  3849. source: "./media/characters/ona/front-alt.svg"
  3850. }
  3851. },
  3852. back: {
  3853. height: math.unit(8, "feet"),
  3854. weight: math.unit(120, "lb"),
  3855. name: "Back",
  3856. image: {
  3857. source: "./media/characters/ona/back.svg"
  3858. }
  3859. },
  3860. foot: {
  3861. height: math.unit(1.1, "feet"),
  3862. name: "Foot",
  3863. image: {
  3864. source: "./media/characters/ona/foot.svg"
  3865. }
  3866. }
  3867. },
  3868. [
  3869. {
  3870. name: "Megamacro",
  3871. height: math.unit(70, "km"),
  3872. default: true
  3873. },
  3874. {
  3875. name: "Gigamacro",
  3876. height: math.unit(681818, "miles")
  3877. },
  3878. {
  3879. name: "Examacro",
  3880. height: math.unit(3800000, "lightyears")
  3881. },
  3882. ]
  3883. ))
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3886. {
  3887. front: {
  3888. height: math.unit(12, "feet"),
  3889. weight: math.unit(3000, "lb"),
  3890. name: "Front",
  3891. image: {
  3892. source: "./media/characters/mech/front.svg",
  3893. extra: 2900 / 2770,
  3894. bottom: 110 / 3010
  3895. }
  3896. },
  3897. back: {
  3898. height: math.unit(12, "feet"),
  3899. weight: math.unit(3000, "lb"),
  3900. name: "Back",
  3901. image: {
  3902. source: "./media/characters/mech/back.svg",
  3903. extra: 3011 / 2890,
  3904. bottom: 94 / 3105
  3905. }
  3906. },
  3907. maw: {
  3908. height: math.unit(3.07, "feet"),
  3909. name: "Maw",
  3910. image: {
  3911. source: "./media/characters/mech/maw.svg"
  3912. }
  3913. },
  3914. head: {
  3915. height: math.unit(2.82, "feet"),
  3916. name: "Head",
  3917. image: {
  3918. source: "./media/characters/mech/head.svg"
  3919. }
  3920. },
  3921. dick: {
  3922. height: math.unit(1.43, "feet"),
  3923. name: "Dick",
  3924. image: {
  3925. source: "./media/characters/mech/dick.svg"
  3926. }
  3927. },
  3928. },
  3929. [
  3930. {
  3931. name: "Normal",
  3932. height: math.unit(12, "feet")
  3933. },
  3934. {
  3935. name: "Macro",
  3936. height: math.unit(300, "feet"),
  3937. default: true
  3938. },
  3939. {
  3940. name: "Macro+",
  3941. height: math.unit(1500, "feet")
  3942. },
  3943. ]
  3944. ))
  3945. characterMakers.push(() => makeCharacter(
  3946. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3947. {
  3948. front: {
  3949. height: math.unit(1.3, "meter"),
  3950. weight: math.unit(30, "kg"),
  3951. name: "Front",
  3952. image: {
  3953. source: "./media/characters/gregory/front.svg",
  3954. }
  3955. }
  3956. },
  3957. [
  3958. {
  3959. name: "Normal",
  3960. height: math.unit(1.3, "meter"),
  3961. default: true
  3962. },
  3963. {
  3964. name: "Macro",
  3965. height: math.unit(20, "meter")
  3966. }
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3971. {
  3972. front: {
  3973. height: math.unit(2.8, "meter"),
  3974. weight: math.unit(200, "kg"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/elory/front.svg",
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Normal",
  3984. height: math.unit(2.8, "meter"),
  3985. default: true
  3986. },
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(38, "meter")
  3990. }
  3991. ]
  3992. ))
  3993. characterMakers.push(() => makeCharacter(
  3994. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3995. {
  3996. front: {
  3997. height: math.unit(470, "feet"),
  3998. weight: math.unit(924, "tons"),
  3999. name: "Front",
  4000. image: {
  4001. source: "./media/characters/angelpatamon/front.svg",
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Normal",
  4008. height: math.unit(470, "feet"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Deity Size I",
  4013. height: math.unit(28651.2, "km")
  4014. },
  4015. {
  4016. name: "Deity Size II",
  4017. height: math.unit(171907.2, "km")
  4018. }
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4023. {
  4024. side: {
  4025. height: math.unit(7.2, "meter"),
  4026. weight: math.unit(8.2, "tons"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/cryae/side.svg",
  4030. extra: 3500 / 1500
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Normal",
  4037. height: math.unit(7.2, "meter"),
  4038. default: true
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(175, "lb"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/xera/front.svg",
  4051. extra: 2377 / 1972,
  4052. bottom: 75.5 / 2452
  4053. }
  4054. },
  4055. side: {
  4056. height: math.unit(6, "feet"),
  4057. weight: math.unit(175, "lb"),
  4058. name: "Side",
  4059. image: {
  4060. source: "./media/characters/xera/side.svg",
  4061. extra: 2345 / 2019,
  4062. bottom: 39.7 / 2384
  4063. }
  4064. },
  4065. back: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Back",
  4069. image: {
  4070. source: "./media/characters/xera/back.svg",
  4071. extra: 2095 / 1984,
  4072. bottom: 67 / 2166
  4073. }
  4074. },
  4075. },
  4076. [
  4077. {
  4078. name: "Small",
  4079. height: math.unit(10, "feet")
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(500, "meters"),
  4084. default: true
  4085. },
  4086. {
  4087. name: "Macro+",
  4088. height: math.unit(10, "km")
  4089. },
  4090. {
  4091. name: "Gigamacro",
  4092. height: math.unit(25000, "km")
  4093. },
  4094. {
  4095. name: "Teramacro",
  4096. height: math.unit(3e6, "km")
  4097. }
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(175, "lb"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/nebula/front.svg",
  4109. extra: 2566 / 2362,
  4110. bottom: 81 / 2644
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Small",
  4117. height: math.unit(4.5, "meters")
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(1500, "meters"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Megamacro",
  4126. height: math.unit(150, "km")
  4127. },
  4128. {
  4129. name: "Gigamacro",
  4130. height: math.unit(27000, "km")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(6, "feet"),
  4139. weight: math.unit(225, "lb"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/abysgar/front.svg"
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Small",
  4149. height: math.unit(4.5, "meters")
  4150. },
  4151. {
  4152. name: "Macro",
  4153. height: math.unit(1250, "meters"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Megamacro",
  4158. height: math.unit(125, "km")
  4159. },
  4160. {
  4161. name: "Gigamacro",
  4162. height: math.unit(26000, "km")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(6, "feet"),
  4171. weight: math.unit(180, "lb"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/yakuz/front.svg"
  4175. }
  4176. }
  4177. },
  4178. [
  4179. {
  4180. name: "Small",
  4181. height: math.unit(5, "meters")
  4182. },
  4183. {
  4184. name: "Macro",
  4185. height: math.unit(1500, "meters"),
  4186. default: true
  4187. },
  4188. {
  4189. name: "Megamacro",
  4190. height: math.unit(200, "km")
  4191. },
  4192. {
  4193. name: "Gigamacro",
  4194. height: math.unit(100000, "km")
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4200. {
  4201. front: {
  4202. height: math.unit(6, "feet"),
  4203. weight: math.unit(175, "lb"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/mirova/front.svg",
  4207. extra: 3334 / 3071,
  4208. bottom: 42 / 3375.6
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Small",
  4215. height: math.unit(5, "meters")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(900, "meters"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Megamacro",
  4224. height: math.unit(135, "km")
  4225. },
  4226. {
  4227. name: "Gigamacro",
  4228. height: math.unit(20000, "km")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4234. {
  4235. side: {
  4236. height: math.unit(28.35, "feet"),
  4237. weight: math.unit(99.75, "tons"),
  4238. name: "Side",
  4239. image: {
  4240. source: "./media/characters/asana-mech/side.svg",
  4241. extra: 923 / 699,
  4242. bottom: 50 / 975
  4243. }
  4244. },
  4245. chaingun: {
  4246. height: math.unit(7, "feet"),
  4247. weight: math.unit(2400, "lb"),
  4248. name: "Chaingun",
  4249. image: {
  4250. source: "./media/characters/asana-mech/chaingun.svg"
  4251. }
  4252. },
  4253. laser: {
  4254. height: math.unit(7.12, "feet"),
  4255. weight: math.unit(2000, "lb"),
  4256. name: "Laser",
  4257. image: {
  4258. source: "./media/characters/asana-mech/laser.svg"
  4259. }
  4260. },
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(28.35, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(2500, "feet")
  4271. },
  4272. {
  4273. name: "Megamacro",
  4274. height: math.unit(25, "miles")
  4275. },
  4276. {
  4277. name: "Examacro",
  4278. height: math.unit(6e8, "lightyears")
  4279. },
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4284. {
  4285. front: {
  4286. height: math.unit(5, "meters"),
  4287. weight: math.unit(1000, "kg"),
  4288. name: "Front",
  4289. image: {
  4290. source: "./media/characters/asche/front.svg",
  4291. extra: 1258 / 1190,
  4292. bottom: 47 / 1305
  4293. }
  4294. },
  4295. frontUnderwear: {
  4296. height: math.unit(5, "meters"),
  4297. weight: math.unit(1000, "kg"),
  4298. name: "Front (Underwear)",
  4299. image: {
  4300. source: "./media/characters/asche/front-underwear.svg",
  4301. extra: 1258 / 1190,
  4302. bottom: 47 / 1305
  4303. }
  4304. },
  4305. frontDressed: {
  4306. height: math.unit(5, "meters"),
  4307. weight: math.unit(1000, "kg"),
  4308. name: "Front (Dressed)",
  4309. image: {
  4310. source: "./media/characters/asche/front-dressed.svg",
  4311. extra: 1258 / 1190,
  4312. bottom: 47 / 1305
  4313. }
  4314. },
  4315. frontArmor: {
  4316. height: math.unit(5, "meters"),
  4317. weight: math.unit(1000, "kg"),
  4318. name: "Front (Armored)",
  4319. image: {
  4320. source: "./media/characters/asche/front-armored.svg",
  4321. extra: 1374 / 1308,
  4322. bottom: 23 / 1397
  4323. }
  4324. },
  4325. mp724: {
  4326. height: math.unit(0.96, "meters"),
  4327. weight: math.unit(38, "kg"),
  4328. name: "H&K MP724",
  4329. image: {
  4330. source: "./media/characters/asche/h&k-mp724.svg"
  4331. }
  4332. },
  4333. side: {
  4334. height: math.unit(5, "meters"),
  4335. weight: math.unit(1000, "kg"),
  4336. name: "Side",
  4337. image: {
  4338. source: "./media/characters/asche/side.svg",
  4339. extra: 1717 / 1609,
  4340. bottom: 0.005
  4341. }
  4342. },
  4343. back: {
  4344. height: math.unit(5, "meters"),
  4345. weight: math.unit(1000, "kg"),
  4346. name: "Back",
  4347. image: {
  4348. source: "./media/characters/asche/back.svg",
  4349. extra: 1570 / 1501
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "DEFCON 5",
  4356. height: math.unit(5, "meters")
  4357. },
  4358. {
  4359. name: "DEFCON 4",
  4360. height: math.unit(500, "meters"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "DEFCON 3",
  4365. height: math.unit(5, "km")
  4366. },
  4367. {
  4368. name: "DEFCON 2",
  4369. height: math.unit(500, "km")
  4370. },
  4371. {
  4372. name: "DEFCON 1",
  4373. height: math.unit(500000, "km")
  4374. },
  4375. {
  4376. name: "DEFCON 0",
  4377. height: math.unit(3, "gigaparsecs")
  4378. },
  4379. ]
  4380. ))
  4381. characterMakers.push(() => makeCharacter(
  4382. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4383. {
  4384. front: {
  4385. height: math.unit(2, "meters"),
  4386. weight: math.unit(76, "kg"),
  4387. name: "Front",
  4388. image: {
  4389. source: "./media/characters/gale/front.svg"
  4390. }
  4391. },
  4392. frontAlt1: {
  4393. height: math.unit(2, "meters"),
  4394. weight: math.unit(76, "kg"),
  4395. name: "Front (Alt 1)",
  4396. image: {
  4397. source: "./media/characters/gale/front-alt-1.svg"
  4398. }
  4399. },
  4400. frontAlt2: {
  4401. height: math.unit(2, "meters"),
  4402. weight: math.unit(76, "kg"),
  4403. name: "Front (Alt 2)",
  4404. image: {
  4405. source: "./media/characters/gale/front-alt-2.svg"
  4406. }
  4407. },
  4408. },
  4409. [
  4410. {
  4411. name: "Normal",
  4412. height: math.unit(7, "feet")
  4413. },
  4414. {
  4415. name: "Macro",
  4416. height: math.unit(150, "feet"),
  4417. default: true
  4418. },
  4419. {
  4420. name: "Macro+",
  4421. height: math.unit(300, "feet")
  4422. },
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4427. {
  4428. front: {
  4429. height: math.unit(2, "meters"),
  4430. weight: math.unit(76, "kg"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/draylen/front.svg"
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(150, "feet"),
  4441. default: true
  4442. }
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4447. {
  4448. front: {
  4449. height: math.unit(7 + 9 / 12, "feet"),
  4450. weight: math.unit(379, "lbs"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/chez/front.svg"
  4454. }
  4455. },
  4456. side: {
  4457. height: math.unit(7 + 9 / 12, "feet"),
  4458. weight: math.unit(379, "lbs"),
  4459. name: "Side",
  4460. image: {
  4461. source: "./media/characters/chez/side.svg"
  4462. }
  4463. }
  4464. },
  4465. [
  4466. {
  4467. name: "Normal",
  4468. height: math.unit(7 + 9 / 12, "feet"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "God King",
  4473. height: math.unit(9750000, "meters")
  4474. }
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4479. {
  4480. front: {
  4481. height: math.unit(6, "feet"),
  4482. weight: math.unit(275, "lbs"),
  4483. name: "Front",
  4484. image: {
  4485. source: "./media/characters/kaylum/front.svg",
  4486. bottom: 0.01,
  4487. extra: 1166 / 1031
  4488. }
  4489. },
  4490. frontWingless: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(275, "lbs"),
  4493. name: "Front (Wingless)",
  4494. image: {
  4495. source: "./media/characters/kaylum/front-wingless.svg",
  4496. bottom: 0.01,
  4497. extra: 1117 / 1031
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Normal",
  4504. height: math.unit(3.05, "meters")
  4505. },
  4506. {
  4507. name: "Master",
  4508. height: math.unit(5.5, "meters")
  4509. },
  4510. {
  4511. name: "Rampage",
  4512. height: math.unit(19, "meters")
  4513. },
  4514. {
  4515. name: "Macro Lite",
  4516. height: math.unit(37, "meters")
  4517. },
  4518. {
  4519. name: "Hyper Predator",
  4520. height: math.unit(61, "meters")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(138, "meters"),
  4525. default: true
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4531. {
  4532. front: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(150, "lbs"),
  4535. name: "Front",
  4536. image: {
  4537. source: "./media/characters/geta/front.svg"
  4538. }
  4539. }
  4540. },
  4541. [
  4542. {
  4543. name: "Micro",
  4544. height: math.unit(3, "inches"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(5 + 5 / 12, "feet")
  4550. }
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4555. {
  4556. front: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(300, "lbs"),
  4559. name: "Front",
  4560. image: {
  4561. source: "./media/characters/tyrnn/front.svg"
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Main Height",
  4568. height: math.unit(355, "feet"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Fave. Height",
  4573. height: math.unit(2400, "feet")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(300, "lbs"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/appledectomy/front.svg"
  4586. }
  4587. }
  4588. },
  4589. [
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(2500, "feet")
  4593. },
  4594. {
  4595. name: "Megamacro",
  4596. height: math.unit(50, "miles"),
  4597. default: true
  4598. },
  4599. {
  4600. name: "Gigamacro",
  4601. height: math.unit(5000, "miles")
  4602. },
  4603. {
  4604. name: "Teramacro",
  4605. height: math.unit(250000, "miles")
  4606. },
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(6, "feet"),
  4614. weight: math.unit(200, "lbs"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/vulpes/front.svg",
  4618. extra: 573 / 543,
  4619. bottom: 0.033
  4620. }
  4621. },
  4622. side: {
  4623. height: math.unit(6, "feet"),
  4624. weight: math.unit(200, "lbs"),
  4625. name: "Side",
  4626. image: {
  4627. source: "./media/characters/vulpes/side.svg",
  4628. extra: 577 / 549,
  4629. bottom: 11 / 588
  4630. }
  4631. },
  4632. back: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(200, "lbs"),
  4635. name: "Back",
  4636. image: {
  4637. source: "./media/characters/vulpes/back.svg",
  4638. extra: 573 / 549,
  4639. bottom: 20 / 593
  4640. }
  4641. },
  4642. feet: {
  4643. height: math.unit(1.276, "feet"),
  4644. name: "Feet",
  4645. image: {
  4646. source: "./media/characters/vulpes/feet.svg"
  4647. }
  4648. },
  4649. maw: {
  4650. height: math.unit(1.18, "feet"),
  4651. name: "Maw",
  4652. image: {
  4653. source: "./media/characters/vulpes/maw.svg"
  4654. }
  4655. },
  4656. },
  4657. [
  4658. {
  4659. name: "Micro",
  4660. height: math.unit(2, "inches")
  4661. },
  4662. {
  4663. name: "Normal",
  4664. height: math.unit(6.3, "feet")
  4665. },
  4666. {
  4667. name: "Macro",
  4668. height: math.unit(850, "feet")
  4669. },
  4670. {
  4671. name: "Megamacro",
  4672. height: math.unit(7500, "feet"),
  4673. default: true
  4674. },
  4675. {
  4676. name: "Gigamacro",
  4677. height: math.unit(570000, "miles")
  4678. }
  4679. ]
  4680. ))
  4681. characterMakers.push(() => makeCharacter(
  4682. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4683. {
  4684. front: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(210, "lbs"),
  4687. name: "Front",
  4688. image: {
  4689. source: "./media/characters/rain-fallen/front.svg"
  4690. }
  4691. },
  4692. side: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(210, "lbs"),
  4695. name: "Side",
  4696. image: {
  4697. source: "./media/characters/rain-fallen/side.svg"
  4698. }
  4699. },
  4700. back: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(210, "lbs"),
  4703. name: "Back",
  4704. image: {
  4705. source: "./media/characters/rain-fallen/back.svg"
  4706. }
  4707. },
  4708. feral: {
  4709. height: math.unit(9, "feet"),
  4710. weight: math.unit(700, "lbs"),
  4711. name: "Feral",
  4712. image: {
  4713. source: "./media/characters/rain-fallen/feral.svg"
  4714. }
  4715. },
  4716. },
  4717. [
  4718. {
  4719. name: "Meddling with Mortals",
  4720. height: math.unit(8 + 8/12, "feet")
  4721. },
  4722. {
  4723. name: "Normal",
  4724. height: math.unit(5, "meter")
  4725. },
  4726. {
  4727. name: "Macro",
  4728. height: math.unit(150, "meter"),
  4729. default: true
  4730. },
  4731. {
  4732. name: "Megamacro",
  4733. height: math.unit(278e6, "meter")
  4734. },
  4735. {
  4736. name: "Gigamacro",
  4737. height: math.unit(2e9, "meter")
  4738. },
  4739. {
  4740. name: "Teramacro",
  4741. height: math.unit(8e12, "meter")
  4742. },
  4743. {
  4744. name: "Devourer",
  4745. height: math.unit(14, "zettameters")
  4746. },
  4747. {
  4748. name: "Scarlet King",
  4749. height: math.unit(18, "yottameters")
  4750. },
  4751. {
  4752. name: "Void",
  4753. height: math.unit(1e88, "yottameters")
  4754. }
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4759. {
  4760. standing: {
  4761. height: math.unit(6, "feet"),
  4762. weight: math.unit(180, "lbs"),
  4763. name: "Standing",
  4764. image: {
  4765. source: "./media/characters/zaakira/standing.svg",
  4766. extra: 1599/1504,
  4767. bottom: 39/1638
  4768. }
  4769. },
  4770. laying: {
  4771. height: math.unit(3, "feet"),
  4772. weight: math.unit(180, "lbs"),
  4773. name: "Laying",
  4774. image: {
  4775. source: "./media/characters/zaakira/laying.svg"
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Normal",
  4782. height: math.unit(12, "feet")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(279, "feet"),
  4787. default: true
  4788. }
  4789. ]
  4790. ))
  4791. characterMakers.push(() => makeCharacter(
  4792. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4793. {
  4794. femSfw: {
  4795. height: math.unit(8, "feet"),
  4796. weight: math.unit(350, "lb"),
  4797. name: "Fem",
  4798. image: {
  4799. source: "./media/characters/sigvald/fem-sfw.svg",
  4800. extra: 182 / 164,
  4801. bottom: 8.7 / 190.5
  4802. }
  4803. },
  4804. femNsfw: {
  4805. height: math.unit(8, "feet"),
  4806. weight: math.unit(350, "lb"),
  4807. name: "Fem (NSFW)",
  4808. image: {
  4809. source: "./media/characters/sigvald/fem-nsfw.svg",
  4810. extra: 182 / 164,
  4811. bottom: 8.7 / 190.5
  4812. }
  4813. },
  4814. maleNsfw: {
  4815. height: math.unit(8, "feet"),
  4816. weight: math.unit(350, "lb"),
  4817. name: "Male (NSFW)",
  4818. image: {
  4819. source: "./media/characters/sigvald/male-nsfw.svg",
  4820. extra: 182 / 164,
  4821. bottom: 8.7 / 190.5
  4822. }
  4823. },
  4824. hermNsfw: {
  4825. height: math.unit(8, "feet"),
  4826. weight: math.unit(350, "lb"),
  4827. name: "Herm (NSFW)",
  4828. image: {
  4829. source: "./media/characters/sigvald/herm-nsfw.svg",
  4830. extra: 182 / 164,
  4831. bottom: 8.7 / 190.5
  4832. }
  4833. },
  4834. dick: {
  4835. height: math.unit(2.36, "feet"),
  4836. name: "Dick",
  4837. image: {
  4838. source: "./media/characters/sigvald/dick.svg"
  4839. }
  4840. },
  4841. eye: {
  4842. height: math.unit(0.31, "feet"),
  4843. name: "Eye",
  4844. image: {
  4845. source: "./media/characters/sigvald/eye.svg"
  4846. }
  4847. },
  4848. mouth: {
  4849. height: math.unit(0.92, "feet"),
  4850. name: "Mouth",
  4851. image: {
  4852. source: "./media/characters/sigvald/mouth.svg"
  4853. }
  4854. },
  4855. paws: {
  4856. height: math.unit(2.2, "feet"),
  4857. name: "Paws",
  4858. image: {
  4859. source: "./media/characters/sigvald/paws.svg"
  4860. }
  4861. }
  4862. },
  4863. [
  4864. {
  4865. name: "Normal",
  4866. height: math.unit(8, "feet")
  4867. },
  4868. {
  4869. name: "Large",
  4870. height: math.unit(12, "feet")
  4871. },
  4872. {
  4873. name: "Larger",
  4874. height: math.unit(20, "feet")
  4875. },
  4876. {
  4877. name: "Macro",
  4878. height: math.unit(150, "feet")
  4879. },
  4880. {
  4881. name: "Macro+",
  4882. height: math.unit(200, "feet"),
  4883. default: true
  4884. },
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4889. {
  4890. side: {
  4891. height: math.unit(12, "feet"),
  4892. weight: math.unit(2000, "kg"),
  4893. name: "Side",
  4894. image: {
  4895. source: "./media/characters/scott/side.svg",
  4896. extra: 754 / 724,
  4897. bottom: 0.069
  4898. }
  4899. },
  4900. upright: {
  4901. height: math.unit(12, "feet"),
  4902. weight: math.unit(2000, "kg"),
  4903. name: "Upright",
  4904. image: {
  4905. source: "./media/characters/scott/upright.svg",
  4906. extra: 3881 / 3722,
  4907. bottom: 0.05
  4908. }
  4909. },
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(12, "feet"),
  4915. default: true
  4916. },
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4921. {
  4922. side: {
  4923. height: math.unit(8, "meters"),
  4924. weight: math.unit(84755, "lbs"),
  4925. name: "Side",
  4926. image: {
  4927. source: "./media/characters/tobias/side.svg",
  4928. extra: 1474 / 1096,
  4929. bottom: 38.9 / 1513.1235
  4930. }
  4931. },
  4932. },
  4933. [
  4934. {
  4935. name: "Normal",
  4936. height: math.unit(8, "meters"),
  4937. default: true
  4938. },
  4939. ]
  4940. ))
  4941. characterMakers.push(() => makeCharacter(
  4942. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4943. {
  4944. front: {
  4945. height: math.unit(5.5, "feet"),
  4946. weight: math.unit(400, "lbs"),
  4947. name: "Front",
  4948. image: {
  4949. source: "./media/characters/kieran/front.svg",
  4950. extra: 2694 / 2364,
  4951. bottom: 217 / 2908
  4952. }
  4953. },
  4954. side: {
  4955. height: math.unit(5.5, "feet"),
  4956. weight: math.unit(400, "lbs"),
  4957. name: "Side",
  4958. image: {
  4959. source: "./media/characters/kieran/side.svg",
  4960. extra: 875 / 777,
  4961. bottom: 84.6 / 959
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(5.5, "feet"),
  4969. default: true
  4970. },
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4975. {
  4976. side: {
  4977. height: math.unit(2, "meters"),
  4978. weight: math.unit(70, "kg"),
  4979. name: "Side",
  4980. image: {
  4981. source: "./media/characters/sanya/side.svg",
  4982. bottom: 0.02,
  4983. extra: 1.02
  4984. }
  4985. },
  4986. },
  4987. [
  4988. {
  4989. name: "Small",
  4990. height: math.unit(2, "meters")
  4991. },
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(3, "meters")
  4995. },
  4996. {
  4997. name: "Macro",
  4998. height: math.unit(16, "meters"),
  4999. default: true
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(2, "meters"),
  5008. weight: math.unit(120, "kg"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/miranda/front.svg",
  5012. extra: 195 / 185,
  5013. bottom: 10.9 / 206.5
  5014. }
  5015. },
  5016. back: {
  5017. height: math.unit(2, "meters"),
  5018. weight: math.unit(120, "kg"),
  5019. name: "Back",
  5020. image: {
  5021. source: "./media/characters/miranda/back.svg",
  5022. extra: 201 / 193,
  5023. bottom: 2.3 / 203.7
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(10, "feet"),
  5031. default: true
  5032. }
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "James", species: ["deer"], tags: ["anthro"] },
  5037. {
  5038. side: {
  5039. height: math.unit(2, "meters"),
  5040. weight: math.unit(100, "kg"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/james/front.svg",
  5044. extra: 10 / 8.5
  5045. }
  5046. },
  5047. },
  5048. [
  5049. {
  5050. name: "Normal",
  5051. height: math.unit(8.5, "feet"),
  5052. default: true
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5058. {
  5059. side: {
  5060. height: math.unit(9.5, "feet"),
  5061. weight: math.unit(2500, "lbs"),
  5062. name: "Side",
  5063. image: {
  5064. source: "./media/characters/heather/side.svg"
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Normal",
  5071. height: math.unit(9.5, "feet"),
  5072. default: true
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5078. {
  5079. side: {
  5080. height: math.unit(6.5, "feet"),
  5081. weight: math.unit(400, "lbs"),
  5082. name: "Side",
  5083. image: {
  5084. source: "./media/characters/lukas/side.svg",
  5085. extra: 7.25 / 6.5
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(6.5, "feet"),
  5093. default: true
  5094. }
  5095. ]
  5096. ))
  5097. characterMakers.push(() => makeCharacter(
  5098. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5099. {
  5100. side: {
  5101. height: math.unit(5, "feet"),
  5102. weight: math.unit(3000, "lbs"),
  5103. name: "Side",
  5104. image: {
  5105. source: "./media/characters/louise/side.svg"
  5106. }
  5107. },
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(5, "feet"),
  5113. default: true
  5114. }
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5119. {
  5120. side: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(150, "lbs"),
  5123. name: "Side",
  5124. image: {
  5125. source: "./media/characters/ramona/side.svg"
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(5.3, "meters"),
  5133. default: true
  5134. },
  5135. {
  5136. name: "Macro",
  5137. height: math.unit(20, "stories")
  5138. },
  5139. {
  5140. name: "Macro+",
  5141. height: math.unit(50, "stories")
  5142. },
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5147. {
  5148. standing: {
  5149. height: math.unit(5.75, "feet"),
  5150. weight: math.unit(160, "lbs"),
  5151. name: "Standing",
  5152. image: {
  5153. source: "./media/characters/deerpuff/standing.svg",
  5154. extra: 682 / 624
  5155. }
  5156. },
  5157. sitting: {
  5158. height: math.unit(5.75 / 1.79, "feet"),
  5159. weight: math.unit(160, "lbs"),
  5160. name: "Sitting",
  5161. image: {
  5162. source: "./media/characters/deerpuff/sitting.svg",
  5163. bottom: 44 / 400,
  5164. extra: 1
  5165. }
  5166. },
  5167. taurLaying: {
  5168. height: math.unit(6, "feet"),
  5169. weight: math.unit(400, "lbs"),
  5170. name: "Taur (Laying)",
  5171. image: {
  5172. source: "./media/characters/deerpuff/taur-laying.svg"
  5173. }
  5174. },
  5175. },
  5176. [
  5177. {
  5178. name: "Puffball",
  5179. height: math.unit(6, "inches")
  5180. },
  5181. {
  5182. name: "Normalpuff",
  5183. height: math.unit(5.75, "feet")
  5184. },
  5185. {
  5186. name: "Macropuff",
  5187. height: math.unit(1500, "feet"),
  5188. default: true
  5189. },
  5190. {
  5191. name: "Megapuff",
  5192. height: math.unit(500, "miles")
  5193. },
  5194. {
  5195. name: "Gigapuff",
  5196. height: math.unit(250000, "miles")
  5197. },
  5198. {
  5199. name: "Omegapuff",
  5200. height: math.unit(1000, "lightyears")
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5206. {
  5207. stomping: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(170, "lbs"),
  5210. name: "Stomping",
  5211. image: {
  5212. source: "./media/characters/vivian/stomping.svg"
  5213. }
  5214. },
  5215. sitting: {
  5216. height: math.unit(6 / 1.75, "feet"),
  5217. weight: math.unit(170, "lbs"),
  5218. name: "Sitting",
  5219. image: {
  5220. source: "./media/characters/vivian/sitting.svg",
  5221. bottom: 1 / 6.4,
  5222. extra: 1,
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(7, "feet"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Macro",
  5234. height: math.unit(10, "stories")
  5235. },
  5236. {
  5237. name: "Macro+",
  5238. height: math.unit(30, "stories")
  5239. },
  5240. {
  5241. name: "Megamacro",
  5242. height: math.unit(10, "miles")
  5243. },
  5244. {
  5245. name: "Megamacro+",
  5246. height: math.unit(2750000, "meters")
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(160, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/prince/front.svg",
  5259. extra: 3400 / 3000
  5260. }
  5261. },
  5262. jumping: {
  5263. height: math.unit(6, "feet"),
  5264. weight: math.unit(160, "lbs"),
  5265. name: "Jumping",
  5266. image: {
  5267. source: "./media/characters/prince/jump.svg",
  5268. extra: 2555 / 2134
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(7.75, "feet"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Not cute",
  5280. height: math.unit(17, "feet")
  5281. },
  5282. {
  5283. name: "I said NOT",
  5284. height: math.unit(91, "feet")
  5285. },
  5286. {
  5287. name: "Please stop",
  5288. height: math.unit(560, "feet")
  5289. },
  5290. {
  5291. name: "What have you done",
  5292. height: math.unit(2200, "feet")
  5293. },
  5294. {
  5295. name: "Deer God",
  5296. height: math.unit(3.6, "miles")
  5297. },
  5298. ]
  5299. ))
  5300. characterMakers.push(() => makeCharacter(
  5301. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5302. {
  5303. standing: {
  5304. height: math.unit(6, "feet"),
  5305. weight: math.unit(300, "lbs"),
  5306. name: "Standing",
  5307. image: {
  5308. source: "./media/characters/psymon/standing.svg",
  5309. extra: 1888 / 1810,
  5310. bottom: 0.05
  5311. }
  5312. },
  5313. slithering: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(300, "lbs"),
  5316. name: "Slithering",
  5317. image: {
  5318. source: "./media/characters/psymon/slithering.svg",
  5319. extra: 1330 / 1224
  5320. }
  5321. },
  5322. slitheringAlt: {
  5323. height: math.unit(6, "feet"),
  5324. weight: math.unit(300, "lbs"),
  5325. name: "Slithering (Alt)",
  5326. image: {
  5327. source: "./media/characters/psymon/slithering-alt.svg",
  5328. extra: 1330 / 1224
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(11.25, "feet"),
  5336. default: true
  5337. },
  5338. {
  5339. name: "Large",
  5340. height: math.unit(27, "feet")
  5341. },
  5342. {
  5343. name: "Giant",
  5344. height: math.unit(87, "feet")
  5345. },
  5346. {
  5347. name: "Macro",
  5348. height: math.unit(365, "feet")
  5349. },
  5350. {
  5351. name: "Megamacro",
  5352. height: math.unit(3, "miles")
  5353. },
  5354. {
  5355. name: "World Serpent",
  5356. height: math.unit(8000, "miles")
  5357. },
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5362. {
  5363. front: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(180, "lbs"),
  5366. name: "Front",
  5367. image: {
  5368. source: "./media/characters/daimos/front.svg",
  5369. extra: 4160 / 3897,
  5370. bottom: 0.021
  5371. }
  5372. }
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(8, "feet"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Big Dog",
  5382. height: math.unit(22, "feet")
  5383. },
  5384. {
  5385. name: "Macro",
  5386. height: math.unit(127, "feet")
  5387. },
  5388. {
  5389. name: "Megamacro",
  5390. height: math.unit(3600, "feet")
  5391. },
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5396. {
  5397. side: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(180, "lbs"),
  5400. name: "Side",
  5401. image: {
  5402. source: "./media/characters/blake/side.svg",
  5403. extra: 1212 / 1120,
  5404. bottom: 0.05
  5405. }
  5406. },
  5407. crouched: {
  5408. height: math.unit(6 * 0.57, "feet"),
  5409. weight: math.unit(180, "lbs"),
  5410. name: "Crouched",
  5411. image: {
  5412. source: "./media/characters/blake/crouched.svg",
  5413. extra: 840 / 587,
  5414. bottom: 0.04
  5415. }
  5416. },
  5417. bent: {
  5418. height: math.unit(6 * 0.75, "feet"),
  5419. weight: math.unit(180, "lbs"),
  5420. name: "Bent",
  5421. image: {
  5422. source: "./media/characters/blake/bent.svg",
  5423. extra: 592 / 544,
  5424. bottom: 0.035
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(8 + 1 / 6, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Big Backside",
  5436. height: math.unit(37, "feet")
  5437. },
  5438. {
  5439. name: "Subway Shredder",
  5440. height: math.unit(72, "feet")
  5441. },
  5442. {
  5443. name: "City Carver",
  5444. height: math.unit(1675, "feet")
  5445. },
  5446. {
  5447. name: "Tectonic Tweaker",
  5448. height: math.unit(2300, "miles")
  5449. },
  5450. ]
  5451. ))
  5452. characterMakers.push(() => makeCharacter(
  5453. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5454. {
  5455. front: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(180, "lbs"),
  5458. name: "Front",
  5459. image: {
  5460. source: "./media/characters/guisetto/front.svg",
  5461. extra: 856 / 817,
  5462. bottom: 0.06
  5463. }
  5464. },
  5465. airborne: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(180, "lbs"),
  5468. name: "Airborne",
  5469. image: {
  5470. source: "./media/characters/guisetto/airborne.svg",
  5471. extra: 584 / 525
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(10 + 11 / 12, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Large",
  5483. height: math.unit(35, "feet")
  5484. },
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(475, "feet")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(6, "feet"),
  5496. weight: math.unit(180, "lbs"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/luxor/front.svg",
  5500. extra: 2940 / 2152
  5501. }
  5502. },
  5503. back: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(180, "lbs"),
  5506. name: "Back",
  5507. image: {
  5508. source: "./media/characters/luxor/back.svg",
  5509. extra: 1083 / 960
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(5 + 5 / 6, "feet"),
  5517. default: true
  5518. },
  5519. {
  5520. name: "Lamp",
  5521. height: math.unit(50, "feet")
  5522. },
  5523. {
  5524. name: "Lämp",
  5525. height: math.unit(300, "feet")
  5526. },
  5527. {
  5528. name: "The sun is a lamp",
  5529. height: math.unit(250000, "miles")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(50, "lbs"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/huoyan/front.svg"
  5542. }
  5543. },
  5544. side: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(180, "lbs"),
  5547. name: "Side",
  5548. image: {
  5549. source: "./media/characters/huoyan/side.svg"
  5550. }
  5551. },
  5552. },
  5553. [
  5554. {
  5555. name: "Chef",
  5556. height: math.unit(9, "feet")
  5557. },
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(65, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(780, "feet")
  5566. },
  5567. {
  5568. name: "Flaming Mountain",
  5569. height: math.unit(4.8, "miles")
  5570. },
  5571. {
  5572. name: "Celestial",
  5573. height: math.unit(765000, "miles")
  5574. },
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(5 + 3 / 4, "feet"),
  5582. weight: math.unit(120, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/tails/front.svg"
  5586. }
  5587. }
  5588. },
  5589. [
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(5 + 3 / 4, "feet"),
  5593. default: true
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(4, "feet"),
  5602. weight: math.unit(50, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/rainy/front.svg"
  5606. }
  5607. }
  5608. },
  5609. [
  5610. {
  5611. name: "Macro",
  5612. height: math.unit(800, "feet"),
  5613. default: true
  5614. }
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(150, "lbs"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/rainier/front.svg"
  5626. }
  5627. }
  5628. },
  5629. [
  5630. {
  5631. name: "Micro",
  5632. height: math.unit(2, "mm"),
  5633. default: true
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(8 + 4/12, "feet"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/andy-renard/front.svg",
  5645. extra: 1839/1726,
  5646. bottom: 134/1973
  5647. }
  5648. },
  5649. back: {
  5650. height: math.unit(8 + 4/12, "feet"),
  5651. name: "Back",
  5652. image: {
  5653. source: "./media/characters/andy-renard/back.svg",
  5654. extra: 1838/1710,
  5655. bottom: 105/1943
  5656. }
  5657. },
  5658. },
  5659. [
  5660. {
  5661. name: "Tall",
  5662. height: math.unit(8 + 4/12, "feet")
  5663. },
  5664. {
  5665. name: "Mini Macro",
  5666. height: math.unit(15, "feet"),
  5667. default: true
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(100, "feet")
  5672. },
  5673. {
  5674. name: "Mega Macro",
  5675. height: math.unit(1000, "feet")
  5676. },
  5677. {
  5678. name: "Giga Macro",
  5679. height: math.unit(10, "miles")
  5680. },
  5681. {
  5682. name: "God Macro",
  5683. height: math.unit(1, "multiverse")
  5684. },
  5685. ]
  5686. ))
  5687. characterMakers.push(() => makeCharacter(
  5688. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5689. {
  5690. front: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(210, "lbs"),
  5693. name: "Front",
  5694. image: {
  5695. source: "./media/characters/cimmaron/front-sfw.svg",
  5696. extra: 701 / 676,
  5697. bottom: 0.046
  5698. }
  5699. },
  5700. back: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(210, "lbs"),
  5703. name: "Back",
  5704. image: {
  5705. source: "./media/characters/cimmaron/back-sfw.svg",
  5706. extra: 701 / 676,
  5707. bottom: 0.046
  5708. }
  5709. },
  5710. frontNsfw: {
  5711. height: math.unit(6, "feet"),
  5712. weight: math.unit(210, "lbs"),
  5713. name: "Front (NSFW)",
  5714. image: {
  5715. source: "./media/characters/cimmaron/front-nsfw.svg",
  5716. extra: 701 / 676,
  5717. bottom: 0.046
  5718. }
  5719. },
  5720. backNsfw: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(210, "lbs"),
  5723. name: "Back (NSFW)",
  5724. image: {
  5725. source: "./media/characters/cimmaron/back-nsfw.svg",
  5726. extra: 701 / 676,
  5727. bottom: 0.046
  5728. }
  5729. },
  5730. dick: {
  5731. height: math.unit(1.714, "feet"),
  5732. name: "Dick",
  5733. image: {
  5734. source: "./media/characters/cimmaron/dick.svg"
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(6, "feet"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Macro Mayor",
  5746. height: math.unit(350, "meters")
  5747. },
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(200, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/akari/front.svg",
  5759. extra: 962 / 901,
  5760. bottom: 0.04
  5761. }
  5762. }
  5763. },
  5764. [
  5765. {
  5766. name: "Micro",
  5767. height: math.unit(5, "inches"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(7, "feet")
  5773. },
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5778. {
  5779. front: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(140, "lbs"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/cynosura/front.svg",
  5785. extra: 896 / 847
  5786. }
  5787. },
  5788. back: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(140, "lbs"),
  5791. name: "Back",
  5792. image: {
  5793. source: "./media/characters/cynosura/back.svg",
  5794. extra: 1365 / 1250
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Micro",
  5801. height: math.unit(4, "inches")
  5802. },
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(5.75, "feet"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Tall",
  5810. height: math.unit(10, "feet")
  5811. },
  5812. {
  5813. name: "Big",
  5814. height: math.unit(20, "feet")
  5815. },
  5816. {
  5817. name: "Macro",
  5818. height: math.unit(50, "feet")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(13 + 2/12, "feet"),
  5827. weight: math.unit(800, "kg"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/gin/front.svg",
  5831. extra: 1312/1191,
  5832. bottom: 45/1357
  5833. }
  5834. },
  5835. mouth: {
  5836. height: math.unit(2.39 * 1.8, "feet"),
  5837. name: "Mouth",
  5838. image: {
  5839. source: "./media/characters/gin/mouth.svg"
  5840. }
  5841. },
  5842. hand: {
  5843. height: math.unit(1.57 * 2.19, "feet"),
  5844. name: "Hand",
  5845. image: {
  5846. source: "./media/characters/gin/hand.svg"
  5847. }
  5848. },
  5849. foot: {
  5850. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5851. name: "Foot",
  5852. image: {
  5853. source: "./media/characters/gin/foot.svg"
  5854. }
  5855. },
  5856. sole: {
  5857. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5858. name: "Sole",
  5859. image: {
  5860. source: "./media/characters/gin/sole.svg"
  5861. }
  5862. },
  5863. },
  5864. [
  5865. {
  5866. name: "Very Small",
  5867. height: math.unit(13 + 2 / 12, "feet")
  5868. },
  5869. {
  5870. name: "Micro",
  5871. height: math.unit(600, "miles")
  5872. },
  5873. {
  5874. name: "Regular",
  5875. height: math.unit(20, "earths"),
  5876. default: true
  5877. },
  5878. {
  5879. name: "Macro",
  5880. height: math.unit(2.2, "solarradii")
  5881. },
  5882. {
  5883. name: "Teramacro",
  5884. height: math.unit(1.2, "galaxies")
  5885. },
  5886. {
  5887. name: "Omegamacro",
  5888. height: math.unit(200, "universes")
  5889. },
  5890. ]
  5891. ))
  5892. characterMakers.push(() => makeCharacter(
  5893. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5894. {
  5895. front: {
  5896. height: math.unit(6 + 1 / 6, "feet"),
  5897. weight: math.unit(178, "lbs"),
  5898. name: "Front",
  5899. image: {
  5900. source: "./media/characters/guy/front.svg"
  5901. }
  5902. }
  5903. },
  5904. [
  5905. {
  5906. name: "Normal",
  5907. height: math.unit(6 + 1 / 6, "feet"),
  5908. default: true
  5909. },
  5910. {
  5911. name: "Large",
  5912. height: math.unit(25 + 7 / 12, "feet")
  5913. },
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(60 + 9 / 12, "feet")
  5917. },
  5918. {
  5919. name: "Macro+",
  5920. height: math.unit(246, "feet")
  5921. },
  5922. {
  5923. name: "Macro++",
  5924. height: math.unit(878, "feet")
  5925. }
  5926. ]
  5927. ))
  5928. characterMakers.push(() => makeCharacter(
  5929. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5930. {
  5931. front: {
  5932. height: math.unit(9, "feet"),
  5933. weight: math.unit(800, "lbs"),
  5934. name: "Front",
  5935. image: {
  5936. source: "./media/characters/tiberius/front.svg",
  5937. extra: 2295 / 2071
  5938. }
  5939. },
  5940. back: {
  5941. height: math.unit(9, "feet"),
  5942. weight: math.unit(800, "lbs"),
  5943. name: "Back",
  5944. image: {
  5945. source: "./media/characters/tiberius/back.svg",
  5946. extra: 2373 / 2160
  5947. }
  5948. },
  5949. },
  5950. [
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(9, "feet"),
  5954. default: true
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5960. {
  5961. front: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(600, "lbs"),
  5964. name: "Front",
  5965. image: {
  5966. source: "./media/characters/surgo/front.svg",
  5967. extra: 3591 / 2227
  5968. }
  5969. },
  5970. back: {
  5971. height: math.unit(6, "feet"),
  5972. weight: math.unit(600, "lbs"),
  5973. name: "Back",
  5974. image: {
  5975. source: "./media/characters/surgo/back.svg",
  5976. extra: 3557 / 2228
  5977. }
  5978. },
  5979. laying: {
  5980. height: math.unit(6 * 0.85, "feet"),
  5981. weight: math.unit(600, "lbs"),
  5982. name: "Laying",
  5983. image: {
  5984. source: "./media/characters/surgo/laying.svg"
  5985. }
  5986. },
  5987. },
  5988. [
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(6, "feet"),
  5992. default: true
  5993. }
  5994. ]
  5995. ))
  5996. characterMakers.push(() => makeCharacter(
  5997. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5998. {
  5999. side: {
  6000. height: math.unit(6, "feet"),
  6001. weight: math.unit(150, "lbs"),
  6002. name: "Side",
  6003. image: {
  6004. source: "./media/characters/cibus/side.svg",
  6005. extra: 800 / 400
  6006. }
  6007. },
  6008. },
  6009. [
  6010. {
  6011. name: "Normal",
  6012. height: math.unit(6, "feet"),
  6013. default: true
  6014. }
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6019. {
  6020. front: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(240, "lbs"),
  6023. name: "Front",
  6024. image: {
  6025. source: "./media/characters/nibbles/front.svg"
  6026. }
  6027. },
  6028. side: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(240, "lbs"),
  6031. name: "Side",
  6032. image: {
  6033. source: "./media/characters/nibbles/side.svg"
  6034. }
  6035. },
  6036. },
  6037. [
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(9, "feet"),
  6041. default: true
  6042. }
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6047. {
  6048. side: {
  6049. height: math.unit(5 + 1 / 6, "feet"),
  6050. weight: math.unit(130, "lbs"),
  6051. name: "Side",
  6052. image: {
  6053. source: "./media/characters/rikky/side.svg",
  6054. extra: 851 / 801
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(5 + 1 / 6, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(152, "feet"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Megamacro",
  6070. height: math.unit(7, "miles")
  6071. }
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6076. {
  6077. side: {
  6078. height: math.unit(370, "cm"),
  6079. weight: math.unit(350, "lbs"),
  6080. name: "Side",
  6081. image: {
  6082. source: "./media/characters/malfressa/side.svg"
  6083. }
  6084. },
  6085. walking: {
  6086. height: math.unit(370, "cm"),
  6087. weight: math.unit(350, "lbs"),
  6088. name: "Walking",
  6089. image: {
  6090. source: "./media/characters/malfressa/walking.svg"
  6091. }
  6092. },
  6093. feral: {
  6094. height: math.unit(2500, "cm"),
  6095. weight: math.unit(100000, "lbs"),
  6096. name: "Feral",
  6097. image: {
  6098. source: "./media/characters/malfressa/feral.svg",
  6099. extra: 2108 / 837,
  6100. bottom: 0.02
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(370, "cm")
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(300, "meters"),
  6112. default: true
  6113. }
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6118. {
  6119. front: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(60, "kg"),
  6122. name: "Front",
  6123. image: {
  6124. source: "./media/characters/jaro/front.svg"
  6125. }
  6126. },
  6127. back: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(60, "kg"),
  6130. name: "Back",
  6131. image: {
  6132. source: "./media/characters/jaro/back.svg"
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Micro",
  6139. height: math.unit(7, "inches")
  6140. },
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(5.5, "feet"),
  6144. default: true
  6145. },
  6146. {
  6147. name: "Minimacro",
  6148. height: math.unit(20, "feet")
  6149. },
  6150. {
  6151. name: "Macro",
  6152. height: math.unit(200, "meters")
  6153. }
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(6, "feet"),
  6161. weight: math.unit(195, "lb"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/rogue/front.svg"
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Macro",
  6171. height: math.unit(90, "feet"),
  6172. default: true
  6173. },
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6178. {
  6179. front: {
  6180. height: math.unit(5 + 8 / 12, "feet"),
  6181. weight: math.unit(140, "lb"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/piper/front.svg",
  6185. extra: 3948/3655,
  6186. bottom: 0/3948
  6187. }
  6188. },
  6189. },
  6190. [
  6191. {
  6192. name: "Micro",
  6193. height: math.unit(2, "inches")
  6194. },
  6195. {
  6196. name: "Normal",
  6197. height: math.unit(5 + 8 / 12, "feet")
  6198. },
  6199. {
  6200. name: "Macro",
  6201. height: math.unit(250, "feet"),
  6202. default: true
  6203. },
  6204. {
  6205. name: "Megamacro",
  6206. height: math.unit(7, "miles")
  6207. },
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6212. {
  6213. front: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(220, "lb"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/gemini/front.svg"
  6219. }
  6220. },
  6221. back: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(220, "lb"),
  6224. name: "Back",
  6225. image: {
  6226. source: "./media/characters/gemini/back.svg"
  6227. }
  6228. },
  6229. kneeling: {
  6230. height: math.unit(6 / 1.5, "feet"),
  6231. weight: math.unit(220, "lb"),
  6232. name: "Kneeling",
  6233. image: {
  6234. source: "./media/characters/gemini/kneeling.svg",
  6235. bottom: 0.02
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Macro",
  6242. height: math.unit(300, "meters"),
  6243. default: true
  6244. },
  6245. {
  6246. name: "Megamacro",
  6247. height: math.unit(6900, "meters")
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6253. {
  6254. anthro: {
  6255. height: math.unit(2.35, "meters"),
  6256. weight: math.unit(73, "kg"),
  6257. name: "Anthro",
  6258. image: {
  6259. source: "./media/characters/alicia/anthro.svg",
  6260. extra: 2571 / 2385,
  6261. bottom: 75 / 2648
  6262. }
  6263. },
  6264. paw: {
  6265. height: math.unit(1.32, "feet"),
  6266. name: "Paw",
  6267. image: {
  6268. source: "./media/characters/alicia/paw.svg"
  6269. }
  6270. },
  6271. feral: {
  6272. height: math.unit(1.69, "meters"),
  6273. weight: math.unit(73, "kg"),
  6274. name: "Feral",
  6275. image: {
  6276. source: "./media/characters/alicia/feral.svg",
  6277. extra: 2123 / 1715,
  6278. bottom: 222 / 2349
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(2.35, "meters")
  6286. },
  6287. {
  6288. name: "Macro",
  6289. height: math.unit(60, "meters"),
  6290. default: true
  6291. },
  6292. {
  6293. name: "Megamacro",
  6294. height: math.unit(10000, "kilometers")
  6295. },
  6296. ]
  6297. ))
  6298. characterMakers.push(() => makeCharacter(
  6299. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6300. {
  6301. front: {
  6302. height: math.unit(7, "feet"),
  6303. weight: math.unit(250, "lbs"),
  6304. name: "Front",
  6305. image: {
  6306. source: "./media/characters/archy/front.svg"
  6307. }
  6308. }
  6309. },
  6310. [
  6311. {
  6312. name: "Micro",
  6313. height: math.unit(1, "inch")
  6314. },
  6315. {
  6316. name: "Shorty",
  6317. height: math.unit(5, "feet")
  6318. },
  6319. {
  6320. name: "Normal",
  6321. height: math.unit(7, "feet")
  6322. },
  6323. {
  6324. name: "Macro",
  6325. height: math.unit(600, "meters"),
  6326. default: true
  6327. },
  6328. {
  6329. name: "Megamacro",
  6330. height: math.unit(1, "mile")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(1.65, "meters"),
  6339. weight: math.unit(74, "kg"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/berri/front.svg",
  6343. extra: 857 / 837,
  6344. bottom: 18 / 877
  6345. }
  6346. },
  6347. bum: {
  6348. height: math.unit(1.46, "feet"),
  6349. name: "Bum",
  6350. image: {
  6351. source: "./media/characters/berri/bum.svg"
  6352. }
  6353. },
  6354. mouth: {
  6355. height: math.unit(0.44, "feet"),
  6356. name: "Mouth",
  6357. image: {
  6358. source: "./media/characters/berri/mouth.svg"
  6359. }
  6360. },
  6361. paw: {
  6362. height: math.unit(0.826, "feet"),
  6363. name: "Paw",
  6364. image: {
  6365. source: "./media/characters/berri/paw.svg"
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(1.65, "meters")
  6373. },
  6374. {
  6375. name: "Macro",
  6376. height: math.unit(60, "m"),
  6377. default: true
  6378. },
  6379. {
  6380. name: "Megamacro",
  6381. height: math.unit(9.213, "km")
  6382. },
  6383. {
  6384. name: "Planet Eater",
  6385. height: math.unit(489, "megameters")
  6386. },
  6387. {
  6388. name: "Teramacro",
  6389. height: math.unit(2471635000000, "meters")
  6390. },
  6391. {
  6392. name: "Examacro",
  6393. height: math.unit(8.0624e+26, "meters")
  6394. }
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(1.72, "meters"),
  6402. weight: math.unit(68, "kg"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/lexi/front.svg"
  6406. }
  6407. }
  6408. },
  6409. [
  6410. {
  6411. name: "Very Smol",
  6412. height: math.unit(10, "mm")
  6413. },
  6414. {
  6415. name: "Micro",
  6416. height: math.unit(6.8, "cm"),
  6417. default: true
  6418. },
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(1.72, "m")
  6422. }
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6427. {
  6428. front: {
  6429. height: math.unit(1.69, "meters"),
  6430. weight: math.unit(68, "kg"),
  6431. name: "Front",
  6432. image: {
  6433. source: "./media/characters/martin/front.svg",
  6434. extra: 596 / 581
  6435. }
  6436. }
  6437. },
  6438. [
  6439. {
  6440. name: "Micro",
  6441. height: math.unit(6.85, "cm"),
  6442. default: true
  6443. },
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(1.69, "m")
  6447. }
  6448. ]
  6449. ))
  6450. characterMakers.push(() => makeCharacter(
  6451. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6452. {
  6453. front: {
  6454. height: math.unit(1.69, "meters"),
  6455. weight: math.unit(68, "kg"),
  6456. name: "Front",
  6457. image: {
  6458. source: "./media/characters/juno/front.svg"
  6459. }
  6460. }
  6461. },
  6462. [
  6463. {
  6464. name: "Micro",
  6465. height: math.unit(7, "cm")
  6466. },
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(1.89, "m")
  6470. },
  6471. {
  6472. name: "Macro",
  6473. height: math.unit(353, "meters"),
  6474. default: true
  6475. }
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(1.93, "meters"),
  6483. weight: math.unit(83, "kg"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/samantha/front.svg"
  6487. }
  6488. },
  6489. frontClothed: {
  6490. height: math.unit(1.93, "meters"),
  6491. weight: math.unit(83, "kg"),
  6492. name: "Front (Clothed)",
  6493. image: {
  6494. source: "./media/characters/samantha/front-clothed.svg"
  6495. }
  6496. },
  6497. back: {
  6498. height: math.unit(1.93, "meters"),
  6499. weight: math.unit(83, "kg"),
  6500. name: "Back",
  6501. image: {
  6502. source: "./media/characters/samantha/back.svg"
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Normal",
  6509. height: math.unit(1.93, "m")
  6510. },
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(74, "meters"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Macro+",
  6518. height: math.unit(223, "meters"),
  6519. },
  6520. {
  6521. name: "Megamacro",
  6522. height: math.unit(8381, "meters"),
  6523. },
  6524. {
  6525. name: "Megamacro+",
  6526. height: math.unit(12000, "kilometers")
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(1.92, "meters"),
  6535. weight: math.unit(80, "kg"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/dr-clay/front.svg"
  6539. }
  6540. },
  6541. frontClothed: {
  6542. height: math.unit(1.92, "meters"),
  6543. weight: math.unit(80, "kg"),
  6544. name: "Front (Clothed)",
  6545. image: {
  6546. source: "./media/characters/dr-clay/front-clothed.svg"
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(1.92, "m")
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(214, "meters"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Macro+",
  6562. height: math.unit(12.237, "meters"),
  6563. },
  6564. {
  6565. name: "Megamacro",
  6566. height: math.unit(557, "megameters"),
  6567. },
  6568. {
  6569. name: "Unimaginable",
  6570. height: math.unit(120e9, "lightyears")
  6571. },
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(2, "meters"),
  6579. weight: math.unit(80, "kg"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6583. }
  6584. }
  6585. },
  6586. [
  6587. {
  6588. name: "Teramacro",
  6589. height: math.unit(500000, "lightyears"),
  6590. default: true
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6596. {
  6597. crux: {
  6598. height: math.unit(2, "meters"),
  6599. weight: math.unit(150, "kg"),
  6600. name: "Crux",
  6601. image: {
  6602. source: "./media/characters/vemus/crux.svg",
  6603. extra: 1074/936,
  6604. bottom: 23/1097
  6605. }
  6606. },
  6607. skunkTanuki: {
  6608. height: math.unit(2, "meters"),
  6609. weight: math.unit(150, "kg"),
  6610. name: "Skunk-Tanuki",
  6611. image: {
  6612. source: "./media/characters/vemus/skunk-tanuki.svg",
  6613. extra: 926/893,
  6614. bottom: 20/946
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(3.75, "meters"),
  6622. default: true
  6623. },
  6624. {
  6625. name: "Big",
  6626. height: math.unit(8, "meters")
  6627. },
  6628. {
  6629. name: "Macro",
  6630. height: math.unit(100, "meters")
  6631. },
  6632. {
  6633. name: "Macro+",
  6634. height: math.unit(1500, "meters")
  6635. },
  6636. {
  6637. name: "Stellar",
  6638. height: math.unit(14e8, "meters")
  6639. },
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(2, "meters"),
  6647. weight: math.unit(70, "kg"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/beherit/front.svg",
  6651. extra: 1408 / 1242
  6652. }
  6653. }
  6654. },
  6655. [
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(6, "feet")
  6659. },
  6660. {
  6661. name: "Lorg",
  6662. height: math.unit(25, "feet"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Lorger",
  6667. height: math.unit(75, "feet")
  6668. },
  6669. {
  6670. name: "Macro",
  6671. height: math.unit(200, "meters")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(2, "meters"),
  6680. weight: math.unit(150, "kg"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/everett/front.svg",
  6684. extra: 2038 / 1737,
  6685. bottom: 0.03
  6686. }
  6687. },
  6688. paw: {
  6689. height: math.unit(2 / 3.6, "meters"),
  6690. name: "Paw",
  6691. image: {
  6692. source: "./media/characters/everett/paw.svg"
  6693. }
  6694. },
  6695. },
  6696. [
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(15, "feet"),
  6700. default: true
  6701. },
  6702. {
  6703. name: "Lorg",
  6704. height: math.unit(70, "feet"),
  6705. default: true
  6706. },
  6707. {
  6708. name: "Lorger",
  6709. height: math.unit(250, "feet")
  6710. },
  6711. {
  6712. name: "Macro",
  6713. height: math.unit(500, "meters")
  6714. },
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(2, "meters"),
  6722. weight: math.unit(86, "kg"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/rose/front.svg",
  6726. extra: 1785/1636,
  6727. bottom: 30/1815
  6728. }
  6729. },
  6730. frontSporty: {
  6731. height: math.unit(2, "meters"),
  6732. weight: math.unit(86, "kg"),
  6733. name: "Front (Sporty)",
  6734. image: {
  6735. source: "./media/characters/rose/front-sporty.svg",
  6736. extra: 350/335,
  6737. bottom: 10/360
  6738. }
  6739. },
  6740. frontAlt: {
  6741. height: math.unit(1.6, "meters"),
  6742. weight: math.unit(86, "kg"),
  6743. name: "Front (Alt)",
  6744. image: {
  6745. source: "./media/characters/rose/front-alt.svg",
  6746. extra: 299/283,
  6747. bottom: 3/302
  6748. }
  6749. },
  6750. plush: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(86/3, "kg"),
  6753. name: "Plush",
  6754. image: {
  6755. source: "./media/characters/rose/plush.svg",
  6756. extra: 361/337,
  6757. bottom: 11/372
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "True Micro",
  6764. height: math.unit(9, "cm")
  6765. },
  6766. {
  6767. name: "Micro",
  6768. height: math.unit(16, "cm")
  6769. },
  6770. {
  6771. name: "Normal",
  6772. height: math.unit(1.85, "meters"),
  6773. default: true
  6774. },
  6775. {
  6776. name: "Mini-Macro",
  6777. height: math.unit(5, "meters")
  6778. },
  6779. {
  6780. name: "Macro",
  6781. height: math.unit(15, "meters")
  6782. },
  6783. {
  6784. name: "True Macro",
  6785. height: math.unit(40, "meters")
  6786. },
  6787. {
  6788. name: "City Scale",
  6789. height: math.unit(1, "km")
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(2, "meters"),
  6798. weight: math.unit(350, "lbs"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/regal/front.svg"
  6802. }
  6803. },
  6804. back: {
  6805. height: math.unit(2, "meters"),
  6806. weight: math.unit(350, "lbs"),
  6807. name: "Back",
  6808. image: {
  6809. source: "./media/characters/regal/back.svg"
  6810. }
  6811. },
  6812. },
  6813. [
  6814. {
  6815. name: "Macro",
  6816. height: math.unit(350, "feet"),
  6817. default: true
  6818. }
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6823. {
  6824. front: {
  6825. height: math.unit(4 + 11 / 12, "feet"),
  6826. weight: math.unit(100, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/opal/front.svg"
  6830. }
  6831. },
  6832. frontAlt: {
  6833. height: math.unit(4 + 11 / 12, "feet"),
  6834. weight: math.unit(100, "lbs"),
  6835. name: "Front (Alt)",
  6836. image: {
  6837. source: "./media/characters/opal/front-alt.svg"
  6838. }
  6839. },
  6840. },
  6841. [
  6842. {
  6843. name: "Small",
  6844. height: math.unit(4 + 11 / 12, "feet")
  6845. },
  6846. {
  6847. name: "Normal",
  6848. height: math.unit(20, "feet"),
  6849. default: true
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(120, "feet")
  6854. },
  6855. {
  6856. name: "Megamacro",
  6857. height: math.unit(80, "miles")
  6858. },
  6859. {
  6860. name: "True Size",
  6861. height: math.unit(100000, "lightyears")
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(6, "feet"),
  6870. weight: math.unit(200, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/vector-wuff/front.svg"
  6874. }
  6875. }
  6876. },
  6877. [
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(2.8, "meters")
  6881. },
  6882. {
  6883. name: "Macro",
  6884. height: math.unit(450, "meters"),
  6885. default: true
  6886. },
  6887. {
  6888. name: "Megamacro",
  6889. height: math.unit(15, "kilometers")
  6890. }
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(6, "feet"),
  6898. weight: math.unit(256, "lbs"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/dannik/front.svg"
  6902. }
  6903. }
  6904. },
  6905. [
  6906. {
  6907. name: "Macro",
  6908. height: math.unit(69.57, "meters"),
  6909. default: true
  6910. },
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(6, "feet"),
  6918. weight: math.unit(120, "lbs"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/azura-saharah/front.svg"
  6922. }
  6923. },
  6924. back: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(120, "lbs"),
  6927. name: "Back",
  6928. image: {
  6929. source: "./media/characters/azura-saharah/back.svg"
  6930. }
  6931. },
  6932. },
  6933. [
  6934. {
  6935. name: "Macro",
  6936. height: math.unit(100, "feet"),
  6937. default: true
  6938. },
  6939. ]
  6940. ))
  6941. characterMakers.push(() => makeCharacter(
  6942. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6943. {
  6944. side: {
  6945. height: math.unit(5 + 4 / 12, "feet"),
  6946. weight: math.unit(163, "lbs"),
  6947. name: "Side",
  6948. image: {
  6949. source: "./media/characters/kennedy/side.svg"
  6950. }
  6951. }
  6952. },
  6953. [
  6954. {
  6955. name: "Standard Doggo",
  6956. height: math.unit(5 + 4 / 12, "feet")
  6957. },
  6958. {
  6959. name: "Big Doggo",
  6960. height: math.unit(25 + 3 / 12, "feet"),
  6961. default: true
  6962. },
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6967. {
  6968. front: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(90, "lbs"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/odi-lunar/front.svg"
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Micro",
  6980. height: math.unit(3, "inches"),
  6981. default: true
  6982. },
  6983. {
  6984. name: "Normal",
  6985. height: math.unit(5.5, "feet")
  6986. }
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6991. {
  6992. back: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(220, "lbs"),
  6995. name: "Back",
  6996. image: {
  6997. source: "./media/characters/mandake/back.svg"
  6998. }
  6999. }
  7000. },
  7001. [
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(7, "feet"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(78, "feet")
  7010. },
  7011. {
  7012. name: "Macro+",
  7013. height: math.unit(300, "meters")
  7014. },
  7015. {
  7016. name: "Macro++",
  7017. height: math.unit(2400, "feet")
  7018. },
  7019. {
  7020. name: "Megamacro",
  7021. height: math.unit(5167, "meters")
  7022. },
  7023. {
  7024. name: "Gigamacro",
  7025. height: math.unit(41769, "miles")
  7026. },
  7027. ]
  7028. ))
  7029. characterMakers.push(() => makeCharacter(
  7030. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7031. {
  7032. front: {
  7033. height: math.unit(6, "feet"),
  7034. weight: math.unit(120, "lbs"),
  7035. name: "Front",
  7036. image: {
  7037. source: "./media/characters/yozey/front.svg"
  7038. }
  7039. },
  7040. frontAlt: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(120, "lbs"),
  7043. name: "Front (Alt)",
  7044. image: {
  7045. source: "./media/characters/yozey/front-alt.svg"
  7046. }
  7047. },
  7048. side: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(120, "lbs"),
  7051. name: "Side",
  7052. image: {
  7053. source: "./media/characters/yozey/side.svg"
  7054. }
  7055. },
  7056. },
  7057. [
  7058. {
  7059. name: "Micro",
  7060. height: math.unit(3, "inches"),
  7061. default: true
  7062. },
  7063. {
  7064. name: "Normal",
  7065. height: math.unit(6, "feet")
  7066. }
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(103, "lbs"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/valeska-voss/front.svg"
  7078. }
  7079. }
  7080. },
  7081. [
  7082. {
  7083. name: "Mini-Sized Sub",
  7084. height: math.unit(3.1, "inches")
  7085. },
  7086. {
  7087. name: "Mid-Sized Sub",
  7088. height: math.unit(6.2, "inches")
  7089. },
  7090. {
  7091. name: "Full-Sized Sub",
  7092. height: math.unit(9.3, "inches")
  7093. },
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(5 + 2 / 12, "foot"),
  7097. default: true
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(160, "lbs"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/gene-zeta/front.svg",
  7110. extra: 3006 / 2826,
  7111. bottom: 182 / 3188
  7112. }
  7113. }
  7114. },
  7115. [
  7116. {
  7117. name: "Micro",
  7118. height: math.unit(6, "inches")
  7119. },
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(5 + 11 / 12, "foot"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(140, "feet")
  7128. },
  7129. {
  7130. name: "Supercharged",
  7131. height: math.unit(2500, "feet")
  7132. },
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(350, "lbs"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/razinox/front.svg",
  7144. extra: 1686 / 1548,
  7145. bottom: 28.2 / 1868
  7146. }
  7147. },
  7148. back: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(350, "lbs"),
  7151. name: "Back",
  7152. image: {
  7153. source: "./media/characters/razinox/back.svg",
  7154. extra: 1660 / 1590,
  7155. bottom: 15 / 1665
  7156. }
  7157. },
  7158. },
  7159. [
  7160. {
  7161. name: "Normal",
  7162. height: math.unit(10 + 8 / 12, "foot")
  7163. },
  7164. {
  7165. name: "Minimacro",
  7166. height: math.unit(15, "foot")
  7167. },
  7168. {
  7169. name: "Macro",
  7170. height: math.unit(60, "foot"),
  7171. default: true
  7172. },
  7173. {
  7174. name: "Megamacro",
  7175. height: math.unit(5, "miles")
  7176. },
  7177. {
  7178. name: "Gigamacro",
  7179. height: math.unit(6000, "miles")
  7180. },
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7185. {
  7186. front: {
  7187. height: math.unit(6, "feet"),
  7188. weight: math.unit(150, "lbs"),
  7189. name: "Front",
  7190. image: {
  7191. source: "./media/characters/cobalt/front.svg"
  7192. }
  7193. }
  7194. },
  7195. [
  7196. {
  7197. name: "Normal",
  7198. height: math.unit(8 + 1 / 12, "foot")
  7199. },
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(111, "foot"),
  7203. default: true
  7204. },
  7205. {
  7206. name: "Supracosmic",
  7207. height: math.unit(1e42, "feet")
  7208. },
  7209. ]
  7210. ))
  7211. characterMakers.push(() => makeCharacter(
  7212. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7213. {
  7214. front: {
  7215. height: math.unit(6, "feet"),
  7216. weight: math.unit(140, "lbs"),
  7217. name: "Front",
  7218. image: {
  7219. source: "./media/characters/amanda/front.svg"
  7220. }
  7221. }
  7222. },
  7223. [
  7224. {
  7225. name: "Micro",
  7226. height: math.unit(5, "inches"),
  7227. default: true
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(2.75, "meters"),
  7236. weight: math.unit(1200, "lb"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/teal/front.svg",
  7240. extra: 2463 / 2320,
  7241. bottom: 166 / 2629
  7242. }
  7243. },
  7244. back: {
  7245. height: math.unit(2.75, "meters"),
  7246. weight: math.unit(1200, "lb"),
  7247. name: "Back",
  7248. image: {
  7249. source: "./media/characters/teal/back.svg",
  7250. extra: 2580 / 2489,
  7251. bottom: 151 / 2731
  7252. }
  7253. },
  7254. sitting: {
  7255. height: math.unit(1.9, "meters"),
  7256. weight: math.unit(1200, "lb"),
  7257. name: "Sitting",
  7258. image: {
  7259. source: "./media/characters/teal/sitting.svg",
  7260. extra: 623 / 590,
  7261. bottom: 121 / 744
  7262. }
  7263. },
  7264. standing: {
  7265. height: math.unit(2.75, "meters"),
  7266. weight: math.unit(1200, "lb"),
  7267. name: "Standing",
  7268. image: {
  7269. source: "./media/characters/teal/standing.svg",
  7270. extra: 923 / 893,
  7271. bottom: 60 / 983
  7272. }
  7273. },
  7274. stretching: {
  7275. height: math.unit(3.65, "meters"),
  7276. weight: math.unit(1200, "lb"),
  7277. name: "Stretching",
  7278. image: {
  7279. source: "./media/characters/teal/stretching.svg",
  7280. extra: 1276 / 1244,
  7281. bottom: 0 / 1276
  7282. }
  7283. },
  7284. legged: {
  7285. height: math.unit(1.3, "meters"),
  7286. weight: math.unit(100, "lb"),
  7287. name: "Legged",
  7288. image: {
  7289. source: "./media/characters/teal/legged.svg",
  7290. extra: 462 / 437,
  7291. bottom: 24 / 486
  7292. }
  7293. },
  7294. naga: {
  7295. height: math.unit(5.4, "meters"),
  7296. weight: math.unit(4000, "lb"),
  7297. name: "Naga",
  7298. image: {
  7299. source: "./media/characters/teal/naga.svg",
  7300. extra: 1902 / 1858,
  7301. bottom: 0 / 1902
  7302. }
  7303. },
  7304. hand: {
  7305. height: math.unit(0.52, "meters"),
  7306. name: "Hand",
  7307. image: {
  7308. source: "./media/characters/teal/hand.svg"
  7309. }
  7310. },
  7311. maw: {
  7312. height: math.unit(0.43, "meters"),
  7313. name: "Maw",
  7314. image: {
  7315. source: "./media/characters/teal/maw.svg"
  7316. }
  7317. },
  7318. slit: {
  7319. height: math.unit(0.25, "meters"),
  7320. name: "Slit",
  7321. image: {
  7322. source: "./media/characters/teal/slit.svg"
  7323. }
  7324. },
  7325. },
  7326. [
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(2.75, "meters"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(300, "feet")
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(2000, "feet")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7344. {
  7345. frontCat: {
  7346. height: math.unit(6, "feet"),
  7347. weight: math.unit(180, "lbs"),
  7348. name: "Front (Cat)",
  7349. image: {
  7350. source: "./media/characters/ravin-amulet/front-cat.svg"
  7351. }
  7352. },
  7353. frontCatAlt: {
  7354. height: math.unit(6, "feet"),
  7355. weight: math.unit(180, "lbs"),
  7356. name: "Front (Alt, Cat)",
  7357. image: {
  7358. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7359. }
  7360. },
  7361. frontWerewolf: {
  7362. height: math.unit(6 * 1.2, "feet"),
  7363. weight: math.unit(225, "lbs"),
  7364. name: "Front (Werewolf)",
  7365. image: {
  7366. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7367. }
  7368. },
  7369. backWerewolf: {
  7370. height: math.unit(6 * 1.2, "feet"),
  7371. weight: math.unit(225, "lbs"),
  7372. name: "Back (Werewolf)",
  7373. image: {
  7374. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7375. }
  7376. },
  7377. },
  7378. [
  7379. {
  7380. name: "Nano",
  7381. height: math.unit(1, "micrometer")
  7382. },
  7383. {
  7384. name: "Micro",
  7385. height: math.unit(1, "inch")
  7386. },
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(6, "feet"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(60, "feet")
  7395. }
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7400. {
  7401. front: {
  7402. height: math.unit(6, "feet"),
  7403. weight: math.unit(165, "lbs"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/fluoresce/front.svg"
  7407. }
  7408. }
  7409. },
  7410. [
  7411. {
  7412. name: "Micro",
  7413. height: math.unit(6, "cm")
  7414. },
  7415. {
  7416. name: "Normal",
  7417. height: math.unit(5 + 7 / 12, "feet"),
  7418. default: true
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(56, "feet")
  7423. },
  7424. {
  7425. name: "Megamacro",
  7426. height: math.unit(1.9, "miles")
  7427. },
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(9 + 6 / 12, "feet"),
  7435. weight: math.unit(523, "lbs"),
  7436. name: "Side",
  7437. image: {
  7438. source: "./media/characters/aurora/side.svg"
  7439. }
  7440. }
  7441. },
  7442. [
  7443. {
  7444. name: "Normal",
  7445. height: math.unit(9 + 6 / 12, "feet")
  7446. },
  7447. {
  7448. name: "Macro",
  7449. height: math.unit(96, "feet"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Macro+",
  7454. height: math.unit(243, "feet")
  7455. },
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(194, "cm"),
  7463. weight: math.unit(90, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/ranek/front.svg"
  7467. }
  7468. },
  7469. side: {
  7470. height: math.unit(194, "cm"),
  7471. weight: math.unit(90, "kg"),
  7472. name: "Side",
  7473. image: {
  7474. source: "./media/characters/ranek/side.svg"
  7475. }
  7476. },
  7477. back: {
  7478. height: math.unit(194, "cm"),
  7479. weight: math.unit(90, "kg"),
  7480. name: "Back",
  7481. image: {
  7482. source: "./media/characters/ranek/back.svg"
  7483. }
  7484. },
  7485. feral: {
  7486. height: math.unit(30, "cm"),
  7487. weight: math.unit(1.6, "lbs"),
  7488. name: "Feral",
  7489. image: {
  7490. source: "./media/characters/ranek/feral.svg"
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(194, "cm"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(100, "meters")
  7503. },
  7504. ]
  7505. ))
  7506. characterMakers.push(() => makeCharacter(
  7507. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7508. {
  7509. front: {
  7510. height: math.unit(5 + 6 / 12, "feet"),
  7511. weight: math.unit(153, "lbs"),
  7512. name: "Front",
  7513. image: {
  7514. source: "./media/characters/andrew-cooper/front.svg"
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Nano",
  7521. height: math.unit(1, "mm")
  7522. },
  7523. {
  7524. name: "Micro",
  7525. height: math.unit(2, "inches")
  7526. },
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(5 + 6 / 12, "feet"),
  7530. default: true
  7531. }
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(180, "lbs"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/akane-sato/front.svg",
  7543. extra: 1219 / 1140
  7544. }
  7545. },
  7546. back: {
  7547. height: math.unit(6, "feet"),
  7548. weight: math.unit(180, "lbs"),
  7549. name: "Back",
  7550. image: {
  7551. source: "./media/characters/akane-sato/back.svg",
  7552. extra: 1219 / 1170
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(2.5, "meters")
  7560. },
  7561. {
  7562. name: "Macro",
  7563. height: math.unit(250, "meters"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Megamacro",
  7568. height: math.unit(25, "km")
  7569. },
  7570. ]
  7571. ))
  7572. characterMakers.push(() => makeCharacter(
  7573. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7574. {
  7575. front: {
  7576. height: math.unit(6, "feet"),
  7577. weight: math.unit(65, "kg"),
  7578. name: "Front",
  7579. image: {
  7580. source: "./media/characters/rook/front.svg",
  7581. extra: 960 / 950
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(8.8, "feet")
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(88, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Megamacro",
  7597. height: math.unit(8, "miles")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(12 + 2 / 12, "feet"),
  7606. weight: math.unit(808, "lbs"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/prodigy/front.svg"
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(12 + 2 / 12, "feet"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(143, "feet")
  7622. },
  7623. {
  7624. name: "Macro+",
  7625. height: math.unit(400, "feet")
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(6, "feet"),
  7634. weight: math.unit(225, "lbs"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/daniel/front.svg"
  7638. }
  7639. },
  7640. leaning: {
  7641. height: math.unit(6, "feet"),
  7642. weight: math.unit(225, "lbs"),
  7643. name: "Leaning",
  7644. image: {
  7645. source: "./media/characters/daniel/leaning.svg"
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(1000, "feet"),
  7653. default: true
  7654. },
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7659. {
  7660. front: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(88, "lbs"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/chiros/front.svg",
  7666. extra: 306 / 226
  7667. }
  7668. },
  7669. side: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(88, "lbs"),
  7672. name: "Side",
  7673. image: {
  7674. source: "./media/characters/chiros/side.svg",
  7675. extra: 306 / 226
  7676. }
  7677. },
  7678. },
  7679. [
  7680. {
  7681. name: "Normal",
  7682. height: math.unit(6, "cm"),
  7683. default: true
  7684. },
  7685. ]
  7686. ))
  7687. characterMakers.push(() => makeCharacter(
  7688. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7689. {
  7690. front: {
  7691. height: math.unit(6, "feet"),
  7692. weight: math.unit(100, "lbs"),
  7693. name: "Front",
  7694. image: {
  7695. source: "./media/characters/selka/front.svg",
  7696. extra: 947 / 887
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Normal",
  7703. height: math.unit(5, "cm"),
  7704. default: true
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(8 + 3 / 12, "feet"),
  7713. weight: math.unit(424, "lbs"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/verin/front.svg",
  7717. extra: 1845 / 1550
  7718. }
  7719. },
  7720. frontArmored: {
  7721. height: math.unit(8 + 3 / 12, "feet"),
  7722. weight: math.unit(424, "lbs"),
  7723. name: "Front (Armored)",
  7724. image: {
  7725. source: "./media/characters/verin/front-armor.svg",
  7726. extra: 1845 / 1550,
  7727. bottom: 0.01
  7728. }
  7729. },
  7730. back: {
  7731. height: math.unit(8 + 3 / 12, "feet"),
  7732. weight: math.unit(424, "lbs"),
  7733. name: "Back",
  7734. image: {
  7735. source: "./media/characters/verin/back.svg",
  7736. bottom: 0.1,
  7737. extra: 1
  7738. }
  7739. },
  7740. foot: {
  7741. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7742. name: "Foot",
  7743. image: {
  7744. source: "./media/characters/verin/foot.svg"
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Normal",
  7751. height: math.unit(8 + 3 / 12, "feet")
  7752. },
  7753. {
  7754. name: "Minimacro",
  7755. height: math.unit(21, "feet"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(626, "feet")
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(2.718, "meters"),
  7769. weight: math.unit(150, "lbs"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/sovrim-terraquian/front.svg"
  7773. }
  7774. },
  7775. back: {
  7776. height: math.unit(2.718, "meters"),
  7777. weight: math.unit(150, "lbs"),
  7778. name: "Back",
  7779. image: {
  7780. source: "./media/characters/sovrim-terraquian/back.svg"
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Micro",
  7787. height: math.unit(2, "inches")
  7788. },
  7789. {
  7790. name: "Small",
  7791. height: math.unit(1, "meter")
  7792. },
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(Math.E, "meters"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Macro",
  7800. height: math.unit(20, "meters")
  7801. },
  7802. {
  7803. name: "Macro+",
  7804. height: math.unit(400, "meters")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(7, "feet"),
  7813. weight: math.unit(489, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/reece-silvermane/front.svg",
  7817. bottom: 0.02,
  7818. extra: 1
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(1.5, "miles"),
  7826. default: true
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(78, "kg"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/kane/front.svg",
  7839. extra: 978 / 899
  7840. }
  7841. },
  7842. },
  7843. [
  7844. {
  7845. name: "Normal",
  7846. height: math.unit(2.1, "m"),
  7847. },
  7848. {
  7849. name: "Macro",
  7850. height: math.unit(1, "km"),
  7851. default: true
  7852. },
  7853. ]
  7854. ))
  7855. characterMakers.push(() => makeCharacter(
  7856. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7857. {
  7858. front: {
  7859. height: math.unit(6, "feet"),
  7860. weight: math.unit(200, "kg"),
  7861. name: "Front",
  7862. image: {
  7863. source: "./media/characters/tegon/front.svg",
  7864. bottom: 0.01,
  7865. extra: 1
  7866. }
  7867. },
  7868. },
  7869. [
  7870. {
  7871. name: "Micro",
  7872. height: math.unit(1, "inch")
  7873. },
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(6 + 3 / 12, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(300, "feet")
  7882. },
  7883. {
  7884. name: "Megamacro",
  7885. height: math.unit(69, "miles")
  7886. },
  7887. ]
  7888. ))
  7889. characterMakers.push(() => makeCharacter(
  7890. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7891. {
  7892. side: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(2304, "lbs"),
  7895. name: "Side",
  7896. image: {
  7897. source: "./media/characters/arcturax/side.svg",
  7898. extra: 790 / 376,
  7899. bottom: 0.01
  7900. }
  7901. },
  7902. },
  7903. [
  7904. {
  7905. name: "Micro",
  7906. height: math.unit(2, "inch")
  7907. },
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(6, "feet")
  7911. },
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(39, "feet"),
  7915. default: true
  7916. },
  7917. {
  7918. name: "Megamacro",
  7919. height: math.unit(7, "miles")
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7925. {
  7926. front: {
  7927. height: math.unit(6, "feet"),
  7928. weight: math.unit(50, "lbs"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/sentri/front.svg",
  7932. extra: 1750 / 1570,
  7933. bottom: 0.025
  7934. }
  7935. },
  7936. frontAlt: {
  7937. height: math.unit(6, "feet"),
  7938. weight: math.unit(50, "lbs"),
  7939. name: "Front (Alt)",
  7940. image: {
  7941. source: "./media/characters/sentri/front-alt.svg",
  7942. extra: 1750 / 1570,
  7943. bottom: 0.025
  7944. }
  7945. },
  7946. },
  7947. [
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(15, "feet"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Macro",
  7955. height: math.unit(2500, "feet")
  7956. }
  7957. ]
  7958. ))
  7959. characterMakers.push(() => makeCharacter(
  7960. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7961. {
  7962. front: {
  7963. height: math.unit(5 + 8 / 12, "feet"),
  7964. weight: math.unit(130, "lbs"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/corvin/front.svg",
  7968. extra: 1803 / 1629
  7969. }
  7970. },
  7971. frontShirt: {
  7972. height: math.unit(5 + 8 / 12, "feet"),
  7973. weight: math.unit(130, "lbs"),
  7974. name: "Front (Shirt)",
  7975. image: {
  7976. source: "./media/characters/corvin/front-shirt.svg",
  7977. extra: 1803 / 1629
  7978. }
  7979. },
  7980. frontPoncho: {
  7981. height: math.unit(5 + 8 / 12, "feet"),
  7982. weight: math.unit(130, "lbs"),
  7983. name: "Front (Poncho)",
  7984. image: {
  7985. source: "./media/characters/corvin/front-poncho.svg",
  7986. extra: 1803 / 1629
  7987. }
  7988. },
  7989. side: {
  7990. height: math.unit(5 + 8 / 12, "feet"),
  7991. weight: math.unit(130, "lbs"),
  7992. name: "Side",
  7993. image: {
  7994. source: "./media/characters/corvin/side.svg",
  7995. extra: 1012 / 945
  7996. }
  7997. },
  7998. back: {
  7999. height: math.unit(5 + 8 / 12, "feet"),
  8000. weight: math.unit(130, "lbs"),
  8001. name: "Back",
  8002. image: {
  8003. source: "./media/characters/corvin/back.svg",
  8004. extra: 1803 / 1629
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(3, "inches")
  8012. },
  8013. {
  8014. name: "Normal",
  8015. height: math.unit(5 + 8 / 12, "feet")
  8016. },
  8017. {
  8018. name: "Macro",
  8019. height: math.unit(300, "feet"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Megamacro",
  8024. height: math.unit(500, "miles")
  8025. }
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8030. {
  8031. front: {
  8032. height: math.unit(6, "feet"),
  8033. weight: math.unit(135, "lbs"),
  8034. name: "Front",
  8035. image: {
  8036. source: "./media/characters/q/front.svg",
  8037. extra: 854 / 752,
  8038. bottom: 0.005
  8039. }
  8040. },
  8041. back: {
  8042. height: math.unit(6, "feet"),
  8043. weight: math.unit(130, "lbs"),
  8044. name: "Back",
  8045. image: {
  8046. source: "./media/characters/q/back.svg",
  8047. extra: 854 / 752
  8048. }
  8049. },
  8050. },
  8051. [
  8052. {
  8053. name: "Macro",
  8054. height: math.unit(90, "feet"),
  8055. default: true
  8056. },
  8057. {
  8058. name: "Extra Macro",
  8059. height: math.unit(300, "feet"),
  8060. },
  8061. {
  8062. name: "BIG WALF",
  8063. height: math.unit(750, "feet"),
  8064. },
  8065. ]
  8066. ))
  8067. characterMakers.push(() => makeCharacter(
  8068. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8069. {
  8070. front: {
  8071. height: math.unit(6, "feet"),
  8072. weight: math.unit(150, "lbs"),
  8073. name: "Front",
  8074. image: {
  8075. source: "./media/characters/carley/front.svg",
  8076. extra: 3927 / 3540,
  8077. bottom: 29.2 / 735
  8078. }
  8079. }
  8080. },
  8081. [
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(6 + 3 / 12, "feet")
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(185, "feet"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Megamacro",
  8093. height: math.unit(8, "miles"),
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(3, "feet"),
  8102. weight: math.unit(28, "lbs"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/citrine/front.svg"
  8106. }
  8107. }
  8108. },
  8109. [
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(3, "feet"),
  8113. default: true
  8114. }
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8119. {
  8120. front: {
  8121. height: math.unit(14, "feet"),
  8122. weight: math.unit(1450, "kg"),
  8123. capacity: math.unit(15, "people"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/aura-starwind/front.svg",
  8127. extra: 1455 / 1335
  8128. }
  8129. },
  8130. side: {
  8131. height: math.unit(14, "feet"),
  8132. weight: math.unit(1450, "kg"),
  8133. capacity: math.unit(15, "people"),
  8134. name: "Side",
  8135. image: {
  8136. source: "./media/characters/aura-starwind/side.svg",
  8137. extra: 1654 / 1497
  8138. }
  8139. },
  8140. taur: {
  8141. height: math.unit(18, "feet"),
  8142. weight: math.unit(5500, "kg"),
  8143. capacity: math.unit(50, "people"),
  8144. name: "Taur",
  8145. image: {
  8146. source: "./media/characters/aura-starwind/taur.svg",
  8147. extra: 1760 / 1650
  8148. }
  8149. },
  8150. feral: {
  8151. height: math.unit(46, "feet"),
  8152. weight: math.unit(25000, "kg"),
  8153. capacity: math.unit(120, "people"),
  8154. name: "Feral",
  8155. image: {
  8156. source: "./media/characters/aura-starwind/feral.svg"
  8157. }
  8158. },
  8159. },
  8160. [
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(14, "feet"),
  8164. default: true
  8165. },
  8166. {
  8167. name: "Macro",
  8168. height: math.unit(50, "meters")
  8169. },
  8170. {
  8171. name: "Megamacro",
  8172. height: math.unit(5000, "meters")
  8173. },
  8174. {
  8175. name: "Gigamacro",
  8176. height: math.unit(100000, "kilometers")
  8177. },
  8178. ]
  8179. ))
  8180. characterMakers.push(() => makeCharacter(
  8181. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8182. {
  8183. front: {
  8184. height: math.unit(2 + 7 / 12, "feet"),
  8185. weight: math.unit(32, "lbs"),
  8186. name: "Front",
  8187. image: {
  8188. source: "./media/characters/rivet/front.svg",
  8189. extra: 1716 / 1658,
  8190. bottom: 0.03
  8191. }
  8192. },
  8193. foot: {
  8194. height: math.unit(0.551, "feet"),
  8195. name: "Rivet's Foot",
  8196. image: {
  8197. source: "./media/characters/rivet/foot.svg"
  8198. },
  8199. rename: true
  8200. }
  8201. },
  8202. [
  8203. {
  8204. name: "Micro",
  8205. height: math.unit(1.5, "inches"),
  8206. },
  8207. {
  8208. name: "Normal",
  8209. height: math.unit(2 + 7 / 12, "feet"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(85, "feet")
  8215. },
  8216. {
  8217. name: "Megamacro",
  8218. height: math.unit(2.2, "km")
  8219. }
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(5 + 9 / 12, "feet"),
  8227. weight: math.unit(150, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/coffee/front.svg",
  8231. extra: 3666 / 3032,
  8232. bottom: 0.04
  8233. }
  8234. },
  8235. foot: {
  8236. height: math.unit(1.29, "feet"),
  8237. name: "Foot",
  8238. image: {
  8239. source: "./media/characters/coffee/foot.svg"
  8240. }
  8241. },
  8242. },
  8243. [
  8244. {
  8245. name: "Micro",
  8246. height: math.unit(2, "inches"),
  8247. },
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(5 + 9 / 12, "feet"),
  8251. default: true
  8252. },
  8253. {
  8254. name: "Macro",
  8255. height: math.unit(800, "feet")
  8256. },
  8257. {
  8258. name: "Megamacro",
  8259. height: math.unit(25, "miles")
  8260. }
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(6, "feet"),
  8268. weight: math.unit(200, "lbs"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/chari-gal/front.svg",
  8272. extra: 1568 / 1385,
  8273. bottom: 0.047
  8274. }
  8275. },
  8276. gigantamax: {
  8277. height: math.unit(6 * 16, "feet"),
  8278. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8279. name: "Gigantamax",
  8280. image: {
  8281. source: "./media/characters/chari-gal/gigantamax.svg",
  8282. extra: 1124 / 888,
  8283. bottom: 0.03
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Normal",
  8290. height: math.unit(5 + 7 / 12, "feet")
  8291. },
  8292. {
  8293. name: "Macro",
  8294. height: math.unit(200, "feet"),
  8295. default: true
  8296. }
  8297. ]
  8298. ))
  8299. characterMakers.push(() => makeCharacter(
  8300. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8301. {
  8302. front: {
  8303. height: math.unit(6, "feet"),
  8304. weight: math.unit(150, "lbs"),
  8305. name: "Front",
  8306. image: {
  8307. source: "./media/characters/nova/front.svg",
  8308. extra: 5000 / 4722,
  8309. bottom: 0.02
  8310. }
  8311. }
  8312. },
  8313. [
  8314. {
  8315. name: "Micro-",
  8316. height: math.unit(0.8, "inches")
  8317. },
  8318. {
  8319. name: "Micro",
  8320. height: math.unit(2, "inches"),
  8321. default: true
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(3 + 1 / 12, "feet"),
  8330. weight: math.unit(21.7, "lbs"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/argent/front.svg",
  8334. extra: 1471 / 1331,
  8335. bottom: 100.8 / 1575.5
  8336. }
  8337. }
  8338. },
  8339. [
  8340. {
  8341. name: "Micro",
  8342. height: math.unit(2, "inches")
  8343. },
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(3 + 1 / 12, "feet"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(120, "feet")
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8357. {
  8358. lamp: {
  8359. height: math.unit(7 * 1559 / 989, "feet"),
  8360. name: "Magic Lamp",
  8361. image: {
  8362. source: "./media/characters/mira-al-cul/lamp.svg",
  8363. extra: 1617 / 1559
  8364. }
  8365. },
  8366. front: {
  8367. height: math.unit(7, "feet"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/mira-al-cul/front.svg",
  8371. extra: 1044 / 990
  8372. }
  8373. },
  8374. },
  8375. [
  8376. {
  8377. name: "Heavily Restricted",
  8378. height: math.unit(7 * 1559 / 989, "feet")
  8379. },
  8380. {
  8381. name: "Freshly Freed",
  8382. height: math.unit(50 * 1559 / 989, "feet")
  8383. },
  8384. {
  8385. name: "World Encompassing",
  8386. height: math.unit(10000 * 1559 / 989, "miles")
  8387. },
  8388. {
  8389. name: "Galactic",
  8390. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8391. },
  8392. {
  8393. name: "Palmed Universe",
  8394. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Multiversal Matriarch",
  8399. height: math.unit(8.87e10, "yottameters")
  8400. },
  8401. {
  8402. name: "Void Mother",
  8403. height: math.unit(3.14e110, "yottaparsecs")
  8404. },
  8405. {
  8406. name: "Toying with Transcendence",
  8407. height: math.unit(1e307, "meters")
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8413. {
  8414. front: {
  8415. height: math.unit(17 + 1 / 12, "feet"),
  8416. weight: math.unit(476.2 * 5, "lbs"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/kuro-shi-uchū/front.svg",
  8420. extra: 2329 / 1835,
  8421. bottom: 0.02
  8422. }
  8423. },
  8424. },
  8425. [
  8426. {
  8427. name: "Micro",
  8428. height: math.unit(2, "inches")
  8429. },
  8430. {
  8431. name: "Normal",
  8432. height: math.unit(12, "meters")
  8433. },
  8434. {
  8435. name: "Planetary",
  8436. height: math.unit(0.00929, "AU"),
  8437. default: true
  8438. },
  8439. {
  8440. name: "Universal",
  8441. height: math.unit(20, "gigaparsecs")
  8442. },
  8443. ]
  8444. ))
  8445. characterMakers.push(() => makeCharacter(
  8446. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8447. {
  8448. front: {
  8449. height: math.unit(5 + 2 / 12, "feet"),
  8450. weight: math.unit(120, "lbs"),
  8451. name: "Front",
  8452. image: {
  8453. source: "./media/characters/katherine/front.svg",
  8454. extra: 2075 / 1969
  8455. }
  8456. },
  8457. dress: {
  8458. height: math.unit(5 + 2 / 12, "feet"),
  8459. weight: math.unit(120, "lbs"),
  8460. name: "Dress",
  8461. image: {
  8462. source: "./media/characters/katherine/dress.svg",
  8463. extra: 2258 / 2064
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(1, "inches"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Normal",
  8475. height: math.unit(5 + 2 / 12, "feet")
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(100, "meters")
  8480. },
  8481. {
  8482. name: "Megamacro",
  8483. height: math.unit(80, "miles")
  8484. },
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(7 + 8 / 12, "feet"),
  8492. weight: math.unit(250, "lbs"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/yevis/front.svg",
  8496. extra: 1938 / 1755
  8497. }
  8498. }
  8499. },
  8500. [
  8501. {
  8502. name: "Mortal",
  8503. height: math.unit(7 + 8 / 12, "feet")
  8504. },
  8505. {
  8506. name: "Battle",
  8507. height: math.unit(25 + 11 / 12, "feet")
  8508. },
  8509. {
  8510. name: "Wrath",
  8511. height: math.unit(1654 + 11 / 12, "feet")
  8512. },
  8513. {
  8514. name: "Planet Destroyer",
  8515. height: math.unit(12000, "miles")
  8516. },
  8517. {
  8518. name: "Galaxy Conqueror",
  8519. height: math.unit(1.45, "zettameters"),
  8520. default: true
  8521. },
  8522. {
  8523. name: "Universal War",
  8524. height: math.unit(184, "gigaparsecs")
  8525. },
  8526. {
  8527. name: "Eternity War",
  8528. height: math.unit(1.98e55, "yottaparsecs")
  8529. },
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(5 + 8 / 12, "feet"),
  8537. weight: math.unit(63, "kg"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/xavier/front.svg",
  8541. extra: 944 / 883
  8542. }
  8543. },
  8544. frontStretch: {
  8545. height: math.unit(5 + 8 / 12, "feet"),
  8546. weight: math.unit(63, "kg"),
  8547. name: "Stretching",
  8548. image: {
  8549. source: "./media/characters/xavier/front-stretch.svg",
  8550. extra: 962 / 820
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(5 + 8 / 12, "feet")
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(100, "meters"),
  8562. default: true
  8563. },
  8564. {
  8565. name: "McLargeHuge",
  8566. height: math.unit(10, "miles")
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(5 + 5 / 12, "feet"),
  8575. weight: math.unit(150, "lb"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/joshii/front.svg",
  8579. extra: 765 / 653,
  8580. bottom: 51 / 816
  8581. }
  8582. },
  8583. foot: {
  8584. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8585. name: "Foot",
  8586. image: {
  8587. source: "./media/characters/joshii/foot.svg"
  8588. }
  8589. },
  8590. },
  8591. [
  8592. {
  8593. name: "Micro",
  8594. height: math.unit(2, "inches"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Normal",
  8599. height: math.unit(5 + 5 / 12, "feet")
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(785, "feet")
  8604. },
  8605. {
  8606. name: "Megamacro",
  8607. height: math.unit(24.5, "miles")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8613. {
  8614. front: {
  8615. height: math.unit(6, "feet"),
  8616. weight: math.unit(150, "lb"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/goddess-elizabeth/front.svg",
  8620. extra: 1800 / 1525,
  8621. bottom: 0.005
  8622. }
  8623. },
  8624. foot: {
  8625. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8626. name: "Foot",
  8627. image: {
  8628. source: "./media/characters/goddess-elizabeth/foot.svg"
  8629. }
  8630. },
  8631. mouth: {
  8632. height: math.unit(6, "feet"),
  8633. name: "Mouth",
  8634. image: {
  8635. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Micro",
  8642. height: math.unit(12, "feet")
  8643. },
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(80, "miles"),
  8647. default: true
  8648. },
  8649. {
  8650. name: "Macro",
  8651. height: math.unit(15000, "parsecs")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(5 + 9 / 12, "feet"),
  8660. weight: math.unit(144, "lb"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/kara/front.svg"
  8664. }
  8665. },
  8666. feet: {
  8667. height: math.unit(6 / 6.765, "feet"),
  8668. name: "Kara's Feet",
  8669. rename: true,
  8670. image: {
  8671. source: "./media/characters/kara/feet.svg"
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(5 + 9 / 12, "feet")
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(174, "feet"),
  8683. default: true
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(18, "feet"),
  8692. weight: math.unit(4050, "lb"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/tyrone/front.svg",
  8696. extra: 2405 / 2270,
  8697. bottom: 182 / 2587
  8698. }
  8699. },
  8700. },
  8701. [
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(18, "feet"),
  8705. default: true
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(300, "feet")
  8710. },
  8711. {
  8712. name: "Megamacro",
  8713. height: math.unit(15, "km")
  8714. },
  8715. {
  8716. name: "Gigamacro",
  8717. height: math.unit(500, "km")
  8718. },
  8719. {
  8720. name: "Teramacro",
  8721. height: math.unit(0.5, "gigameters")
  8722. },
  8723. {
  8724. name: "Omnimacro",
  8725. height: math.unit(1e252, "yottauniverse")
  8726. },
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8731. {
  8732. front: {
  8733. height: math.unit(7 + 8 / 12, "feet"),
  8734. weight: math.unit(120, "lb"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/danny/front.svg",
  8738. extra: 1490 / 1350
  8739. }
  8740. },
  8741. back: {
  8742. height: math.unit(7 + 8 / 12, "feet"),
  8743. weight: math.unit(120, "lb"),
  8744. name: "Back",
  8745. image: {
  8746. source: "./media/characters/danny/back.svg",
  8747. extra: 1490 / 1350
  8748. }
  8749. },
  8750. },
  8751. [
  8752. {
  8753. name: "Normal",
  8754. height: math.unit(7 + 8 / 12, "feet"),
  8755. default: true
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(3.5, "inches"),
  8764. weight: math.unit(19, "grams"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/mallow/front.svg",
  8768. extra: 471 / 431
  8769. }
  8770. },
  8771. back: {
  8772. height: math.unit(3.5, "inches"),
  8773. weight: math.unit(19, "grams"),
  8774. name: "Back",
  8775. image: {
  8776. source: "./media/characters/mallow/back.svg",
  8777. extra: 471 / 431
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(3.5, "inches"),
  8785. default: true
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(9, "feet"),
  8794. weight: math.unit(230, "kg"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/starry-aqua/front.svg"
  8798. }
  8799. },
  8800. back: {
  8801. height: math.unit(9, "feet"),
  8802. weight: math.unit(230, "kg"),
  8803. name: "Back",
  8804. image: {
  8805. source: "./media/characters/starry-aqua/back.svg"
  8806. }
  8807. },
  8808. hand: {
  8809. height: math.unit(9 * 0.1168, "feet"),
  8810. name: "Hand",
  8811. image: {
  8812. source: "./media/characters/starry-aqua/hand.svg"
  8813. }
  8814. },
  8815. foot: {
  8816. height: math.unit(9 * 0.18, "feet"),
  8817. name: "Foot",
  8818. image: {
  8819. source: "./media/characters/starry-aqua/foot.svg"
  8820. }
  8821. }
  8822. },
  8823. [
  8824. {
  8825. name: "Micro",
  8826. height: math.unit(3, "inches")
  8827. },
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(9, "feet")
  8831. },
  8832. {
  8833. name: "Macro",
  8834. height: math.unit(300, "feet"),
  8835. default: true
  8836. },
  8837. {
  8838. name: "Megamacro",
  8839. height: math.unit(3200, "feet")
  8840. }
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(6, "feet"),
  8848. weight: math.unit(230, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/luka/front.svg",
  8852. extra: 1,
  8853. bottom: 0.025
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(12 + 8 / 12, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Minimacro",
  8865. height: math.unit(20, "feet")
  8866. },
  8867. {
  8868. name: "Macro",
  8869. height: math.unit(250, "feet")
  8870. },
  8871. {
  8872. name: "Megamacro",
  8873. height: math.unit(5, "miles")
  8874. },
  8875. {
  8876. name: "Gigamacro",
  8877. height: math.unit(8000, "miles")
  8878. },
  8879. ]
  8880. ))
  8881. characterMakers.push(() => makeCharacter(
  8882. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8883. {
  8884. front: {
  8885. height: math.unit(6, "feet"),
  8886. weight: math.unit(150, "lb"),
  8887. name: "Front",
  8888. image: {
  8889. source: "./media/characters/natalie-nightring/front.svg",
  8890. extra: 1,
  8891. bottom: 0.06
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Uh Oh",
  8898. height: math.unit(0.1, "mm")
  8899. },
  8900. {
  8901. name: "Small",
  8902. height: math.unit(3, "inches")
  8903. },
  8904. {
  8905. name: "Human Scale",
  8906. height: math.unit(6, "feet")
  8907. },
  8908. {
  8909. name: "Librarian",
  8910. height: math.unit(50, "feet"),
  8911. default: true
  8912. },
  8913. {
  8914. name: "Immense",
  8915. height: math.unit(200, "miles")
  8916. },
  8917. ]
  8918. ))
  8919. characterMakers.push(() => makeCharacter(
  8920. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8921. {
  8922. front: {
  8923. height: math.unit(6, "feet"),
  8924. weight: math.unit(180, "lbs"),
  8925. name: "Front",
  8926. image: {
  8927. source: "./media/characters/danni-rosie/front.svg",
  8928. extra: 1260 / 1128,
  8929. bottom: 0.022
  8930. }
  8931. },
  8932. },
  8933. [
  8934. {
  8935. name: "Micro",
  8936. height: math.unit(2, "inches"),
  8937. default: true
  8938. },
  8939. ]
  8940. ))
  8941. characterMakers.push(() => makeCharacter(
  8942. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8943. {
  8944. front: {
  8945. height: math.unit(5 + 9 / 12, "feet"),
  8946. weight: math.unit(220, "lb"),
  8947. name: "Front",
  8948. image: {
  8949. source: "./media/characters/samantha-kruse/front.svg",
  8950. extra: (985 / 935),
  8951. bottom: 0.03
  8952. }
  8953. },
  8954. frontUndressed: {
  8955. height: math.unit(5 + 9 / 12, "feet"),
  8956. weight: math.unit(220, "lb"),
  8957. name: "Front (Undressed)",
  8958. image: {
  8959. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8960. extra: (973 / 923),
  8961. bottom: 0.025
  8962. }
  8963. },
  8964. fat: {
  8965. height: math.unit(5 + 9 / 12, "feet"),
  8966. weight: math.unit(900, "lb"),
  8967. name: "Front (Fat)",
  8968. image: {
  8969. source: "./media/characters/samantha-kruse/fat.svg",
  8970. extra: 2688 / 2561
  8971. }
  8972. },
  8973. },
  8974. [
  8975. {
  8976. name: "Normal",
  8977. height: math.unit(5 + 9 / 12, "feet"),
  8978. default: true
  8979. }
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8984. {
  8985. back: {
  8986. height: math.unit(5 + 4 / 12, "feet"),
  8987. weight: math.unit(4963, "lb"),
  8988. name: "Back",
  8989. image: {
  8990. source: "./media/characters/amelia-rosie/back.svg",
  8991. extra: 1113 / 963,
  8992. bottom: 0.01
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Level 0",
  8999. height: math.unit(5 + 4 / 12, "feet")
  9000. },
  9001. {
  9002. name: "Level 1",
  9003. height: math.unit(164597, "feet"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Level 2",
  9008. height: math.unit(956243, "miles")
  9009. },
  9010. {
  9011. name: "Level 3",
  9012. height: math.unit(29421709423, "miles")
  9013. },
  9014. {
  9015. name: "Level 4",
  9016. height: math.unit(154, "lightyears")
  9017. },
  9018. {
  9019. name: "Level 5",
  9020. height: math.unit(4738272, "lightyears")
  9021. },
  9022. {
  9023. name: "Level 6",
  9024. height: math.unit(145787152896, "lightyears")
  9025. },
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(5 + 11 / 12, "feet"),
  9033. weight: math.unit(65, "kg"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/rook-kitara/front.svg",
  9037. extra: 1347 / 1274,
  9038. bottom: 0.005
  9039. }
  9040. },
  9041. },
  9042. [
  9043. {
  9044. name: "Totally Unfair",
  9045. height: math.unit(1.8, "mm")
  9046. },
  9047. {
  9048. name: "Lap Rookie",
  9049. height: math.unit(1.4, "feet")
  9050. },
  9051. {
  9052. name: "Normal",
  9053. height: math.unit(5 + 11 / 12, "feet"),
  9054. default: true
  9055. },
  9056. {
  9057. name: "How Did This Happen",
  9058. height: math.unit(80, "miles")
  9059. }
  9060. ]
  9061. ))
  9062. characterMakers.push(() => makeCharacter(
  9063. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9064. {
  9065. front: {
  9066. height: math.unit(7, "feet"),
  9067. weight: math.unit(300, "lb"),
  9068. name: "Front",
  9069. image: {
  9070. source: "./media/characters/pisces/front.svg",
  9071. extra: 2255 / 2115,
  9072. bottom: 0.03
  9073. }
  9074. },
  9075. back: {
  9076. height: math.unit(7, "feet"),
  9077. weight: math.unit(300, "lb"),
  9078. name: "Back",
  9079. image: {
  9080. source: "./media/characters/pisces/back.svg",
  9081. extra: 2146 / 2055,
  9082. bottom: 0.04
  9083. }
  9084. },
  9085. },
  9086. [
  9087. {
  9088. name: "Normal",
  9089. height: math.unit(7, "feet"),
  9090. default: true
  9091. },
  9092. {
  9093. name: "Swimming Pool",
  9094. height: math.unit(12.2, "meters")
  9095. },
  9096. {
  9097. name: "Olympic Swimming Pool",
  9098. height: math.unit(56.3, "meters")
  9099. },
  9100. {
  9101. name: "Lake Superior",
  9102. height: math.unit(93900, "meters")
  9103. },
  9104. {
  9105. name: "Mediterranean Sea",
  9106. height: math.unit(644457, "meters")
  9107. },
  9108. {
  9109. name: "World's Oceans",
  9110. height: math.unit(4567491, "meters")
  9111. },
  9112. ]
  9113. ))
  9114. characterMakers.push(() => makeCharacter(
  9115. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9116. {
  9117. front: {
  9118. height: math.unit(2.3, "meters"),
  9119. weight: math.unit(120, "kg"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/zelas/front.svg"
  9123. }
  9124. },
  9125. side: {
  9126. height: math.unit(2.3, "meters"),
  9127. weight: math.unit(120, "kg"),
  9128. name: "Side",
  9129. image: {
  9130. source: "./media/characters/zelas/side.svg"
  9131. }
  9132. },
  9133. back: {
  9134. height: math.unit(2.3, "meters"),
  9135. weight: math.unit(120, "kg"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/zelas/back.svg"
  9139. }
  9140. },
  9141. foot: {
  9142. height: math.unit(1.116, "feet"),
  9143. name: "Foot",
  9144. image: {
  9145. source: "./media/characters/zelas/foot.svg"
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(2.3, "meters")
  9153. },
  9154. {
  9155. name: "Macro",
  9156. height: math.unit(30, "meters"),
  9157. default: true
  9158. },
  9159. ]
  9160. ))
  9161. characterMakers.push(() => makeCharacter(
  9162. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9163. {
  9164. front: {
  9165. height: math.unit(1, "inch"),
  9166. weight: math.unit(0.21, "grams"),
  9167. name: "Front",
  9168. image: {
  9169. source: "./media/characters/talbot/front.svg",
  9170. extra: 594 / 544
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Micro",
  9177. height: math.unit(1, "inch"),
  9178. default: true
  9179. },
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9184. {
  9185. front: {
  9186. height: math.unit(3 + 3 / 12, "feet"),
  9187. weight: math.unit(51.8, "lb"),
  9188. name: "Front",
  9189. image: {
  9190. source: "./media/characters/fliss/front.svg",
  9191. extra: 840 / 640
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Teeny Tiny",
  9198. height: math.unit(1, "mm")
  9199. },
  9200. {
  9201. name: "Small",
  9202. height: math.unit(1, "inch"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Standard Sylveon",
  9207. height: math.unit(3 + 3 / 12, "feet")
  9208. },
  9209. {
  9210. name: "Large Nuisance",
  9211. height: math.unit(33, "feet")
  9212. },
  9213. {
  9214. name: "City Filler",
  9215. height: math.unit(3000, "feet")
  9216. },
  9217. {
  9218. name: "New Horizon",
  9219. height: math.unit(6000, "miles")
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(5, "cm"),
  9228. weight: math.unit(1.94, "g"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/fleta/front.svg",
  9232. extra: 835 / 803
  9233. }
  9234. },
  9235. back: {
  9236. height: math.unit(5, "cm"),
  9237. weight: math.unit(1.94, "g"),
  9238. name: "Back",
  9239. image: {
  9240. source: "./media/characters/fleta/back.svg",
  9241. extra: 835 / 803
  9242. }
  9243. },
  9244. },
  9245. [
  9246. {
  9247. name: "Micro",
  9248. height: math.unit(5, "cm"),
  9249. default: true
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9255. {
  9256. front: {
  9257. height: math.unit(6, "feet"),
  9258. weight: math.unit(225, "lb"),
  9259. name: "Front",
  9260. image: {
  9261. source: "./media/characters/dominic/front.svg",
  9262. extra: 1770 / 1620,
  9263. bottom: 0.025
  9264. }
  9265. },
  9266. back: {
  9267. height: math.unit(6, "feet"),
  9268. weight: math.unit(225, "lb"),
  9269. name: "Back",
  9270. image: {
  9271. source: "./media/characters/dominic/back.svg",
  9272. extra: 1745 / 1620,
  9273. bottom: 0.065
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Nano",
  9280. height: math.unit(0.1, "mm")
  9281. },
  9282. {
  9283. name: "Micro-",
  9284. height: math.unit(1, "mm")
  9285. },
  9286. {
  9287. name: "Micro",
  9288. height: math.unit(4, "inches")
  9289. },
  9290. {
  9291. name: "Normal",
  9292. height: math.unit(6 + 4 / 12, "feet"),
  9293. default: true
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(115, "feet")
  9298. },
  9299. {
  9300. name: "Macro+",
  9301. height: math.unit(955, "feet")
  9302. },
  9303. {
  9304. name: "Megamacro",
  9305. height: math.unit(8990, "feet")
  9306. },
  9307. {
  9308. name: "Gigmacro",
  9309. height: math.unit(9310, "miles")
  9310. },
  9311. {
  9312. name: "Teramacro",
  9313. height: math.unit(1567005010, "miles")
  9314. },
  9315. {
  9316. name: "Examacro",
  9317. height: math.unit(1425, "parsecs")
  9318. },
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(400, "feet"),
  9326. weight: math.unit(44444444, "lb"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/major-colonel/front.svg"
  9330. }
  9331. },
  9332. back: {
  9333. height: math.unit(400, "feet"),
  9334. weight: math.unit(44444444, "lb"),
  9335. name: "Back",
  9336. image: {
  9337. source: "./media/characters/major-colonel/back.svg"
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Macro",
  9344. height: math.unit(400, "feet"),
  9345. default: true
  9346. },
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9351. {
  9352. catFront: {
  9353. height: math.unit(6, "feet"),
  9354. weight: math.unit(120, "lb"),
  9355. name: "Front (Cat Side)",
  9356. image: {
  9357. source: "./media/characters/axel-lycan/cat-front.svg",
  9358. extra: 430 / 402,
  9359. bottom: 43 / 472.35
  9360. }
  9361. },
  9362. catBack: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(120, "lb"),
  9365. name: "Back (Cat Side)",
  9366. image: {
  9367. source: "./media/characters/axel-lycan/cat-back.svg",
  9368. extra: 447 / 419,
  9369. bottom: 23.3 / 469
  9370. }
  9371. },
  9372. wolfFront: {
  9373. height: math.unit(6, "feet"),
  9374. weight: math.unit(120, "lb"),
  9375. name: "Front (Wolf Side)",
  9376. image: {
  9377. source: "./media/characters/axel-lycan/wolf-front.svg",
  9378. extra: 485 / 456,
  9379. bottom: 19 / 504
  9380. }
  9381. },
  9382. wolfBack: {
  9383. height: math.unit(6, "feet"),
  9384. weight: math.unit(120, "lb"),
  9385. name: "Back (Wolf Side)",
  9386. image: {
  9387. source: "./media/characters/axel-lycan/wolf-back.svg",
  9388. extra: 475 / 438,
  9389. bottom: 39.2 / 514
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Macro",
  9396. height: math.unit(1, "km"),
  9397. default: true
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9403. {
  9404. front: {
  9405. height: math.unit(5 + 9 / 12, "feet"),
  9406. weight: math.unit(175, "lb"),
  9407. name: "Front",
  9408. image: {
  9409. source: "./media/characters/vanrel-hyena/front.svg",
  9410. extra: 1086 / 1010,
  9411. bottom: 0.04
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Normal",
  9418. height: math.unit(5 + 9 / 12, "feet"),
  9419. default: true
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9425. {
  9426. front: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(103, "lb"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/abbott-absol/front.svg",
  9432. extra: 2010 / 1842
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Megamicro",
  9439. height: math.unit(0.1, "mm")
  9440. },
  9441. {
  9442. name: "Micro",
  9443. height: math.unit(1, "inch")
  9444. },
  9445. {
  9446. name: "Normal",
  9447. height: math.unit(6, "feet"),
  9448. default: true
  9449. },
  9450. ]
  9451. ))
  9452. characterMakers.push(() => makeCharacter(
  9453. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9454. {
  9455. front: {
  9456. height: math.unit(6, "feet"),
  9457. weight: math.unit(264, "lb"),
  9458. name: "Front",
  9459. image: {
  9460. source: "./media/characters/hector/front.svg",
  9461. extra: 2280 / 2130,
  9462. bottom: 0.07
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(12.25, "foot"),
  9470. default: true
  9471. },
  9472. {
  9473. name: "Macro",
  9474. height: math.unit(160, "feet")
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9480. {
  9481. front: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(150, "lb"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/sal/front.svg",
  9487. extra: 1846 / 1699,
  9488. bottom: 0.04
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Megamacro",
  9495. height: math.unit(10, "miles"),
  9496. default: true
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9502. {
  9503. front: {
  9504. height: math.unit(3, "meters"),
  9505. weight: math.unit(450, "kg"),
  9506. name: "front",
  9507. image: {
  9508. source: "./media/characters/ranger/front.svg",
  9509. extra: 2401 / 2243,
  9510. bottom: 0.05
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(3, "meters"),
  9518. default: true
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(14, "feet"),
  9527. weight: math.unit(800, "kg"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/theresa/front.svg",
  9531. extra: 3575 / 3346,
  9532. bottom: 0.03
  9533. }
  9534. },
  9535. },
  9536. [
  9537. {
  9538. name: "Normal",
  9539. height: math.unit(14, "feet"),
  9540. default: true
  9541. },
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9546. {
  9547. front: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(3, "kg"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/ine/front.svg",
  9553. extra: 678 / 539,
  9554. bottom: 0.023
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Normal",
  9561. height: math.unit(2.265, "feet"),
  9562. default: true
  9563. },
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(5, "feet"),
  9571. weight: math.unit(30, "kg"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/vial/front.svg",
  9575. extra: 1365 / 1277,
  9576. bottom: 0.04
  9577. }
  9578. },
  9579. },
  9580. [
  9581. {
  9582. name: "Normal",
  9583. height: math.unit(5, "feet"),
  9584. default: true
  9585. },
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9590. {
  9591. side: {
  9592. height: math.unit(3.4, "meters"),
  9593. weight: math.unit(1000, "lb"),
  9594. name: "Side",
  9595. image: {
  9596. source: "./media/characters/rovoska/side.svg",
  9597. extra: 4403 / 1515
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(3.4, "meters"),
  9605. default: true
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(8, "feet"),
  9614. weight: math.unit(315, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/gunner-rotthbauer/front.svg"
  9618. }
  9619. },
  9620. back: {
  9621. height: math.unit(8, "feet"),
  9622. weight: math.unit(315, "lb"),
  9623. name: "Back",
  9624. image: {
  9625. source: "./media/characters/gunner-rotthbauer/back.svg"
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Micro",
  9632. height: math.unit(3.5, "inches")
  9633. },
  9634. {
  9635. name: "Normal",
  9636. height: math.unit(8, "feet"),
  9637. default: true
  9638. },
  9639. {
  9640. name: "Macro",
  9641. height: math.unit(250, "feet")
  9642. },
  9643. {
  9644. name: "Megamacro",
  9645. height: math.unit(1, "AU")
  9646. },
  9647. ]
  9648. ))
  9649. characterMakers.push(() => makeCharacter(
  9650. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9651. {
  9652. front: {
  9653. height: math.unit(5 + 5 / 12, "feet"),
  9654. weight: math.unit(140, "lb"),
  9655. name: "Front",
  9656. image: {
  9657. source: "./media/characters/allatia/front.svg",
  9658. extra: 1227 / 1180,
  9659. bottom: 0.027
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(5 + 5 / 12, "feet")
  9667. },
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(250, "feet"),
  9671. default: true
  9672. },
  9673. {
  9674. name: "Megamacro",
  9675. height: math.unit(8, "miles")
  9676. }
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(120, "lb"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/tene/front.svg",
  9688. extra: 1728 / 1578,
  9689. bottom: 0.022
  9690. }
  9691. },
  9692. stomping: {
  9693. height: math.unit(2.025, "meters"),
  9694. weight: math.unit(120, "lb"),
  9695. name: "Stomping",
  9696. image: {
  9697. source: "./media/characters/tene/stomping.svg",
  9698. extra: 938 / 873,
  9699. bottom: 0.01
  9700. }
  9701. },
  9702. sitting: {
  9703. height: math.unit(1, "meter"),
  9704. weight: math.unit(120, "lb"),
  9705. name: "Sitting",
  9706. image: {
  9707. source: "./media/characters/tene/sitting.svg",
  9708. extra: 437 / 415,
  9709. bottom: 0.1
  9710. }
  9711. },
  9712. feral: {
  9713. height: math.unit(3.9, "feet"),
  9714. weight: math.unit(250, "lb"),
  9715. name: "Feral",
  9716. image: {
  9717. source: "./media/characters/tene/feral.svg",
  9718. extra: 717 / 458,
  9719. bottom: 0.179
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(6, "feet")
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(300, "feet"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Megamacro",
  9735. height: math.unit(5, "miles")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9741. {
  9742. side: {
  9743. height: math.unit(6, "feet"),
  9744. name: "Side",
  9745. image: {
  9746. source: "./media/characters/evander/side.svg",
  9747. extra: 877 / 477
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(0.83, "meters"),
  9755. default: true
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(12, "feet"),
  9764. weight: math.unit(1000, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9768. extra: 1762 / 1611
  9769. }
  9770. },
  9771. back: {
  9772. height: math.unit(12, "feet"),
  9773. weight: math.unit(1000, "lb"),
  9774. name: "Back",
  9775. image: {
  9776. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9777. extra: 1762 / 1611
  9778. }
  9779. },
  9780. },
  9781. [
  9782. {
  9783. name: "Normal",
  9784. height: math.unit(12, "feet"),
  9785. default: true
  9786. },
  9787. {
  9788. name: "Kaiju",
  9789. height: math.unit(150, "feet")
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9795. {
  9796. front: {
  9797. height: math.unit(6, "feet"),
  9798. weight: math.unit(150, "lb"),
  9799. name: "Front",
  9800. image: {
  9801. source: "./media/characters/zero-alurus/front.svg"
  9802. }
  9803. },
  9804. back: {
  9805. height: math.unit(6, "feet"),
  9806. weight: math.unit(150, "lb"),
  9807. name: "Back",
  9808. image: {
  9809. source: "./media/characters/zero-alurus/back.svg"
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(5 + 10 / 12, "feet")
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(60, "feet"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro+",
  9825. height: math.unit(450, "feet")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(200, "lb"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/mega-shi/front.svg",
  9838. extra: 1279 / 1250,
  9839. bottom: 0.02
  9840. }
  9841. },
  9842. back: {
  9843. height: math.unit(6, "feet"),
  9844. weight: math.unit(200, "lb"),
  9845. name: "Back",
  9846. image: {
  9847. source: "./media/characters/mega-shi/back.svg",
  9848. extra: 1279 / 1250,
  9849. bottom: 0.02
  9850. }
  9851. },
  9852. },
  9853. [
  9854. {
  9855. name: "Micro",
  9856. height: math.unit(16 + 6 / 12, "feet")
  9857. },
  9858. {
  9859. name: "Third Dimension",
  9860. height: math.unit(40, "meters")
  9861. },
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(660, "feet"),
  9865. default: true
  9866. },
  9867. {
  9868. name: "Megamacro",
  9869. height: math.unit(10, "miles")
  9870. },
  9871. {
  9872. name: "Planetary Launch",
  9873. height: math.unit(500, "miles")
  9874. },
  9875. {
  9876. name: "Interstellar",
  9877. height: math.unit(1e9, "miles")
  9878. },
  9879. {
  9880. name: "Leaving the Universe",
  9881. height: math.unit(1, "gigaparsec")
  9882. },
  9883. {
  9884. name: "Travelling Universes",
  9885. height: math.unit(30e15, "parsecs")
  9886. },
  9887. ]
  9888. ))
  9889. characterMakers.push(() => makeCharacter(
  9890. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9891. {
  9892. front: {
  9893. height: math.unit(6, "feet"),
  9894. weight: math.unit(150, "lb"),
  9895. name: "Front",
  9896. image: {
  9897. source: "./media/characters/odyssey/front.svg",
  9898. extra: 1782 / 1582,
  9899. bottom: 0.01
  9900. }
  9901. },
  9902. side: {
  9903. height: math.unit(5.7, "feet"),
  9904. weight: math.unit(140, "lb"),
  9905. name: "Side",
  9906. image: {
  9907. source: "./media/characters/odyssey/side.svg",
  9908. extra: 6462 / 5700
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(5 + 4 / 12, "feet")
  9916. },
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(1, "km")
  9920. },
  9921. {
  9922. name: "Megamacro",
  9923. height: math.unit(3000, "km")
  9924. },
  9925. {
  9926. name: "Gigamacro",
  9927. height: math.unit(1, "AU"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Omniversal",
  9932. height: math.unit(100e14, "lightyears")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(300, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/mekuto/front.svg",
  9945. extra: 921 / 832,
  9946. bottom: 0.03
  9947. }
  9948. },
  9949. hand: {
  9950. height: math.unit(6 / 10.24, "feet"),
  9951. name: "Hand",
  9952. image: {
  9953. source: "./media/characters/mekuto/hand.svg"
  9954. }
  9955. },
  9956. foot: {
  9957. height: math.unit(6 / 5.05, "feet"),
  9958. name: "Foot",
  9959. image: {
  9960. source: "./media/characters/mekuto/foot.svg"
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Minimicro",
  9967. height: math.unit(0.2, "inches")
  9968. },
  9969. {
  9970. name: "Micro",
  9971. height: math.unit(1.5, "inches")
  9972. },
  9973. {
  9974. name: "Normal",
  9975. height: math.unit(5 + 11 / 12, "feet"),
  9976. default: true
  9977. },
  9978. {
  9979. name: "Minimacro",
  9980. height: math.unit(17 + 9 / 12, "feet")
  9981. },
  9982. {
  9983. name: "Macro",
  9984. height: math.unit(177.5, "feet")
  9985. },
  9986. {
  9987. name: "Megamacro",
  9988. height: math.unit(152, "miles")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(6.5, "inches"),
  9997. weight: math.unit(13, "oz"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/dafydd-tomos/front.svg",
  10001. extra: 2990 / 2603,
  10002. bottom: 0.03
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Micro",
  10009. height: math.unit(6.5, "inches"),
  10010. default: true
  10011. },
  10012. ]
  10013. ))
  10014. characterMakers.push(() => makeCharacter(
  10015. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10016. {
  10017. front: {
  10018. height: math.unit(6, "feet"),
  10019. weight: math.unit(150, "lb"),
  10020. name: "Front",
  10021. image: {
  10022. source: "./media/characters/splinter/front.svg",
  10023. extra: 2990 / 2882,
  10024. bottom: 0.04
  10025. }
  10026. },
  10027. back: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(150, "lb"),
  10030. name: "Back",
  10031. image: {
  10032. source: "./media/characters/splinter/back.svg",
  10033. extra: 2990 / 2882,
  10034. bottom: 0.04
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Normal",
  10041. height: math.unit(6, "feet")
  10042. },
  10043. {
  10044. name: "Macro",
  10045. height: math.unit(230, "meters"),
  10046. default: true
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(4 + 10 / 12, "feet"),
  10055. weight: math.unit(480, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/snow-gabumon/front.svg",
  10059. extra: 1140 / 963,
  10060. bottom: 0.058
  10061. }
  10062. },
  10063. back: {
  10064. height: math.unit(4 + 10 / 12, "feet"),
  10065. weight: math.unit(480, "lb"),
  10066. name: "Back",
  10067. image: {
  10068. source: "./media/characters/snow-gabumon/back.svg",
  10069. extra: 1115 / 962,
  10070. bottom: 0.041
  10071. }
  10072. },
  10073. frontUndresed: {
  10074. height: math.unit(4 + 10 / 12, "feet"),
  10075. weight: math.unit(480, "lb"),
  10076. name: "Front (Undressed)",
  10077. image: {
  10078. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10079. extra: 1061 / 960,
  10080. bottom: 0.045
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Micro",
  10087. height: math.unit(1, "inch")
  10088. },
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(4 + 10 / 12, "feet"),
  10092. default: true
  10093. },
  10094. {
  10095. name: "Macro",
  10096. height: math.unit(200, "feet")
  10097. },
  10098. {
  10099. name: "Megamacro",
  10100. height: math.unit(120, "miles")
  10101. },
  10102. {
  10103. name: "Gigamacro",
  10104. height: math.unit(9800, "miles")
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10110. {
  10111. front: {
  10112. height: math.unit(1.7, "meters"),
  10113. weight: math.unit(140, "lb"),
  10114. name: "Front",
  10115. image: {
  10116. source: "./media/characters/moody/front.svg",
  10117. extra: 3226 / 3007,
  10118. bottom: 0.087
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Micro",
  10125. height: math.unit(1, "mm")
  10126. },
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(1.7, "meters"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Macro",
  10134. height: math.unit(80, "meters")
  10135. },
  10136. {
  10137. name: "Macro+",
  10138. height: math.unit(500, "meters")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(6, "feet"),
  10147. weight: math.unit(150, "lb"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/zyas/front.svg",
  10151. extra: 1180 / 1120,
  10152. bottom: 0.045
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(10, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Macro",
  10164. height: math.unit(500, "feet")
  10165. },
  10166. {
  10167. name: "Megamacro",
  10168. height: math.unit(5, "miles")
  10169. },
  10170. {
  10171. name: "Teramacro",
  10172. height: math.unit(150000, "miles")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(150, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/cuon/front.svg",
  10185. extra: 1390 / 1320,
  10186. bottom: 0.008
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Micro",
  10193. height: math.unit(3, "inches")
  10194. },
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(18 + 9 / 12, "feet"),
  10198. default: true
  10199. },
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(360, "feet")
  10203. },
  10204. {
  10205. name: "Megamacro",
  10206. height: math.unit(360, "miles")
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(2.4, "meters"),
  10215. weight: math.unit(70, "kg"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/nyanuxk/front.svg",
  10219. extra: 1172 / 1084,
  10220. bottom: 0.065
  10221. }
  10222. },
  10223. side: {
  10224. height: math.unit(2.4, "meters"),
  10225. weight: math.unit(70, "kg"),
  10226. name: "Side",
  10227. image: {
  10228. source: "./media/characters/nyanuxk/side.svg",
  10229. extra: 1190 / 1132,
  10230. bottom: 0.007
  10231. }
  10232. },
  10233. back: {
  10234. height: math.unit(2.4, "meters"),
  10235. weight: math.unit(70, "kg"),
  10236. name: "Back",
  10237. image: {
  10238. source: "./media/characters/nyanuxk/back.svg",
  10239. extra: 1200 / 1141,
  10240. bottom: 0.015
  10241. }
  10242. },
  10243. foot: {
  10244. height: math.unit(0.52, "meters"),
  10245. name: "Foot",
  10246. image: {
  10247. source: "./media/characters/nyanuxk/foot.svg"
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Micro",
  10254. height: math.unit(2, "cm")
  10255. },
  10256. {
  10257. name: "Normal",
  10258. height: math.unit(2.4, "meters"),
  10259. default: true
  10260. },
  10261. {
  10262. name: "Smaller Macro",
  10263. height: math.unit(120, "meters")
  10264. },
  10265. {
  10266. name: "Bigger Macro",
  10267. height: math.unit(1.2, "km")
  10268. },
  10269. {
  10270. name: "Megamacro",
  10271. height: math.unit(15, "kilometers")
  10272. },
  10273. {
  10274. name: "Gigamacro",
  10275. height: math.unit(2000, "km")
  10276. },
  10277. {
  10278. name: "Teramacro",
  10279. height: math.unit(500000, "km")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10285. {
  10286. side: {
  10287. height: math.unit(6, "feet"),
  10288. name: "Side",
  10289. image: {
  10290. source: "./media/characters/ailbhe/side.svg",
  10291. extra: 757 / 464,
  10292. bottom: 0.041
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Normal",
  10299. height: math.unit(1.07, "meters"),
  10300. default: true
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(6, "feet"),
  10309. weight: math.unit(120, "kg"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/zevulfius/front.svg",
  10313. extra: 965 / 903
  10314. }
  10315. },
  10316. side: {
  10317. height: math.unit(6, "feet"),
  10318. weight: math.unit(120, "kg"),
  10319. name: "Side",
  10320. image: {
  10321. source: "./media/characters/zevulfius/side.svg",
  10322. extra: 939 / 900
  10323. }
  10324. },
  10325. back: {
  10326. height: math.unit(6, "feet"),
  10327. weight: math.unit(120, "kg"),
  10328. name: "Back",
  10329. image: {
  10330. source: "./media/characters/zevulfius/back.svg",
  10331. extra: 918 / 854,
  10332. bottom: 0.005
  10333. }
  10334. },
  10335. foot: {
  10336. height: math.unit(6 / 3.72, "feet"),
  10337. name: "Foot",
  10338. image: {
  10339. source: "./media/characters/zevulfius/foot.svg"
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(750, "meters")
  10347. },
  10348. {
  10349. name: "Megamacro",
  10350. height: math.unit(20, "km"),
  10351. default: true
  10352. },
  10353. {
  10354. name: "Gigamacro",
  10355. height: math.unit(2000, "km")
  10356. },
  10357. {
  10358. name: "Teramacro",
  10359. height: math.unit(250000, "km")
  10360. },
  10361. ]
  10362. ))
  10363. characterMakers.push(() => makeCharacter(
  10364. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10365. {
  10366. front: {
  10367. height: math.unit(100, "feet"),
  10368. weight: math.unit(350, "kg"),
  10369. name: "Front",
  10370. image: {
  10371. source: "./media/characters/rikes/front.svg",
  10372. extra: 1565 / 1483,
  10373. bottom: 0.017
  10374. }
  10375. },
  10376. },
  10377. [
  10378. {
  10379. name: "Macro",
  10380. height: math.unit(100, "feet"),
  10381. default: true
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10387. {
  10388. anthro: {
  10389. height: math.unit(8, "feet"),
  10390. weight: math.unit(120, "kg"),
  10391. name: "Anthro",
  10392. image: {
  10393. source: "./media/characters/adam-silver-mane/anthro.svg",
  10394. extra: 5743 / 5339,
  10395. bottom: 0.07
  10396. }
  10397. },
  10398. taur: {
  10399. height: math.unit(16, "feet"),
  10400. weight: math.unit(1500, "kg"),
  10401. name: "Taur",
  10402. image: {
  10403. source: "./media/characters/adam-silver-mane/taur.svg",
  10404. extra: 1713 / 1571,
  10405. bottom: 0.01
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Normal",
  10412. height: math.unit(8, "feet")
  10413. },
  10414. {
  10415. name: "Minimacro",
  10416. height: math.unit(80, "feet")
  10417. },
  10418. {
  10419. name: "Macro",
  10420. height: math.unit(800, "feet"),
  10421. default: true
  10422. },
  10423. {
  10424. name: "Megamacro",
  10425. height: math.unit(8000, "feet")
  10426. },
  10427. {
  10428. name: "Gigamacro",
  10429. height: math.unit(800, "miles")
  10430. },
  10431. {
  10432. name: "Teramacro",
  10433. height: math.unit(80000, "miles")
  10434. },
  10435. {
  10436. name: "Celestial",
  10437. height: math.unit(8e6, "miles")
  10438. },
  10439. {
  10440. name: "Star Dragon",
  10441. height: math.unit(800000, "parsecs")
  10442. },
  10443. {
  10444. name: "Godly",
  10445. height: math.unit(800, "teraparsecs")
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(6, "feet"),
  10454. weight: math.unit(150, "lb"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/ky'owin/front.svg",
  10458. extra: 3888 / 3068,
  10459. bottom: 0.015
  10460. }
  10461. },
  10462. },
  10463. [
  10464. {
  10465. name: "Normal",
  10466. height: math.unit(6 + 8 / 12, "feet")
  10467. },
  10468. {
  10469. name: "Large",
  10470. height: math.unit(68, "feet")
  10471. },
  10472. {
  10473. name: "Macro",
  10474. height: math.unit(132, "feet")
  10475. },
  10476. {
  10477. name: "Macro+",
  10478. height: math.unit(340, "feet")
  10479. },
  10480. {
  10481. name: "Macro++",
  10482. height: math.unit(680, "feet"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Megamacro",
  10487. height: math.unit(1, "mile")
  10488. },
  10489. {
  10490. name: "Megamacro+",
  10491. height: math.unit(10, "miles")
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(4, "feet"),
  10500. weight: math.unit(50, "lb"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/mal/front.svg",
  10504. extra: 785 / 724,
  10505. bottom: 0.07
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Micro",
  10512. height: math.unit(4, "inches")
  10513. },
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(4, "feet"),
  10517. default: true
  10518. },
  10519. {
  10520. name: "Macro",
  10521. height: math.unit(200, "feet")
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10527. {
  10528. front: {
  10529. height: math.unit(6, "feet"),
  10530. weight: math.unit(150, "lb"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/jordan-deware/front.svg",
  10534. extra: 1191 / 1012
  10535. }
  10536. },
  10537. },
  10538. [
  10539. {
  10540. name: "Nano",
  10541. height: math.unit(0.01, "mm")
  10542. },
  10543. {
  10544. name: "Minimicro",
  10545. height: math.unit(1, "mm")
  10546. },
  10547. {
  10548. name: "Micro",
  10549. height: math.unit(0.5, "inches")
  10550. },
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(4, "feet"),
  10554. default: true
  10555. },
  10556. {
  10557. name: "Minimacro",
  10558. height: math.unit(40, "meters")
  10559. },
  10560. {
  10561. name: "Small Macro",
  10562. height: math.unit(400, "meters")
  10563. },
  10564. {
  10565. name: "Macro",
  10566. height: math.unit(4, "miles")
  10567. },
  10568. {
  10569. name: "Megamacro",
  10570. height: math.unit(40, "miles")
  10571. },
  10572. {
  10573. name: "Megamacro+",
  10574. height: math.unit(400, "miles")
  10575. },
  10576. {
  10577. name: "Gigamacro",
  10578. height: math.unit(400000, "miles")
  10579. },
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10584. {
  10585. side: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(150, "lb"),
  10588. name: "Side",
  10589. image: {
  10590. source: "./media/characters/kimiko/side.svg",
  10591. extra: 600 / 358
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(15, "feet"),
  10599. default: true
  10600. },
  10601. {
  10602. name: "Macro",
  10603. height: math.unit(220, "feet")
  10604. },
  10605. {
  10606. name: "Macro+",
  10607. height: math.unit(1450, "feet")
  10608. },
  10609. {
  10610. name: "Megamacro",
  10611. height: math.unit(11500, "feet")
  10612. },
  10613. {
  10614. name: "Gigamacro",
  10615. height: math.unit(9500, "miles")
  10616. },
  10617. {
  10618. name: "Teramacro",
  10619. height: math.unit(2208005005, "miles")
  10620. },
  10621. {
  10622. name: "Examacro",
  10623. height: math.unit(2750, "parsecs")
  10624. },
  10625. {
  10626. name: "Zettamacro",
  10627. height: math.unit(101500, "parsecs")
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10633. {
  10634. front: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(70, "kg"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/andrew-sleepy/front.svg"
  10640. }
  10641. },
  10642. side: {
  10643. height: math.unit(6, "feet"),
  10644. weight: math.unit(70, "kg"),
  10645. name: "Side",
  10646. image: {
  10647. source: "./media/characters/andrew-sleepy/side.svg"
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Micro",
  10654. height: math.unit(1, "mm"),
  10655. default: true
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(150, "lb"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/judio/front.svg",
  10668. extra: 1258 / 1110
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Normal",
  10675. height: math.unit(5 + 6 / 12, "feet")
  10676. },
  10677. {
  10678. name: "Macro",
  10679. height: math.unit(1000, "feet"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(10, "miles")
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10690. {
  10691. front: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(68, "kg"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/nomaxice/front.svg",
  10697. extra: 1498 / 1073,
  10698. bottom: 0.075
  10699. }
  10700. },
  10701. foot: {
  10702. height: math.unit(1.1, "feet"),
  10703. name: "Foot",
  10704. image: {
  10705. source: "./media/characters/nomaxice/foot.svg"
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Micro",
  10712. height: math.unit(8, "cm")
  10713. },
  10714. {
  10715. name: "Norm",
  10716. height: math.unit(1.82, "m")
  10717. },
  10718. {
  10719. name: "Norm+",
  10720. height: math.unit(8.8, "feet")
  10721. },
  10722. {
  10723. name: "Big",
  10724. height: math.unit(8, "meters"),
  10725. default: true
  10726. },
  10727. {
  10728. name: "Macro",
  10729. height: math.unit(18, "meters")
  10730. },
  10731. {
  10732. name: "Macro+",
  10733. height: math.unit(88, "meters")
  10734. },
  10735. ]
  10736. ))
  10737. characterMakers.push(() => makeCharacter(
  10738. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10739. {
  10740. front: {
  10741. height: math.unit(12, "feet"),
  10742. weight: math.unit(1.5, "tons"),
  10743. name: "Front",
  10744. image: {
  10745. source: "./media/characters/dydros/front.svg",
  10746. extra: 863 / 800,
  10747. bottom: 0.015
  10748. }
  10749. },
  10750. back: {
  10751. height: math.unit(12, "feet"),
  10752. weight: math.unit(1.5, "tons"),
  10753. name: "Back",
  10754. image: {
  10755. source: "./media/characters/dydros/back.svg",
  10756. extra: 900 / 843,
  10757. bottom: 0.005
  10758. }
  10759. },
  10760. },
  10761. [
  10762. {
  10763. name: "Normal",
  10764. height: math.unit(12, "feet"),
  10765. default: true
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(100, "kg"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/riggi/front.svg",
  10778. extra: 5787 / 5303
  10779. }
  10780. },
  10781. hyper: {
  10782. height: math.unit(6 * 5 / 3, "feet"),
  10783. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10784. name: "Hyper",
  10785. image: {
  10786. source: "./media/characters/riggi/hyper.svg",
  10787. extra: 3595 / 3485
  10788. }
  10789. },
  10790. },
  10791. [
  10792. {
  10793. name: "Small Macro",
  10794. height: math.unit(50, "feet")
  10795. },
  10796. {
  10797. name: "Default",
  10798. height: math.unit(200, "feet"),
  10799. default: true
  10800. },
  10801. {
  10802. name: "Loom",
  10803. height: math.unit(10000, "feet")
  10804. },
  10805. {
  10806. name: "Cruising Altitude",
  10807. height: math.unit(30000, "feet")
  10808. },
  10809. {
  10810. name: "Megamacro",
  10811. height: math.unit(100, "miles")
  10812. },
  10813. {
  10814. name: "Continent Sized",
  10815. height: math.unit(2800, "miles")
  10816. },
  10817. {
  10818. name: "Earth Sized",
  10819. height: math.unit(8000, "miles")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(6, "feet"),
  10828. weight: math.unit(250, "lb"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/alexi/front.svg",
  10832. extra: 3483 / 3291,
  10833. bottom: 0.04
  10834. }
  10835. },
  10836. back: {
  10837. height: math.unit(6, "feet"),
  10838. weight: math.unit(250, "lb"),
  10839. name: "Back",
  10840. image: {
  10841. source: "./media/characters/alexi/back.svg",
  10842. extra: 3533 / 3356,
  10843. bottom: 0.021
  10844. }
  10845. },
  10846. frontTransforming: {
  10847. height: math.unit(8.58, "feet"),
  10848. weight: math.unit(1300, "lb"),
  10849. name: "Transforming",
  10850. image: {
  10851. source: "./media/characters/alexi/front-transforming.svg",
  10852. extra: 437 / 409,
  10853. bottom: 19 / 458.66
  10854. }
  10855. },
  10856. frontTransformed: {
  10857. height: math.unit(12.5, "feet"),
  10858. weight: math.unit(4000, "lb"),
  10859. name: "Transformed",
  10860. image: {
  10861. source: "./media/characters/alexi/front-transformed.svg",
  10862. extra: 639 / 614,
  10863. bottom: 30.55 / 671
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Normal",
  10870. height: math.unit(14, "feet"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Minimacro",
  10875. height: math.unit(30, "meters")
  10876. },
  10877. {
  10878. name: "Macro",
  10879. height: math.unit(500, "meters")
  10880. },
  10881. {
  10882. name: "Megamacro",
  10883. height: math.unit(9000, "km")
  10884. },
  10885. {
  10886. name: "Teramacro",
  10887. height: math.unit(384000, "km")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(6, "feet"),
  10896. weight: math.unit(150, "lb"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/kayroo/front.svg",
  10900. extra: 1153 / 1038,
  10901. bottom: 0.06
  10902. }
  10903. },
  10904. foot: {
  10905. height: math.unit(6, "feet"),
  10906. weight: math.unit(150, "lb"),
  10907. name: "Foot",
  10908. image: {
  10909. source: "./media/characters/kayroo/foot.svg"
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(8, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Minimacro",
  10921. height: math.unit(250, "feet")
  10922. },
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(2800, "feet")
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(5200, "feet")
  10930. },
  10931. {
  10932. name: "Gigamacro",
  10933. height: math.unit(27000, "feet")
  10934. },
  10935. {
  10936. name: "Omega",
  10937. height: math.unit(45000, "feet")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10943. {
  10944. front: {
  10945. height: math.unit(18, "feet"),
  10946. weight: math.unit(5800, "lb"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/rhys/front.svg",
  10950. extra: 3386 / 3090,
  10951. bottom: 0.07
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(18, "feet"),
  10959. default: true
  10960. },
  10961. {
  10962. name: "Working Size",
  10963. height: math.unit(200, "feet")
  10964. },
  10965. {
  10966. name: "Demolition Size",
  10967. height: math.unit(2000, "feet")
  10968. },
  10969. {
  10970. name: "Maximum Licensed Size",
  10971. height: math.unit(5, "miles")
  10972. },
  10973. {
  10974. name: "Maximum Observed Size",
  10975. height: math.unit(10, "yottameters")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10981. {
  10982. front: {
  10983. height: math.unit(6, "feet"),
  10984. weight: math.unit(250, "lb"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/toto/front.svg",
  10988. extra: 527 / 479,
  10989. bottom: 0.05
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Micro",
  10996. height: math.unit(3, "feet")
  10997. },
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(10, "feet")
  11001. },
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(150, "feet"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Megamacro",
  11009. height: math.unit(1200, "feet")
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "King", species: ["lion"], tags: ["anthro"] },
  11015. {
  11016. back: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(150, "lb"),
  11019. name: "Back",
  11020. image: {
  11021. source: "./media/characters/king/back.svg"
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Micro",
  11028. height: math.unit(2, "inches")
  11029. },
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(8, "feet")
  11033. },
  11034. {
  11035. name: "Macro",
  11036. height: math.unit(200, "feet"),
  11037. default: true
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(50, "miles")
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11047. {
  11048. anthro: {
  11049. height: math.unit(6 + 5 / 12, "feet"),
  11050. weight: math.unit(280, "lb"),
  11051. name: "Anthro",
  11052. image: {
  11053. source: "./media/characters/cordite/anthro.svg",
  11054. extra: 1986 / 1905,
  11055. bottom: 0.025
  11056. }
  11057. },
  11058. feral: {
  11059. height: math.unit(2, "feet"),
  11060. weight: math.unit(90, "lb"),
  11061. name: "Feral",
  11062. image: {
  11063. source: "./media/characters/cordite/feral.svg",
  11064. extra: 1260 / 755,
  11065. bottom: 0.05
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(6 + 5 / 12, "feet"),
  11073. default: true
  11074. },
  11075. ]
  11076. ))
  11077. characterMakers.push(() => makeCharacter(
  11078. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11079. {
  11080. front: {
  11081. height: math.unit(6, "feet"),
  11082. weight: math.unit(150, "lb"),
  11083. name: "Front",
  11084. image: {
  11085. source: "./media/characters/pianostrong/front.svg",
  11086. extra: 6577 / 6254,
  11087. bottom: 0.02
  11088. }
  11089. },
  11090. side: {
  11091. height: math.unit(6, "feet"),
  11092. weight: math.unit(150, "lb"),
  11093. name: "Side",
  11094. image: {
  11095. source: "./media/characters/pianostrong/side.svg",
  11096. extra: 6106 / 5730
  11097. }
  11098. },
  11099. back: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(150, "lb"),
  11102. name: "Back",
  11103. image: {
  11104. source: "./media/characters/pianostrong/back.svg",
  11105. extra: 6085 / 5733,
  11106. bottom: 0.01
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Macro",
  11113. height: math.unit(100, "feet")
  11114. },
  11115. {
  11116. name: "Macro+",
  11117. height: math.unit(300, "feet"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Macro++",
  11122. height: math.unit(1000, "feet")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(150, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/kona/front.svg",
  11135. extra: 2960 / 2629,
  11136. bottom: 0.005
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(11 + 8 / 12, "feet")
  11144. },
  11145. {
  11146. name: "Macro",
  11147. height: math.unit(850, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Macro+",
  11152. height: math.unit(1.5, "km"),
  11153. default: true
  11154. },
  11155. {
  11156. name: "Megamacro",
  11157. height: math.unit(80, "miles")
  11158. },
  11159. {
  11160. name: "Gigamacro",
  11161. height: math.unit(3500, "miles")
  11162. },
  11163. ]
  11164. ))
  11165. characterMakers.push(() => makeCharacter(
  11166. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11167. {
  11168. side: {
  11169. height: math.unit(1.9, "meters"),
  11170. weight: math.unit(326, "kg"),
  11171. name: "Side",
  11172. image: {
  11173. source: "./media/characters/levi/side.svg",
  11174. extra: 1704 / 1334,
  11175. bottom: 0.02
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Normal",
  11182. height: math.unit(1.9, "meters"),
  11183. default: true
  11184. },
  11185. {
  11186. name: "Macro",
  11187. height: math.unit(20, "meters")
  11188. },
  11189. {
  11190. name: "Macro+",
  11191. height: math.unit(200, "meters")
  11192. },
  11193. {
  11194. name: "Megamacro",
  11195. height: math.unit(2, "km")
  11196. },
  11197. {
  11198. name: "Megamacro+",
  11199. height: math.unit(20, "km")
  11200. },
  11201. {
  11202. name: "Gigamacro",
  11203. height: math.unit(2500, "km")
  11204. },
  11205. {
  11206. name: "Gigamacro+",
  11207. height: math.unit(120000, "km")
  11208. },
  11209. {
  11210. name: "Teramacro",
  11211. height: math.unit(7.77e6, "km")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(6 + 4 / 12, "feet"),
  11220. weight: math.unit(188, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/bmc/front.svg",
  11224. extra: 1067 / 1022,
  11225. bottom: 0.047
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Human-sized",
  11232. height: math.unit(6 + 4 / 12, "feet")
  11233. },
  11234. {
  11235. name: "Small",
  11236. height: math.unit(250, "feet")
  11237. },
  11238. {
  11239. name: "Normal",
  11240. height: math.unit(1250, "feet"),
  11241. default: true
  11242. },
  11243. {
  11244. name: "Good Day",
  11245. height: math.unit(88, "miles")
  11246. },
  11247. {
  11248. name: "Largest Measured Size",
  11249. height: math.unit(11.2e6, "lightyears")
  11250. },
  11251. ]
  11252. ))
  11253. characterMakers.push(() => makeCharacter(
  11254. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11255. {
  11256. front: {
  11257. height: math.unit(20, "feet"),
  11258. weight: math.unit(2016, "kg"),
  11259. name: "Front",
  11260. image: {
  11261. source: "./media/characters/sven-the-kaiju/front.svg",
  11262. extra: 1277/1250,
  11263. bottom: 35/1312
  11264. }
  11265. },
  11266. mouth: {
  11267. height: math.unit(1.85, "feet"),
  11268. name: "Mouth",
  11269. image: {
  11270. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Fairy",
  11277. height: math.unit(6, "inches")
  11278. },
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(20, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Rampage",
  11286. height: math.unit(200, "feet")
  11287. },
  11288. {
  11289. name: "Archfey Forest Guardian",
  11290. height: math.unit(1, "mile")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(4, "meters"),
  11299. weight: math.unit(2, "tons"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/marik/front.svg",
  11303. extra: 1057 / 1003,
  11304. bottom: 0.08
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(4, "meters"),
  11312. default: true
  11313. },
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(20, "meters")
  11317. },
  11318. {
  11319. name: "Megamacro",
  11320. height: math.unit(50, "km")
  11321. },
  11322. {
  11323. name: "Gigamacro",
  11324. height: math.unit(100, "km")
  11325. },
  11326. {
  11327. name: "Alpha Macro",
  11328. height: math.unit(7.88e7, "yottameters")
  11329. },
  11330. ]
  11331. ))
  11332. characterMakers.push(() => makeCharacter(
  11333. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11334. {
  11335. front: {
  11336. height: math.unit(6, "feet"),
  11337. weight: math.unit(110, "lb"),
  11338. name: "Front",
  11339. image: {
  11340. source: "./media/characters/mel/front.svg",
  11341. extra: 736 / 617,
  11342. bottom: 0.017
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Pico",
  11349. height: math.unit(3, "pm")
  11350. },
  11351. {
  11352. name: "Nano",
  11353. height: math.unit(3, "nm")
  11354. },
  11355. {
  11356. name: "Micro",
  11357. height: math.unit(0.3, "mm"),
  11358. default: true
  11359. },
  11360. {
  11361. name: "Micro+",
  11362. height: math.unit(3, "mm")
  11363. },
  11364. {
  11365. name: "Normal",
  11366. height: math.unit(5 + 10.5 / 12, "feet")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11372. {
  11373. kaiju: {
  11374. height: math.unit(1.75, "meters"),
  11375. weight: math.unit(55, "kg"),
  11376. name: "Kaiju",
  11377. image: {
  11378. source: "./media/characters/lykonous/kaiju.svg",
  11379. extra: 1055 / 946,
  11380. bottom: 0.135
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(2.5, "meters"),
  11388. default: true
  11389. },
  11390. {
  11391. name: "Kaiju Dragon",
  11392. height: math.unit(60, "meters")
  11393. },
  11394. {
  11395. name: "Mega Kaiju",
  11396. height: math.unit(120, "km")
  11397. },
  11398. {
  11399. name: "Giga Kaiju",
  11400. height: math.unit(200, "megameters")
  11401. },
  11402. {
  11403. name: "Terra Kaiju",
  11404. height: math.unit(400, "gigameters")
  11405. },
  11406. {
  11407. name: "Kaiju Dragon God",
  11408. height: math.unit(13000, "exaparsecs")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(6, "feet"),
  11417. weight: math.unit(150, "lb"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/blü/front.svg",
  11421. extra: 1883 / 1564,
  11422. bottom: 0.031
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(13, "feet"),
  11430. default: true
  11431. },
  11432. {
  11433. name: "Big Boi",
  11434. height: math.unit(150, "meters")
  11435. },
  11436. {
  11437. name: "Mini Stomper",
  11438. height: math.unit(300, "meters")
  11439. },
  11440. {
  11441. name: "Macro",
  11442. height: math.unit(1000, "meters")
  11443. },
  11444. {
  11445. name: "Megamacro",
  11446. height: math.unit(11000, "meters")
  11447. },
  11448. {
  11449. name: "Gigamacro",
  11450. height: math.unit(11000, "km")
  11451. },
  11452. {
  11453. name: "Teramacro",
  11454. height: math.unit(420000, "km")
  11455. },
  11456. {
  11457. name: "Examacro",
  11458. height: math.unit(120, "parsecs")
  11459. },
  11460. {
  11461. name: "God Tho",
  11462. height: math.unit(98000000000, "parsecs")
  11463. },
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11468. {
  11469. taurFront: {
  11470. height: math.unit(6, "feet"),
  11471. weight: math.unit(200, "lb"),
  11472. name: "Taur (Front)",
  11473. image: {
  11474. source: "./media/characters/scales/taur-front.svg",
  11475. extra: 1,
  11476. bottom: 0.05
  11477. }
  11478. },
  11479. taurBack: {
  11480. height: math.unit(6, "feet"),
  11481. weight: math.unit(200, "lb"),
  11482. name: "Taur (Back)",
  11483. image: {
  11484. source: "./media/characters/scales/taur-back.svg",
  11485. extra: 1,
  11486. bottom: 0.08
  11487. }
  11488. },
  11489. anthro: {
  11490. height: math.unit(6 * 7 / 12, "feet"),
  11491. weight: math.unit(100, "lb"),
  11492. name: "Anthro",
  11493. image: {
  11494. source: "./media/characters/scales/anthro.svg",
  11495. extra: 1,
  11496. bottom: 0.06
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Normal",
  11503. height: math.unit(12, "feet"),
  11504. default: true
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11510. {
  11511. front: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(150, "lb"),
  11514. name: "Front",
  11515. image: {
  11516. source: "./media/characters/koragos/front.svg",
  11517. extra: 841 / 794,
  11518. bottom: 0.035
  11519. }
  11520. },
  11521. back: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Back",
  11525. image: {
  11526. source: "./media/characters/koragos/back.svg",
  11527. extra: 841 / 810,
  11528. bottom: 0.022
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(6 + 11 / 12, "feet"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Macro",
  11540. height: math.unit(490, "feet")
  11541. },
  11542. {
  11543. name: "Megamacro",
  11544. height: math.unit(10, "miles")
  11545. },
  11546. {
  11547. name: "Gigamacro",
  11548. height: math.unit(50, "miles")
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(6, "feet"),
  11557. weight: math.unit(250, "lb"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/xylrem/front.svg",
  11561. extra: 3323 / 3050,
  11562. bottom: 0.065
  11563. }
  11564. },
  11565. },
  11566. [
  11567. {
  11568. name: "Micro",
  11569. height: math.unit(4, "feet")
  11570. },
  11571. {
  11572. name: "Normal",
  11573. height: math.unit(16, "feet"),
  11574. default: true
  11575. },
  11576. {
  11577. name: "Macro",
  11578. height: math.unit(2720, "feet")
  11579. },
  11580. {
  11581. name: "Megamacro",
  11582. height: math.unit(25000, "miles")
  11583. },
  11584. ]
  11585. ))
  11586. characterMakers.push(() => makeCharacter(
  11587. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11588. {
  11589. front: {
  11590. height: math.unit(8, "feet"),
  11591. weight: math.unit(250, "kg"),
  11592. name: "Front",
  11593. image: {
  11594. source: "./media/characters/ikideru/front.svg",
  11595. extra: 930 / 870,
  11596. bottom: 0.087
  11597. }
  11598. },
  11599. back: {
  11600. height: math.unit(8, "feet"),
  11601. weight: math.unit(250, "kg"),
  11602. name: "Back",
  11603. image: {
  11604. source: "./media/characters/ikideru/back.svg",
  11605. extra: 919 / 852,
  11606. bottom: 0.055
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Rare",
  11613. height: math.unit(8, "feet"),
  11614. default: true
  11615. },
  11616. {
  11617. name: "Playful Loom",
  11618. height: math.unit(80, "feet")
  11619. },
  11620. {
  11621. name: "City Leaner",
  11622. height: math.unit(230, "feet")
  11623. },
  11624. {
  11625. name: "Megamacro",
  11626. height: math.unit(2500, "feet")
  11627. },
  11628. {
  11629. name: "Gigamacro",
  11630. height: math.unit(26400, "feet")
  11631. },
  11632. {
  11633. name: "Tectonic Shifter",
  11634. height: math.unit(1.7, "megameters")
  11635. },
  11636. {
  11637. name: "Planet Carer",
  11638. height: math.unit(21, "megameters")
  11639. },
  11640. {
  11641. name: "God",
  11642. height: math.unit(11157.22, "parsecs")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(120, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/neo/front.svg"
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Micro",
  11661. height: math.unit(2, "inches"),
  11662. default: true
  11663. },
  11664. {
  11665. name: "Human Size",
  11666. height: math.unit(5 + 8 / 12, "feet")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(13 + 10 / 12, "feet"),
  11675. weight: math.unit(5320, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/chauncey-chantz/front.svg",
  11679. extra: 1587 / 1435,
  11680. bottom: 0.02
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Normal",
  11687. height: math.unit(13 + 10 / 12, "feet"),
  11688. default: true
  11689. },
  11690. {
  11691. name: "Macro",
  11692. height: math.unit(45, "feet")
  11693. },
  11694. {
  11695. name: "Megamacro",
  11696. height: math.unit(250, "miles")
  11697. },
  11698. {
  11699. name: "Planetary",
  11700. height: math.unit(10000, "miles")
  11701. },
  11702. {
  11703. name: "Galactic",
  11704. height: math.unit(40000, "parsecs")
  11705. },
  11706. {
  11707. name: "Universal",
  11708. height: math.unit(1, "yottameter")
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11714. {
  11715. front: {
  11716. height: math.unit(6, "feet"),
  11717. weight: math.unit(150, "lb"),
  11718. name: "Front",
  11719. image: {
  11720. source: "./media/characters/epifox/front.svg",
  11721. extra: 1,
  11722. bottom: 0.075
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Micro",
  11729. height: math.unit(6, "inches")
  11730. },
  11731. {
  11732. name: "Normal",
  11733. height: math.unit(12, "feet"),
  11734. default: true
  11735. },
  11736. {
  11737. name: "Macro",
  11738. height: math.unit(3810, "feet")
  11739. },
  11740. {
  11741. name: "Megamacro",
  11742. height: math.unit(500, "miles")
  11743. },
  11744. ]
  11745. ))
  11746. characterMakers.push(() => makeCharacter(
  11747. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11748. {
  11749. front: {
  11750. height: math.unit(1.8796, "m"),
  11751. weight: math.unit(230, "lb"),
  11752. name: "Front",
  11753. image: {
  11754. source: "./media/characters/colin-t/front.svg",
  11755. extra: 1272 / 1193,
  11756. bottom: 0.07
  11757. }
  11758. },
  11759. },
  11760. [
  11761. {
  11762. name: "Micro",
  11763. height: math.unit(0.571, "meters")
  11764. },
  11765. {
  11766. name: "Normal",
  11767. height: math.unit(1.8796, "meters"),
  11768. default: true
  11769. },
  11770. {
  11771. name: "Tall",
  11772. height: math.unit(4, "meters")
  11773. },
  11774. {
  11775. name: "Macro",
  11776. height: math.unit(67.241, "meters")
  11777. },
  11778. {
  11779. name: "Megamacro",
  11780. height: math.unit(371.856, "meters")
  11781. },
  11782. {
  11783. name: "Planetary",
  11784. height: math.unit(12631.5689, "km")
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(1.85, "meters"),
  11793. weight: math.unit(80, "kg"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/matvei/front.svg",
  11797. extra: 614 / 594,
  11798. bottom: 0.01
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Normal",
  11805. height: math.unit(1.85, "meters"),
  11806. default: true
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11812. {
  11813. front: {
  11814. height: math.unit(5 + 9 / 12, "feet"),
  11815. weight: math.unit(70, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/quincy/front.svg",
  11819. extra: 3041 / 2751
  11820. }
  11821. },
  11822. back: {
  11823. height: math.unit(5 + 9 / 12, "feet"),
  11824. weight: math.unit(70, "lb"),
  11825. name: "Back",
  11826. image: {
  11827. source: "./media/characters/quincy/back.svg",
  11828. extra: 3041 / 2751
  11829. }
  11830. },
  11831. flying: {
  11832. height: math.unit(5 + 4 / 12, "feet"),
  11833. weight: math.unit(70, "lb"),
  11834. name: "Flying",
  11835. image: {
  11836. source: "./media/characters/quincy/flying.svg",
  11837. extra: 1044 / 930
  11838. }
  11839. },
  11840. },
  11841. [
  11842. {
  11843. name: "Micro",
  11844. height: math.unit(3, "cm")
  11845. },
  11846. {
  11847. name: "Normal",
  11848. height: math.unit(5 + 9 / 12, "feet")
  11849. },
  11850. {
  11851. name: "Macro",
  11852. height: math.unit(200, "meters"),
  11853. default: true
  11854. },
  11855. {
  11856. name: "Megamacro",
  11857. height: math.unit(1000, "meters")
  11858. },
  11859. ]
  11860. ))
  11861. characterMakers.push(() => makeCharacter(
  11862. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11863. {
  11864. front: {
  11865. height: math.unit(3 + 11/12, "feet"),
  11866. weight: math.unit(50, "lb"),
  11867. name: "Front",
  11868. image: {
  11869. source: "./media/characters/vanrel/front.svg",
  11870. extra: 1104/949,
  11871. bottom: 52/1156
  11872. }
  11873. },
  11874. back: {
  11875. height: math.unit(3 + 11/12, "feet"),
  11876. weight: math.unit(50, "lb"),
  11877. name: "Back",
  11878. image: {
  11879. source: "./media/characters/vanrel/back.svg",
  11880. extra: 1119/976,
  11881. bottom: 37/1156
  11882. }
  11883. },
  11884. tome: {
  11885. height: math.unit(1.35, "feet"),
  11886. weight: math.unit(10, "lb"),
  11887. name: "Vanrel's Tome",
  11888. rename: true,
  11889. image: {
  11890. source: "./media/characters/vanrel/tome.svg"
  11891. }
  11892. },
  11893. beans: {
  11894. height: math.unit(0.89, "feet"),
  11895. name: "Beans",
  11896. image: {
  11897. source: "./media/characters/vanrel/beans.svg"
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(3 + 11/12, "feet"),
  11905. default: true
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(7 + 5 / 12, "feet"),
  11914. name: "Front",
  11915. image: {
  11916. source: "./media/characters/kuiper-vanrel/front.svg",
  11917. extra: 1219/1169,
  11918. bottom: 69/1288
  11919. }
  11920. },
  11921. back: {
  11922. height: math.unit(7 + 5 / 12, "feet"),
  11923. name: "Back",
  11924. image: {
  11925. source: "./media/characters/kuiper-vanrel/back.svg",
  11926. extra: 1236/1193,
  11927. bottom: 27/1263
  11928. }
  11929. },
  11930. foot: {
  11931. height: math.unit(0.55, "meters"),
  11932. name: "Foot",
  11933. image: {
  11934. source: "./media/characters/kuiper-vanrel/foot.svg",
  11935. }
  11936. },
  11937. battle: {
  11938. height: math.unit(6.824, "feet"),
  11939. name: "Battle",
  11940. image: {
  11941. source: "./media/characters/kuiper-vanrel/battle.svg",
  11942. extra: 1466 / 1327,
  11943. bottom: 29 / 1492.5
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(7 + 5 / 12, "feet"),
  11951. default: true
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(8 + 5 / 12, "feet"),
  11960. name: "Front",
  11961. image: {
  11962. source: "./media/characters/keset-vanrel/front.svg",
  11963. extra: 1231/1148,
  11964. bottom: 82/1313
  11965. }
  11966. },
  11967. back: {
  11968. height: math.unit(8 + 5 / 12, "feet"),
  11969. name: "Back",
  11970. image: {
  11971. source: "./media/characters/keset-vanrel/back.svg",
  11972. extra: 1240/1174,
  11973. bottom: 33/1273
  11974. }
  11975. },
  11976. hand: {
  11977. height: math.unit(0.6, "meters"),
  11978. name: "Hand",
  11979. image: {
  11980. source: "./media/characters/keset-vanrel/hand.svg"
  11981. }
  11982. },
  11983. foot: {
  11984. height: math.unit(0.94978, "meters"),
  11985. name: "Foot",
  11986. image: {
  11987. source: "./media/characters/keset-vanrel/foot.svg"
  11988. }
  11989. },
  11990. battle: {
  11991. height: math.unit(7.408, "feet"),
  11992. name: "Battle",
  11993. image: {
  11994. source: "./media/characters/keset-vanrel/battle.svg",
  11995. extra: 1890 / 1386,
  11996. bottom: 73.28 / 1970
  11997. }
  11998. },
  11999. },
  12000. [
  12001. {
  12002. name: "Normal",
  12003. height: math.unit(8 + 5 / 12, "feet"),
  12004. default: true
  12005. },
  12006. ]
  12007. ))
  12008. characterMakers.push(() => makeCharacter(
  12009. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12010. {
  12011. front: {
  12012. height: math.unit(6, "feet"),
  12013. weight: math.unit(150, "lb"),
  12014. name: "Front",
  12015. image: {
  12016. source: "./media/characters/neos/front.svg",
  12017. extra: 1696 / 992,
  12018. bottom: 0.14
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(54, "cm"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Macro",
  12030. height: math.unit(100, "m")
  12031. },
  12032. {
  12033. name: "Megamacro",
  12034. height: math.unit(10, "km")
  12035. },
  12036. {
  12037. name: "Megamacro+",
  12038. height: math.unit(100, "km")
  12039. },
  12040. {
  12041. name: "Gigamacro",
  12042. height: math.unit(100, "Mm")
  12043. },
  12044. {
  12045. name: "Teramacro",
  12046. height: math.unit(100, "Gm")
  12047. },
  12048. {
  12049. name: "Examacro",
  12050. height: math.unit(100, "Em")
  12051. },
  12052. {
  12053. name: "Godly",
  12054. height: math.unit(10000, "Ym")
  12055. },
  12056. {
  12057. name: "Beyond Godly",
  12058. height: math.unit(25, "multiverses")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12064. {
  12065. feminine: {
  12066. height: math.unit(5, "feet"),
  12067. weight: math.unit(100, "lb"),
  12068. name: "Feminine",
  12069. image: {
  12070. source: "./media/characters/sammy-mouse/feminine.svg",
  12071. extra: 2526 / 2425,
  12072. bottom: 0.123
  12073. }
  12074. },
  12075. masculine: {
  12076. height: math.unit(5, "feet"),
  12077. weight: math.unit(100, "lb"),
  12078. name: "Masculine",
  12079. image: {
  12080. source: "./media/characters/sammy-mouse/masculine.svg",
  12081. extra: 2526 / 2425,
  12082. bottom: 0.123
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Micro",
  12089. height: math.unit(5, "inches")
  12090. },
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(5, "feet"),
  12094. default: true
  12095. },
  12096. {
  12097. name: "Macro",
  12098. height: math.unit(60, "feet")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(4, "feet"),
  12107. weight: math.unit(50, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/kole/front.svg",
  12111. extra: 1423 / 1303,
  12112. bottom: 0.025
  12113. }
  12114. },
  12115. back: {
  12116. height: math.unit(4, "feet"),
  12117. weight: math.unit(50, "lb"),
  12118. name: "Back",
  12119. image: {
  12120. source: "./media/characters/kole/back.svg",
  12121. extra: 1426 / 1280,
  12122. bottom: 0.02
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Normal",
  12129. height: math.unit(4, "feet"),
  12130. default: true
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(2.5, "feet"),
  12139. weight: math.unit(32, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/rufran/front.svg",
  12143. extra: 1313/885,
  12144. bottom: 94/1407
  12145. }
  12146. },
  12147. side: {
  12148. height: math.unit(2.5, "feet"),
  12149. weight: math.unit(32, "lb"),
  12150. name: "Side",
  12151. image: {
  12152. source: "./media/characters/rufran/side.svg",
  12153. extra: 1109/852,
  12154. bottom: 118/1227
  12155. }
  12156. },
  12157. back: {
  12158. height: math.unit(2.5, "feet"),
  12159. weight: math.unit(32, "lb"),
  12160. name: "Back",
  12161. image: {
  12162. source: "./media/characters/rufran/back.svg",
  12163. extra: 1280/878,
  12164. bottom: 131/1411
  12165. }
  12166. },
  12167. mouth: {
  12168. height: math.unit(1.13, "feet"),
  12169. name: "Mouth",
  12170. image: {
  12171. source: "./media/characters/rufran/mouth.svg"
  12172. }
  12173. },
  12174. foot: {
  12175. height: math.unit(1.33, "feet"),
  12176. name: "Foot",
  12177. image: {
  12178. source: "./media/characters/rufran/foot.svg"
  12179. }
  12180. },
  12181. koboldFront: {
  12182. height: math.unit(2 + 6 / 12, "feet"),
  12183. weight: math.unit(20, "lb"),
  12184. name: "Front (Kobold)",
  12185. image: {
  12186. source: "./media/characters/rufran/kobold-front.svg",
  12187. extra: 2041 / 1839,
  12188. bottom: 0.055
  12189. }
  12190. },
  12191. koboldBack: {
  12192. height: math.unit(2 + 6 / 12, "feet"),
  12193. weight: math.unit(20, "lb"),
  12194. name: "Back (Kobold)",
  12195. image: {
  12196. source: "./media/characters/rufran/kobold-back.svg",
  12197. extra: 2054 / 1839,
  12198. bottom: 0.01
  12199. }
  12200. },
  12201. koboldHand: {
  12202. height: math.unit(0.2166, "meters"),
  12203. name: "Hand (Kobold)",
  12204. image: {
  12205. source: "./media/characters/rufran/kobold-hand.svg"
  12206. }
  12207. },
  12208. koboldFoot: {
  12209. height: math.unit(0.185, "meters"),
  12210. name: "Foot (Kobold)",
  12211. image: {
  12212. source: "./media/characters/rufran/kobold-foot.svg"
  12213. }
  12214. },
  12215. },
  12216. [
  12217. {
  12218. name: "Micro",
  12219. height: math.unit(1, "inch")
  12220. },
  12221. {
  12222. name: "Normal",
  12223. height: math.unit(2 + 6 / 12, "feet"),
  12224. default: true
  12225. },
  12226. {
  12227. name: "Big",
  12228. height: math.unit(60, "feet")
  12229. },
  12230. {
  12231. name: "Macro",
  12232. height: math.unit(325, "feet")
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12238. {
  12239. front: {
  12240. height: math.unit(0.3, "meters"),
  12241. weight: math.unit(3.5, "kg"),
  12242. name: "Front",
  12243. image: {
  12244. source: "./media/characters/chip/front.svg",
  12245. extra: 748 / 674
  12246. }
  12247. },
  12248. },
  12249. [
  12250. {
  12251. name: "Micro",
  12252. height: math.unit(1, "inch"),
  12253. default: true
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12259. {
  12260. side: {
  12261. height: math.unit(2.3, "meters"),
  12262. weight: math.unit(3500, "lb"),
  12263. name: "Side",
  12264. image: {
  12265. source: "./media/characters/torvid/side.svg",
  12266. extra: 1972 / 722,
  12267. bottom: 0.035
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(2.3, "meters"),
  12275. default: true
  12276. },
  12277. ]
  12278. ))
  12279. characterMakers.push(() => makeCharacter(
  12280. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12281. {
  12282. front: {
  12283. height: math.unit(2, "meters"),
  12284. weight: math.unit(150.5, "kg"),
  12285. name: "Front",
  12286. image: {
  12287. source: "./media/characters/susan/front.svg",
  12288. extra: 693 / 635,
  12289. bottom: 0.05
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Megamacro",
  12296. height: math.unit(505, "miles"),
  12297. default: true
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12303. {
  12304. front: {
  12305. height: math.unit(6, "feet"),
  12306. weight: math.unit(150, "lb"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/raindrops/front.svg",
  12310. extra: 2655 / 2461,
  12311. bottom: 49 / 2705
  12312. }
  12313. },
  12314. back: {
  12315. height: math.unit(6, "feet"),
  12316. weight: math.unit(150, "lb"),
  12317. name: "Back",
  12318. image: {
  12319. source: "./media/characters/raindrops/back.svg",
  12320. extra: 2574 / 2400,
  12321. bottom: 65 / 2634
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Micro",
  12328. height: math.unit(6, "inches")
  12329. },
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(6 + 2 / 12, "feet")
  12333. },
  12334. {
  12335. name: "Macro",
  12336. height: math.unit(131, "feet"),
  12337. default: true
  12338. },
  12339. {
  12340. name: "Megamacro",
  12341. height: math.unit(15, "miles")
  12342. },
  12343. {
  12344. name: "Gigamacro",
  12345. height: math.unit(4000, "miles")
  12346. },
  12347. {
  12348. name: "Teramacro",
  12349. height: math.unit(315000, "miles")
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(2.794, "meters"),
  12358. weight: math.unit(325, "kg"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/tezwa/front.svg",
  12362. extra: 2083 / 1906,
  12363. bottom: 0.031
  12364. }
  12365. },
  12366. foot: {
  12367. height: math.unit(0.687, "meters"),
  12368. name: "Foot",
  12369. image: {
  12370. source: "./media/characters/tezwa/foot.svg"
  12371. }
  12372. },
  12373. },
  12374. [
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(9 + 2 / 12, "feet"),
  12378. default: true
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12384. {
  12385. front: {
  12386. height: math.unit(58, "feet"),
  12387. weight: math.unit(89000, "lb"),
  12388. name: "Front",
  12389. image: {
  12390. source: "./media/characters/typhus/front.svg",
  12391. extra: 816 / 800,
  12392. bottom: 0.065
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Macro",
  12399. height: math.unit(58, "feet"),
  12400. default: true
  12401. },
  12402. ]
  12403. ))
  12404. characterMakers.push(() => makeCharacter(
  12405. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12406. {
  12407. front: {
  12408. height: math.unit(12, "feet"),
  12409. weight: math.unit(6, "tonnes"),
  12410. name: "Front",
  12411. image: {
  12412. source: "./media/characters/lyra-von-wulf/front.svg",
  12413. extra: 1,
  12414. bottom: 0.10
  12415. }
  12416. },
  12417. frontMecha: {
  12418. height: math.unit(12, "feet"),
  12419. weight: math.unit(12, "tonnes"),
  12420. name: "Front (Mecha)",
  12421. image: {
  12422. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12423. extra: 1,
  12424. bottom: 0.042
  12425. }
  12426. },
  12427. maw: {
  12428. height: math.unit(2.2, "feet"),
  12429. name: "Maw",
  12430. image: {
  12431. source: "./media/characters/lyra-von-wulf/maw.svg"
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(12, "feet"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Classic",
  12443. height: math.unit(50, "feet")
  12444. },
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(500, "feet")
  12448. },
  12449. {
  12450. name: "Megamacro",
  12451. height: math.unit(1, "mile")
  12452. },
  12453. {
  12454. name: "Gigamacro",
  12455. height: math.unit(400, "miles")
  12456. },
  12457. {
  12458. name: "Teramacro",
  12459. height: math.unit(22000, "miles")
  12460. },
  12461. {
  12462. name: "Solarmacro",
  12463. height: math.unit(8600000, "miles")
  12464. },
  12465. {
  12466. name: "Galactic",
  12467. height: math.unit(1057000, "lightyears")
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12473. {
  12474. front: {
  12475. height: math.unit(6 + 10 / 12, "feet"),
  12476. weight: math.unit(150, "lb"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/dixon/front.svg",
  12480. extra: 3361 / 3209,
  12481. bottom: 0.01
  12482. }
  12483. },
  12484. },
  12485. [
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(6 + 10 / 12, "feet"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Big",
  12493. height: math.unit(12, "meters")
  12494. },
  12495. {
  12496. name: "Macro",
  12497. height: math.unit(500, "meters")
  12498. },
  12499. {
  12500. name: "Megamacro",
  12501. height: math.unit(2, "km")
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(185, "cm"),
  12510. weight: math.unit(68, "kg"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/kauko/front.svg",
  12514. extra: 1455 / 1421,
  12515. bottom: 0.03
  12516. }
  12517. },
  12518. back: {
  12519. height: math.unit(185, "cm"),
  12520. weight: math.unit(68, "kg"),
  12521. name: "Back",
  12522. image: {
  12523. source: "./media/characters/kauko/back.svg",
  12524. extra: 1455 / 1421,
  12525. bottom: 0.004
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Normal",
  12532. height: math.unit(185, "cm"),
  12533. default: true
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(150, "kg"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/varg/front.svg",
  12546. extra: 1108 / 1018,
  12547. bottom: 0.0375
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Normal",
  12554. height: math.unit(5, "meters")
  12555. },
  12556. {
  12557. name: "Macro",
  12558. height: math.unit(200, "meters")
  12559. },
  12560. {
  12561. name: "Megamacro",
  12562. height: math.unit(20, "kilometers")
  12563. },
  12564. {
  12565. name: "True Size",
  12566. height: math.unit(211, "km"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Gigamacro",
  12571. height: math.unit(1000, "km")
  12572. },
  12573. {
  12574. name: "Gigamacro+",
  12575. height: math.unit(8000, "km")
  12576. },
  12577. {
  12578. name: "Teramacro",
  12579. height: math.unit(1000000, "km")
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12585. {
  12586. front: {
  12587. height: math.unit(7 + 7 / 12, "feet"),
  12588. weight: math.unit(267, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/dayza/front.svg",
  12592. extra: 1262 / 1200,
  12593. bottom: 0.035
  12594. }
  12595. },
  12596. side: {
  12597. height: math.unit(7 + 7 / 12, "feet"),
  12598. weight: math.unit(267, "lb"),
  12599. name: "Side",
  12600. image: {
  12601. source: "./media/characters/dayza/side.svg",
  12602. extra: 1295 / 1245,
  12603. bottom: 0.05
  12604. }
  12605. },
  12606. back: {
  12607. height: math.unit(7 + 7 / 12, "feet"),
  12608. weight: math.unit(267, "lb"),
  12609. name: "Back",
  12610. image: {
  12611. source: "./media/characters/dayza/back.svg",
  12612. extra: 1241 / 1170
  12613. }
  12614. },
  12615. },
  12616. [
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(7 + 7 / 12, "feet"),
  12620. default: true
  12621. },
  12622. {
  12623. name: "Macro",
  12624. height: math.unit(155, "feet")
  12625. },
  12626. ]
  12627. ))
  12628. characterMakers.push(() => makeCharacter(
  12629. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12630. {
  12631. front: {
  12632. height: math.unit(6 + 5 / 12, "feet"),
  12633. weight: math.unit(160, "lb"),
  12634. name: "Front",
  12635. image: {
  12636. source: "./media/characters/xanthos/front.svg",
  12637. extra: 1,
  12638. bottom: 0.04
  12639. }
  12640. },
  12641. back: {
  12642. height: math.unit(6 + 5 / 12, "feet"),
  12643. weight: math.unit(160, "lb"),
  12644. name: "Back",
  12645. image: {
  12646. source: "./media/characters/xanthos/back.svg",
  12647. extra: 1,
  12648. bottom: 0.03
  12649. }
  12650. },
  12651. hand: {
  12652. height: math.unit(0.928, "feet"),
  12653. name: "Hand",
  12654. image: {
  12655. source: "./media/characters/xanthos/hand.svg"
  12656. }
  12657. },
  12658. foot: {
  12659. height: math.unit(1.286, "feet"),
  12660. name: "Foot",
  12661. image: {
  12662. source: "./media/characters/xanthos/foot.svg"
  12663. }
  12664. },
  12665. },
  12666. [
  12667. {
  12668. name: "Normal",
  12669. height: math.unit(6 + 5 / 12, "feet"),
  12670. default: true
  12671. },
  12672. {
  12673. name: "Normal+",
  12674. height: math.unit(6, "meters")
  12675. },
  12676. {
  12677. name: "Macro",
  12678. height: math.unit(40, "feet")
  12679. },
  12680. {
  12681. name: "Macro+",
  12682. height: math.unit(200, "meters")
  12683. },
  12684. {
  12685. name: "Megamacro",
  12686. height: math.unit(20, "km")
  12687. },
  12688. {
  12689. name: "Megamacro+",
  12690. height: math.unit(100, "km")
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(6 + 3 / 12, "feet"),
  12699. weight: math.unit(215, "lb"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/grynn/front.svg",
  12703. extra: 4627 / 4209,
  12704. bottom: 0.047
  12705. }
  12706. },
  12707. },
  12708. [
  12709. {
  12710. name: "Micro",
  12711. height: math.unit(6, "inches")
  12712. },
  12713. {
  12714. name: "Normal",
  12715. height: math.unit(6 + 3 / 12, "feet"),
  12716. default: true
  12717. },
  12718. {
  12719. name: "Big",
  12720. height: math.unit(104, "feet")
  12721. },
  12722. {
  12723. name: "Macro",
  12724. height: math.unit(944, "feet")
  12725. },
  12726. {
  12727. name: "Macro+",
  12728. height: math.unit(9480, "feet")
  12729. },
  12730. {
  12731. name: "Megamacro",
  12732. height: math.unit(78752, "feet")
  12733. },
  12734. {
  12735. name: "Megamacro+",
  12736. height: math.unit(630128, "feet")
  12737. },
  12738. {
  12739. name: "Megamacro++",
  12740. height: math.unit(3150695, "feet")
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12746. {
  12747. front: {
  12748. height: math.unit(7 + 5 / 12, "feet"),
  12749. weight: math.unit(450, "lb"),
  12750. name: "Front",
  12751. image: {
  12752. source: "./media/characters/mocha-aura/front.svg",
  12753. extra: 1907 / 1817,
  12754. bottom: 0.04
  12755. }
  12756. },
  12757. back: {
  12758. height: math.unit(7 + 5 / 12, "feet"),
  12759. weight: math.unit(450, "lb"),
  12760. name: "Back",
  12761. image: {
  12762. source: "./media/characters/mocha-aura/back.svg",
  12763. extra: 1900 / 1825,
  12764. bottom: 0.045
  12765. }
  12766. },
  12767. },
  12768. [
  12769. {
  12770. name: "Nano",
  12771. height: math.unit(1, "nm")
  12772. },
  12773. {
  12774. name: "Megamicro",
  12775. height: math.unit(1, "mm")
  12776. },
  12777. {
  12778. name: "Micro",
  12779. height: math.unit(3, "inches")
  12780. },
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(7 + 5 / 12, "feet"),
  12784. default: true
  12785. },
  12786. {
  12787. name: "Macro",
  12788. height: math.unit(30, "feet")
  12789. },
  12790. {
  12791. name: "Megamacro",
  12792. height: math.unit(3500, "feet")
  12793. },
  12794. {
  12795. name: "Teramacro",
  12796. height: math.unit(500000, "miles")
  12797. },
  12798. {
  12799. name: "Petamacro",
  12800. height: math.unit(50000000000000000, "parsecs")
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12806. {
  12807. front: {
  12808. height: math.unit(6, "feet"),
  12809. weight: math.unit(150, "lb"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/ilisha-devya/front.svg",
  12813. extra: 1,
  12814. bottom: 0.175
  12815. }
  12816. },
  12817. back: {
  12818. height: math.unit(6, "feet"),
  12819. weight: math.unit(150, "lb"),
  12820. name: "Back",
  12821. image: {
  12822. source: "./media/characters/ilisha-devya/back.svg",
  12823. extra: 1,
  12824. bottom: 0.015
  12825. }
  12826. },
  12827. },
  12828. [
  12829. {
  12830. name: "Macro",
  12831. height: math.unit(500, "feet"),
  12832. default: true
  12833. },
  12834. {
  12835. name: "Megamacro",
  12836. height: math.unit(10, "miles")
  12837. },
  12838. {
  12839. name: "Gigamacro",
  12840. height: math.unit(100000, "miles")
  12841. },
  12842. {
  12843. name: "Examacro",
  12844. height: math.unit(1e9, "lightyears")
  12845. },
  12846. {
  12847. name: "Omniversal",
  12848. height: math.unit(1e33, "lightyears")
  12849. },
  12850. {
  12851. name: "Beyond Infinite",
  12852. height: math.unit(1e100, "lightyears")
  12853. },
  12854. ]
  12855. ))
  12856. characterMakers.push(() => makeCharacter(
  12857. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12858. {
  12859. Side: {
  12860. height: math.unit(6, "feet"),
  12861. weight: math.unit(150, "lb"),
  12862. name: "Side",
  12863. image: {
  12864. source: "./media/characters/mira/side.svg",
  12865. extra: 900 / 799,
  12866. bottom: 0.02
  12867. }
  12868. },
  12869. },
  12870. [
  12871. {
  12872. name: "Human Size",
  12873. height: math.unit(6, "feet")
  12874. },
  12875. {
  12876. name: "Macro",
  12877. height: math.unit(100, "feet"),
  12878. default: true
  12879. },
  12880. {
  12881. name: "Megamacro",
  12882. height: math.unit(10, "miles")
  12883. },
  12884. {
  12885. name: "Gigamacro",
  12886. height: math.unit(25000, "miles")
  12887. },
  12888. {
  12889. name: "Teramacro",
  12890. height: math.unit(300, "AU")
  12891. },
  12892. {
  12893. name: "Full Size",
  12894. height: math.unit(4.5e10, "lightyears")
  12895. },
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12900. {
  12901. front: {
  12902. height: math.unit(6, "feet"),
  12903. weight: math.unit(150, "lb"),
  12904. name: "Front",
  12905. image: {
  12906. source: "./media/characters/holly/front.svg",
  12907. extra: 639 / 606
  12908. }
  12909. },
  12910. back: {
  12911. height: math.unit(6, "feet"),
  12912. weight: math.unit(150, "lb"),
  12913. name: "Back",
  12914. image: {
  12915. source: "./media/characters/holly/back.svg",
  12916. extra: 623 / 598
  12917. }
  12918. },
  12919. frontWorking: {
  12920. height: math.unit(6, "feet"),
  12921. weight: math.unit(150, "lb"),
  12922. name: "Front (Working)",
  12923. image: {
  12924. source: "./media/characters/holly/front-working.svg",
  12925. extra: 607 / 577,
  12926. bottom: 0.048
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Normal",
  12933. height: math.unit(12 + 3 / 12, "feet"),
  12934. default: true
  12935. },
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12940. {
  12941. front: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(150, "lb"),
  12944. name: "Front",
  12945. image: {
  12946. source: "./media/characters/porter/front.svg",
  12947. extra: 1,
  12948. bottom: 0.01
  12949. }
  12950. },
  12951. frontRobes: {
  12952. height: math.unit(6, "feet"),
  12953. weight: math.unit(150, "lb"),
  12954. name: "Front (Robes)",
  12955. image: {
  12956. source: "./media/characters/porter/front-robes.svg",
  12957. extra: 1.01,
  12958. bottom: 0.01
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(11 + 9 / 12, "feet"),
  12966. default: true
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12972. {
  12973. legendary: {
  12974. height: math.unit(6, "feet"),
  12975. weight: math.unit(150, "lb"),
  12976. name: "Legendary",
  12977. image: {
  12978. source: "./media/characters/lucy/legendary.svg",
  12979. extra: 1355 / 1100,
  12980. bottom: 0.045
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Legendary",
  12987. height: math.unit(86882 * 2, "miles"),
  12988. default: true
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(6, "feet"),
  12997. weight: math.unit(150, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/drusilla/front.svg",
  13001. extra: 678 / 635,
  13002. bottom: 0.03
  13003. }
  13004. },
  13005. back: {
  13006. height: math.unit(6, "feet"),
  13007. weight: math.unit(150, "lb"),
  13008. name: "Back",
  13009. image: {
  13010. source: "./media/characters/drusilla/back.svg",
  13011. extra: 678 / 635,
  13012. bottom: 0.005
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Macro",
  13019. height: math.unit(100, "feet")
  13020. },
  13021. {
  13022. name: "Canon Height",
  13023. height: math.unit(2000, "feet"),
  13024. default: true
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(6, "feet"),
  13033. weight: math.unit(180, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/renard-thatch/front.svg",
  13037. extra: 2411 / 2275,
  13038. bottom: 0.01
  13039. }
  13040. },
  13041. frontPosing: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(180, "lb"),
  13044. name: "Front (Posing)",
  13045. image: {
  13046. source: "./media/characters/renard-thatch/front-posing.svg",
  13047. extra: 2381 / 2261,
  13048. bottom: 0.01
  13049. }
  13050. },
  13051. back: {
  13052. height: math.unit(6, "feet"),
  13053. weight: math.unit(180, "lb"),
  13054. name: "Back",
  13055. image: {
  13056. source: "./media/characters/renard-thatch/back.svg",
  13057. extra: 2428 / 2288
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Micro",
  13064. height: math.unit(3, "inches")
  13065. },
  13066. {
  13067. name: "Default",
  13068. height: math.unit(6, "feet"),
  13069. default: true
  13070. },
  13071. {
  13072. name: "Macro",
  13073. height: math.unit(75, "feet")
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(1450, "feet"),
  13082. weight: math.unit(1.21e6, "tons"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/sekvra/front.svg",
  13086. extra: 1,
  13087. bottom: 0.03
  13088. }
  13089. },
  13090. frontClothed: {
  13091. height: math.unit(1450, "feet"),
  13092. weight: math.unit(1.21e6, "tons"),
  13093. name: "Front (Clothed)",
  13094. image: {
  13095. source: "./media/characters/sekvra/front-clothed.svg",
  13096. extra: 1,
  13097. bottom: 0.03
  13098. }
  13099. },
  13100. side: {
  13101. height: math.unit(1450, "feet"),
  13102. weight: math.unit(1.21e6, "tons"),
  13103. name: "Side",
  13104. image: {
  13105. source: "./media/characters/sekvra/side.svg",
  13106. extra: 1,
  13107. bottom: 0.025
  13108. }
  13109. },
  13110. back: {
  13111. height: math.unit(1450, "feet"),
  13112. weight: math.unit(1.21e6, "tons"),
  13113. name: "Back",
  13114. image: {
  13115. source: "./media/characters/sekvra/back.svg",
  13116. extra: 1,
  13117. bottom: 0.005
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Macro",
  13124. height: math.unit(1450, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Megamacro",
  13129. height: math.unit(15000, "feet")
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13135. {
  13136. front: {
  13137. height: math.unit(6, "feet"),
  13138. weight: math.unit(150, "lb"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/carmine/front.svg",
  13142. extra: 1,
  13143. bottom: 0.035
  13144. }
  13145. },
  13146. frontArmor: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Front (Armor)",
  13150. image: {
  13151. source: "./media/characters/carmine/front-armor.svg",
  13152. extra: 1,
  13153. bottom: 0.035
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Large",
  13160. height: math.unit(1, "mile")
  13161. },
  13162. {
  13163. name: "Huge",
  13164. height: math.unit(40, "miles"),
  13165. default: true
  13166. },
  13167. {
  13168. name: "Colossal",
  13169. height: math.unit(2500, "miles")
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13175. {
  13176. front: {
  13177. height: math.unit(6, "feet"),
  13178. weight: math.unit(150, "lb"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/elyssia/front.svg",
  13182. extra: 2201 / 2035,
  13183. bottom: 0.05
  13184. }
  13185. },
  13186. frontClothed: {
  13187. height: math.unit(6, "feet"),
  13188. weight: math.unit(150, "lb"),
  13189. name: "Front (Clothed)",
  13190. image: {
  13191. source: "./media/characters/elyssia/front-clothed.svg",
  13192. extra: 2201 / 2035,
  13193. bottom: 0.05
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(150, "lb"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/elyssia/back.svg",
  13202. extra: 2201 / 2035,
  13203. bottom: 0.013
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Smaller",
  13210. height: math.unit(150, "feet")
  13211. },
  13212. {
  13213. name: "Standard",
  13214. height: math.unit(1400, "feet"),
  13215. default: true
  13216. },
  13217. {
  13218. name: "Distracted",
  13219. height: math.unit(15000, "feet")
  13220. },
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13225. {
  13226. front: {
  13227. height: math.unit(7 + 4 / 12, "feet"),
  13228. weight: math.unit(500, "lb"),
  13229. name: "Front",
  13230. image: {
  13231. source: "./media/characters/geno-maxwell/front.svg",
  13232. extra: 2207 / 2040,
  13233. bottom: 0.015
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Micro",
  13240. height: math.unit(3, "inches")
  13241. },
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(7 + 4 / 12, "feet"),
  13245. default: true
  13246. },
  13247. {
  13248. name: "Macro",
  13249. height: math.unit(220, "feet")
  13250. },
  13251. {
  13252. name: "Megamacro",
  13253. height: math.unit(11, "miles")
  13254. },
  13255. ]
  13256. ))
  13257. characterMakers.push(() => makeCharacter(
  13258. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13259. {
  13260. front: {
  13261. height: math.unit(7 + 4 / 12, "feet"),
  13262. weight: math.unit(500, "lb"),
  13263. name: "Front",
  13264. image: {
  13265. source: "./media/characters/regena-maxwell/front.svg",
  13266. extra: 3115 / 2770,
  13267. bottom: 0.02
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(7 + 4 / 12, "feet"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Macro",
  13279. height: math.unit(220, "feet")
  13280. },
  13281. {
  13282. name: "Megamacro",
  13283. height: math.unit(11, "miles")
  13284. },
  13285. ]
  13286. ))
  13287. characterMakers.push(() => makeCharacter(
  13288. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13289. {
  13290. front: {
  13291. height: math.unit(6, "feet"),
  13292. weight: math.unit(150, "lb"),
  13293. name: "Front",
  13294. image: {
  13295. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13296. extra: 860 / 690,
  13297. bottom: 0.03
  13298. }
  13299. },
  13300. },
  13301. [
  13302. {
  13303. name: "Normal",
  13304. height: math.unit(1.7, "meters"),
  13305. default: true
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(6, "feet"),
  13314. weight: math.unit(150, "lb"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/quilly/front.svg",
  13318. extra: 890 / 776
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Gigamacro",
  13325. height: math.unit(404090, "miles"),
  13326. default: true
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13332. {
  13333. front: {
  13334. height: math.unit(7 + 8 / 12, "feet"),
  13335. weight: math.unit(350, "lb"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/tempest/front.svg",
  13339. extra: 1175 / 1086,
  13340. bottom: 0.02
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(7 + 8 / 12, "feet"),
  13348. default: true
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13354. {
  13355. side: {
  13356. height: math.unit(4 + 5 / 12, "feet"),
  13357. weight: math.unit(80, "lb"),
  13358. name: "Side",
  13359. image: {
  13360. source: "./media/characters/rodger/side.svg",
  13361. extra: 1235 / 1118
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Micro",
  13368. height: math.unit(1, "inch")
  13369. },
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(4 + 5 / 12, "feet"),
  13373. default: true
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(120, "feet")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/danyel/front.svg",
  13390. extra: 1185 / 1123,
  13391. bottom: 0.05
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Shrunken",
  13398. height: math.unit(0.5, "mm")
  13399. },
  13400. {
  13401. name: "Micro",
  13402. height: math.unit(1, "mm"),
  13403. default: true
  13404. },
  13405. {
  13406. name: "Upsized",
  13407. height: math.unit(5 + 5 / 12, "feet")
  13408. },
  13409. ]
  13410. ))
  13411. characterMakers.push(() => makeCharacter(
  13412. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13413. {
  13414. front: {
  13415. height: math.unit(5 + 6 / 12, "feet"),
  13416. weight: math.unit(200, "lb"),
  13417. name: "Front",
  13418. image: {
  13419. source: "./media/characters/vivian-bijoux/front.svg",
  13420. extra: 1,
  13421. bottom: 0.072
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(5 + 6 / 12, "feet"),
  13429. default: true
  13430. },
  13431. {
  13432. name: "Bad Dream",
  13433. height: math.unit(500, "feet")
  13434. },
  13435. {
  13436. name: "Nightmare",
  13437. height: math.unit(500, "miles")
  13438. },
  13439. ]
  13440. ))
  13441. characterMakers.push(() => makeCharacter(
  13442. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13443. {
  13444. front: {
  13445. height: math.unit(6 + 1 / 12, "feet"),
  13446. weight: math.unit(260, "lb"),
  13447. name: "Front",
  13448. image: {
  13449. source: "./media/characters/zeta/front.svg",
  13450. extra: 1968 / 1889,
  13451. bottom: 0.06
  13452. }
  13453. },
  13454. back: {
  13455. height: math.unit(6 + 1 / 12, "feet"),
  13456. weight: math.unit(260, "lb"),
  13457. name: "Back",
  13458. image: {
  13459. source: "./media/characters/zeta/back.svg",
  13460. extra: 1944 / 1858,
  13461. bottom: 0.03
  13462. }
  13463. },
  13464. hand: {
  13465. height: math.unit(1.112, "feet"),
  13466. name: "Hand",
  13467. image: {
  13468. source: "./media/characters/zeta/hand.svg"
  13469. }
  13470. },
  13471. foot: {
  13472. height: math.unit(1.48, "feet"),
  13473. name: "Foot",
  13474. image: {
  13475. source: "./media/characters/zeta/foot.svg"
  13476. }
  13477. },
  13478. },
  13479. [
  13480. {
  13481. name: "Micro",
  13482. height: math.unit(6, "inches")
  13483. },
  13484. {
  13485. name: "Normal",
  13486. height: math.unit(6 + 1 / 12, "feet"),
  13487. default: true
  13488. },
  13489. {
  13490. name: "Macro",
  13491. height: math.unit(20, "feet")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13497. {
  13498. front: {
  13499. height: math.unit(6, "feet"),
  13500. weight: math.unit(150, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/jamie-larsen/front.svg",
  13504. extra: 962 / 933,
  13505. bottom: 0.02
  13506. }
  13507. },
  13508. back: {
  13509. height: math.unit(6, "feet"),
  13510. weight: math.unit(150, "lb"),
  13511. name: "Back",
  13512. image: {
  13513. source: "./media/characters/jamie-larsen/back.svg",
  13514. extra: 997 / 946
  13515. }
  13516. },
  13517. },
  13518. [
  13519. {
  13520. name: "Macro",
  13521. height: math.unit(28 + 7 / 12, "feet"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Macro+",
  13526. height: math.unit(180, "feet")
  13527. },
  13528. {
  13529. name: "Megamacro",
  13530. height: math.unit(10, "miles")
  13531. },
  13532. {
  13533. name: "Gigamacro",
  13534. height: math.unit(200000, "miles")
  13535. },
  13536. ]
  13537. ))
  13538. characterMakers.push(() => makeCharacter(
  13539. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13540. {
  13541. front: {
  13542. height: math.unit(6, "feet"),
  13543. weight: math.unit(120, "lb"),
  13544. name: "Front",
  13545. image: {
  13546. source: "./media/characters/vance/front.svg",
  13547. extra: 1980 / 1890,
  13548. bottom: 0.09
  13549. }
  13550. },
  13551. back: {
  13552. height: math.unit(6, "feet"),
  13553. weight: math.unit(120, "lb"),
  13554. name: "Back",
  13555. image: {
  13556. source: "./media/characters/vance/back.svg",
  13557. extra: 2081 / 1994,
  13558. bottom: 0.014
  13559. }
  13560. },
  13561. hand: {
  13562. height: math.unit(0.88, "feet"),
  13563. name: "Hand",
  13564. image: {
  13565. source: "./media/characters/vance/hand.svg"
  13566. }
  13567. },
  13568. foot: {
  13569. height: math.unit(0.64, "feet"),
  13570. name: "Foot",
  13571. image: {
  13572. source: "./media/characters/vance/foot.svg"
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Small",
  13579. height: math.unit(90, "feet"),
  13580. default: true
  13581. },
  13582. {
  13583. name: "Macro",
  13584. height: math.unit(100, "meters")
  13585. },
  13586. {
  13587. name: "Megamacro",
  13588. height: math.unit(15, "miles")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(6, "feet"),
  13597. weight: math.unit(180, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/xochitl/front.svg",
  13601. extra: 2297 / 2261,
  13602. bottom: 0.065
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(6, "feet"),
  13607. weight: math.unit(180, "lb"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/xochitl/back.svg",
  13611. extra: 2386 / 2354,
  13612. bottom: 0.01
  13613. }
  13614. },
  13615. foot: {
  13616. height: math.unit(6 / 5 * 1.15, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Foot",
  13619. image: {
  13620. source: "./media/characters/xochitl/foot.svg"
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Macro",
  13627. height: math.unit(80, "feet")
  13628. },
  13629. {
  13630. name: "Macro+",
  13631. height: math.unit(400, "feet"),
  13632. default: true
  13633. },
  13634. {
  13635. name: "Gigamacro",
  13636. height: math.unit(80000, "miles")
  13637. },
  13638. {
  13639. name: "Gigamacro+",
  13640. height: math.unit(400000, "miles")
  13641. },
  13642. {
  13643. name: "Teramacro",
  13644. height: math.unit(300, "AU")
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/vincent/front.svg",
  13657. extra: 1130 / 1080,
  13658. bottom: 0.055
  13659. }
  13660. },
  13661. beak: {
  13662. height: math.unit(6 * 0.1, "feet"),
  13663. name: "Beak",
  13664. image: {
  13665. source: "./media/characters/vincent/beak.svg"
  13666. }
  13667. },
  13668. hand: {
  13669. height: math.unit(6 * 0.85, "feet"),
  13670. weight: math.unit(150, "lb"),
  13671. name: "Hand",
  13672. image: {
  13673. source: "./media/characters/vincent/hand.svg"
  13674. }
  13675. },
  13676. foot: {
  13677. height: math.unit(6 * 0.19, "feet"),
  13678. weight: math.unit(150, "lb"),
  13679. name: "Foot",
  13680. image: {
  13681. source: "./media/characters/vincent/foot.svg"
  13682. }
  13683. },
  13684. },
  13685. [
  13686. {
  13687. name: "Base",
  13688. height: math.unit(6 + 5 / 12, "feet"),
  13689. default: true
  13690. },
  13691. {
  13692. name: "Macro",
  13693. height: math.unit(300, "feet")
  13694. },
  13695. {
  13696. name: "Megamacro",
  13697. height: math.unit(2, "miles")
  13698. },
  13699. {
  13700. name: "Gigamacro",
  13701. height: math.unit(1000, "miles")
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13707. {
  13708. front: {
  13709. height: math.unit(2, "meters"),
  13710. weight: math.unit(500, "kg"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/coatl/front.svg",
  13714. extra: 3948 / 3500,
  13715. bottom: 0.082
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(4, "meters")
  13723. },
  13724. {
  13725. name: "Macro",
  13726. height: math.unit(100, "meters"),
  13727. default: true
  13728. },
  13729. {
  13730. name: "Macro+",
  13731. height: math.unit(300, "meters")
  13732. },
  13733. {
  13734. name: "Megamacro",
  13735. height: math.unit(3, "gigameters")
  13736. },
  13737. {
  13738. name: "Megamacro+",
  13739. height: math.unit(300, "terameters")
  13740. },
  13741. {
  13742. name: "Megamacro++",
  13743. height: math.unit(3, "lightyears")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(50, "kg"),
  13753. name: "front",
  13754. image: {
  13755. source: "./media/characters/shiroryu/front.svg",
  13756. extra: 1990 / 1935
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Mortal Mingling",
  13763. height: math.unit(3, "meters")
  13764. },
  13765. {
  13766. name: "Kaiju-ish",
  13767. height: math.unit(250, "meters")
  13768. },
  13769. {
  13770. name: "Somewhat Godly",
  13771. height: math.unit(400, "km"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Planetary",
  13776. height: math.unit(300, "megameters")
  13777. },
  13778. {
  13779. name: "Galaxy-dwarfing",
  13780. height: math.unit(450, "kiloparsecs")
  13781. },
  13782. {
  13783. name: "Universe Eater",
  13784. height: math.unit(150, "gigaparsecs")
  13785. },
  13786. {
  13787. name: "Almost Immeasurable",
  13788. height: math.unit(1.3e266, "yottaparsecs")
  13789. },
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13794. {
  13795. front: {
  13796. height: math.unit(6, "feet"),
  13797. weight: math.unit(150, "lb"),
  13798. name: "Front",
  13799. image: {
  13800. source: "./media/characters/umeko/front.svg",
  13801. extra: 1,
  13802. bottom: 0.019
  13803. }
  13804. },
  13805. frontArmored: {
  13806. height: math.unit(6, "feet"),
  13807. weight: math.unit(150, "lb"),
  13808. name: "Front (Armored)",
  13809. image: {
  13810. source: "./media/characters/umeko/front-armored.svg",
  13811. extra: 1,
  13812. bottom: 0.021
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Macro",
  13819. height: math.unit(220, "feet"),
  13820. default: true
  13821. },
  13822. {
  13823. name: "Guardian Dragon",
  13824. height: math.unit(50, "miles")
  13825. },
  13826. {
  13827. name: "Cosmic",
  13828. height: math.unit(800000, "miles")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(6, "feet"),
  13837. weight: math.unit(150, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/cassidy/front.svg",
  13841. extra: 1,
  13842. bottom: 0.043
  13843. }
  13844. },
  13845. },
  13846. [
  13847. {
  13848. name: "Canon Height",
  13849. height: math.unit(120, "feet"),
  13850. default: true
  13851. },
  13852. {
  13853. name: "Macro+",
  13854. height: math.unit(400, "feet")
  13855. },
  13856. {
  13857. name: "Macro++",
  13858. height: math.unit(4000, "feet")
  13859. },
  13860. {
  13861. name: "Megamacro",
  13862. height: math.unit(3, "miles")
  13863. },
  13864. ]
  13865. ))
  13866. characterMakers.push(() => makeCharacter(
  13867. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13868. {
  13869. front: {
  13870. height: math.unit(6, "feet"),
  13871. weight: math.unit(150, "lb"),
  13872. name: "Front",
  13873. image: {
  13874. source: "./media/characters/isaac/front.svg",
  13875. extra: 896 / 815,
  13876. bottom: 0.11
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Human Size",
  13883. height: math.unit(8, "feet"),
  13884. default: true
  13885. },
  13886. {
  13887. name: "Macro",
  13888. height: math.unit(400, "feet")
  13889. },
  13890. {
  13891. name: "Megamacro",
  13892. height: math.unit(50, "miles")
  13893. },
  13894. {
  13895. name: "Canon Height",
  13896. height: math.unit(200, "AU")
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13902. {
  13903. front: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(72, "kg"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/sleekit/front.svg",
  13909. extra: 4693 / 4487,
  13910. bottom: 0.012
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Minimum Height",
  13917. height: math.unit(10, "meters")
  13918. },
  13919. {
  13920. name: "Smaller",
  13921. height: math.unit(25, "meters")
  13922. },
  13923. {
  13924. name: "Larger",
  13925. height: math.unit(38, "meters"),
  13926. default: true
  13927. },
  13928. {
  13929. name: "Maximum height",
  13930. height: math.unit(100, "meters")
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(150, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/nillia/front.svg",
  13943. extra: 2195 / 2037,
  13944. bottom: 0.005
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(150, "lb"),
  13950. name: "Back",
  13951. image: {
  13952. source: "./media/characters/nillia/back.svg",
  13953. extra: 2195 / 2037,
  13954. bottom: 0.005
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Canon Height",
  13961. height: math.unit(489, "feet"),
  13962. default: true
  13963. }
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(150, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/mesmyriza/front.svg",
  13975. extra: 2067 / 1784,
  13976. bottom: 0.035
  13977. }
  13978. },
  13979. foot: {
  13980. height: math.unit(6 / (250 / 35), "feet"),
  13981. name: "Foot",
  13982. image: {
  13983. source: "./media/characters/mesmyriza/foot.svg"
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Macro",
  13990. height: math.unit(457, "meters"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Megamacro",
  13995. height: math.unit(8, "megameters")
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14001. {
  14002. front: {
  14003. height: math.unit(6, "feet"),
  14004. weight: math.unit(250, "lb"),
  14005. name: "Front",
  14006. image: {
  14007. source: "./media/characters/saudade/front.svg",
  14008. extra: 1172 / 1139,
  14009. bottom: 0.035
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Micro",
  14016. height: math.unit(3, "inches")
  14017. },
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(6, "feet"),
  14021. default: true
  14022. },
  14023. {
  14024. name: "Macro",
  14025. height: math.unit(50, "feet")
  14026. },
  14027. {
  14028. name: "Megamacro",
  14029. height: math.unit(2800, "feet")
  14030. },
  14031. ]
  14032. ))
  14033. characterMakers.push(() => makeCharacter(
  14034. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14035. {
  14036. front: {
  14037. height: math.unit(5 + 4 / 12, "feet"),
  14038. weight: math.unit(100, "lb"),
  14039. name: "Front",
  14040. image: {
  14041. source: "./media/characters/keireer/front.svg",
  14042. extra: 716 / 666,
  14043. bottom: 0.05
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(5 + 4 / 12, "feet"),
  14051. default: true
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(6, "feet"),
  14060. weight: math.unit(90, "kg"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/mirja/front.svg",
  14064. extra: 1789 / 1683,
  14065. bottom: 0.05
  14066. }
  14067. },
  14068. frontDressed: {
  14069. height: math.unit(6, "feet"),
  14070. weight: math.unit(90, "lb"),
  14071. name: "Front (Dressed)",
  14072. image: {
  14073. source: "./media/characters/mirja/front-dressed.svg",
  14074. extra: 1789 / 1683,
  14075. bottom: 0.05
  14076. }
  14077. },
  14078. back: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(90, "lb"),
  14081. name: "Back",
  14082. image: {
  14083. source: "./media/characters/mirja/back.svg",
  14084. extra: 953 / 917,
  14085. bottom: 0.017
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "\"Incognito\"",
  14092. height: math.unit(3, "meters")
  14093. },
  14094. {
  14095. name: "Strolling Size",
  14096. height: math.unit(15, "km")
  14097. },
  14098. {
  14099. name: "Larger Strolling Size",
  14100. height: math.unit(400, "km")
  14101. },
  14102. {
  14103. name: "Preferred Size",
  14104. height: math.unit(5000, "km")
  14105. },
  14106. {
  14107. name: "True Size",
  14108. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14109. default: true
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(15, "feet"),
  14118. weight: math.unit(880, "kg"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/nightraver/front.svg",
  14122. extra: 2444 / 2160,
  14123. bottom: 0.027
  14124. }
  14125. },
  14126. back: {
  14127. height: math.unit(15, "feet"),
  14128. weight: math.unit(880, "kg"),
  14129. name: "Back",
  14130. image: {
  14131. source: "./media/characters/nightraver/back.svg",
  14132. extra: 2309 / 2180,
  14133. bottom: 0.005
  14134. }
  14135. },
  14136. sole: {
  14137. height: math.unit(2.878, "feet"),
  14138. name: "Sole",
  14139. image: {
  14140. source: "./media/characters/nightraver/sole.svg"
  14141. }
  14142. },
  14143. foot: {
  14144. height: math.unit(2.285, "feet"),
  14145. name: "Foot",
  14146. image: {
  14147. source: "./media/characters/nightraver/foot.svg"
  14148. }
  14149. },
  14150. maw: {
  14151. height: math.unit(2.67, "feet"),
  14152. name: "Maw",
  14153. image: {
  14154. source: "./media/characters/nightraver/maw.svg"
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Micro",
  14161. height: math.unit(1, "cm")
  14162. },
  14163. {
  14164. name: "Normal",
  14165. height: math.unit(15, "feet"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Macro",
  14170. height: math.unit(300, "feet")
  14171. },
  14172. {
  14173. name: "Megamacro",
  14174. height: math.unit(300, "miles")
  14175. },
  14176. {
  14177. name: "Gigamacro",
  14178. height: math.unit(10000, "miles")
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14184. {
  14185. side: {
  14186. height: math.unit(2, "inches"),
  14187. weight: math.unit(5, "grams"),
  14188. name: "Side",
  14189. image: {
  14190. source: "./media/characters/arc/side.svg"
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Micro",
  14197. height: math.unit(2, "inches"),
  14198. default: true
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(1.1938, "meters"),
  14207. weight: math.unit(54, "kg"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/nebula-shahar/front.svg",
  14211. extra: 1642 / 1436,
  14212. bottom: 0.06
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Megamicro",
  14219. height: math.unit(0.3, "mm")
  14220. },
  14221. {
  14222. name: "Micro",
  14223. height: math.unit(3, "cm")
  14224. },
  14225. {
  14226. name: "Normal",
  14227. height: math.unit(138, "cm"),
  14228. default: true
  14229. },
  14230. {
  14231. name: "Macro",
  14232. height: math.unit(30, "m")
  14233. },
  14234. ]
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14238. {
  14239. front: {
  14240. height: math.unit(5.24, "feet"),
  14241. weight: math.unit(150, "lb"),
  14242. name: "Front",
  14243. image: {
  14244. source: "./media/characters/shayla/front.svg",
  14245. extra: 1512 / 1414,
  14246. bottom: 0.01
  14247. }
  14248. },
  14249. back: {
  14250. height: math.unit(5.24, "feet"),
  14251. weight: math.unit(150, "lb"),
  14252. name: "Back",
  14253. image: {
  14254. source: "./media/characters/shayla/back.svg",
  14255. extra: 1512 / 1414
  14256. }
  14257. },
  14258. hand: {
  14259. height: math.unit(0.7781496062992126, "feet"),
  14260. name: "Hand",
  14261. image: {
  14262. source: "./media/characters/shayla/hand.svg"
  14263. }
  14264. },
  14265. foot: {
  14266. height: math.unit(1.4206036745406823, "feet"),
  14267. name: "Foot",
  14268. image: {
  14269. source: "./media/characters/shayla/foot.svg"
  14270. }
  14271. },
  14272. },
  14273. [
  14274. {
  14275. name: "Micro",
  14276. height: math.unit(0.32, "feet")
  14277. },
  14278. {
  14279. name: "Normal",
  14280. height: math.unit(5.24, "feet"),
  14281. default: true
  14282. },
  14283. {
  14284. name: "Macro",
  14285. height: math.unit(492.12, "feet")
  14286. },
  14287. {
  14288. name: "Megamacro",
  14289. height: math.unit(186.41, "miles")
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14295. {
  14296. front: {
  14297. height: math.unit(2.2, "m"),
  14298. weight: math.unit(120, "kg"),
  14299. name: "Front",
  14300. image: {
  14301. source: "./media/characters/pia-jr/front.svg",
  14302. extra: 1000 / 970,
  14303. bottom: 0.035
  14304. }
  14305. },
  14306. hand: {
  14307. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14308. name: "Hand",
  14309. image: {
  14310. source: "./media/characters/pia-jr/hand.svg"
  14311. }
  14312. },
  14313. paw: {
  14314. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14315. name: "Paw",
  14316. image: {
  14317. source: "./media/characters/pia-jr/paw.svg"
  14318. }
  14319. },
  14320. },
  14321. [
  14322. {
  14323. name: "Micro",
  14324. height: math.unit(1.2, "cm")
  14325. },
  14326. {
  14327. name: "Normal",
  14328. height: math.unit(2.2, "m"),
  14329. default: true
  14330. },
  14331. {
  14332. name: "Macro",
  14333. height: math.unit(180, "m")
  14334. },
  14335. {
  14336. name: "Megamacro",
  14337. height: math.unit(420, "km")
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(2, "m"),
  14346. weight: math.unit(115, "kg"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/pia-sr/front.svg",
  14350. extra: 760 / 730,
  14351. bottom: 0.015
  14352. }
  14353. },
  14354. back: {
  14355. height: math.unit(2, "m"),
  14356. weight: math.unit(115, "kg"),
  14357. name: "Back",
  14358. image: {
  14359. source: "./media/characters/pia-sr/back.svg",
  14360. extra: 760 / 730,
  14361. bottom: 0.01
  14362. }
  14363. },
  14364. hand: {
  14365. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14366. name: "Hand",
  14367. image: {
  14368. source: "./media/characters/pia-sr/hand.svg"
  14369. }
  14370. },
  14371. foot: {
  14372. height: math.unit(1.83, "feet"),
  14373. name: "Foot",
  14374. image: {
  14375. source: "./media/characters/pia-sr/foot.svg"
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Micro",
  14382. height: math.unit(88, "mm")
  14383. },
  14384. {
  14385. name: "Normal",
  14386. height: math.unit(2, "m"),
  14387. default: true
  14388. },
  14389. {
  14390. name: "Macro",
  14391. height: math.unit(200, "m")
  14392. },
  14393. {
  14394. name: "Megamacro",
  14395. height: math.unit(420, "km")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(8 + 2 / 12, "feet"),
  14404. weight: math.unit(300, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/kibibyte/front.svg",
  14408. extra: 2221 / 2098,
  14409. bottom: 0.04
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(8 + 2 / 12, "feet"),
  14417. default: true
  14418. },
  14419. {
  14420. name: "Socialable Macro",
  14421. height: math.unit(50, "feet")
  14422. },
  14423. {
  14424. name: "Macro",
  14425. height: math.unit(300, "feet")
  14426. },
  14427. {
  14428. name: "Megamacro",
  14429. height: math.unit(500, "miles")
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(6, "feet"),
  14438. weight: math.unit(150, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/felix/front.svg",
  14442. extra: 762 / 722,
  14443. bottom: 0.02
  14444. }
  14445. },
  14446. frontClothed: {
  14447. height: math.unit(6, "feet"),
  14448. weight: math.unit(150, "lb"),
  14449. name: "Front (Clothed)",
  14450. image: {
  14451. source: "./media/characters/felix/front-clothed.svg",
  14452. extra: 762 / 722,
  14453. bottom: 0.02
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Normal",
  14460. height: math.unit(6 + 8 / 12, "feet"),
  14461. default: true
  14462. },
  14463. {
  14464. name: "Macro",
  14465. height: math.unit(2600, "feet")
  14466. },
  14467. {
  14468. name: "Megamacro",
  14469. height: math.unit(450, "miles")
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(6 + 1 / 12, "feet"),
  14478. weight: math.unit(250, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/tobo/front.svg",
  14482. extra: 608 / 586,
  14483. bottom: 0.023
  14484. }
  14485. },
  14486. back: {
  14487. height: math.unit(6 + 1 / 12, "feet"),
  14488. weight: math.unit(250, "lb"),
  14489. name: "Back",
  14490. image: {
  14491. source: "./media/characters/tobo/back.svg",
  14492. extra: 608 / 586
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Nano",
  14499. height: math.unit(2, "nm")
  14500. },
  14501. {
  14502. name: "Megamicro",
  14503. height: math.unit(0.1, "mm")
  14504. },
  14505. {
  14506. name: "Micro",
  14507. height: math.unit(1, "inch"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Human-sized",
  14512. height: math.unit(6 + 1 / 12, "feet")
  14513. },
  14514. {
  14515. name: "Macro",
  14516. height: math.unit(250, "feet")
  14517. },
  14518. {
  14519. name: "Megamacro",
  14520. height: math.unit(75, "miles")
  14521. },
  14522. {
  14523. name: "Texas-sized",
  14524. height: math.unit(750, "miles")
  14525. },
  14526. {
  14527. name: "Teramacro",
  14528. height: math.unit(50000, "miles")
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(269, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/danny-kapowsky/front.svg",
  14541. extra: 766 / 736,
  14542. bottom: 0.044
  14543. }
  14544. },
  14545. back: {
  14546. height: math.unit(6, "feet"),
  14547. weight: math.unit(269, "lb"),
  14548. name: "Back",
  14549. image: {
  14550. source: "./media/characters/danny-kapowsky/back.svg",
  14551. extra: 797 / 760,
  14552. bottom: 0.025
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Macro",
  14559. height: math.unit(150, "feet"),
  14560. default: true
  14561. },
  14562. {
  14563. name: "Macro+",
  14564. height: math.unit(200, "feet")
  14565. },
  14566. {
  14567. name: "Macro++",
  14568. height: math.unit(300, "feet")
  14569. },
  14570. {
  14571. name: "Macro+++",
  14572. height: math.unit(400, "feet")
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14578. {
  14579. side: {
  14580. height: math.unit(6, "feet"),
  14581. weight: math.unit(170, "lb"),
  14582. name: "Side",
  14583. image: {
  14584. source: "./media/characters/finn/side.svg",
  14585. extra: 1953 / 1807,
  14586. bottom: 0.057
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Megamacro",
  14593. height: math.unit(14445, "feet"),
  14594. default: true
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(5 + 6 / 12, "feet"),
  14603. weight: math.unit(125, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/roy/front.svg",
  14607. extra: 1,
  14608. bottom: 0.11
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Micro",
  14615. height: math.unit(3, "inches"),
  14616. default: true
  14617. },
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(5 + 6 / 12, "feet")
  14621. },
  14622. {
  14623. name: "Lesser Macro",
  14624. height: math.unit(60, "feet")
  14625. },
  14626. {
  14627. name: "Greater Macro",
  14628. height: math.unit(120, "feet")
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(100, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/aevsivs/front.svg",
  14641. extra: 1,
  14642. bottom: 0.03
  14643. }
  14644. },
  14645. back: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(100, "lb"),
  14648. name: "Back",
  14649. image: {
  14650. source: "./media/characters/aevsivs/back.svg"
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Micro",
  14657. height: math.unit(2, "inches"),
  14658. default: true
  14659. },
  14660. {
  14661. name: "Normal",
  14662. height: math.unit(5, "feet")
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(5 + 7 / 12, "feet"),
  14671. weight: math.unit(159, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/hildegard/front.svg",
  14675. extra: 289 / 269,
  14676. bottom: 7.63 / 297.8
  14677. }
  14678. },
  14679. back: {
  14680. height: math.unit(5 + 7 / 12, "feet"),
  14681. weight: math.unit(159, "lb"),
  14682. name: "Back",
  14683. image: {
  14684. source: "./media/characters/hildegard/back.svg",
  14685. extra: 280 / 260,
  14686. bottom: 2.3 / 282
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(5 + 7 / 12, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14700. {
  14701. bernard: {
  14702. height: math.unit(2 + 7 / 12, "feet"),
  14703. weight: math.unit(66, "lb"),
  14704. name: "Bernard",
  14705. rename: true,
  14706. image: {
  14707. source: "./media/characters/bernard-wilder/bernard.svg",
  14708. extra: 192 / 128,
  14709. bottom: 0.05
  14710. }
  14711. },
  14712. wilder: {
  14713. height: math.unit(5 + 8 / 12, "feet"),
  14714. weight: math.unit(143, "lb"),
  14715. name: "Wilder",
  14716. rename: true,
  14717. image: {
  14718. source: "./media/characters/bernard-wilder/wilder.svg",
  14719. extra: 361 / 312,
  14720. bottom: 0.02
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(2 + 7 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14734. {
  14735. anthro: {
  14736. height: math.unit(6 + 1 / 12, "feet"),
  14737. weight: math.unit(155, "lb"),
  14738. name: "Anthro",
  14739. image: {
  14740. source: "./media/characters/hearth/anthro.svg",
  14741. extra: 260 / 250,
  14742. bottom: 0.02
  14743. }
  14744. },
  14745. feral: {
  14746. height: math.unit(3.78, "feet"),
  14747. weight: math.unit(35, "kg"),
  14748. name: "Feral",
  14749. image: {
  14750. source: "./media/characters/hearth/feral.svg",
  14751. extra: 153 / 135,
  14752. bottom: 0.03
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(6 + 1 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(6, "feet"),
  14769. weight: math.unit(182, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/ingrid/front.svg",
  14773. extra: 294 / 268,
  14774. bottom: 0.027
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(6, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14788. {
  14789. eevee: {
  14790. height: math.unit(2 + 10 / 12, "feet"),
  14791. weight: math.unit(86, "lb"),
  14792. name: "Malgam",
  14793. image: {
  14794. source: "./media/characters/malgam/eevee.svg",
  14795. extra: 218 / 180,
  14796. bottom: 0.2
  14797. }
  14798. },
  14799. sylveon: {
  14800. height: math.unit(4, "feet"),
  14801. weight: math.unit(101, "lb"),
  14802. name: "Future Malgam",
  14803. rename: true,
  14804. image: {
  14805. source: "./media/characters/malgam/sylveon.svg",
  14806. extra: 371 / 325,
  14807. bottom: 0.015
  14808. }
  14809. },
  14810. gigantamax: {
  14811. height: math.unit(50, "feet"),
  14812. name: "Gigantamax Malgam",
  14813. rename: true,
  14814. image: {
  14815. source: "./media/characters/malgam/gigantamax.svg"
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(2 + 10 / 12, "feet"),
  14823. default: true
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(5 + 11 / 12, "feet"),
  14832. weight: math.unit(188, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/fleur/front.svg",
  14836. extra: 309 / 283,
  14837. bottom: 0.007
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(5 + 11 / 12, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14851. {
  14852. front: {
  14853. height: math.unit(5 + 4 / 12, "feet"),
  14854. weight: math.unit(122, "lb"),
  14855. name: "Front",
  14856. image: {
  14857. source: "./media/characters/jude/front.svg",
  14858. extra: 288 / 273,
  14859. bottom: 0.03
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(5 + 4 / 12, "feet"),
  14867. default: true
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(5 + 11 / 12, "feet"),
  14876. weight: math.unit(190, "lb"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/seara/front.svg",
  14880. extra: 1,
  14881. bottom: 0.05
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(5 + 11 / 12, "feet"),
  14889. default: true
  14890. },
  14891. ]
  14892. ))
  14893. characterMakers.push(() => makeCharacter(
  14894. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14895. {
  14896. front: {
  14897. height: math.unit(16 + 5 / 12, "feet"),
  14898. weight: math.unit(524, "lb"),
  14899. name: "Front",
  14900. image: {
  14901. source: "./media/characters/caspian/front.svg",
  14902. extra: 1,
  14903. bottom: 0.04
  14904. }
  14905. },
  14906. },
  14907. [
  14908. {
  14909. name: "Normal",
  14910. height: math.unit(16 + 5 / 12, "feet"),
  14911. default: true
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(5 + 7 / 12, "feet"),
  14920. weight: math.unit(170, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/mika/front.svg",
  14924. extra: 1,
  14925. bottom: 0.016
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Normal",
  14932. height: math.unit(5 + 7 / 12, "feet"),
  14933. default: true
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14939. {
  14940. front: {
  14941. height: math.unit(6 + 2 / 12, "feet"),
  14942. weight: math.unit(268, "lb"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/sol/front.svg",
  14946. extra: 247 / 231,
  14947. bottom: 0.05
  14948. }
  14949. },
  14950. },
  14951. [
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(6 + 2 / 12, "feet"),
  14955. default: true
  14956. },
  14957. ]
  14958. ))
  14959. characterMakers.push(() => makeCharacter(
  14960. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14961. {
  14962. buizel: {
  14963. height: math.unit(2 + 5 / 12, "feet"),
  14964. weight: math.unit(87, "lb"),
  14965. name: "Buizel",
  14966. image: {
  14967. source: "./media/characters/umiko/buizel.svg",
  14968. extra: 172 / 157,
  14969. bottom: 0.01
  14970. }
  14971. },
  14972. floatzel: {
  14973. height: math.unit(5 + 9 / 12, "feet"),
  14974. weight: math.unit(250, "lb"),
  14975. name: "Floatzel",
  14976. image: {
  14977. source: "./media/characters/umiko/floatzel.svg",
  14978. extra: 262 / 248
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(2 + 5 / 12, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14992. {
  14993. front: {
  14994. height: math.unit(6 + 2 / 12, "feet"),
  14995. weight: math.unit(146, "lb"),
  14996. name: "Front",
  14997. image: {
  14998. source: "./media/characters/iliac/front.svg",
  14999. extra: 389 / 365,
  15000. bottom: 0.035
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(6 + 2 / 12, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(6, "feet"),
  15017. weight: math.unit(170, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/topaz/front.svg",
  15021. extra: 317 / 303,
  15022. bottom: 0.055
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(6, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(5 + 11 / 12, "feet"),
  15039. weight: math.unit(144, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/gabriel/front.svg",
  15043. extra: 285 / 262,
  15044. bottom: 0.004
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(5 + 11 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15058. {
  15059. side: {
  15060. height: math.unit(6 + 5 / 12, "feet"),
  15061. weight: math.unit(300, "lb"),
  15062. name: "Side",
  15063. image: {
  15064. source: "./media/characters/tempest-suicune/side.svg",
  15065. extra: 195 / 154,
  15066. bottom: 0.04
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(6 + 5 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(7 + 2 / 12, "feet"),
  15083. weight: math.unit(322, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/vulcan/front.svg",
  15087. extra: 154 / 147,
  15088. bottom: 0.04
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(7 + 2 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(5 + 10 / 12, "feet"),
  15105. weight: math.unit(264, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/gault/front.svg",
  15109. extra: 161 / 140,
  15110. bottom: 0.028
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(5 + 10 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(6, "feet"),
  15127. weight: math.unit(150, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/shard/front.svg",
  15131. extra: 273 / 238,
  15132. bottom: 0.02
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(3 + 6 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(5 + 11 / 12, "feet"),
  15149. weight: math.unit(146, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/ashe/front.svg",
  15153. extra: 400 / 373,
  15154. bottom: 0.01
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(5 + 11 / 12, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(5 + 5 / 12, "feet"),
  15171. weight: math.unit(135, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/beatrix/front.svg",
  15175. extra: 392 / 379,
  15176. bottom: 0.01
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(6, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(6, "feet"),
  15193. weight: math.unit(150, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/ignatius/front.svg",
  15197. extra: 245 / 222,
  15198. bottom: 0.01
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(5 + 5 / 12, "feet"),
  15206. default: true
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15212. {
  15213. front: {
  15214. height: math.unit(6 + 2 / 12, "feet"),
  15215. weight: math.unit(138, "lb"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/mei-li/front.svg",
  15219. extra: 237 / 229,
  15220. bottom: 0.03
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(6 + 2 / 12, "feet"),
  15228. default: true
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15234. {
  15235. front: {
  15236. height: math.unit(2 + 4 / 12, "feet"),
  15237. weight: math.unit(62, "lb"),
  15238. name: "Front",
  15239. image: {
  15240. source: "./media/characters/puru/front.svg",
  15241. extra: 206 / 149,
  15242. bottom: 0.06
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Normal",
  15249. height: math.unit(2 + 4 / 12, "feet"),
  15250. default: true
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15256. {
  15257. anthro: {
  15258. height: math.unit(5 + 8/12, "feet"),
  15259. weight: math.unit(200, "lb"),
  15260. energyNeed: math.unit(2000, "kcal"),
  15261. name: "Anthro",
  15262. image: {
  15263. source: "./media/characters/kee/anthro.svg",
  15264. extra: 3251/3184,
  15265. bottom: 250/3501
  15266. }
  15267. },
  15268. taur: {
  15269. height: math.unit(11, "feet"),
  15270. weight: math.unit(500, "lb"),
  15271. energyNeed: math.unit(5000, "kcal"),
  15272. name: "Taur",
  15273. image: {
  15274. source: "./media/characters/kee/taur.svg",
  15275. extra: 1362/1320,
  15276. bottom: 83/1445
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(5 + 8/12, "feet"),
  15284. default: true
  15285. },
  15286. {
  15287. name: "Macro",
  15288. height: math.unit(35, "feet")
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15294. {
  15295. anthro: {
  15296. height: math.unit(7, "feet"),
  15297. weight: math.unit(190, "lb"),
  15298. name: "Anthro",
  15299. image: {
  15300. source: "./media/characters/cobalt-dracha/anthro.svg",
  15301. extra: 231 / 225,
  15302. bottom: 0.04
  15303. }
  15304. },
  15305. feral: {
  15306. height: math.unit(9 + 7 / 12, "feet"),
  15307. weight: math.unit(294, "lb"),
  15308. name: "Feral",
  15309. image: {
  15310. source: "./media/characters/cobalt-dracha/feral.svg",
  15311. extra: 692 / 633,
  15312. bottom: 0.05
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(7, "feet"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15326. {
  15327. fallen: {
  15328. height: math.unit(11 + 8 / 12, "feet"),
  15329. weight: math.unit(485, "lb"),
  15330. name: "Java (Fallen)",
  15331. rename: true,
  15332. image: {
  15333. source: "./media/characters/java/fallen.svg",
  15334. extra: 226 / 208,
  15335. bottom: 0.005
  15336. }
  15337. },
  15338. godkin: {
  15339. height: math.unit(10 + 6 / 12, "feet"),
  15340. weight: math.unit(328, "lb"),
  15341. name: "Java (Godkin)",
  15342. rename: true,
  15343. image: {
  15344. source: "./media/characters/java/godkin.svg",
  15345. extra: 270 / 262,
  15346. bottom: 0.02
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(11 + 8 / 12, "feet"),
  15354. default: true
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15360. {
  15361. front: {
  15362. height: math.unit(7 + 8 / 12, "feet"),
  15363. weight: math.unit(320, "lb"),
  15364. name: "Front",
  15365. image: {
  15366. source: "./media/characters/skoll/front.svg",
  15367. extra: 232 / 220,
  15368. bottom: 0.02
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Normal",
  15375. height: math.unit(7 + 8 / 12, "feet"),
  15376. default: true
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15382. {
  15383. front: {
  15384. height: math.unit(5 + 9 / 12, "feet"),
  15385. weight: math.unit(170, "lb"),
  15386. name: "Front",
  15387. image: {
  15388. source: "./media/characters/purna/front.svg",
  15389. extra: 239 / 229,
  15390. bottom: 0.01
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Normal",
  15397. height: math.unit(5 + 9 / 12, "feet"),
  15398. default: true
  15399. },
  15400. ]
  15401. ))
  15402. characterMakers.push(() => makeCharacter(
  15403. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15404. {
  15405. front: {
  15406. height: math.unit(5 + 9 / 12, "feet"),
  15407. weight: math.unit(142, "lb"),
  15408. name: "Front",
  15409. image: {
  15410. source: "./media/characters/kuva/front.svg",
  15411. extra: 281 / 271,
  15412. bottom: 0.006
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(5 + 9 / 12, "feet"),
  15420. default: true
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15426. {
  15427. anthro: {
  15428. height: math.unit(9 + 2 / 12, "feet"),
  15429. weight: math.unit(270, "lb"),
  15430. name: "Anthro",
  15431. image: {
  15432. source: "./media/characters/embra/anthro.svg",
  15433. extra: 200 / 187,
  15434. bottom: 0.02
  15435. }
  15436. },
  15437. feral: {
  15438. height: math.unit(18 + 8 / 12, "feet"),
  15439. weight: math.unit(576, "lb"),
  15440. name: "Feral",
  15441. image: {
  15442. source: "./media/characters/embra/feral.svg",
  15443. extra: 152 / 137,
  15444. bottom: 0.037
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(9 + 2 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15458. {
  15459. anthro: {
  15460. height: math.unit(10 + 9 / 12, "feet"),
  15461. weight: math.unit(224, "lb"),
  15462. name: "Anthro",
  15463. image: {
  15464. source: "./media/characters/grottos/anthro.svg",
  15465. extra: 350 / 332,
  15466. bottom: 0.045
  15467. }
  15468. },
  15469. feral: {
  15470. height: math.unit(20 + 7 / 12, "feet"),
  15471. weight: math.unit(629, "lb"),
  15472. name: "Feral",
  15473. image: {
  15474. source: "./media/characters/grottos/feral.svg",
  15475. extra: 207 / 190,
  15476. bottom: 0.05
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(10 + 9 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15490. {
  15491. anthro: {
  15492. height: math.unit(9 + 6 / 12, "feet"),
  15493. weight: math.unit(298, "lb"),
  15494. name: "Anthro",
  15495. image: {
  15496. source: "./media/characters/frifna/anthro.svg",
  15497. extra: 282 / 269,
  15498. bottom: 0.015
  15499. }
  15500. },
  15501. feral: {
  15502. height: math.unit(16 + 2 / 12, "feet"),
  15503. weight: math.unit(624, "lb"),
  15504. name: "Feral",
  15505. image: {
  15506. source: "./media/characters/frifna/feral.svg"
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Normal",
  15513. height: math.unit(9 + 6 / 12, "feet"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(6 + 2 / 12, "feet"),
  15523. weight: math.unit(168, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/elise/front.svg",
  15527. extra: 276 / 271
  15528. }
  15529. },
  15530. },
  15531. [
  15532. {
  15533. name: "Normal",
  15534. height: math.unit(6 + 2 / 12, "feet"),
  15535. default: true
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15541. {
  15542. front: {
  15543. height: math.unit(5 + 10 / 12, "feet"),
  15544. weight: math.unit(210, "lb"),
  15545. name: "Front",
  15546. image: {
  15547. source: "./media/characters/glade/front.svg",
  15548. extra: 258 / 247,
  15549. bottom: 0.008
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Normal",
  15556. height: math.unit(5 + 10 / 12, "feet"),
  15557. default: true
  15558. },
  15559. ]
  15560. ))
  15561. characterMakers.push(() => makeCharacter(
  15562. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15563. {
  15564. front: {
  15565. height: math.unit(5 + 10 / 12, "feet"),
  15566. weight: math.unit(129, "lb"),
  15567. name: "Front",
  15568. image: {
  15569. source: "./media/characters/rina/front.svg",
  15570. extra: 266 / 255,
  15571. bottom: 0.005
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(5 + 10 / 12, "feet"),
  15579. default: true
  15580. },
  15581. ]
  15582. ))
  15583. characterMakers.push(() => makeCharacter(
  15584. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15585. {
  15586. front: {
  15587. height: math.unit(6 + 1 / 12, "feet"),
  15588. weight: math.unit(192, "lb"),
  15589. name: "Front",
  15590. image: {
  15591. source: "./media/characters/veronica/front.svg",
  15592. extra: 319 / 309,
  15593. bottom: 0.005
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(6 + 1 / 12, "feet"),
  15601. default: true
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(9 + 3 / 12, "feet"),
  15610. weight: math.unit(1100, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/braxton/front.svg",
  15614. extra: 1057 / 984,
  15615. bottom: 0.05
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Normal",
  15622. height: math.unit(9 + 3 / 12, "feet")
  15623. },
  15624. {
  15625. name: "Giant",
  15626. height: math.unit(300, "feet"),
  15627. default: true
  15628. },
  15629. {
  15630. name: "Macro",
  15631. height: math.unit(700, "feet")
  15632. },
  15633. {
  15634. name: "Megamacro",
  15635. height: math.unit(6000, "feet")
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15641. {
  15642. front: {
  15643. height: math.unit(6 + 7 / 12, "feet"),
  15644. weight: math.unit(150, "lb"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/blue-feyonics/front.svg",
  15648. extra: 1403 / 1306,
  15649. bottom: 0.047
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(6 + 7 / 12, "feet"),
  15657. default: true
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(1.8, "meters"),
  15666. weight: math.unit(60, "kg"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/maxwell/front.svg",
  15670. extra: 2060 / 1873
  15671. }
  15672. },
  15673. },
  15674. [
  15675. {
  15676. name: "Micro",
  15677. height: math.unit(1, "mm")
  15678. },
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(1.8, "meter"),
  15682. default: true
  15683. },
  15684. {
  15685. name: "Macro",
  15686. height: math.unit(30, "meters")
  15687. },
  15688. {
  15689. name: "Megamacro",
  15690. height: math.unit(10, "km")
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15696. {
  15697. front: {
  15698. height: math.unit(6, "feet"),
  15699. weight: math.unit(150, "lb"),
  15700. name: "Front",
  15701. image: {
  15702. source: "./media/characters/jack/front.svg",
  15703. extra: 1754 / 1640,
  15704. bottom: 0.01
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(80000, "feet"),
  15712. default: true
  15713. },
  15714. {
  15715. name: "Max size",
  15716. height: math.unit(10, "lightyears")
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15722. {
  15723. urban: {
  15724. height: math.unit(5, "feet"),
  15725. weight: math.unit(240, "lb"),
  15726. name: "Urban",
  15727. image: {
  15728. source: "./media/characters/cafat/urban.svg",
  15729. extra: 1223/1126,
  15730. bottom: 205/1428
  15731. }
  15732. },
  15733. summer: {
  15734. height: math.unit(5, "feet"),
  15735. weight: math.unit(240, "lb"),
  15736. name: "Summer",
  15737. image: {
  15738. source: "./media/characters/cafat/summer.svg",
  15739. extra: 1223/1126,
  15740. bottom: 205/1428
  15741. }
  15742. },
  15743. winter: {
  15744. height: math.unit(5, "feet"),
  15745. weight: math.unit(240, "lb"),
  15746. name: "Winter",
  15747. image: {
  15748. source: "./media/characters/cafat/winter.svg",
  15749. extra: 1223/1126,
  15750. bottom: 205/1428
  15751. }
  15752. },
  15753. lingerie: {
  15754. height: math.unit(5, "feet"),
  15755. weight: math.unit(240, "lb"),
  15756. name: "Lingerie",
  15757. image: {
  15758. source: "./media/characters/cafat/lingerie.svg",
  15759. extra: 1223/1126,
  15760. bottom: 205/1428
  15761. }
  15762. },
  15763. upright: {
  15764. height: math.unit(6.3, "feet"),
  15765. weight: math.unit(240, "lb"),
  15766. name: "Upright",
  15767. image: {
  15768. source: "./media/characters/cafat/upright.svg",
  15769. bottom: 0.01
  15770. }
  15771. },
  15772. uprightFull: {
  15773. height: math.unit(6.3, "feet"),
  15774. weight: math.unit(240, "lb"),
  15775. name: "Upright (Full)",
  15776. image: {
  15777. source: "./media/characters/cafat/upright-full.svg",
  15778. bottom: 0.01
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Small",
  15785. height: math.unit(5, "feet"),
  15786. default: true
  15787. },
  15788. {
  15789. name: "Large",
  15790. height: math.unit(13, "feet")
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(6, "feet"),
  15799. weight: math.unit(150, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/verin-raharra/front.svg",
  15803. extra: 5019 / 4835,
  15804. bottom: 0.023
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(7 + 5 / 12, "feet"),
  15812. default: true
  15813. },
  15814. {
  15815. name: "Upsized",
  15816. height: math.unit(20, "feet")
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(7, "feet"),
  15825. weight: math.unit(230, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/nakata/front.svg",
  15829. extra: 1.005,
  15830. bottom: 0.01
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(7, "feet"),
  15838. default: true
  15839. },
  15840. {
  15841. name: "Big",
  15842. height: math.unit(14, "feet")
  15843. },
  15844. {
  15845. name: "Macro",
  15846. height: math.unit(400, "feet")
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(4.91, "feet"),
  15855. weight: math.unit(100, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/lily/front.svg",
  15859. extra: 1585 / 1415,
  15860. bottom: 0.02
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(4.91, "feet"),
  15868. default: true
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15874. {
  15875. laying: {
  15876. height: math.unit(4 + 4 / 12, "feet"),
  15877. weight: math.unit(600, "lb"),
  15878. name: "Laying",
  15879. image: {
  15880. source: "./media/characters/sheila/laying.svg",
  15881. extra: 1333 / 1265,
  15882. bottom: 0.16
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(4 + 4 / 12, "feet"),
  15890. default: true
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(6, "feet"),
  15899. weight: math.unit(190, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/sax/front.svg",
  15903. extra: 1187 / 973,
  15904. bottom: 0.042
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Micro",
  15911. height: math.unit(4, "inches"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(6, "feet"),
  15921. weight: math.unit(150, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/pandora/front.svg",
  15925. extra: 2720 / 2556,
  15926. bottom: 0.015
  15927. }
  15928. },
  15929. back: {
  15930. height: math.unit(6, "feet"),
  15931. weight: math.unit(150, "lb"),
  15932. name: "Back",
  15933. image: {
  15934. source: "./media/characters/pandora/back.svg",
  15935. extra: 2720 / 2556,
  15936. bottom: 0.01
  15937. }
  15938. },
  15939. beans: {
  15940. height: math.unit(6 / 8, "feet"),
  15941. name: "Beans",
  15942. image: {
  15943. source: "./media/characters/pandora/beans.svg"
  15944. }
  15945. },
  15946. collar: {
  15947. height: math.unit(0.31, "feet"),
  15948. name: "Collar",
  15949. image: {
  15950. source: "./media/characters/pandora/collar.svg"
  15951. }
  15952. },
  15953. skirt: {
  15954. height: math.unit(6, "feet"),
  15955. weight: math.unit(150, "lb"),
  15956. name: "Skirt",
  15957. image: {
  15958. source: "./media/characters/pandora/skirt.svg",
  15959. extra: 1622 / 1525,
  15960. bottom: 0.015
  15961. }
  15962. },
  15963. hoodie: {
  15964. height: math.unit(6, "feet"),
  15965. weight: math.unit(150, "lb"),
  15966. name: "Hoodie",
  15967. image: {
  15968. source: "./media/characters/pandora/hoodie.svg",
  15969. extra: 1622 / 1525,
  15970. bottom: 0.015
  15971. }
  15972. },
  15973. casual: {
  15974. height: math.unit(6, "feet"),
  15975. weight: math.unit(150, "lb"),
  15976. name: "Casual",
  15977. image: {
  15978. source: "./media/characters/pandora/casual.svg",
  15979. extra: 1622 / 1525,
  15980. bottom: 0.015
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(6, "feet")
  15988. },
  15989. {
  15990. name: "Big Steppy",
  15991. height: math.unit(1, "km"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Galactic Steppy",
  15996. height: math.unit(2, "gigameters")
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16002. {
  16003. side: {
  16004. height: math.unit(10, "feet"),
  16005. weight: math.unit(800, "kg"),
  16006. name: "Side",
  16007. image: {
  16008. source: "./media/characters/venio-darcony/side.svg",
  16009. extra: 1373 / 1003,
  16010. bottom: 0.037
  16011. }
  16012. },
  16013. front: {
  16014. height: math.unit(19, "feet"),
  16015. weight: math.unit(800, "kg"),
  16016. name: "Front",
  16017. image: {
  16018. source: "./media/characters/venio-darcony/front.svg"
  16019. }
  16020. },
  16021. back: {
  16022. height: math.unit(19, "feet"),
  16023. weight: math.unit(800, "kg"),
  16024. name: "Back",
  16025. image: {
  16026. source: "./media/characters/venio-darcony/back.svg"
  16027. }
  16028. },
  16029. sideNsfw: {
  16030. height: math.unit(10, "feet"),
  16031. weight: math.unit(800, "kg"),
  16032. name: "Side (NSFW)",
  16033. image: {
  16034. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16035. extra: 1373 / 1003,
  16036. bottom: 0.037
  16037. }
  16038. },
  16039. frontNsfw: {
  16040. height: math.unit(19, "feet"),
  16041. weight: math.unit(800, "kg"),
  16042. name: "Front (NSFW)",
  16043. image: {
  16044. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16045. }
  16046. },
  16047. backNsfw: {
  16048. height: math.unit(19, "feet"),
  16049. weight: math.unit(800, "kg"),
  16050. name: "Back (NSFW)",
  16051. image: {
  16052. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16053. }
  16054. },
  16055. sideArmored: {
  16056. height: math.unit(10, "feet"),
  16057. weight: math.unit(800, "kg"),
  16058. name: "Side (Armored)",
  16059. image: {
  16060. source: "./media/characters/venio-darcony/side-armored.svg",
  16061. extra: 1373 / 1003,
  16062. bottom: 0.037
  16063. }
  16064. },
  16065. frontArmored: {
  16066. height: math.unit(19, "feet"),
  16067. weight: math.unit(900, "kg"),
  16068. name: "Front (Armored)",
  16069. image: {
  16070. source: "./media/characters/venio-darcony/front-armored.svg"
  16071. }
  16072. },
  16073. backArmored: {
  16074. height: math.unit(19, "feet"),
  16075. weight: math.unit(900, "kg"),
  16076. name: "Back (Armored)",
  16077. image: {
  16078. source: "./media/characters/venio-darcony/back-armored.svg"
  16079. }
  16080. },
  16081. sword: {
  16082. height: math.unit(10, "feet"),
  16083. weight: math.unit(50, "lb"),
  16084. name: "Sword",
  16085. image: {
  16086. source: "./media/characters/venio-darcony/sword.svg"
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(10, "feet")
  16094. },
  16095. {
  16096. name: "Macro",
  16097. height: math.unit(130, "feet"),
  16098. default: true
  16099. },
  16100. {
  16101. name: "Macro+",
  16102. height: math.unit(240, "feet")
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6, "feet"),
  16111. weight: math.unit(150, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/veski/front.svg",
  16115. extra: 1299 / 1225,
  16116. bottom: 0.04
  16117. }
  16118. },
  16119. back: {
  16120. height: math.unit(6, "feet"),
  16121. weight: math.unit(150, "lb"),
  16122. name: "Back",
  16123. image: {
  16124. source: "./media/characters/veski/back.svg",
  16125. extra: 1299 / 1225,
  16126. bottom: 0.008
  16127. }
  16128. },
  16129. maw: {
  16130. height: math.unit(1.5 * 1.21, "feet"),
  16131. name: "Maw",
  16132. image: {
  16133. source: "./media/characters/veski/maw.svg"
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Macro",
  16140. height: math.unit(2, "km"),
  16141. default: true
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16147. {
  16148. front: {
  16149. height: math.unit(5 + 7 / 12, "feet"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/isabelle/front.svg",
  16153. extra: 2130 / 1976,
  16154. bottom: 0.05
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Supermicro",
  16161. height: math.unit(10, "micrometers")
  16162. },
  16163. {
  16164. name: "Micro",
  16165. height: math.unit(1, "inch")
  16166. },
  16167. {
  16168. name: "Tiny",
  16169. height: math.unit(5, "inches")
  16170. },
  16171. {
  16172. name: "Standard",
  16173. height: math.unit(5 + 7 / 12, "inches")
  16174. },
  16175. {
  16176. name: "Macro",
  16177. height: math.unit(80, "meters"),
  16178. default: true
  16179. },
  16180. {
  16181. name: "Megamacro",
  16182. height: math.unit(250, "meters")
  16183. },
  16184. {
  16185. name: "Gigamacro",
  16186. height: math.unit(5, "km")
  16187. },
  16188. {
  16189. name: "Cosmic",
  16190. height: math.unit(2.5e6, "miles")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/hanzo/front.svg",
  16203. extra: 374 / 344,
  16204. bottom: 0.02
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(8, "feet"),
  16212. default: true
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16218. {
  16219. front: {
  16220. height: math.unit(7, "feet"),
  16221. weight: math.unit(130, "lb"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/anna/front.svg",
  16225. extra: 169 / 145,
  16226. bottom: 0.06
  16227. }
  16228. },
  16229. full: {
  16230. height: math.unit(4.96, "feet"),
  16231. weight: math.unit(220, "lb"),
  16232. name: "Full",
  16233. image: {
  16234. source: "./media/characters/anna/full.svg",
  16235. extra: 138 / 114,
  16236. bottom: 0.15
  16237. }
  16238. },
  16239. tongue: {
  16240. height: math.unit(2.53, "feet"),
  16241. name: "Tongue",
  16242. image: {
  16243. source: "./media/characters/anna/tongue.svg"
  16244. }
  16245. },
  16246. },
  16247. [
  16248. {
  16249. name: "Normal",
  16250. height: math.unit(7, "feet"),
  16251. default: true
  16252. },
  16253. ]
  16254. ))
  16255. characterMakers.push(() => makeCharacter(
  16256. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16257. {
  16258. front: {
  16259. height: math.unit(7, "feet"),
  16260. weight: math.unit(150, "lb"),
  16261. name: "Front",
  16262. image: {
  16263. source: "./media/characters/ian-corvid/front.svg",
  16264. extra: 150 / 142,
  16265. bottom: 0.02
  16266. }
  16267. },
  16268. back: {
  16269. height: math.unit(7, "feet"),
  16270. weight: math.unit(150, "lb"),
  16271. name: "Back",
  16272. image: {
  16273. source: "./media/characters/ian-corvid/back.svg",
  16274. extra: 150 / 143,
  16275. bottom: 0.01
  16276. }
  16277. },
  16278. stomping: {
  16279. height: math.unit(7, "feet"),
  16280. weight: math.unit(150, "lb"),
  16281. name: "Stomping",
  16282. image: {
  16283. source: "./media/characters/ian-corvid/stomping.svg",
  16284. extra: 76 / 72
  16285. }
  16286. },
  16287. sitting: {
  16288. height: math.unit(7 / 1.8, "feet"),
  16289. weight: math.unit(150, "lb"),
  16290. name: "Sitting",
  16291. image: {
  16292. source: "./media/characters/ian-corvid/sitting.svg",
  16293. extra: 1400 / 1269,
  16294. bottom: 0.15
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Tiny Microw",
  16301. height: math.unit(1, "inch")
  16302. },
  16303. {
  16304. name: "Microw",
  16305. height: math.unit(6, "inches")
  16306. },
  16307. {
  16308. name: "Crow",
  16309. height: math.unit(7 + 1 / 12, "feet"),
  16310. default: true
  16311. },
  16312. {
  16313. name: "Macrow",
  16314. height: math.unit(176, "feet")
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16320. {
  16321. front: {
  16322. height: math.unit(5 + 7 / 12, "feet"),
  16323. weight: math.unit(147, "lb"),
  16324. name: "Front",
  16325. image: {
  16326. source: "./media/characters/natalie-kellon/front.svg",
  16327. extra: 1214 / 1141,
  16328. bottom: 0.02
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Micro",
  16335. height: math.unit(1 / 16, "inch")
  16336. },
  16337. {
  16338. name: "Tiny",
  16339. height: math.unit(4, "inches")
  16340. },
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(5 + 7 / 12, "feet"),
  16344. default: true
  16345. },
  16346. {
  16347. name: "Amazon",
  16348. height: math.unit(12, "feet")
  16349. },
  16350. {
  16351. name: "Giantess",
  16352. height: math.unit(160, "meters")
  16353. },
  16354. {
  16355. name: "Titaness",
  16356. height: math.unit(800, "meters")
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(6, "feet"),
  16365. weight: math.unit(150, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/alluria/front.svg",
  16369. extra: 806 / 738,
  16370. bottom: 0.01
  16371. }
  16372. },
  16373. side: {
  16374. height: math.unit(6, "feet"),
  16375. weight: math.unit(150, "lb"),
  16376. name: "Side",
  16377. image: {
  16378. source: "./media/characters/alluria/side.svg",
  16379. extra: 800 / 750,
  16380. }
  16381. },
  16382. back: {
  16383. height: math.unit(6, "feet"),
  16384. weight: math.unit(150, "lb"),
  16385. name: "Back",
  16386. image: {
  16387. source: "./media/characters/alluria/back.svg",
  16388. extra: 806 / 738,
  16389. }
  16390. },
  16391. frontMaid: {
  16392. height: math.unit(6, "feet"),
  16393. weight: math.unit(150, "lb"),
  16394. name: "Front (Maid)",
  16395. image: {
  16396. source: "./media/characters/alluria/front-maid.svg",
  16397. extra: 806 / 738,
  16398. bottom: 0.01
  16399. }
  16400. },
  16401. sideMaid: {
  16402. height: math.unit(6, "feet"),
  16403. weight: math.unit(150, "lb"),
  16404. name: "Side (Maid)",
  16405. image: {
  16406. source: "./media/characters/alluria/side-maid.svg",
  16407. extra: 800 / 750,
  16408. bottom: 0.005
  16409. }
  16410. },
  16411. backMaid: {
  16412. height: math.unit(6, "feet"),
  16413. weight: math.unit(150, "lb"),
  16414. name: "Back (Maid)",
  16415. image: {
  16416. source: "./media/characters/alluria/back-maid.svg",
  16417. extra: 806 / 738,
  16418. }
  16419. },
  16420. },
  16421. [
  16422. {
  16423. name: "Micro",
  16424. height: math.unit(6, "inches"),
  16425. default: true
  16426. },
  16427. ]
  16428. ))
  16429. characterMakers.push(() => makeCharacter(
  16430. { name: "Kyle", species: ["deer"], 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/kyle/front.svg",
  16438. extra: 1069 / 962,
  16439. bottom: 77.228 / 1727.45
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Macro",
  16446. height: math.unit(150, "feet"),
  16447. default: true
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16453. {
  16454. front: {
  16455. height: math.unit(6, "feet"),
  16456. weight: math.unit(300, "lb"),
  16457. name: "Front",
  16458. image: {
  16459. source: "./media/characters/duncan/front.svg",
  16460. extra: 1650 / 1482,
  16461. bottom: 0.05
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Macro",
  16468. height: math.unit(100, "feet"),
  16469. default: true
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16475. {
  16476. front: {
  16477. height: math.unit(5 + 4 / 12, "feet"),
  16478. weight: math.unit(220, "lb"),
  16479. name: "Front",
  16480. image: {
  16481. source: "./media/characters/memory/front.svg",
  16482. extra: 3641 / 3545,
  16483. bottom: 0.03
  16484. }
  16485. },
  16486. back: {
  16487. height: math.unit(5 + 4 / 12, "feet"),
  16488. weight: math.unit(220, "lb"),
  16489. name: "Back",
  16490. image: {
  16491. source: "./media/characters/memory/back.svg",
  16492. extra: 3641 / 3545,
  16493. bottom: 0.025
  16494. }
  16495. },
  16496. frontSkirt: {
  16497. height: math.unit(5 + 4 / 12, "feet"),
  16498. weight: math.unit(220, "lb"),
  16499. name: "Front (Skirt)",
  16500. image: {
  16501. source: "./media/characters/memory/front-skirt.svg",
  16502. extra: 3641 / 3545,
  16503. bottom: 0.03
  16504. }
  16505. },
  16506. frontDress: {
  16507. height: math.unit(5 + 4 / 12, "feet"),
  16508. weight: math.unit(220, "lb"),
  16509. name: "Front (Dress)",
  16510. image: {
  16511. source: "./media/characters/memory/front-dress.svg",
  16512. extra: 3641 / 3545,
  16513. bottom: 0.03
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Micro",
  16520. height: math.unit(6, "inches"),
  16521. default: true
  16522. },
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(5 + 4 / 12, "feet")
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(4 + 11 / 12, "feet"),
  16534. weight: math.unit(100, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/luno/front.svg",
  16538. extra: 1535 / 1487,
  16539. bottom: 0.03
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Micro",
  16546. height: math.unit(3, "inches")
  16547. },
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(4 + 11 / 12, "feet"),
  16551. default: true
  16552. },
  16553. {
  16554. name: "Macro",
  16555. height: math.unit(300, "feet")
  16556. },
  16557. {
  16558. name: "Megamacro",
  16559. height: math.unit(700, "miles")
  16560. },
  16561. ]
  16562. ))
  16563. characterMakers.push(() => makeCharacter(
  16564. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16565. {
  16566. front: {
  16567. height: math.unit(6 + 2 / 12, "feet"),
  16568. weight: math.unit(170, "lb"),
  16569. name: "Front",
  16570. image: {
  16571. source: "./media/characters/jamesy/front.svg",
  16572. extra: 440 / 382,
  16573. bottom: 0.005
  16574. }
  16575. },
  16576. },
  16577. [
  16578. {
  16579. name: "Micro",
  16580. height: math.unit(3, "inches")
  16581. },
  16582. {
  16583. name: "Normal",
  16584. height: math.unit(6 + 2 / 12, "feet"),
  16585. default: true
  16586. },
  16587. {
  16588. name: "Macro",
  16589. height: math.unit(300, "feet")
  16590. },
  16591. {
  16592. name: "Megamacro",
  16593. height: math.unit(700, "miles")
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(6, "feet"),
  16602. weight: math.unit(160, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/mark/front.svg",
  16606. extra: 3300 / 3100,
  16607. bottom: 136.42 / 3440.47
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Macro",
  16614. height: math.unit(120, "meters")
  16615. },
  16616. {
  16617. name: "Bigger Macro",
  16618. height: math.unit(350, "meters")
  16619. },
  16620. {
  16621. name: "Megamacro",
  16622. height: math.unit(8, "km"),
  16623. default: true
  16624. },
  16625. {
  16626. name: "Continental",
  16627. height: math.unit(4550, "km")
  16628. },
  16629. {
  16630. name: "Planetary",
  16631. height: math.unit(65000, "km")
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16637. {
  16638. front: {
  16639. height: math.unit(6, "feet"),
  16640. weight: math.unit(400, "lb"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/mac/front.svg",
  16644. extra: 1048 / 987.7,
  16645. bottom: 60 / 1107.6,
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Macro",
  16652. height: math.unit(500, "feet"),
  16653. default: true
  16654. },
  16655. ]
  16656. ))
  16657. characterMakers.push(() => makeCharacter(
  16658. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16659. {
  16660. front: {
  16661. height: math.unit(5 + 2 / 12, "feet"),
  16662. weight: math.unit(190, "lb"),
  16663. name: "Front",
  16664. image: {
  16665. source: "./media/characters/bari/front.svg",
  16666. extra: 3156 / 2880,
  16667. bottom: 0.03
  16668. }
  16669. },
  16670. back: {
  16671. height: math.unit(5 + 2 / 12, "feet"),
  16672. weight: math.unit(190, "lb"),
  16673. name: "Back",
  16674. image: {
  16675. source: "./media/characters/bari/back.svg",
  16676. extra: 3260 / 2834,
  16677. bottom: 0.025
  16678. }
  16679. },
  16680. frontPlush: {
  16681. height: math.unit(5 + 2 / 12, "feet"),
  16682. weight: math.unit(190, "lb"),
  16683. name: "Front (Plush)",
  16684. image: {
  16685. source: "./media/characters/bari/front-plush.svg",
  16686. extra: 1112 / 1061,
  16687. bottom: 0.002
  16688. }
  16689. },
  16690. },
  16691. [
  16692. {
  16693. name: "Micro",
  16694. height: math.unit(3, "inches")
  16695. },
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(5 + 2 / 12, "feet"),
  16699. default: true
  16700. },
  16701. {
  16702. name: "Macro",
  16703. height: math.unit(20, "feet")
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(6 + 1 / 12, "feet"),
  16712. weight: math.unit(275, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/hunter-misha-raven/front.svg"
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Mortal",
  16722. height: math.unit(6 + 1 / 12, "feet")
  16723. },
  16724. {
  16725. name: "Divine",
  16726. height: math.unit(1.12134e34, "parsecs"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(6 + 3 / 12, "feet"),
  16736. weight: math.unit(220, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/max-calore/front.svg",
  16740. extra: 1700 / 1648,
  16741. bottom: 0.01
  16742. }
  16743. },
  16744. back: {
  16745. height: math.unit(6 + 3 / 12, "feet"),
  16746. weight: math.unit(220, "lb"),
  16747. name: "Back",
  16748. image: {
  16749. source: "./media/characters/max-calore/back.svg",
  16750. extra: 1700 / 1648,
  16751. bottom: 0.01
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(6 + 3 / 12, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16765. {
  16766. side: {
  16767. height: math.unit(2 + 8 / 12, "feet"),
  16768. weight: math.unit(99, "lb"),
  16769. name: "Side",
  16770. image: {
  16771. source: "./media/characters/aspen/side.svg",
  16772. extra: 152 / 138,
  16773. bottom: 0.032
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(2 + 8 / 12, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16787. {
  16788. side: {
  16789. height: math.unit(3 + 2 / 12, "feet"),
  16790. weight: math.unit(224, "lb"),
  16791. name: "Side",
  16792. image: {
  16793. source: "./media/characters/sheila-feral-wolf/side.svg",
  16794. extra: 179 / 166,
  16795. bottom: 0.03
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(3 + 2 / 12, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16809. {
  16810. side: {
  16811. height: math.unit(1 + 9 / 12, "feet"),
  16812. weight: math.unit(38, "lb"),
  16813. name: "Side",
  16814. image: {
  16815. source: "./media/characters/michelle/side.svg",
  16816. extra: 147 / 136.7,
  16817. bottom: 0.03
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(1 + 9 / 12, "feet"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(1 + 1 / 12, "feet"),
  16834. weight: math.unit(18, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/nino/front.svg"
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(1 + 1 / 12, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(1, "feet"),
  16854. weight: math.unit(16, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/viola/front.svg"
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(1, "feet"),
  16865. default: true
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16871. {
  16872. front: {
  16873. height: math.unit(6 + 5 / 12, "feet"),
  16874. weight: math.unit(580, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/atlas/front.svg",
  16878. extra: 298.5 / 290,
  16879. bottom: 0.015
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(6 + 5 / 12, "feet"),
  16887. default: true
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16893. {
  16894. side: {
  16895. height: math.unit(1 + 10 / 12, "feet"),
  16896. weight: math.unit(25, "lb"),
  16897. name: "Side",
  16898. image: {
  16899. source: "./media/characters/davy/side.svg",
  16900. extra: 200 / 170,
  16901. bottom: 0.01
  16902. }
  16903. },
  16904. },
  16905. [
  16906. {
  16907. name: "Normal",
  16908. height: math.unit(1 + 10 / 12, "feet"),
  16909. default: true
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16915. {
  16916. side: {
  16917. height: math.unit(4 + 8 / 12, "feet"),
  16918. weight: math.unit(166, "lb"),
  16919. name: "Side",
  16920. image: {
  16921. source: "./media/characters/fiona/side.svg",
  16922. extra: 232 / 220,
  16923. bottom: 0.03
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(4 + 8 / 12, "feet"),
  16931. default: true
  16932. },
  16933. ]
  16934. ))
  16935. characterMakers.push(() => makeCharacter(
  16936. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16937. {
  16938. front: {
  16939. height: math.unit(2, "feet"),
  16940. weight: math.unit(62, "lb"),
  16941. name: "Front",
  16942. image: {
  16943. source: "./media/characters/lyla/front.svg",
  16944. bottom: 0.1
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(2, "feet"),
  16952. default: true
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16958. {
  16959. side: {
  16960. height: math.unit(1.8, "feet"),
  16961. weight: math.unit(44, "lb"),
  16962. name: "Side",
  16963. image: {
  16964. source: "./media/characters/perseus/side.svg",
  16965. bottom: 0.21
  16966. }
  16967. },
  16968. },
  16969. [
  16970. {
  16971. name: "Normal",
  16972. height: math.unit(1.8, "feet"),
  16973. default: true
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16979. {
  16980. side: {
  16981. height: math.unit(4 + 2 / 12, "feet"),
  16982. weight: math.unit(20, "lb"),
  16983. name: "Side",
  16984. image: {
  16985. source: "./media/characters/remus/side.svg"
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(4 + 2 / 12, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(4 + 11 / 12, "feet"),
  17002. weight: math.unit(114, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/raf/front.svg",
  17006. bottom: 20.5 / 1863
  17007. }
  17008. },
  17009. side: {
  17010. height: math.unit(4 + 11 / 12, "feet"),
  17011. weight: math.unit(114, "lb"),
  17012. name: "Side",
  17013. image: {
  17014. source: "./media/characters/raf/side.svg",
  17015. bottom: 22 / 1822
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Micro",
  17022. height: math.unit(2, "inches")
  17023. },
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(4 + 11 / 12, "feet"),
  17027. default: true
  17028. },
  17029. {
  17030. name: "Macro",
  17031. height: math.unit(70, "feet")
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17037. {
  17038. front: {
  17039. height: math.unit(1.5, "meters"),
  17040. weight: math.unit(68, "kg"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/liam-einarr/front.svg",
  17044. extra: 2822 / 2666
  17045. }
  17046. },
  17047. back: {
  17048. height: math.unit(1.5, "meters"),
  17049. weight: math.unit(68, "kg"),
  17050. name: "Back",
  17051. image: {
  17052. source: "./media/characters/liam-einarr/back.svg",
  17053. extra: 2822 / 2666,
  17054. bottom: 0.015
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(1.5, "meters"),
  17062. default: true
  17063. },
  17064. {
  17065. name: "Macro",
  17066. height: math.unit(150, "meters")
  17067. },
  17068. {
  17069. name: "Megamacro",
  17070. height: math.unit(35, "km")
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(6, "feet"),
  17079. weight: math.unit(75, "kg"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/linda/front.svg",
  17083. extra: 930 / 874,
  17084. bottom: 0.004
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(6, "feet"),
  17092. default: true
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17098. {
  17099. front: {
  17100. height: math.unit(6 + 8 / 12, "feet"),
  17101. weight: math.unit(220, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/caylex/front.svg",
  17105. extra: 821 / 772,
  17106. bottom: 0.07
  17107. }
  17108. },
  17109. back: {
  17110. height: math.unit(6 + 8 / 12, "feet"),
  17111. weight: math.unit(220, "lb"),
  17112. name: "Back",
  17113. image: {
  17114. source: "./media/characters/caylex/back.svg",
  17115. extra: 821 / 772,
  17116. bottom: 0.022
  17117. }
  17118. },
  17119. hand: {
  17120. height: math.unit(1.25, "feet"),
  17121. name: "Hand",
  17122. image: {
  17123. source: "./media/characters/caylex/hand.svg"
  17124. }
  17125. },
  17126. foot: {
  17127. height: math.unit(1.6, "feet"),
  17128. name: "Foot",
  17129. image: {
  17130. source: "./media/characters/caylex/foot.svg"
  17131. }
  17132. },
  17133. armored: {
  17134. height: math.unit(6 + 8 / 12, "feet"),
  17135. weight: math.unit(250, "lb"),
  17136. name: "Armored",
  17137. image: {
  17138. source: "./media/characters/caylex/armored.svg",
  17139. extra: 1420 / 1310,
  17140. bottom: 0.045
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(6 + 8 / 12, "feet"),
  17148. default: true
  17149. },
  17150. {
  17151. name: "Normal+",
  17152. height: math.unit(12, "feet")
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(7 + 6 / 12, "feet"),
  17161. weight: math.unit(288, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/alana/front.svg",
  17165. extra: 679 / 653,
  17166. bottom: 22.5 / 701
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(7 + 6 / 12, "feet")
  17174. },
  17175. {
  17176. name: "Large",
  17177. height: math.unit(50, "feet")
  17178. },
  17179. {
  17180. name: "Macro",
  17181. height: math.unit(100, "feet"),
  17182. default: true
  17183. },
  17184. {
  17185. name: "Macro+",
  17186. height: math.unit(200, "feet")
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17192. {
  17193. front: {
  17194. height: math.unit(6 + 1 / 12, "feet"),
  17195. weight: math.unit(210, "lb"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/hasani/front.svg",
  17199. extra: 244 / 232,
  17200. bottom: 0.01
  17201. }
  17202. },
  17203. back: {
  17204. height: math.unit(6 + 1 / 12, "feet"),
  17205. weight: math.unit(210, "lb"),
  17206. name: "Back",
  17207. image: {
  17208. source: "./media/characters/hasani/back.svg",
  17209. extra: 244 / 232,
  17210. bottom: 0.01
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(6 + 1 / 12, "feet")
  17218. },
  17219. {
  17220. name: "Macro",
  17221. height: math.unit(175, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(1.82, "meters"),
  17231. weight: math.unit(140, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/nita/front.svg",
  17235. extra: 2473 / 2363,
  17236. bottom: 0.01
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(1.82, "m")
  17244. },
  17245. {
  17246. name: "Macro",
  17247. height: math.unit(300, "m")
  17248. },
  17249. {
  17250. name: "Mistake Canon",
  17251. height: math.unit(0.5, "miles"),
  17252. default: true
  17253. },
  17254. {
  17255. name: "Big Mistake",
  17256. height: math.unit(13, "miles")
  17257. },
  17258. {
  17259. name: "Playing God",
  17260. height: math.unit(2450, "miles")
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(4, "feet"),
  17269. weight: math.unit(120, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/shiriko/front.svg",
  17273. extra: 970/934,
  17274. bottom: 5/975
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(4, "feet"),
  17282. default: true
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17288. {
  17289. front: {
  17290. height: math.unit(6, "feet"),
  17291. name: "front",
  17292. image: {
  17293. source: "./media/characters/deja/front.svg",
  17294. extra: 926 / 840,
  17295. bottom: 0.07
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Planck Length",
  17302. height: math.unit(1.6e-35, "meters")
  17303. },
  17304. {
  17305. name: "Normal",
  17306. height: math.unit(30.48, "meters"),
  17307. default: true
  17308. },
  17309. {
  17310. name: "Universal",
  17311. height: math.unit(8.8e26, "meters")
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17317. {
  17318. side: {
  17319. height: math.unit(8, "feet"),
  17320. weight: math.unit(6300, "lb"),
  17321. name: "Side",
  17322. image: {
  17323. source: "./media/characters/anima/side.svg",
  17324. bottom: 0.035
  17325. }
  17326. },
  17327. },
  17328. [
  17329. {
  17330. name: "Normal",
  17331. height: math.unit(8, "feet"),
  17332. default: true
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17338. {
  17339. front: {
  17340. height: math.unit(8, "feet"),
  17341. weight: math.unit(350, "lb"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/bianca/front.svg",
  17345. extra: 234 / 225,
  17346. bottom: 0.03
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(8, "feet"),
  17354. default: true
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17360. {
  17361. front: {
  17362. height: math.unit(6, "feet"),
  17363. weight: math.unit(150, "lb"),
  17364. name: "Front",
  17365. image: {
  17366. source: "./media/characters/adinia/front.svg",
  17367. extra: 1845 / 1672,
  17368. bottom: 0.02
  17369. }
  17370. },
  17371. back: {
  17372. height: math.unit(6, "feet"),
  17373. weight: math.unit(150, "lb"),
  17374. name: "Back",
  17375. image: {
  17376. source: "./media/characters/adinia/back.svg",
  17377. extra: 1845 / 1672,
  17378. bottom: 0.002
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(11 + 5 / 12, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(3, "meters"),
  17395. weight: math.unit(200, "kg"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/lykasa/front.svg",
  17399. extra: 1076 / 976,
  17400. bottom: 0.06
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(3, "meters")
  17408. },
  17409. {
  17410. name: "Kaiju",
  17411. height: math.unit(120, "meters"),
  17412. default: true
  17413. },
  17414. {
  17415. name: "Mega Kaiju",
  17416. height: math.unit(240, "km")
  17417. },
  17418. {
  17419. name: "Giga Kaiju",
  17420. height: math.unit(400, "megameters")
  17421. },
  17422. {
  17423. name: "Tera Kaiju",
  17424. height: math.unit(800, "gigameters")
  17425. },
  17426. {
  17427. name: "Kaiju Dragon Goddess",
  17428. height: math.unit(26, "zettaparsecs")
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17434. {
  17435. side: {
  17436. height: math.unit(283 / 124 * 6, "feet"),
  17437. weight: math.unit(35000, "lb"),
  17438. name: "Side",
  17439. image: {
  17440. source: "./media/characters/malfaren/side.svg",
  17441. extra: 2500 / 1010,
  17442. bottom: 0.01
  17443. }
  17444. },
  17445. front: {
  17446. height: math.unit(22.36, "feet"),
  17447. weight: math.unit(35000, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/malfaren/front.svg",
  17451. extra: 1631 / 1476,
  17452. bottom: 0.01
  17453. }
  17454. },
  17455. maw: {
  17456. height: math.unit(6.9, "feet"),
  17457. name: "Maw",
  17458. image: {
  17459. source: "./media/characters/malfaren/maw.svg"
  17460. }
  17461. },
  17462. },
  17463. [
  17464. {
  17465. name: "Big",
  17466. height: math.unit(283 / 162 * 6, "feet"),
  17467. },
  17468. {
  17469. name: "Bigger",
  17470. height: math.unit(283 / 124 * 6, "feet")
  17471. },
  17472. {
  17473. name: "Massive",
  17474. height: math.unit(283 / 92 * 6, "feet"),
  17475. default: true
  17476. },
  17477. {
  17478. name: "👀💦",
  17479. height: math.unit(283 / 73 * 6, "feet"),
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17485. {
  17486. front: {
  17487. height: math.unit(1.7, "m"),
  17488. weight: math.unit(70, "kg"),
  17489. name: "Front",
  17490. image: {
  17491. source: "./media/characters/kernel/front.svg",
  17492. extra: 222 / 210,
  17493. bottom: 0.007
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Nano",
  17500. height: math.unit(17, "micrometers")
  17501. },
  17502. {
  17503. name: "Micro",
  17504. height: math.unit(1.7, "mm")
  17505. },
  17506. {
  17507. name: "Small",
  17508. height: math.unit(1.7, "cm")
  17509. },
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(1.7, "m"),
  17513. default: true
  17514. },
  17515. ]
  17516. ))
  17517. characterMakers.push(() => makeCharacter(
  17518. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17519. {
  17520. front: {
  17521. height: math.unit(1.75, "meters"),
  17522. weight: math.unit(65, "kg"),
  17523. name: "Front",
  17524. image: {
  17525. source: "./media/characters/jayne-folest/front.svg",
  17526. extra: 2115 / 2007,
  17527. bottom: 0.02
  17528. }
  17529. },
  17530. back: {
  17531. height: math.unit(1.75, "meters"),
  17532. weight: math.unit(65, "kg"),
  17533. name: "Back",
  17534. image: {
  17535. source: "./media/characters/jayne-folest/back.svg",
  17536. extra: 2115 / 2007,
  17537. bottom: 0.005
  17538. }
  17539. },
  17540. frontClothed: {
  17541. height: math.unit(1.75, "meters"),
  17542. weight: math.unit(65, "kg"),
  17543. name: "Front (Clothed)",
  17544. image: {
  17545. source: "./media/characters/jayne-folest/front-clothed.svg",
  17546. extra: 2115 / 2007,
  17547. bottom: 0.035
  17548. }
  17549. },
  17550. hand: {
  17551. height: math.unit(1 / 1.260, "feet"),
  17552. name: "Hand",
  17553. image: {
  17554. source: "./media/characters/jayne-folest/hand.svg"
  17555. }
  17556. },
  17557. foot: {
  17558. height: math.unit(1 / 0.918, "feet"),
  17559. name: "Foot",
  17560. image: {
  17561. source: "./media/characters/jayne-folest/foot.svg"
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Micro",
  17568. height: math.unit(4, "cm")
  17569. },
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(1.75, "meters")
  17573. },
  17574. {
  17575. name: "Macro",
  17576. height: math.unit(47.5, "meters"),
  17577. default: true
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17583. {
  17584. front: {
  17585. height: math.unit(180, "cm"),
  17586. weight: math.unit(70, "kg"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/algier/front.svg",
  17590. extra: 596 / 572,
  17591. bottom: 0.04
  17592. }
  17593. },
  17594. back: {
  17595. height: math.unit(180, "cm"),
  17596. weight: math.unit(70, "kg"),
  17597. name: "Back",
  17598. image: {
  17599. source: "./media/characters/algier/back.svg",
  17600. extra: 596 / 572,
  17601. bottom: 0.025
  17602. }
  17603. },
  17604. frontdressed: {
  17605. height: math.unit(180, "cm"),
  17606. weight: math.unit(150, "kg"),
  17607. name: "Front-dressed",
  17608. image: {
  17609. source: "./media/characters/algier/front-dressed.svg",
  17610. extra: 596 / 572,
  17611. bottom: 0.038
  17612. }
  17613. },
  17614. },
  17615. [
  17616. {
  17617. name: "Micro",
  17618. height: math.unit(5, "cm")
  17619. },
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(180, "cm"),
  17623. default: true
  17624. },
  17625. {
  17626. name: "Macro",
  17627. height: math.unit(64, "m")
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17633. {
  17634. upright: {
  17635. height: math.unit(7, "feet"),
  17636. weight: math.unit(300, "lb"),
  17637. name: "Upright",
  17638. image: {
  17639. source: "./media/characters/pretzel/upright.svg",
  17640. extra: 534 / 522,
  17641. bottom: 0.065
  17642. }
  17643. },
  17644. sprawling: {
  17645. height: math.unit(3.75, "feet"),
  17646. weight: math.unit(300, "lb"),
  17647. name: "Sprawling",
  17648. image: {
  17649. source: "./media/characters/pretzel/sprawling.svg",
  17650. extra: 314 / 281,
  17651. bottom: 0.1
  17652. }
  17653. },
  17654. tongue: {
  17655. height: math.unit(2, "feet"),
  17656. name: "Tongue",
  17657. image: {
  17658. source: "./media/characters/pretzel/tongue.svg"
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(7, "feet"),
  17666. default: true
  17667. },
  17668. {
  17669. name: "Oversized",
  17670. height: math.unit(15, "feet")
  17671. },
  17672. {
  17673. name: "Huge",
  17674. height: math.unit(30, "feet")
  17675. },
  17676. {
  17677. name: "Macro",
  17678. height: math.unit(250, "feet")
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17684. {
  17685. sideFront: {
  17686. height: math.unit(5 + 2 / 12, "feet"),
  17687. weight: math.unit(120, "lb"),
  17688. name: "Front Side",
  17689. image: {
  17690. source: "./media/characters/roxi/side-front.svg",
  17691. extra: 2924 / 2717,
  17692. bottom: 0.08
  17693. }
  17694. },
  17695. sideBack: {
  17696. height: math.unit(5 + 2 / 12, "feet"),
  17697. weight: math.unit(120, "lb"),
  17698. name: "Back Side",
  17699. image: {
  17700. source: "./media/characters/roxi/side-back.svg",
  17701. extra: 2904 / 2693,
  17702. bottom: 0.06
  17703. }
  17704. },
  17705. front: {
  17706. height: math.unit(5 + 2 / 12, "feet"),
  17707. weight: math.unit(120, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/roxi/front.svg",
  17711. extra: 2028 / 1907,
  17712. bottom: 0.01
  17713. }
  17714. },
  17715. frontAlt: {
  17716. height: math.unit(5 + 2 / 12, "feet"),
  17717. weight: math.unit(120, "lb"),
  17718. name: "Front (Alt)",
  17719. image: {
  17720. source: "./media/characters/roxi/front-alt.svg",
  17721. extra: 1828 / 1798,
  17722. bottom: 0.01
  17723. }
  17724. },
  17725. sitting: {
  17726. height: math.unit(2.8, "feet"),
  17727. weight: math.unit(120, "lb"),
  17728. name: "Sitting",
  17729. image: {
  17730. source: "./media/characters/roxi/sitting.svg",
  17731. extra: 2660 / 2462,
  17732. bottom: 0.1
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(5 + 2 / 12, "feet"),
  17740. default: true
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17746. {
  17747. side: {
  17748. height: math.unit(55, "feet"),
  17749. weight: math.unit(153, "tons"),
  17750. name: "Side",
  17751. image: {
  17752. source: "./media/characters/shadow/side.svg",
  17753. extra: 701 / 628,
  17754. bottom: 0.02
  17755. }
  17756. },
  17757. flying: {
  17758. height: math.unit(145, "feet"),
  17759. weight: math.unit(153, "tons"),
  17760. name: "Flying",
  17761. image: {
  17762. source: "./media/characters/shadow/flying.svg"
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(55, "feet"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17776. {
  17777. front: {
  17778. height: math.unit(6, "feet"),
  17779. weight: math.unit(200, "lb"),
  17780. name: "Front",
  17781. image: {
  17782. source: "./media/characters/marcie/front.svg",
  17783. extra: 960 / 876,
  17784. bottom: 58 / 1017.87
  17785. }
  17786. },
  17787. },
  17788. [
  17789. {
  17790. name: "Macro",
  17791. height: math.unit(1, "mile"),
  17792. default: true
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17798. {
  17799. front: {
  17800. height: math.unit(7, "feet"),
  17801. weight: math.unit(200, "lb"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/kachina/front.svg",
  17805. extra: 1290.68 / 1119,
  17806. bottom: 36.5 / 1327.18
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(7, "feet"),
  17814. default: true
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17820. {
  17821. looking: {
  17822. height: math.unit(2, "meters"),
  17823. weight: math.unit(300, "kg"),
  17824. name: "Looking",
  17825. image: {
  17826. source: "./media/characters/kash/looking.svg",
  17827. extra: 474 / 344,
  17828. bottom: 0.03
  17829. }
  17830. },
  17831. side: {
  17832. height: math.unit(2, "meters"),
  17833. weight: math.unit(300, "kg"),
  17834. name: "Side",
  17835. image: {
  17836. source: "./media/characters/kash/side.svg",
  17837. extra: 302 / 251,
  17838. bottom: 0.03
  17839. }
  17840. },
  17841. front: {
  17842. height: math.unit(2, "meters"),
  17843. weight: math.unit(300, "kg"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/kash/front.svg",
  17847. extra: 495 / 360,
  17848. bottom: 0.015
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(2, "meters"),
  17856. default: true
  17857. },
  17858. {
  17859. name: "Big",
  17860. height: math.unit(3, "meters")
  17861. },
  17862. {
  17863. name: "Large",
  17864. height: math.unit(5, "meters")
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17870. {
  17871. feeding: {
  17872. height: math.unit(6.7, "feet"),
  17873. weight: math.unit(350, "lb"),
  17874. name: "Feeding",
  17875. image: {
  17876. source: "./media/characters/lalim/feeding.svg",
  17877. }
  17878. },
  17879. },
  17880. [
  17881. {
  17882. name: "Normal",
  17883. height: math.unit(6.7, "feet"),
  17884. default: true
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17890. {
  17891. front: {
  17892. height: math.unit(9.5, "feet"),
  17893. weight: math.unit(600, "lb"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/de'vout/front.svg",
  17897. extra: 1443 / 1328,
  17898. bottom: 0.025
  17899. }
  17900. },
  17901. back: {
  17902. height: math.unit(9.5, "feet"),
  17903. weight: math.unit(600, "lb"),
  17904. name: "Back",
  17905. image: {
  17906. source: "./media/characters/de'vout/back.svg",
  17907. extra: 1443 / 1328
  17908. }
  17909. },
  17910. frontDressed: {
  17911. height: math.unit(9.5, "feet"),
  17912. weight: math.unit(600, "lb"),
  17913. name: "Front (Dressed",
  17914. image: {
  17915. source: "./media/characters/de'vout/front-dressed.svg",
  17916. extra: 1443 / 1328,
  17917. bottom: 0.025
  17918. }
  17919. },
  17920. backDressed: {
  17921. height: math.unit(9.5, "feet"),
  17922. weight: math.unit(600, "lb"),
  17923. name: "Back (Dressed",
  17924. image: {
  17925. source: "./media/characters/de'vout/back-dressed.svg",
  17926. extra: 1443 / 1328
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(9.5, "feet"),
  17934. default: true
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17940. {
  17941. front: {
  17942. height: math.unit(8, "feet"),
  17943. weight: math.unit(225, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/talana/front.svg",
  17947. extra: 1410 / 1300,
  17948. bottom: 0.015
  17949. }
  17950. },
  17951. frontDressed: {
  17952. height: math.unit(8, "feet"),
  17953. weight: math.unit(225, "lb"),
  17954. name: "Front (Dressed",
  17955. image: {
  17956. source: "./media/characters/talana/front-dressed.svg",
  17957. extra: 1410 / 1300,
  17958. bottom: 0.015
  17959. }
  17960. },
  17961. },
  17962. [
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(8, "feet"),
  17966. default: true
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17972. {
  17973. side: {
  17974. height: math.unit(7.2, "feet"),
  17975. weight: math.unit(150, "lb"),
  17976. name: "Side",
  17977. image: {
  17978. source: "./media/characters/xeauvok/side.svg",
  17979. extra: 1975 / 1523,
  17980. bottom: 0.07
  17981. }
  17982. },
  17983. },
  17984. [
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(7.2, "feet"),
  17988. default: true
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17994. {
  17995. side: {
  17996. height: math.unit(10, "feet"),
  17997. weight: math.unit(900, "kg"),
  17998. name: "Side",
  17999. image: {
  18000. source: "./media/characters/zara/side.svg",
  18001. extra: 504 / 498
  18002. }
  18003. },
  18004. },
  18005. [
  18006. {
  18007. name: "Normal",
  18008. height: math.unit(10, "feet"),
  18009. default: true
  18010. },
  18011. ]
  18012. ))
  18013. characterMakers.push(() => makeCharacter(
  18014. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18015. {
  18016. side: {
  18017. height: math.unit(6, "feet"),
  18018. weight: math.unit(150, "lb"),
  18019. name: "Side",
  18020. image: {
  18021. source: "./media/characters/richard-dragon/side.svg",
  18022. extra: 845 / 340,
  18023. bottom: 0.017
  18024. }
  18025. },
  18026. maw: {
  18027. height: math.unit(2.97, "feet"),
  18028. name: "Maw",
  18029. image: {
  18030. source: "./media/characters/richard-dragon/maw.svg"
  18031. }
  18032. },
  18033. },
  18034. [
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18039. {
  18040. front: {
  18041. height: math.unit(4, "feet"),
  18042. weight: math.unit(100, "lb"),
  18043. name: "Front",
  18044. image: {
  18045. source: "./media/characters/richard-smeargle/front.svg",
  18046. extra: 2952 / 2820,
  18047. bottom: 0.028
  18048. }
  18049. },
  18050. },
  18051. [
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(4, "feet"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Dynamax",
  18059. height: math.unit(20, "meters")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(6, "feet"),
  18068. weight: math.unit(110, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/klay/front.svg",
  18072. extra: 962 / 883,
  18073. bottom: 0.04
  18074. }
  18075. },
  18076. back: {
  18077. height: math.unit(6, "feet"),
  18078. weight: math.unit(110, "lb"),
  18079. name: "Back",
  18080. image: {
  18081. source: "./media/characters/klay/back.svg",
  18082. extra: 962 / 883
  18083. }
  18084. },
  18085. beans: {
  18086. height: math.unit(1.15, "feet"),
  18087. name: "Beans",
  18088. image: {
  18089. source: "./media/characters/klay/beans.svg"
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Micro",
  18096. height: math.unit(6, "inches")
  18097. },
  18098. {
  18099. name: "Mini",
  18100. height: math.unit(3, "feet")
  18101. },
  18102. {
  18103. name: "Normal",
  18104. height: math.unit(6, "feet"),
  18105. default: true
  18106. },
  18107. {
  18108. name: "Big",
  18109. height: math.unit(25, "feet")
  18110. },
  18111. {
  18112. name: "Macro",
  18113. height: math.unit(100, "feet")
  18114. },
  18115. {
  18116. name: "Megamacro",
  18117. height: math.unit(400, "feet")
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18123. {
  18124. front: {
  18125. height: math.unit(6, "feet"),
  18126. weight: math.unit(160, "lb"),
  18127. name: "Front",
  18128. image: {
  18129. source: "./media/characters/marcus/front.svg",
  18130. extra: 734 / 676,
  18131. bottom: 0.03
  18132. }
  18133. },
  18134. },
  18135. [
  18136. {
  18137. name: "Little",
  18138. height: math.unit(6, "feet")
  18139. },
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(110, "feet"),
  18143. default: true
  18144. },
  18145. {
  18146. name: "Macro",
  18147. height: math.unit(250, "feet")
  18148. },
  18149. {
  18150. name: "Megamacro",
  18151. height: math.unit(1000, "feet")
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18157. {
  18158. front: {
  18159. height: math.unit(7, "feet"),
  18160. weight: math.unit(275, "lb"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/claude-delroute/front.svg",
  18164. extra: 230 / 214,
  18165. bottom: 0.007
  18166. }
  18167. },
  18168. side: {
  18169. height: math.unit(7, "feet"),
  18170. weight: math.unit(275, "lb"),
  18171. name: "Side",
  18172. image: {
  18173. source: "./media/characters/claude-delroute/side.svg",
  18174. extra: 222 / 214,
  18175. bottom: 0.01
  18176. }
  18177. },
  18178. back: {
  18179. height: math.unit(7, "feet"),
  18180. weight: math.unit(275, "lb"),
  18181. name: "Back",
  18182. image: {
  18183. source: "./media/characters/claude-delroute/back.svg",
  18184. extra: 230 / 214,
  18185. bottom: 0.015
  18186. }
  18187. },
  18188. maw: {
  18189. height: math.unit(0.6407, "meters"),
  18190. name: "Maw",
  18191. image: {
  18192. source: "./media/characters/claude-delroute/maw.svg"
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(7, "feet"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Lorge",
  18204. height: math.unit(20, "feet")
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(8 + 4 / 12, "feet"),
  18213. weight: math.unit(600, "lb"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/dragonien/front.svg",
  18217. extra: 100 / 94,
  18218. bottom: 3.3 / 103.3445
  18219. }
  18220. },
  18221. back: {
  18222. height: math.unit(8 + 4 / 12, "feet"),
  18223. weight: math.unit(600, "lb"),
  18224. name: "Back",
  18225. image: {
  18226. source: "./media/characters/dragonien/back.svg",
  18227. extra: 776 / 746,
  18228. bottom: 6.4 / 782.0616
  18229. }
  18230. },
  18231. foot: {
  18232. height: math.unit(1.54, "feet"),
  18233. name: "Foot",
  18234. image: {
  18235. source: "./media/characters/dragonien/foot.svg",
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(8 + 4 / 12, "feet"),
  18243. default: true
  18244. },
  18245. {
  18246. name: "Macro",
  18247. height: math.unit(200, "feet")
  18248. },
  18249. {
  18250. name: "Megamacro",
  18251. height: math.unit(1, "mile")
  18252. },
  18253. {
  18254. name: "Gigamacro",
  18255. height: math.unit(1000, "miles")
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(5 + 2 / 12, "feet"),
  18264. weight: math.unit(110, "lb"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/desta/front.svg",
  18268. extra: 767 / 726,
  18269. bottom: 11.7 / 779
  18270. }
  18271. },
  18272. back: {
  18273. height: math.unit(5 + 2 / 12, "feet"),
  18274. weight: math.unit(110, "lb"),
  18275. name: "Back",
  18276. image: {
  18277. source: "./media/characters/desta/back.svg",
  18278. extra: 777 / 728,
  18279. bottom: 6 / 784
  18280. }
  18281. },
  18282. frontAlt: {
  18283. height: math.unit(5 + 2 / 12, "feet"),
  18284. weight: math.unit(110, "lb"),
  18285. name: "Front",
  18286. image: {
  18287. source: "./media/characters/desta/front-alt.svg",
  18288. extra: 1482 / 1417
  18289. }
  18290. },
  18291. side: {
  18292. height: math.unit(5 + 2 / 12, "feet"),
  18293. weight: math.unit(110, "lb"),
  18294. name: "Side",
  18295. image: {
  18296. source: "./media/characters/desta/side.svg",
  18297. extra: 2579 / 2491,
  18298. bottom: 0.053
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Micro",
  18305. height: math.unit(6, "inches")
  18306. },
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(5 + 2 / 12, "feet"),
  18310. default: true
  18311. },
  18312. {
  18313. name: "Macro",
  18314. height: math.unit(62, "feet")
  18315. },
  18316. {
  18317. name: "Megamacro",
  18318. height: math.unit(1800, "feet")
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(10, "feet"),
  18327. weight: math.unit(700, "lb"),
  18328. name: "Front",
  18329. image: {
  18330. source: "./media/characters/storm-alystar/front.svg",
  18331. extra: 2112 / 1898,
  18332. bottom: 0.034
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Micro",
  18339. height: math.unit(3.5, "inches")
  18340. },
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(10, "feet"),
  18344. default: true
  18345. },
  18346. {
  18347. name: "Macro",
  18348. height: math.unit(400, "feet")
  18349. },
  18350. {
  18351. name: "Deific",
  18352. height: math.unit(60, "miles")
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(2.35, "meters"),
  18361. weight: math.unit(119, "kg"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/ilia/front.svg",
  18365. extra: 1285 / 1255,
  18366. bottom: 0.06
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(2.35, "meters")
  18374. },
  18375. {
  18376. name: "Macro",
  18377. height: math.unit(140, "meters"),
  18378. default: true
  18379. },
  18380. {
  18381. name: "Megamacro",
  18382. height: math.unit(100, "miles")
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18388. {
  18389. front: {
  18390. height: math.unit(6 + 5 / 12, "feet"),
  18391. weight: math.unit(190, "lb"),
  18392. name: "Front",
  18393. image: {
  18394. source: "./media/characters/kingdead/front.svg",
  18395. extra: 1228 / 1177
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Micro",
  18402. height: math.unit(7, "inches")
  18403. },
  18404. {
  18405. name: "Normal",
  18406. height: math.unit(6 + 5 / 12, "feet")
  18407. },
  18408. {
  18409. name: "Macro",
  18410. height: math.unit(150, "feet"),
  18411. default: true
  18412. },
  18413. {
  18414. name: "Megamacro",
  18415. height: math.unit(200, "miles")
  18416. },
  18417. ]
  18418. ))
  18419. characterMakers.push(() => makeCharacter(
  18420. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18421. {
  18422. front: {
  18423. height: math.unit(8, "feet"),
  18424. weight: math.unit(600, "lb"),
  18425. name: "Front",
  18426. image: {
  18427. source: "./media/characters/kyrehx/front.svg",
  18428. extra: 1195 / 1095,
  18429. bottom: 0.034
  18430. }
  18431. },
  18432. },
  18433. [
  18434. {
  18435. name: "Micro",
  18436. height: math.unit(2, "inches")
  18437. },
  18438. {
  18439. name: "Normal",
  18440. height: math.unit(8, "feet"),
  18441. default: true
  18442. },
  18443. {
  18444. name: "Macro",
  18445. height: math.unit(255, "feet")
  18446. },
  18447. ]
  18448. ))
  18449. characterMakers.push(() => makeCharacter(
  18450. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18451. {
  18452. front: {
  18453. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18454. weight: math.unit(184, "lb"),
  18455. name: "Front",
  18456. image: {
  18457. source: "./media/characters/xang/front.svg",
  18458. extra: 845 / 755
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Macro",
  18470. height: math.unit(0.935 * 146, "feet")
  18471. },
  18472. {
  18473. name: "Megamacro",
  18474. height: math.unit(0.935 * 3, "miles")
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18480. {
  18481. frontDressed: {
  18482. height: math.unit(5 + 7 / 12, "feet"),
  18483. weight: math.unit(140, "lb"),
  18484. name: "Front (Dressed)",
  18485. image: {
  18486. source: "./media/characters/doc-weardno/front-dressed.svg",
  18487. extra: 263 / 234
  18488. }
  18489. },
  18490. backDressed: {
  18491. height: math.unit(5 + 7 / 12, "feet"),
  18492. weight: math.unit(140, "lb"),
  18493. name: "Back (Dressed)",
  18494. image: {
  18495. source: "./media/characters/doc-weardno/back-dressed.svg",
  18496. extra: 266 / 238
  18497. }
  18498. },
  18499. front: {
  18500. height: math.unit(5 + 7 / 12, "feet"),
  18501. weight: math.unit(140, "lb"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/doc-weardno/front.svg",
  18505. extra: 254 / 233
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Micro",
  18512. height: math.unit(3, "inches")
  18513. },
  18514. {
  18515. name: "Normal",
  18516. height: math.unit(5 + 7 / 12, "feet"),
  18517. default: true
  18518. },
  18519. {
  18520. name: "Macro",
  18521. height: math.unit(25, "feet")
  18522. },
  18523. {
  18524. name: "Megamacro",
  18525. height: math.unit(2, "miles")
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18531. {
  18532. front: {
  18533. height: math.unit(6 + 2 / 12, "feet"),
  18534. weight: math.unit(153, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/seth-whilst/front.svg",
  18538. bottom: 0.07
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Micro",
  18545. height: math.unit(5, "inches")
  18546. },
  18547. {
  18548. name: "Normal",
  18549. height: math.unit(6 + 2 / 12, "feet"),
  18550. default: true
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18556. {
  18557. front: {
  18558. height: math.unit(3, "inches"),
  18559. weight: math.unit(8, "grams"),
  18560. name: "Front",
  18561. image: {
  18562. source: "./media/characters/pocket-jabari/front.svg",
  18563. extra: 1024 / 974,
  18564. bottom: 0.039
  18565. }
  18566. },
  18567. },
  18568. [
  18569. {
  18570. name: "Minimicro",
  18571. height: math.unit(8, "mm")
  18572. },
  18573. {
  18574. name: "Micro",
  18575. height: math.unit(3, "inches"),
  18576. default: true
  18577. },
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(3, "feet")
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18586. {
  18587. front: {
  18588. height: math.unit(15, "feet"),
  18589. weight: math.unit(3280, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/sapphy/front.svg",
  18593. extra: 671 / 577,
  18594. bottom: 0.085
  18595. }
  18596. },
  18597. back: {
  18598. height: math.unit(15, "feet"),
  18599. weight: math.unit(3280, "lb"),
  18600. name: "Back",
  18601. image: {
  18602. source: "./media/characters/sapphy/back.svg",
  18603. extra: 631 / 607,
  18604. bottom: 0.045
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Normal",
  18611. height: math.unit(15, "feet")
  18612. },
  18613. {
  18614. name: "Casual Macro",
  18615. height: math.unit(120, "feet")
  18616. },
  18617. {
  18618. name: "Macro",
  18619. height: math.unit(2150, "feet"),
  18620. default: true
  18621. },
  18622. {
  18623. name: "Megamacro",
  18624. height: math.unit(8, "miles")
  18625. },
  18626. {
  18627. name: "Galaxy Mom",
  18628. height: math.unit(6, "megalightyears")
  18629. },
  18630. ]
  18631. ))
  18632. characterMakers.push(() => makeCharacter(
  18633. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18634. {
  18635. front: {
  18636. height: math.unit(6, "feet"),
  18637. weight: math.unit(170, "lb"),
  18638. name: "Front",
  18639. image: {
  18640. source: "./media/characters/kiro/front.svg",
  18641. extra: 1064 / 1012,
  18642. bottom: 0.052
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Micro",
  18649. height: math.unit(6, "inches")
  18650. },
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(6, "feet"),
  18654. default: true
  18655. },
  18656. {
  18657. name: "Macro",
  18658. height: math.unit(72, "feet")
  18659. },
  18660. ]
  18661. ))
  18662. characterMakers.push(() => makeCharacter(
  18663. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18664. {
  18665. front: {
  18666. height: math.unit(5 + 9 / 12, "feet"),
  18667. weight: math.unit(175, "lb"),
  18668. name: "Front",
  18669. image: {
  18670. source: "./media/characters/irishfox/front.svg",
  18671. extra: 1912 / 1680,
  18672. bottom: 0.02
  18673. }
  18674. },
  18675. },
  18676. [
  18677. {
  18678. name: "Nano",
  18679. height: math.unit(1, "mm")
  18680. },
  18681. {
  18682. name: "Micro",
  18683. height: math.unit(2, "inches")
  18684. },
  18685. {
  18686. name: "Normal",
  18687. height: math.unit(5 + 9 / 12, "feet"),
  18688. default: true
  18689. },
  18690. {
  18691. name: "Macro",
  18692. height: math.unit(45, "feet")
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(6 + 1 / 12, "feet"),
  18701. weight: math.unit(75, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/aronai-sieyes/front.svg",
  18705. extra: 1556 / 1480,
  18706. bottom: 0.015
  18707. }
  18708. },
  18709. side: {
  18710. height: math.unit(6 + 1 / 12, "feet"),
  18711. weight: math.unit(75, "lb"),
  18712. name: "Side",
  18713. image: {
  18714. source: "./media/characters/aronai-sieyes/side.svg",
  18715. extra: 1433 / 1390,
  18716. bottom: 0.0393
  18717. }
  18718. },
  18719. back: {
  18720. height: math.unit(6 + 1 / 12, "feet"),
  18721. weight: math.unit(75, "lb"),
  18722. name: "Back",
  18723. image: {
  18724. source: "./media/characters/aronai-sieyes/back.svg",
  18725. extra: 1544 / 1494,
  18726. bottom: 0.02
  18727. }
  18728. },
  18729. frontClothed: {
  18730. height: math.unit(6 + 1 / 12, "feet"),
  18731. weight: math.unit(75, "lb"),
  18732. name: "Front (Clothed)",
  18733. image: {
  18734. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18735. extra: 1582 / 1527
  18736. }
  18737. },
  18738. feral: {
  18739. height: math.unit(18, "feet"),
  18740. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18741. name: "Feral",
  18742. image: {
  18743. source: "./media/characters/aronai-sieyes/feral.svg",
  18744. extra: 1530 / 1240,
  18745. bottom: 0.035
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Micro",
  18752. height: math.unit(2, "inches")
  18753. },
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(6 + 1 / 12, "feet"),
  18757. default: true
  18758. }
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(12, "feet"),
  18766. weight: math.unit(410, "kg"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/xuna/front.svg",
  18770. extra: 2184 / 1980
  18771. }
  18772. },
  18773. side: {
  18774. height: math.unit(12, "feet"),
  18775. weight: math.unit(410, "kg"),
  18776. name: "Side",
  18777. image: {
  18778. source: "./media/characters/xuna/side.svg",
  18779. extra: 2184 / 1980
  18780. }
  18781. },
  18782. back: {
  18783. height: math.unit(12, "feet"),
  18784. weight: math.unit(410, "kg"),
  18785. name: "Back",
  18786. image: {
  18787. source: "./media/characters/xuna/back.svg",
  18788. extra: 2184 / 1980
  18789. }
  18790. },
  18791. },
  18792. [
  18793. {
  18794. name: "Nano glow",
  18795. height: math.unit(10, "nm")
  18796. },
  18797. {
  18798. name: "Micro floof",
  18799. height: math.unit(0.3, "m")
  18800. },
  18801. {
  18802. name: "Huggable softy boi",
  18803. height: math.unit(3.6576, "m"),
  18804. default: true
  18805. },
  18806. {
  18807. name: "Admirable floof",
  18808. height: math.unit(80, "meters")
  18809. },
  18810. {
  18811. name: "Gentle macro",
  18812. height: math.unit(300, "meters")
  18813. },
  18814. {
  18815. name: "Very careful floof",
  18816. height: math.unit(3200, "meters")
  18817. },
  18818. {
  18819. name: "The mega floof",
  18820. height: math.unit(36000, "meters")
  18821. },
  18822. {
  18823. name: "Giga-fur-Wicker",
  18824. height: math.unit(4800000, "meters")
  18825. },
  18826. {
  18827. name: "Licky world",
  18828. height: math.unit(20000000, "meters")
  18829. },
  18830. {
  18831. name: "Floofy cyan sun",
  18832. height: math.unit(1500000000, "meters")
  18833. },
  18834. {
  18835. name: "Milky Wicker",
  18836. height: math.unit(1000000000000000000000, "meters")
  18837. },
  18838. {
  18839. name: "The observing Wicker",
  18840. height: math.unit(999999999999999999999999999, "meters")
  18841. },
  18842. ]
  18843. ))
  18844. characterMakers.push(() => makeCharacter(
  18845. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18846. {
  18847. front: {
  18848. height: math.unit(5 + 9 / 12, "feet"),
  18849. weight: math.unit(150, "lb"),
  18850. name: "Front",
  18851. image: {
  18852. source: "./media/characters/arokha-sieyes/front.svg",
  18853. extra: 1425 / 1284,
  18854. bottom: 0.05
  18855. }
  18856. },
  18857. },
  18858. [
  18859. {
  18860. name: "Normal",
  18861. height: math.unit(5 + 9 / 12, "feet")
  18862. },
  18863. {
  18864. name: "Macro",
  18865. height: math.unit(30, "meters"),
  18866. default: true
  18867. },
  18868. ]
  18869. ))
  18870. characterMakers.push(() => makeCharacter(
  18871. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18872. {
  18873. front: {
  18874. height: math.unit(6, "feet"),
  18875. weight: math.unit(180, "lb"),
  18876. name: "Front",
  18877. image: {
  18878. source: "./media/characters/arokh-sieyes/front.svg",
  18879. extra: 1830 / 1769,
  18880. bottom: 0.01
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(6, "feet")
  18888. },
  18889. {
  18890. name: "Macro",
  18891. height: math.unit(30, "meters"),
  18892. default: true
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18898. {
  18899. side: {
  18900. height: math.unit(13 + 1 / 12, "feet"),
  18901. weight: math.unit(8.5, "tonnes"),
  18902. name: "Side",
  18903. image: {
  18904. source: "./media/characters/goldeneye/side.svg",
  18905. extra: 1182 / 778,
  18906. bottom: 0.067
  18907. }
  18908. },
  18909. paw: {
  18910. height: math.unit(3.4, "feet"),
  18911. name: "Paw",
  18912. image: {
  18913. source: "./media/characters/goldeneye/paw.svg"
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(13 + 1 / 12, "feet"),
  18921. default: true
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18927. {
  18928. front: {
  18929. height: math.unit(6 + 1 / 12, "feet"),
  18930. weight: math.unit(210, "lb"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/leonardo-lycheborne/front.svg",
  18934. extra: 390 / 365,
  18935. bottom: 0.032
  18936. }
  18937. },
  18938. side: {
  18939. height: math.unit(6 + 1 / 12, "feet"),
  18940. weight: math.unit(210, "lb"),
  18941. name: "Side",
  18942. image: {
  18943. source: "./media/characters/leonardo-lycheborne/side.svg",
  18944. extra: 390 / 365,
  18945. bottom: 0.005
  18946. }
  18947. },
  18948. back: {
  18949. height: math.unit(6 + 1 / 12, "feet"),
  18950. weight: math.unit(210, "lb"),
  18951. name: "Back",
  18952. image: {
  18953. source: "./media/characters/leonardo-lycheborne/back.svg",
  18954. extra: 392 / 366,
  18955. bottom: 0.01
  18956. }
  18957. },
  18958. hand: {
  18959. height: math.unit(1.08, "feet"),
  18960. name: "Hand",
  18961. image: {
  18962. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18963. }
  18964. },
  18965. foot: {
  18966. height: math.unit(1.32, "feet"),
  18967. name: "Foot",
  18968. image: {
  18969. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18970. }
  18971. },
  18972. were: {
  18973. height: math.unit(20, "feet"),
  18974. weight: math.unit(7800, "lb"),
  18975. name: "Were",
  18976. image: {
  18977. source: "./media/characters/leonardo-lycheborne/were.svg",
  18978. extra: 308 / 294,
  18979. bottom: 0.048
  18980. }
  18981. },
  18982. feral: {
  18983. height: math.unit(7.5, "feet"),
  18984. weight: math.unit(600, "lb"),
  18985. name: "Feral",
  18986. image: {
  18987. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18988. extra: 210 / 186,
  18989. bottom: 0.108
  18990. }
  18991. },
  18992. taur: {
  18993. height: math.unit(11, "feet"),
  18994. weight: math.unit(3300, "lb"),
  18995. name: "Taur",
  18996. image: {
  18997. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18998. extra: 320 / 303,
  18999. bottom: 0.025
  19000. }
  19001. },
  19002. barghest: {
  19003. height: math.unit(11, "feet"),
  19004. weight: math.unit(1300, "lb"),
  19005. name: "Barghest",
  19006. image: {
  19007. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19008. extra: 323 / 302,
  19009. bottom: 0.027
  19010. }
  19011. },
  19012. dick: {
  19013. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19014. name: "Dick",
  19015. image: {
  19016. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19017. }
  19018. },
  19019. dickWere: {
  19020. height: math.unit((20) / 3.8, "feet"),
  19021. name: "Dick (Were)",
  19022. image: {
  19023. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19024. }
  19025. },
  19026. },
  19027. [
  19028. {
  19029. name: "Normal",
  19030. height: math.unit(6 + 1 / 12, "feet"),
  19031. default: true
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19037. {
  19038. front: {
  19039. height: math.unit(10, "feet"),
  19040. weight: math.unit(350, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/jet/front.svg",
  19044. extra: 2050 / 1980,
  19045. bottom: 0.013
  19046. }
  19047. },
  19048. back: {
  19049. height: math.unit(10, "feet"),
  19050. weight: math.unit(350, "lb"),
  19051. name: "Back",
  19052. image: {
  19053. source: "./media/characters/jet/back.svg",
  19054. extra: 2050 / 1980,
  19055. bottom: 0.013
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Micro",
  19062. height: math.unit(6, "inches")
  19063. },
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(10, "feet"),
  19067. default: true
  19068. },
  19069. {
  19070. name: "Macro",
  19071. height: math.unit(100, "feet")
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19077. {
  19078. front: {
  19079. height: math.unit(15, "feet"),
  19080. weight: math.unit(2800, "lb"),
  19081. name: "Front",
  19082. image: {
  19083. source: "./media/characters/tanarath/front.svg",
  19084. extra: 2392 / 2220,
  19085. bottom: 0.03
  19086. }
  19087. },
  19088. back: {
  19089. height: math.unit(15, "feet"),
  19090. weight: math.unit(2800, "lb"),
  19091. name: "Back",
  19092. image: {
  19093. source: "./media/characters/tanarath/back.svg",
  19094. extra: 2392 / 2220,
  19095. bottom: 0.03
  19096. }
  19097. },
  19098. },
  19099. [
  19100. {
  19101. name: "Normal",
  19102. height: math.unit(15, "feet"),
  19103. default: true
  19104. },
  19105. ]
  19106. ))
  19107. characterMakers.push(() => makeCharacter(
  19108. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19109. {
  19110. front: {
  19111. height: math.unit(7 + 1 / 12, "feet"),
  19112. weight: math.unit(175, "lb"),
  19113. name: "Front",
  19114. image: {
  19115. source: "./media/characters/patty-cattybatty/front.svg",
  19116. extra: 908 / 874,
  19117. bottom: 0.025
  19118. }
  19119. },
  19120. },
  19121. [
  19122. {
  19123. name: "Micro",
  19124. height: math.unit(1, "inch")
  19125. },
  19126. {
  19127. name: "Normal",
  19128. height: math.unit(7 + 1 / 12, "feet")
  19129. },
  19130. {
  19131. name: "Mini Macro",
  19132. height: math.unit(155, "feet")
  19133. },
  19134. {
  19135. name: "Macro",
  19136. height: math.unit(1077, "feet")
  19137. },
  19138. {
  19139. name: "Mega Macro",
  19140. height: math.unit(47650, "feet"),
  19141. default: true
  19142. },
  19143. {
  19144. name: "Giga Macro",
  19145. height: math.unit(440, "miles")
  19146. },
  19147. {
  19148. name: "Tera Macro",
  19149. height: math.unit(8700, "miles")
  19150. },
  19151. {
  19152. name: "Planetary Macro",
  19153. height: math.unit(32700, "miles")
  19154. },
  19155. {
  19156. name: "Solar Macro",
  19157. height: math.unit(550000, "miles")
  19158. },
  19159. {
  19160. name: "Celestial Macro",
  19161. height: math.unit(2.5, "AU")
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(4 + 5 / 12, "feet"),
  19170. weight: math.unit(90, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/cappu/front.svg",
  19174. extra: 1247 / 1152,
  19175. bottom: 0.012
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(4 + 5 / 12, "feet"),
  19183. default: true
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19189. {
  19190. frontDressed: {
  19191. height: math.unit(70, "cm"),
  19192. weight: math.unit(6, "kg"),
  19193. name: "Front (Dressed)",
  19194. image: {
  19195. source: "./media/characters/sebi/front-dressed.svg",
  19196. extra: 713.5 / 686.5,
  19197. bottom: 0.003
  19198. }
  19199. },
  19200. front: {
  19201. height: math.unit(70, "cm"),
  19202. weight: math.unit(5, "kg"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/sebi/front.svg",
  19206. extra: 713.5 / 686.5,
  19207. bottom: 0.003
  19208. }
  19209. }
  19210. },
  19211. [
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(70, "cm"),
  19215. default: true
  19216. },
  19217. {
  19218. name: "Macro",
  19219. height: math.unit(8, "meters")
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19225. {
  19226. front: {
  19227. height: math.unit(6, "feet"),
  19228. weight: math.unit(150, "lb"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/typhek/front.svg",
  19232. extra: 1948 / 1929,
  19233. bottom: 0.025
  19234. }
  19235. },
  19236. side: {
  19237. height: math.unit(6, "feet"),
  19238. weight: math.unit(150, "lb"),
  19239. name: "Side",
  19240. image: {
  19241. source: "./media/characters/typhek/side.svg",
  19242. extra: 2034 / 2010,
  19243. bottom: 0.003
  19244. }
  19245. },
  19246. back: {
  19247. height: math.unit(6, "feet"),
  19248. weight: math.unit(150, "lb"),
  19249. name: "Back",
  19250. image: {
  19251. source: "./media/characters/typhek/back.svg",
  19252. extra: 2005 / 1978,
  19253. bottom: 0.004
  19254. }
  19255. },
  19256. palm: {
  19257. height: math.unit(1.2, "feet"),
  19258. name: "Palm",
  19259. image: {
  19260. source: "./media/characters/typhek/palm.svg"
  19261. }
  19262. },
  19263. fist: {
  19264. height: math.unit(1.1, "feet"),
  19265. name: "Fist",
  19266. image: {
  19267. source: "./media/characters/typhek/fist.svg"
  19268. }
  19269. },
  19270. foot: {
  19271. height: math.unit(1.57, "feet"),
  19272. name: "Foot",
  19273. image: {
  19274. source: "./media/characters/typhek/foot.svg"
  19275. }
  19276. },
  19277. sole: {
  19278. height: math.unit(2.05, "feet"),
  19279. name: "Sole",
  19280. image: {
  19281. source: "./media/characters/typhek/sole.svg"
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Macro",
  19288. height: math.unit(40, "stories"),
  19289. default: true
  19290. },
  19291. {
  19292. name: "Megamacro",
  19293. height: math.unit(1, "mile")
  19294. },
  19295. {
  19296. name: "Gigamacro",
  19297. height: math.unit(4000, "solarradii")
  19298. },
  19299. {
  19300. name: "Universal",
  19301. height: math.unit(1.1, "universes")
  19302. }
  19303. ]
  19304. ))
  19305. characterMakers.push(() => makeCharacter(
  19306. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19307. {
  19308. side: {
  19309. height: math.unit(5 + 7 / 12, "feet"),
  19310. weight: math.unit(150, "lb"),
  19311. name: "Side",
  19312. image: {
  19313. source: "./media/characters/kassy/side.svg",
  19314. extra: 1280 / 1225,
  19315. bottom: 0.002
  19316. }
  19317. },
  19318. front: {
  19319. height: math.unit(5 + 7 / 12, "feet"),
  19320. weight: math.unit(150, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/kassy/front.svg",
  19324. extra: 1280 / 1225,
  19325. bottom: 0.025
  19326. }
  19327. },
  19328. back: {
  19329. height: math.unit(5 + 7 / 12, "feet"),
  19330. weight: math.unit(150, "lb"),
  19331. name: "Back",
  19332. image: {
  19333. source: "./media/characters/kassy/back.svg",
  19334. extra: 1280 / 1225,
  19335. bottom: 0.002
  19336. }
  19337. },
  19338. foot: {
  19339. height: math.unit(1.266, "feet"),
  19340. name: "Foot",
  19341. image: {
  19342. source: "./media/characters/kassy/foot.svg"
  19343. }
  19344. },
  19345. },
  19346. [
  19347. {
  19348. name: "Normal",
  19349. height: math.unit(5 + 7 / 12, "feet")
  19350. },
  19351. {
  19352. name: "Macro",
  19353. height: math.unit(137, "feet"),
  19354. default: true
  19355. },
  19356. {
  19357. name: "Megamacro",
  19358. height: math.unit(1, "mile")
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19364. {
  19365. front: {
  19366. height: math.unit(6 + 1 / 12, "feet"),
  19367. weight: math.unit(200, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/neil/front.svg",
  19371. extra: 1326 / 1250,
  19372. bottom: 0.023
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(6 + 1 / 12, "feet"),
  19380. default: true
  19381. },
  19382. {
  19383. name: "Macro",
  19384. height: math.unit(200, "feet")
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(5 + 9 / 12, "feet"),
  19393. weight: math.unit(190, "lb"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/atticus/front.svg",
  19397. extra: 2934 / 2785,
  19398. bottom: 0.025
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(5 + 9 / 12, "feet"),
  19406. default: true
  19407. },
  19408. {
  19409. name: "Macro",
  19410. height: math.unit(180, "feet")
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19416. {
  19417. side: {
  19418. height: math.unit(9, "feet"),
  19419. weight: math.unit(650, "lb"),
  19420. name: "Side",
  19421. image: {
  19422. source: "./media/characters/milo/side.svg",
  19423. extra: 2644 / 2310,
  19424. bottom: 0.032
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(9, "feet"),
  19432. default: true
  19433. },
  19434. {
  19435. name: "Macro",
  19436. height: math.unit(300, "feet")
  19437. },
  19438. ]
  19439. ))
  19440. characterMakers.push(() => makeCharacter(
  19441. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19442. {
  19443. side: {
  19444. height: math.unit(8, "meters"),
  19445. weight: math.unit(90000, "kg"),
  19446. name: "Side",
  19447. image: {
  19448. source: "./media/characters/ijzer/side.svg",
  19449. extra: 2756 / 1600,
  19450. bottom: 0.01
  19451. }
  19452. },
  19453. },
  19454. [
  19455. {
  19456. name: "Small",
  19457. height: math.unit(3, "meters")
  19458. },
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(8, "meters"),
  19462. default: true
  19463. },
  19464. {
  19465. name: "Normal+",
  19466. height: math.unit(10, "meters")
  19467. },
  19468. {
  19469. name: "Bigger",
  19470. height: math.unit(24, "meters")
  19471. },
  19472. {
  19473. name: "Huge",
  19474. height: math.unit(80, "meters")
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19480. {
  19481. front: {
  19482. height: math.unit(6 + 2 / 12, "feet"),
  19483. weight: math.unit(153, "lb"),
  19484. name: "Front",
  19485. image: {
  19486. source: "./media/characters/luca-cervicum/front.svg",
  19487. extra: 370 / 327,
  19488. bottom: 0.015
  19489. }
  19490. },
  19491. back: {
  19492. height: math.unit(6 + 2 / 12, "feet"),
  19493. weight: math.unit(153, "lb"),
  19494. name: "Back",
  19495. image: {
  19496. source: "./media/characters/luca-cervicum/back.svg",
  19497. extra: 367 / 333,
  19498. bottom: 0.005
  19499. }
  19500. },
  19501. frontGear: {
  19502. height: math.unit(6 + 2 / 12, "feet"),
  19503. weight: math.unit(173, "lb"),
  19504. name: "Front (Gear)",
  19505. image: {
  19506. source: "./media/characters/luca-cervicum/front-gear.svg",
  19507. extra: 377 / 333,
  19508. bottom: 0.006
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(6 + 2 / 12, "feet"),
  19516. default: true
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19522. {
  19523. front: {
  19524. height: math.unit(6 + 1 / 12, "feet"),
  19525. weight: math.unit(304, "lb"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/oliver/front.svg",
  19529. extra: 157 / 143,
  19530. bottom: 0.08
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(6 + 1 / 12, "feet"),
  19538. default: true
  19539. },
  19540. ]
  19541. ))
  19542. characterMakers.push(() => makeCharacter(
  19543. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19544. {
  19545. front: {
  19546. height: math.unit(5 + 7 / 12, "feet"),
  19547. weight: math.unit(140, "lb"),
  19548. name: "Front",
  19549. image: {
  19550. source: "./media/characters/shane/front.svg",
  19551. extra: 304 / 289,
  19552. bottom: 0.005
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(5 + 7 / 12, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(5 + 9 / 12, "feet"),
  19569. weight: math.unit(178, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/shin/front.svg",
  19573. extra: 159 / 151,
  19574. bottom: 0.015
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(5 + 9 / 12, "feet"),
  19582. default: true
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(5 + 10 / 12, "feet"),
  19591. weight: math.unit(168, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/xerxes/front.svg",
  19595. extra: 282 / 260,
  19596. bottom: 0.045
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(5 + 10 / 12, "feet"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(6 + 7 / 12, "feet"),
  19613. weight: math.unit(208, "lb"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/chaska/front.svg",
  19617. extra: 332 / 319,
  19618. bottom: 0.015
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(6 + 7 / 12, "feet"),
  19626. default: true
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19632. {
  19633. front: {
  19634. height: math.unit(5 + 8 / 12, "feet"),
  19635. weight: math.unit(208, "lb"),
  19636. name: "Front",
  19637. image: {
  19638. source: "./media/characters/enuk/front.svg",
  19639. extra: 437 / 406,
  19640. bottom: 0.02
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(5 + 8 / 12, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(5 + 10 / 12, "feet"),
  19657. weight: math.unit(252, "lb"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/bruun/front.svg",
  19661. extra: 197 / 187,
  19662. bottom: 0.012
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(5 + 10 / 12, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(6 + 10 / 12, "feet"),
  19679. weight: math.unit(255, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/alexeev/front.svg",
  19683. extra: 213 / 200,
  19684. bottom: 0.05
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(6 + 10 / 12, "feet"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(2 + 8 / 12, "feet"),
  19701. weight: math.unit(22, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/evelyn/front.svg",
  19705. extra: 208 / 180
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(2 + 8 / 12, "feet"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(5 + 9 / 12, "feet"),
  19722. weight: math.unit(139, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/inca/front.svg",
  19726. extra: 294 / 291,
  19727. bottom: 0.03
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(5 + 9 / 12, "feet"),
  19735. default: true
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(5 + 1 / 12, "feet"),
  19744. weight: math.unit(84, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/magdalene/front.svg",
  19748. extra: 293 / 273
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(5 + 1 / 12, "feet"),
  19756. default: true
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19762. {
  19763. front: {
  19764. height: math.unit(6 + 3 / 12, "feet"),
  19765. weight: math.unit(185, "lb"),
  19766. name: "Front",
  19767. image: {
  19768. source: "./media/characters/mera/front.svg",
  19769. extra: 291 / 277,
  19770. bottom: 0.03
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(6 + 3 / 12, "feet"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19784. {
  19785. front: {
  19786. height: math.unit(6 + 7 / 12, "feet"),
  19787. weight: math.unit(160, "lb"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/ceres/front.svg",
  19791. extra: 1023 / 950,
  19792. bottom: 0.027
  19793. }
  19794. },
  19795. back: {
  19796. height: math.unit(6 + 7 / 12, "feet"),
  19797. weight: math.unit(160, "lb"),
  19798. name: "Back",
  19799. image: {
  19800. source: "./media/characters/ceres/back.svg",
  19801. extra: 1023 / 950
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(6 + 7 / 12, "feet"),
  19809. default: true
  19810. },
  19811. ]
  19812. ))
  19813. characterMakers.push(() => makeCharacter(
  19814. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19815. {
  19816. front: {
  19817. height: math.unit(5 + 10 / 12, "feet"),
  19818. weight: math.unit(150, "lb"),
  19819. name: "Front",
  19820. image: {
  19821. source: "./media/characters/kris/front.svg",
  19822. extra: 885 / 803,
  19823. bottom: 0.03
  19824. }
  19825. },
  19826. },
  19827. [
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(5 + 10 / 12, "feet"),
  19831. default: true
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19837. {
  19838. front: {
  19839. height: math.unit(7, "feet"),
  19840. weight: math.unit(120, "kg"),
  19841. name: "Front",
  19842. image: {
  19843. source: "./media/characters/taluthus/front.svg",
  19844. extra: 903 / 833,
  19845. bottom: 0.015
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(7, "feet"),
  19853. default: true
  19854. },
  19855. {
  19856. name: "Macro",
  19857. height: math.unit(300, "feet")
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19863. {
  19864. front: {
  19865. height: math.unit(5 + 9 / 12, "feet"),
  19866. weight: math.unit(145, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/dawn/front.svg",
  19870. extra: 2094 / 2016,
  19871. bottom: 0.025
  19872. }
  19873. },
  19874. back: {
  19875. height: math.unit(5 + 9 / 12, "feet"),
  19876. weight: math.unit(160, "lb"),
  19877. name: "Back",
  19878. image: {
  19879. source: "./media/characters/dawn/back.svg",
  19880. extra: 2112 / 2080,
  19881. bottom: 0.005
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(6 + 7 / 12, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19895. {
  19896. anthro: {
  19897. height: math.unit(8 + 3 / 12, "feet"),
  19898. weight: math.unit(450, "lb"),
  19899. name: "Anthro",
  19900. image: {
  19901. source: "./media/characters/arador/anthro.svg",
  19902. extra: 1835 / 1718,
  19903. bottom: 0.025
  19904. }
  19905. },
  19906. feral: {
  19907. height: math.unit(4, "feet"),
  19908. weight: math.unit(200, "lb"),
  19909. name: "Feral",
  19910. image: {
  19911. source: "./media/characters/arador/feral.svg",
  19912. extra: 1683 / 1514,
  19913. bottom: 0.07
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(8 + 3 / 12, "feet")
  19921. },
  19922. {
  19923. name: "Macro",
  19924. height: math.unit(82.5, "feet"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(5 + 10 / 12, "feet"),
  19934. weight: math.unit(125, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/dharsi/front.svg",
  19938. extra: 716 / 630,
  19939. bottom: 0.035
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Nano",
  19946. height: math.unit(100, "nm")
  19947. },
  19948. {
  19949. name: "Micro",
  19950. height: math.unit(2, "inches")
  19951. },
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(5 + 10 / 12, "feet"),
  19955. default: true
  19956. },
  19957. {
  19958. name: "Macro",
  19959. height: math.unit(1000, "feet")
  19960. },
  19961. {
  19962. name: "Megamacro",
  19963. height: math.unit(10, "miles")
  19964. },
  19965. {
  19966. name: "Gigamacro",
  19967. height: math.unit(3000, "miles")
  19968. },
  19969. {
  19970. name: "Teramacro",
  19971. height: math.unit(500000, "miles")
  19972. },
  19973. {
  19974. name: "Teramacro+",
  19975. height: math.unit(30, "galaxies")
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19981. {
  19982. front: {
  19983. height: math.unit(6, "feet"),
  19984. weight: math.unit(150, "lb"),
  19985. name: "Front",
  19986. image: {
  19987. source: "./media/characters/deathy/front.svg",
  19988. extra: 1552 / 1463,
  19989. bottom: 0.025
  19990. }
  19991. },
  19992. side: {
  19993. height: math.unit(6, "feet"),
  19994. weight: math.unit(150, "lb"),
  19995. name: "Side",
  19996. image: {
  19997. source: "./media/characters/deathy/side.svg",
  19998. extra: 1604 / 1455,
  19999. bottom: 0.025
  20000. }
  20001. },
  20002. back: {
  20003. height: math.unit(6, "feet"),
  20004. weight: math.unit(150, "lb"),
  20005. name: "Back",
  20006. image: {
  20007. source: "./media/characters/deathy/back.svg",
  20008. extra: 1580 / 1463,
  20009. bottom: 0.005
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Micro",
  20016. height: math.unit(5, "millimeters")
  20017. },
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(6 + 5 / 12, "feet"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20027. {
  20028. front: {
  20029. height: math.unit(16, "feet"),
  20030. weight: math.unit(4000, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/juniper/front.svg",
  20034. bottom: 0.04
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(16, "feet"),
  20042. default: true
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20048. {
  20049. front: {
  20050. height: math.unit(6, "feet"),
  20051. weight: math.unit(150, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/hipster/front.svg",
  20055. extra: 1312 / 1209,
  20056. bottom: 0.025
  20057. }
  20058. },
  20059. back: {
  20060. height: math.unit(6, "feet"),
  20061. weight: math.unit(150, "lb"),
  20062. name: "Back",
  20063. image: {
  20064. source: "./media/characters/hipster/back.svg",
  20065. extra: 1281 / 1196,
  20066. bottom: 0.01
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Micro",
  20073. height: math.unit(1, "mm")
  20074. },
  20075. {
  20076. name: "Normal",
  20077. height: math.unit(4, "inches"),
  20078. default: true
  20079. },
  20080. {
  20081. name: "Macro",
  20082. height: math.unit(500, "feet")
  20083. },
  20084. {
  20085. name: "Megamacro",
  20086. height: math.unit(1000, "miles")
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(6, "feet"),
  20095. weight: math.unit(150, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/tendirmuldr/front.svg",
  20099. extra: 1878 / 1772,
  20100. bottom: 0.015
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Megamacro",
  20107. height: math.unit(1500, "miles"),
  20108. default: true
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20114. {
  20115. front: {
  20116. height: math.unit(14, "feet"),
  20117. weight: math.unit(12000, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/mort/front.svg",
  20121. extra: 365 / 318,
  20122. bottom: 0.01
  20123. }
  20124. },
  20125. side: {
  20126. height: math.unit(14, "feet"),
  20127. weight: math.unit(12000, "lb"),
  20128. name: "Side",
  20129. image: {
  20130. source: "./media/characters/mort/side.svg",
  20131. extra: 365 / 318,
  20132. bottom: 0.052
  20133. },
  20134. default: true
  20135. },
  20136. back: {
  20137. height: math.unit(14, "feet"),
  20138. weight: math.unit(12000, "lb"),
  20139. name: "Back",
  20140. image: {
  20141. source: "./media/characters/mort/back.svg",
  20142. extra: 371 / 332,
  20143. bottom: 0.18
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(14, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20157. {
  20158. front: {
  20159. height: math.unit(8, "feet"),
  20160. weight: math.unit(1, "ton"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/lycoa/front.svg",
  20164. extra: 1875 / 1789,
  20165. bottom: 0.022
  20166. }
  20167. },
  20168. back: {
  20169. height: math.unit(8, "feet"),
  20170. weight: math.unit(1, "ton"),
  20171. name: "Back",
  20172. image: {
  20173. source: "./media/characters/lycoa/back.svg",
  20174. extra: 1835 / 1781,
  20175. bottom: 0.03
  20176. }
  20177. },
  20178. head: {
  20179. height: math.unit(2.1, "feet"),
  20180. name: "Head",
  20181. image: {
  20182. source: "./media/characters/lycoa/head.svg"
  20183. }
  20184. },
  20185. tailmaw: {
  20186. height: math.unit(1.9, "feet"),
  20187. name: "Tailmaw",
  20188. image: {
  20189. source: "./media/characters/lycoa/tailmaw.svg"
  20190. }
  20191. },
  20192. tentacles: {
  20193. height: math.unit(2.1, "feet"),
  20194. name: "Tentacles",
  20195. image: {
  20196. source: "./media/characters/lycoa/tentacles.svg"
  20197. }
  20198. },
  20199. dick: {
  20200. height: math.unit(1.73, "feet"),
  20201. name: "Dick",
  20202. image: {
  20203. source: "./media/characters/lycoa/dick.svg"
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(8, "feet"),
  20211. default: true
  20212. },
  20213. {
  20214. name: "Macro",
  20215. height: math.unit(30, "feet")
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20221. {
  20222. front: {
  20223. height: math.unit(4 + 2 / 12, "feet"),
  20224. weight: math.unit(70, "lb"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/naldara/front.svg",
  20228. extra: 841 / 720,
  20229. bottom: 0.04
  20230. }
  20231. },
  20232. naga: {
  20233. height: math.unit(23, "feet"),
  20234. weight: math.unit(15000, "kg"),
  20235. name: "Naga",
  20236. image: {
  20237. source: "./media/characters/naldara/naga.svg",
  20238. extra: 3290 / 2959,
  20239. bottom: 124 / 3432
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(4 + 2 / 12, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20253. {
  20254. front: {
  20255. height: math.unit(13 + 7 / 12, "feet"),
  20256. weight: math.unit(1500, "lb"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/briar/front.svg",
  20260. extra: 626 / 596,
  20261. bottom: 0.08
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(13 + 7 / 12, "feet"),
  20269. default: true
  20270. },
  20271. ]
  20272. ))
  20273. characterMakers.push(() => makeCharacter(
  20274. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20275. {
  20276. side: {
  20277. height: math.unit(10, "feet"),
  20278. weight: math.unit(500, "lb"),
  20279. name: "Side",
  20280. image: {
  20281. source: "./media/characters/vanguard/side.svg",
  20282. extra: 502 / 425,
  20283. bottom: 0.087
  20284. }
  20285. },
  20286. },
  20287. [
  20288. {
  20289. name: "Normal",
  20290. height: math.unit(10, "feet"),
  20291. default: true
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20297. {
  20298. front: {
  20299. height: math.unit(7.5, "feet"),
  20300. weight: math.unit(2, "lb"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/artemis/front.svg",
  20304. extra: 1192 / 1075,
  20305. bottom: 0.07
  20306. }
  20307. },
  20308. frontNsfw: {
  20309. height: math.unit(7.5, "feet"),
  20310. weight: math.unit(2, "lb"),
  20311. name: "Front (NSFW)",
  20312. image: {
  20313. source: "./media/characters/artemis/front-nsfw.svg",
  20314. extra: 1192 / 1075,
  20315. bottom: 0.07
  20316. }
  20317. },
  20318. frontNsfwer: {
  20319. height: math.unit(7.5, "feet"),
  20320. weight: math.unit(2, "lb"),
  20321. name: "Front (NSFW-er)",
  20322. image: {
  20323. source: "./media/characters/artemis/front-nsfwer.svg",
  20324. extra: 1192 / 1075,
  20325. bottom: 0.07
  20326. }
  20327. },
  20328. side: {
  20329. height: math.unit(7.5, "feet"),
  20330. weight: math.unit(2, "lb"),
  20331. name: "Side",
  20332. image: {
  20333. source: "./media/characters/artemis/side.svg",
  20334. extra: 1192 / 1075,
  20335. bottom: 0.07
  20336. }
  20337. },
  20338. sideNsfw: {
  20339. height: math.unit(7.5, "feet"),
  20340. weight: math.unit(2, "lb"),
  20341. name: "Side (NSFW)",
  20342. image: {
  20343. source: "./media/characters/artemis/side-nsfw.svg",
  20344. extra: 1192 / 1075,
  20345. bottom: 0.07
  20346. }
  20347. },
  20348. sideNsfwer: {
  20349. height: math.unit(7.5, "feet"),
  20350. weight: math.unit(2, "lb"),
  20351. name: "Side (NSFW-er)",
  20352. image: {
  20353. source: "./media/characters/artemis/side-nsfwer.svg",
  20354. extra: 1192 / 1075,
  20355. bottom: 0.07
  20356. }
  20357. },
  20358. maw: {
  20359. height: math.unit(1.1, "feet"),
  20360. name: "Maw",
  20361. image: {
  20362. source: "./media/characters/artemis/maw.svg"
  20363. }
  20364. },
  20365. stomach: {
  20366. height: math.unit(0.95, "feet"),
  20367. name: "Stomach",
  20368. image: {
  20369. source: "./media/characters/artemis/stomach.svg"
  20370. }
  20371. },
  20372. dickCanine: {
  20373. height: math.unit(1, "feet"),
  20374. name: "Dick (Canine)",
  20375. image: {
  20376. source: "./media/characters/artemis/dick-canine.svg"
  20377. }
  20378. },
  20379. dickEquine: {
  20380. height: math.unit(0.85, "feet"),
  20381. name: "Dick (Equine)",
  20382. image: {
  20383. source: "./media/characters/artemis/dick-equine.svg"
  20384. }
  20385. },
  20386. dickExotic: {
  20387. height: math.unit(0.85, "feet"),
  20388. name: "Dick (Exotic)",
  20389. image: {
  20390. source: "./media/characters/artemis/dick-exotic.svg"
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(7.5, "feet"),
  20398. default: true
  20399. },
  20400. {
  20401. name: "Enlarged",
  20402. height: math.unit(12, "feet")
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20408. {
  20409. front: {
  20410. height: math.unit(5 + 3 / 12, "feet"),
  20411. weight: math.unit(160, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/kira/front.svg",
  20415. extra: 906 / 786,
  20416. bottom: 0.01
  20417. }
  20418. },
  20419. back: {
  20420. height: math.unit(5 + 3 / 12, "feet"),
  20421. weight: math.unit(160, "lb"),
  20422. name: "Back",
  20423. image: {
  20424. source: "./media/characters/kira/back.svg",
  20425. extra: 882 / 757,
  20426. bottom: 0.005
  20427. }
  20428. },
  20429. frontDressed: {
  20430. height: math.unit(5 + 3 / 12, "feet"),
  20431. weight: math.unit(160, "lb"),
  20432. name: "Front (Dressed)",
  20433. image: {
  20434. source: "./media/characters/kira/front-dressed.svg",
  20435. extra: 906 / 786,
  20436. bottom: 0.01
  20437. }
  20438. },
  20439. beans: {
  20440. height: math.unit(0.92, "feet"),
  20441. name: "Beans",
  20442. image: {
  20443. source: "./media/characters/kira/beans.svg"
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(5 + 3 / 12, "feet"),
  20451. default: true
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20457. {
  20458. front: {
  20459. height: math.unit(5 + 4 / 12, "feet"),
  20460. weight: math.unit(145, "lb"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/scramble/front.svg",
  20464. extra: 763 / 727,
  20465. bottom: 0.05
  20466. }
  20467. },
  20468. back: {
  20469. height: math.unit(5 + 4 / 12, "feet"),
  20470. weight: math.unit(145, "lb"),
  20471. name: "Back",
  20472. image: {
  20473. source: "./media/characters/scramble/back.svg",
  20474. extra: 826 / 737,
  20475. bottom: 0.002
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(5 + 4 / 12, "feet"),
  20483. default: true
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20489. {
  20490. side: {
  20491. height: math.unit(6 + 2 / 12, "feet"),
  20492. weight: math.unit(190, "lb"),
  20493. name: "Side",
  20494. image: {
  20495. source: "./media/characters/biscuit/side.svg",
  20496. extra: 858 / 791,
  20497. bottom: 0.044
  20498. }
  20499. },
  20500. },
  20501. [
  20502. {
  20503. name: "Normal",
  20504. height: math.unit(6 + 2 / 12, "feet"),
  20505. default: true
  20506. },
  20507. ]
  20508. ))
  20509. characterMakers.push(() => makeCharacter(
  20510. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20511. {
  20512. front: {
  20513. height: math.unit(5 + 2 / 12, "feet"),
  20514. weight: math.unit(120, "lb"),
  20515. name: "Front",
  20516. image: {
  20517. source: "./media/characters/poffin/front.svg",
  20518. extra: 786 / 680,
  20519. bottom: 0.005
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(5 + 2 / 12, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(6 + 3 / 12, "feet"),
  20536. weight: math.unit(519, "lb"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/dhari/front.svg",
  20540. extra: 1048 / 946,
  20541. bottom: 0.015
  20542. }
  20543. },
  20544. back: {
  20545. height: math.unit(6 + 3 / 12, "feet"),
  20546. weight: math.unit(519, "lb"),
  20547. name: "Back",
  20548. image: {
  20549. source: "./media/characters/dhari/back.svg",
  20550. extra: 1048 / 931,
  20551. bottom: 0.005
  20552. }
  20553. },
  20554. frontDressed: {
  20555. height: math.unit(6 + 3 / 12, "feet"),
  20556. weight: math.unit(519, "lb"),
  20557. name: "Front (Dressed)",
  20558. image: {
  20559. source: "./media/characters/dhari/front-dressed.svg",
  20560. extra: 1713 / 1546,
  20561. bottom: 0.02
  20562. }
  20563. },
  20564. backDressed: {
  20565. height: math.unit(6 + 3 / 12, "feet"),
  20566. weight: math.unit(519, "lb"),
  20567. name: "Back (Dressed)",
  20568. image: {
  20569. source: "./media/characters/dhari/back-dressed.svg",
  20570. extra: 1699 / 1537,
  20571. bottom: 0.01
  20572. }
  20573. },
  20574. maw: {
  20575. height: math.unit(0.95, "feet"),
  20576. name: "Maw",
  20577. image: {
  20578. source: "./media/characters/dhari/maw.svg"
  20579. }
  20580. },
  20581. wereFront: {
  20582. height: math.unit(12 + 8 / 12, "feet"),
  20583. weight: math.unit(4000, "lb"),
  20584. name: "Front (Were)",
  20585. image: {
  20586. source: "./media/characters/dhari/were-front.svg",
  20587. extra: 1065 / 969,
  20588. bottom: 0.015
  20589. }
  20590. },
  20591. wereBack: {
  20592. height: math.unit(12 + 8 / 12, "feet"),
  20593. weight: math.unit(4000, "lb"),
  20594. name: "Back (Were)",
  20595. image: {
  20596. source: "./media/characters/dhari/were-back.svg",
  20597. extra: 1065 / 969,
  20598. bottom: 0.012
  20599. }
  20600. },
  20601. wereMaw: {
  20602. height: math.unit(0.625, "meters"),
  20603. name: "Maw (Were)",
  20604. image: {
  20605. source: "./media/characters/dhari/were-maw.svg"
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(6 + 3 / 12, "feet"),
  20613. default: true
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20619. {
  20620. anthro: {
  20621. height: math.unit(5 + 7 / 12, "feet"),
  20622. weight: math.unit(175, "lb"),
  20623. name: "Anthro",
  20624. image: {
  20625. source: "./media/characters/rena-dyne/anthro.svg",
  20626. extra: 1849 / 1785,
  20627. bottom: 0.005
  20628. }
  20629. },
  20630. taur: {
  20631. height: math.unit(15 + 6 / 12, "feet"),
  20632. weight: math.unit(8000, "lb"),
  20633. name: "Taur",
  20634. image: {
  20635. source: "./media/characters/rena-dyne/taur.svg",
  20636. extra: 2315 / 2234,
  20637. bottom: 0.033
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(5 + 7 / 12, "feet"),
  20645. default: true
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20651. {
  20652. front: {
  20653. height: math.unit(8, "feet"),
  20654. weight: math.unit(600, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/weremeep/front.svg",
  20658. extra: 967 / 862,
  20659. bottom: 0.01
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(8, "feet"),
  20667. default: true
  20668. },
  20669. {
  20670. name: "Lorg",
  20671. height: math.unit(12, "feet")
  20672. },
  20673. {
  20674. name: "Oh Lawd She Comin'",
  20675. height: math.unit(20, "feet")
  20676. },
  20677. ]
  20678. ))
  20679. characterMakers.push(() => makeCharacter(
  20680. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20681. {
  20682. front: {
  20683. height: math.unit(4, "feet"),
  20684. weight: math.unit(90, "lb"),
  20685. name: "Front",
  20686. image: {
  20687. source: "./media/characters/reza/front.svg",
  20688. extra: 1183 / 1111,
  20689. bottom: 0.017
  20690. }
  20691. },
  20692. back: {
  20693. height: math.unit(4, "feet"),
  20694. weight: math.unit(90, "lb"),
  20695. name: "Back",
  20696. image: {
  20697. source: "./media/characters/reza/back.svg",
  20698. extra: 1183 / 1111,
  20699. bottom: 0.01
  20700. }
  20701. },
  20702. drake: {
  20703. height: math.unit(30, "feet"),
  20704. weight: math.unit(246960, "lb"),
  20705. name: "Drake",
  20706. image: {
  20707. source: "./media/characters/reza/drake.svg",
  20708. extra: 2350 / 2024,
  20709. bottom: 60.7 / 2403
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(4, "feet"),
  20717. default: true
  20718. },
  20719. ]
  20720. ))
  20721. characterMakers.push(() => makeCharacter(
  20722. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20723. {
  20724. side: {
  20725. height: math.unit(15, "feet"),
  20726. weight: math.unit(14, "tons"),
  20727. name: "Side",
  20728. image: {
  20729. source: "./media/characters/athea/side.svg",
  20730. extra: 960 / 540,
  20731. bottom: 0.003
  20732. }
  20733. },
  20734. sitting: {
  20735. height: math.unit(6 * 2.85, "feet"),
  20736. weight: math.unit(14, "tons"),
  20737. name: "Sitting",
  20738. image: {
  20739. source: "./media/characters/athea/sitting.svg",
  20740. extra: 621 / 581,
  20741. bottom: 0.075
  20742. }
  20743. },
  20744. maw: {
  20745. height: math.unit(7.59498031496063, "feet"),
  20746. name: "Maw",
  20747. image: {
  20748. source: "./media/characters/athea/maw.svg"
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Lap Cat",
  20755. height: math.unit(2.5, "feet")
  20756. },
  20757. {
  20758. name: "Minimacro",
  20759. height: math.unit(15, "feet"),
  20760. default: true
  20761. },
  20762. {
  20763. name: "Macro",
  20764. height: math.unit(120, "feet")
  20765. },
  20766. {
  20767. name: "Macro+",
  20768. height: math.unit(640, "feet")
  20769. },
  20770. {
  20771. name: "Colossus",
  20772. height: math.unit(2.2, "miles")
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20778. {
  20779. front: {
  20780. height: math.unit(8 + 8 / 12, "feet"),
  20781. weight: math.unit(130, "kg"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/seroko/front.svg",
  20785. extra: 1385 / 1280,
  20786. bottom: 0.025
  20787. }
  20788. },
  20789. back: {
  20790. height: math.unit(8 + 8 / 12, "feet"),
  20791. weight: math.unit(130, "kg"),
  20792. name: "Back",
  20793. image: {
  20794. source: "./media/characters/seroko/back.svg",
  20795. extra: 1369 / 1238,
  20796. bottom: 0.018
  20797. }
  20798. },
  20799. frontDressed: {
  20800. height: math.unit(8 + 8 / 12, "feet"),
  20801. weight: math.unit(130, "kg"),
  20802. name: "Front (Dressed)",
  20803. image: {
  20804. source: "./media/characters/seroko/front-dressed.svg",
  20805. extra: 1366 / 1275,
  20806. bottom: 0.03
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(8 + 8 / 12, "feet"),
  20814. default: true
  20815. },
  20816. ]
  20817. ))
  20818. characterMakers.push(() => makeCharacter(
  20819. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20820. {
  20821. front: {
  20822. height: math.unit(5.5, "feet"),
  20823. weight: math.unit(160, "lb"),
  20824. name: "Front",
  20825. image: {
  20826. source: "./media/characters/quatzi/front.svg",
  20827. extra: 2346 / 2242,
  20828. bottom: 0.015
  20829. }
  20830. },
  20831. },
  20832. [
  20833. {
  20834. name: "Normal",
  20835. height: math.unit(5.5, "feet"),
  20836. default: true
  20837. },
  20838. {
  20839. name: "Big",
  20840. height: math.unit(7.7, "feet")
  20841. },
  20842. ]
  20843. ))
  20844. characterMakers.push(() => makeCharacter(
  20845. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20846. {
  20847. front: {
  20848. height: math.unit(5 + 11 / 12, "feet"),
  20849. weight: math.unit(180, "lb"),
  20850. name: "Front",
  20851. image: {
  20852. source: "./media/characters/sen/front.svg",
  20853. extra: 1321 / 1254,
  20854. bottom: 0.015
  20855. }
  20856. },
  20857. side: {
  20858. height: math.unit(5 + 11 / 12, "feet"),
  20859. weight: math.unit(180, "lb"),
  20860. name: "Side",
  20861. image: {
  20862. source: "./media/characters/sen/side.svg",
  20863. extra: 1321 / 1254,
  20864. bottom: 0.007
  20865. }
  20866. },
  20867. back: {
  20868. height: math.unit(5 + 11 / 12, "feet"),
  20869. weight: math.unit(180, "lb"),
  20870. name: "Back",
  20871. image: {
  20872. source: "./media/characters/sen/back.svg",
  20873. extra: 1321 / 1254
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(5 + 11 / 12, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20887. {
  20888. front: {
  20889. height: math.unit(166.6, "cm"),
  20890. weight: math.unit(66.6, "kg"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/fruity/front.svg",
  20894. extra: 1510 / 1386,
  20895. bottom: 0.04
  20896. }
  20897. },
  20898. back: {
  20899. height: math.unit(166.6, "cm"),
  20900. weight: math.unit(66.6, "lb"),
  20901. name: "Back",
  20902. image: {
  20903. source: "./media/characters/fruity/back.svg",
  20904. extra: 1563 / 1435,
  20905. bottom: 0.005
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(166.6, "cm"),
  20913. default: true
  20914. },
  20915. {
  20916. name: "Demonic",
  20917. height: math.unit(166.6, "feet")
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20923. {
  20924. side: {
  20925. height: math.unit(10, "feet"),
  20926. weight: math.unit(500, "lb"),
  20927. name: "Side",
  20928. image: {
  20929. source: "./media/characters/zost/side.svg",
  20930. extra: 966 / 880,
  20931. bottom: 0.075
  20932. }
  20933. },
  20934. mawFront: {
  20935. height: math.unit(1.08, "meters"),
  20936. name: "Maw (Front)",
  20937. image: {
  20938. source: "./media/characters/zost/maw-front.svg"
  20939. }
  20940. },
  20941. mawSide: {
  20942. height: math.unit(2.66, "feet"),
  20943. name: "Maw (Side)",
  20944. image: {
  20945. source: "./media/characters/zost/maw-side.svg"
  20946. }
  20947. },
  20948. },
  20949. [
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(10, "feet"),
  20953. default: true
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(5 + 4 / 12, "feet"),
  20962. weight: math.unit(120, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/luci/front.svg",
  20966. extra: 1985 / 1884,
  20967. bottom: 0.04
  20968. }
  20969. },
  20970. back: {
  20971. height: math.unit(5 + 4 / 12, "feet"),
  20972. weight: math.unit(120, "lb"),
  20973. name: "Back",
  20974. image: {
  20975. source: "./media/characters/luci/back.svg",
  20976. extra: 1892 / 1791,
  20977. bottom: 0.002
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(5 + 4 / 12, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20991. {
  20992. front: {
  20993. height: math.unit(1500, "feet"),
  20994. weight: math.unit(3.8e6, "tons"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/2th/front.svg",
  20998. extra: 3489 / 3350,
  20999. bottom: 0.1
  21000. }
  21001. },
  21002. foot: {
  21003. height: math.unit(461, "feet"),
  21004. name: "Foot",
  21005. image: {
  21006. source: "./media/characters/2th/foot.svg"
  21007. }
  21008. },
  21009. },
  21010. [
  21011. {
  21012. name: "\"Micro\"",
  21013. height: math.unit(15 + 7 / 12, "feet")
  21014. },
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(1500, "feet"),
  21018. default: true
  21019. },
  21020. {
  21021. name: "Macro",
  21022. height: math.unit(5000, "feet")
  21023. },
  21024. {
  21025. name: "Megamacro",
  21026. height: math.unit(15, "miles")
  21027. },
  21028. {
  21029. name: "Gigamacro",
  21030. height: math.unit(4000, "miles")
  21031. },
  21032. {
  21033. name: "Galactic",
  21034. height: math.unit(50, "AU")
  21035. },
  21036. ]
  21037. ))
  21038. characterMakers.push(() => makeCharacter(
  21039. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21040. {
  21041. front: {
  21042. height: math.unit(5 + 6 / 12, "feet"),
  21043. weight: math.unit(220, "lb"),
  21044. name: "Front",
  21045. image: {
  21046. source: "./media/characters/amethyst/front.svg",
  21047. extra: 2078 / 2040,
  21048. bottom: 0.045
  21049. }
  21050. },
  21051. back: {
  21052. height: math.unit(5 + 6 / 12, "feet"),
  21053. weight: math.unit(220, "lb"),
  21054. name: "Back",
  21055. image: {
  21056. source: "./media/characters/amethyst/back.svg",
  21057. extra: 2021 / 1989,
  21058. bottom: 0.02
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(5 + 6 / 12, "feet"),
  21066. default: true
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(4 + 11 / 12, "feet"),
  21075. weight: math.unit(120, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/yumi-akiyama/front.svg",
  21079. extra: 1327 / 1235,
  21080. bottom: 0.02
  21081. }
  21082. },
  21083. back: {
  21084. height: math.unit(4 + 11 / 12, "feet"),
  21085. weight: math.unit(120, "lb"),
  21086. name: "Back",
  21087. image: {
  21088. source: "./media/characters/yumi-akiyama/back.svg",
  21089. extra: 1287 / 1245,
  21090. bottom: 0.002
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Galactic",
  21097. height: math.unit(50, "galaxies"),
  21098. default: true
  21099. },
  21100. {
  21101. name: "Universal",
  21102. height: math.unit(100, "universes")
  21103. },
  21104. ]
  21105. ))
  21106. characterMakers.push(() => makeCharacter(
  21107. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21108. {
  21109. front: {
  21110. height: math.unit(8, "feet"),
  21111. weight: math.unit(500, "lb"),
  21112. name: "Front",
  21113. image: {
  21114. source: "./media/characters/rifter-yrmori/front.svg",
  21115. extra: 1180 / 1125,
  21116. bottom: 0.02
  21117. }
  21118. },
  21119. back: {
  21120. height: math.unit(8, "feet"),
  21121. weight: math.unit(500, "lb"),
  21122. name: "Back",
  21123. image: {
  21124. source: "./media/characters/rifter-yrmori/back.svg",
  21125. extra: 1190 / 1145,
  21126. bottom: 0.001
  21127. }
  21128. },
  21129. wings: {
  21130. height: math.unit(7.75, "feet"),
  21131. weight: math.unit(500, "lb"),
  21132. name: "Wings",
  21133. image: {
  21134. source: "./media/characters/rifter-yrmori/wings.svg",
  21135. extra: 1357 / 1285
  21136. }
  21137. },
  21138. maw: {
  21139. height: math.unit(0.8, "feet"),
  21140. name: "Maw",
  21141. image: {
  21142. source: "./media/characters/rifter-yrmori/maw.svg"
  21143. }
  21144. },
  21145. mawfront: {
  21146. height: math.unit(1.45, "feet"),
  21147. name: "Maw (Front)",
  21148. image: {
  21149. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21150. }
  21151. },
  21152. },
  21153. [
  21154. {
  21155. name: "Normal",
  21156. height: math.unit(8, "feet"),
  21157. default: true
  21158. },
  21159. {
  21160. name: "Macro",
  21161. height: math.unit(42, "meters")
  21162. },
  21163. ]
  21164. ))
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21167. {
  21168. were: {
  21169. height: math.unit(25 + 6 / 12, "feet"),
  21170. weight: math.unit(10000, "lb"),
  21171. name: "Were",
  21172. image: {
  21173. source: "./media/characters/tahajin/were.svg",
  21174. extra: 801 / 770,
  21175. bottom: 0.042
  21176. }
  21177. },
  21178. aquatic: {
  21179. height: math.unit(6 + 4 / 12, "feet"),
  21180. weight: math.unit(160, "lb"),
  21181. name: "Aquatic",
  21182. image: {
  21183. source: "./media/characters/tahajin/aquatic.svg",
  21184. extra: 572 / 542,
  21185. bottom: 0.04
  21186. }
  21187. },
  21188. chow: {
  21189. height: math.unit(8 + 11 / 12, "feet"),
  21190. weight: math.unit(450, "lb"),
  21191. name: "Chow",
  21192. image: {
  21193. source: "./media/characters/tahajin/chow.svg",
  21194. extra: 660 / 640,
  21195. bottom: 0.015
  21196. }
  21197. },
  21198. demiNaga: {
  21199. height: math.unit(6 + 8 / 12, "feet"),
  21200. weight: math.unit(300, "lb"),
  21201. name: "Demi Naga",
  21202. image: {
  21203. source: "./media/characters/tahajin/demi-naga.svg",
  21204. extra: 643 / 615,
  21205. bottom: 0.1
  21206. }
  21207. },
  21208. data: {
  21209. height: math.unit(5, "inches"),
  21210. weight: math.unit(0.1, "lb"),
  21211. name: "Data",
  21212. image: {
  21213. source: "./media/characters/tahajin/data.svg"
  21214. }
  21215. },
  21216. fluu: {
  21217. height: math.unit(5 + 7 / 12, "feet"),
  21218. weight: math.unit(140, "lb"),
  21219. name: "Fluu",
  21220. image: {
  21221. source: "./media/characters/tahajin/fluu.svg",
  21222. extra: 628 / 592,
  21223. bottom: 0.02
  21224. }
  21225. },
  21226. starWarrior: {
  21227. height: math.unit(4 + 5 / 12, "feet"),
  21228. weight: math.unit(50, "lb"),
  21229. name: "Star Warrior",
  21230. image: {
  21231. source: "./media/characters/tahajin/star-warrior.svg"
  21232. }
  21233. },
  21234. },
  21235. [
  21236. {
  21237. name: "Normal",
  21238. height: math.unit(25 + 6 / 12, "feet"),
  21239. default: true
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21245. {
  21246. front: {
  21247. height: math.unit(8, "feet"),
  21248. weight: math.unit(350, "lb"),
  21249. name: "Front",
  21250. image: {
  21251. source: "./media/characters/gabira/front.svg",
  21252. extra: 608 / 580,
  21253. bottom: 0.03
  21254. }
  21255. },
  21256. back: {
  21257. height: math.unit(8, "feet"),
  21258. weight: math.unit(350, "lb"),
  21259. name: "Back",
  21260. image: {
  21261. source: "./media/characters/gabira/back.svg",
  21262. extra: 608 / 580,
  21263. bottom: 0.03
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(8, "feet"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(5 + 3 / 12, "feet"),
  21280. weight: math.unit(137, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/sasha-katraine/front.svg",
  21284. bottom: 0.045
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Micro",
  21291. height: math.unit(5, "inches")
  21292. },
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(5 + 3 / 12, "feet"),
  21296. default: true
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21302. {
  21303. side: {
  21304. height: math.unit(4, "inches"),
  21305. weight: math.unit(200, "grams"),
  21306. name: "Side",
  21307. image: {
  21308. source: "./media/characters/der/side.svg",
  21309. extra: 719 / 400,
  21310. bottom: 30.6 / 749.9187
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Micro",
  21317. height: math.unit(4, "inches"),
  21318. default: true
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21324. {
  21325. side: {
  21326. height: math.unit(30, "meters"),
  21327. weight: math.unit(700, "tonnes"),
  21328. name: "Side",
  21329. image: {
  21330. source: "./media/characters/fixerdragon/side.svg",
  21331. extra: (1293.0514 - 116.03) / 1106.86,
  21332. bottom: 116.03 / 1293.0514
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Planck",
  21339. height: math.unit(1.6e-35, "meters")
  21340. },
  21341. {
  21342. name: "Micro",
  21343. height: math.unit(0.4, "meters")
  21344. },
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(30, "meters"),
  21348. default: true
  21349. },
  21350. {
  21351. name: "Megamacro",
  21352. height: math.unit(1.2, "megameters")
  21353. },
  21354. {
  21355. name: "Teramacro",
  21356. height: math.unit(130, "terameters")
  21357. },
  21358. {
  21359. name: "Yottamacro",
  21360. height: math.unit(6200, "yottameters")
  21361. },
  21362. ]
  21363. ));
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(8, "feet"),
  21369. weight: math.unit(250, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/kite/front.svg",
  21373. extra: 2796 / 2659,
  21374. bottom: 0.002
  21375. }
  21376. },
  21377. },
  21378. [
  21379. {
  21380. name: "Normal",
  21381. height: math.unit(8, "feet"),
  21382. default: true
  21383. },
  21384. {
  21385. name: "Macro",
  21386. height: math.unit(360, "feet")
  21387. },
  21388. {
  21389. name: "Megamacro",
  21390. height: math.unit(1500, "feet")
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21396. {
  21397. front: {
  21398. height: math.unit(5 + 10 / 12, "feet"),
  21399. weight: math.unit(150, "lb"),
  21400. name: "Front",
  21401. image: {
  21402. source: "./media/characters/poojawa-vynar/front.svg",
  21403. extra: (1506.1547 - 55) / 1356.6,
  21404. bottom: 55 / 1506.1547
  21405. }
  21406. },
  21407. frontTailless: {
  21408. height: math.unit(5 + 10 / 12, "feet"),
  21409. weight: math.unit(150, "lb"),
  21410. name: "Front (Tailless)",
  21411. image: {
  21412. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21413. extra: (1506.1547 - 55) / 1356.6,
  21414. bottom: 55 / 1506.1547
  21415. }
  21416. },
  21417. },
  21418. [
  21419. {
  21420. name: "Normal",
  21421. height: math.unit(5 + 10 / 12, "feet"),
  21422. default: true
  21423. },
  21424. ]
  21425. ))
  21426. characterMakers.push(() => makeCharacter(
  21427. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21428. {
  21429. front: {
  21430. height: math.unit(293, "meters"),
  21431. weight: math.unit(70400, "tons"),
  21432. name: "Front",
  21433. image: {
  21434. source: "./media/characters/violette/front.svg",
  21435. extra: 1227 / 1180,
  21436. bottom: 0.005
  21437. }
  21438. },
  21439. back: {
  21440. height: math.unit(293, "meters"),
  21441. weight: math.unit(70400, "tons"),
  21442. name: "Back",
  21443. image: {
  21444. source: "./media/characters/violette/back.svg",
  21445. extra: 1227 / 1180,
  21446. bottom: 0.005
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Macro",
  21453. height: math.unit(293, "meters"),
  21454. default: true
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21460. {
  21461. front: {
  21462. height: math.unit(1050, "feet"),
  21463. weight: math.unit(200000, "tons"),
  21464. name: "Front",
  21465. image: {
  21466. source: "./media/characters/alessandra/front.svg",
  21467. extra: 960 / 912,
  21468. bottom: 0.06
  21469. }
  21470. },
  21471. },
  21472. [
  21473. {
  21474. name: "Macro",
  21475. height: math.unit(1050, "feet")
  21476. },
  21477. {
  21478. name: "Macro+",
  21479. height: math.unit(900, "meters"),
  21480. default: true
  21481. },
  21482. ]
  21483. ))
  21484. characterMakers.push(() => makeCharacter(
  21485. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21486. {
  21487. front: {
  21488. height: math.unit(5, "feet"),
  21489. weight: math.unit(187, "lb"),
  21490. name: "Front",
  21491. image: {
  21492. source: "./media/characters/person/front.svg",
  21493. extra: 3087 / 2945,
  21494. bottom: 91 / 3181
  21495. }
  21496. },
  21497. },
  21498. [
  21499. {
  21500. name: "Micro",
  21501. height: math.unit(3, "inches")
  21502. },
  21503. {
  21504. name: "Normal",
  21505. height: math.unit(5, "feet"),
  21506. default: true
  21507. },
  21508. {
  21509. name: "Macro",
  21510. height: math.unit(90, "feet")
  21511. },
  21512. {
  21513. name: "Max Size",
  21514. height: math.unit(280, "feet")
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21520. {
  21521. front: {
  21522. height: math.unit(4.5, "meters"),
  21523. weight: math.unit(3200, "lb"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/ty/front.svg",
  21527. extra: 1038 / 960,
  21528. bottom: 31.156 / 1068
  21529. }
  21530. },
  21531. back: {
  21532. height: math.unit(4.5, "meters"),
  21533. weight: math.unit(3200, "lb"),
  21534. name: "Back",
  21535. image: {
  21536. source: "./media/characters/ty/back.svg",
  21537. extra: 1044 / 966,
  21538. bottom: 7.48 / 1049
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(4.5, "meters"),
  21546. default: true
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21552. {
  21553. front: {
  21554. height: math.unit(5 + 4 / 12, "feet"),
  21555. weight: math.unit(115, "lb"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/rocky/front.svg",
  21559. extra: 1012 / 975,
  21560. bottom: 54 / 1066
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(5 + 4 / 12, "feet"),
  21568. default: true
  21569. },
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21574. {
  21575. upright: {
  21576. height: math.unit(6, "meters"),
  21577. weight: math.unit(4000, "kg"),
  21578. name: "Upright",
  21579. image: {
  21580. source: "./media/characters/ruin/upright.svg",
  21581. extra: 668 / 661,
  21582. bottom: 42 / 799.8396
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Normal",
  21589. height: math.unit(6, "meters"),
  21590. default: true
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(5, "feet"),
  21599. weight: math.unit(106, "lb"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/robin/front.svg",
  21603. extra: 862 / 799,
  21604. bottom: 42.4 / 914.8856
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(5, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21618. {
  21619. side: {
  21620. height: math.unit(3, "feet"),
  21621. weight: math.unit(225, "lb"),
  21622. name: "Side",
  21623. image: {
  21624. source: "./media/characters/saian/side.svg",
  21625. extra: 566 / 356,
  21626. bottom: 79.7 / 643
  21627. }
  21628. },
  21629. maw: {
  21630. height: math.unit(2.85, "feet"),
  21631. name: "Maw",
  21632. image: {
  21633. source: "./media/characters/saian/maw.svg"
  21634. }
  21635. },
  21636. },
  21637. [
  21638. {
  21639. name: "Normal",
  21640. height: math.unit(3, "feet"),
  21641. default: true
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21647. {
  21648. side: {
  21649. height: math.unit(8, "feet"),
  21650. weight: math.unit(300, "lb"),
  21651. name: "Side",
  21652. image: {
  21653. source: "./media/characters/equus-silvermane/side.svg",
  21654. extra: 2176 / 2050,
  21655. bottom: 65.7 / 2245
  21656. }
  21657. },
  21658. front: {
  21659. height: math.unit(8, "feet"),
  21660. weight: math.unit(300, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/equus-silvermane/front.svg",
  21664. extra: 4633 / 4400,
  21665. bottom: 71.3 / 4706.915
  21666. }
  21667. },
  21668. sideStepping: {
  21669. height: math.unit(8, "feet"),
  21670. weight: math.unit(300, "lb"),
  21671. name: "Side (Stepping)",
  21672. image: {
  21673. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21674. extra: 1968 / 1860,
  21675. bottom: 16.4 / 1989
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Normal",
  21682. height: math.unit(8, "feet")
  21683. },
  21684. {
  21685. name: "Minimacro",
  21686. height: math.unit(75, "feet"),
  21687. default: true
  21688. },
  21689. {
  21690. name: "Macro",
  21691. height: math.unit(150, "feet")
  21692. },
  21693. {
  21694. name: "Macro+",
  21695. height: math.unit(1000, "feet")
  21696. },
  21697. {
  21698. name: "Megamacro",
  21699. height: math.unit(1, "mile")
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21705. {
  21706. side: {
  21707. height: math.unit(20, "feet"),
  21708. weight: math.unit(30000, "kg"),
  21709. name: "Side",
  21710. image: {
  21711. source: "./media/characters/windar/side.svg",
  21712. extra: 1491 / 1248,
  21713. bottom: 82.56 / 1568
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(20, "feet"),
  21721. default: true
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21727. {
  21728. side: {
  21729. height: math.unit(15.66, "feet"),
  21730. weight: math.unit(150, "lb"),
  21731. name: "Side",
  21732. image: {
  21733. source: "./media/characters/melody/side.svg",
  21734. extra: 1097 / 944,
  21735. bottom: 11.8 / 1109
  21736. }
  21737. },
  21738. sideOutfit: {
  21739. height: math.unit(15.66, "feet"),
  21740. weight: math.unit(150, "lb"),
  21741. name: "Side (Outfit)",
  21742. image: {
  21743. source: "./media/characters/melody/side-outfit.svg",
  21744. extra: 1097 / 944,
  21745. bottom: 11.8 / 1109
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Normal",
  21752. height: math.unit(15.66, "feet"),
  21753. default: true
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21759. {
  21760. front: {
  21761. height: math.unit(8, "feet"),
  21762. weight: math.unit(325, "lb"),
  21763. name: "Front",
  21764. image: {
  21765. source: "./media/characters/windera/front.svg",
  21766. extra: 3180 / 2845,
  21767. bottom: 178 / 3365
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Normal",
  21774. height: math.unit(8, "feet"),
  21775. default: true
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21781. {
  21782. front: {
  21783. height: math.unit(28.75, "feet"),
  21784. weight: math.unit(2000, "kg"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/sonear/front.svg",
  21788. extra: 1041.1 / 964.9,
  21789. bottom: 53.7 / 1096.6
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(28.75, "feet"),
  21797. default: true
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21803. {
  21804. side: {
  21805. height: math.unit(25.5, "feet"),
  21806. weight: math.unit(23000, "kg"),
  21807. name: "Side",
  21808. image: {
  21809. source: "./media/characters/kanara/side.svg"
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(25.5, "feet"),
  21817. default: true
  21818. },
  21819. ]
  21820. ))
  21821. characterMakers.push(() => makeCharacter(
  21822. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21823. {
  21824. side: {
  21825. height: math.unit(10, "feet"),
  21826. weight: math.unit(1000, "kg"),
  21827. name: "Side",
  21828. image: {
  21829. source: "./media/characters/ereus/side.svg",
  21830. extra: 1157 / 959,
  21831. bottom: 153 / 1312.5
  21832. }
  21833. },
  21834. },
  21835. [
  21836. {
  21837. name: "Normal",
  21838. height: math.unit(10, "feet"),
  21839. default: true
  21840. },
  21841. ]
  21842. ))
  21843. characterMakers.push(() => makeCharacter(
  21844. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21845. {
  21846. side: {
  21847. height: math.unit(4.5, "feet"),
  21848. weight: math.unit(500, "lb"),
  21849. name: "Side",
  21850. image: {
  21851. source: "./media/characters/e-ter/side.svg",
  21852. extra: 1550 / 1248,
  21853. bottom: 146 / 1694
  21854. }
  21855. },
  21856. },
  21857. [
  21858. {
  21859. name: "Normal",
  21860. height: math.unit(4.5, "feet"),
  21861. default: true
  21862. },
  21863. ]
  21864. ))
  21865. characterMakers.push(() => makeCharacter(
  21866. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21867. {
  21868. side: {
  21869. height: math.unit(9.7, "feet"),
  21870. weight: math.unit(4000, "kg"),
  21871. name: "Side",
  21872. image: {
  21873. source: "./media/characters/yamie/side.svg"
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(9.7, "feet"),
  21881. default: true
  21882. },
  21883. ]
  21884. ))
  21885. characterMakers.push(() => makeCharacter(
  21886. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21887. {
  21888. front: {
  21889. height: math.unit(50, "feet"),
  21890. weight: math.unit(50000, "kg"),
  21891. name: "Front",
  21892. image: {
  21893. source: "./media/characters/anders/front.svg",
  21894. extra: 570 / 539,
  21895. bottom: 14.7 / 586.7
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Large",
  21902. height: math.unit(50, "feet")
  21903. },
  21904. {
  21905. name: "Macro",
  21906. height: math.unit(2000, "feet"),
  21907. default: true
  21908. },
  21909. {
  21910. name: "Megamacro",
  21911. height: math.unit(12, "miles")
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21917. {
  21918. front: {
  21919. height: math.unit(7 + 2 / 12, "feet"),
  21920. weight: math.unit(300, "lb"),
  21921. name: "Front",
  21922. image: {
  21923. source: "./media/characters/reban/front.svg",
  21924. extra: 516 / 487,
  21925. bottom: 42.82 / 558.356
  21926. }
  21927. },
  21928. dick: {
  21929. height: math.unit(7 / 5, "feet"),
  21930. name: "Dick",
  21931. image: {
  21932. source: "./media/characters/reban/dick.svg"
  21933. }
  21934. },
  21935. },
  21936. [
  21937. {
  21938. name: "Natural Height",
  21939. height: math.unit(7 + 2 / 12, "feet")
  21940. },
  21941. {
  21942. name: "Macro",
  21943. height: math.unit(500, "feet"),
  21944. default: true
  21945. },
  21946. {
  21947. name: "Canon Height",
  21948. height: math.unit(50, "AU")
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21954. {
  21955. front: {
  21956. height: math.unit(6, "feet"),
  21957. weight: math.unit(150, "lb"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/terrance-keayes/front.svg",
  21961. extra: 1.005,
  21962. bottom: 151 / 1615
  21963. }
  21964. },
  21965. side: {
  21966. height: math.unit(6, "feet"),
  21967. weight: math.unit(150, "lb"),
  21968. name: "Side",
  21969. image: {
  21970. source: "./media/characters/terrance-keayes/side.svg",
  21971. extra: 1.005,
  21972. bottom: 129.4 / 1544
  21973. }
  21974. },
  21975. back: {
  21976. height: math.unit(6, "feet"),
  21977. weight: math.unit(150, "lb"),
  21978. name: "Back",
  21979. image: {
  21980. source: "./media/characters/terrance-keayes/back.svg",
  21981. extra: 1.005,
  21982. bottom: 58.4 / 1557.3
  21983. }
  21984. },
  21985. dick: {
  21986. height: math.unit(6 * 0.208, "feet"),
  21987. name: "Dick",
  21988. image: {
  21989. source: "./media/characters/terrance-keayes/dick.svg"
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Canon Height",
  21996. height: math.unit(35, "miles"),
  21997. default: true
  21998. },
  21999. ]
  22000. ))
  22001. characterMakers.push(() => makeCharacter(
  22002. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22003. {
  22004. front: {
  22005. height: math.unit(6, "feet"),
  22006. weight: math.unit(150, "lb"),
  22007. name: "Front",
  22008. image: {
  22009. source: "./media/characters/ofelia/front.svg",
  22010. extra: 546 / 541,
  22011. bottom: 39 / 583
  22012. }
  22013. },
  22014. back: {
  22015. height: math.unit(6, "feet"),
  22016. weight: math.unit(150, "lb"),
  22017. name: "Back",
  22018. image: {
  22019. source: "./media/characters/ofelia/back.svg",
  22020. extra: 564 / 559.5,
  22021. bottom: 8.69 / 573.02
  22022. }
  22023. },
  22024. maw: {
  22025. height: math.unit(1, "feet"),
  22026. name: "Maw",
  22027. image: {
  22028. source: "./media/characters/ofelia/maw.svg"
  22029. }
  22030. },
  22031. foot: {
  22032. height: math.unit(1.949, "feet"),
  22033. name: "Foot",
  22034. image: {
  22035. source: "./media/characters/ofelia/foot.svg"
  22036. }
  22037. },
  22038. },
  22039. [
  22040. {
  22041. name: "Canon Height",
  22042. height: math.unit(2000, "miles"),
  22043. default: true
  22044. },
  22045. ]
  22046. ))
  22047. characterMakers.push(() => makeCharacter(
  22048. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22049. {
  22050. front: {
  22051. height: math.unit(6, "feet"),
  22052. weight: math.unit(150, "lb"),
  22053. name: "Front",
  22054. image: {
  22055. source: "./media/characters/samuel/front.svg",
  22056. extra: 265 / 258,
  22057. bottom: 2 / 266.1566
  22058. }
  22059. },
  22060. },
  22061. [
  22062. {
  22063. name: "Macro",
  22064. height: math.unit(100, "feet"),
  22065. default: true
  22066. },
  22067. {
  22068. name: "Full Size",
  22069. height: math.unit(1000, "miles")
  22070. },
  22071. ]
  22072. ))
  22073. characterMakers.push(() => makeCharacter(
  22074. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22075. {
  22076. front: {
  22077. height: math.unit(6, "feet"),
  22078. weight: math.unit(300, "lb"),
  22079. name: "Front",
  22080. image: {
  22081. source: "./media/characters/beishir-kiel/front.svg",
  22082. extra: 569 / 547,
  22083. bottom: 41.9 / 609
  22084. }
  22085. },
  22086. maw: {
  22087. height: math.unit(6 * 0.202, "feet"),
  22088. name: "Maw",
  22089. image: {
  22090. source: "./media/characters/beishir-kiel/maw.svg"
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Macro",
  22097. height: math.unit(300, "feet"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(5 + 7/12, "feet"),
  22107. weight: math.unit(120, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/logan-grey/front.svg",
  22111. extra: 1836/1738,
  22112. bottom: 108/1944
  22113. }
  22114. },
  22115. back: {
  22116. height: math.unit(5 + 7/12, "feet"),
  22117. weight: math.unit(120, "lb"),
  22118. name: "Back",
  22119. image: {
  22120. source: "./media/characters/logan-grey/back.svg",
  22121. extra: 1880/1794,
  22122. bottom: 24/1904
  22123. }
  22124. },
  22125. frontSfw: {
  22126. height: math.unit(5 + 7/12, "feet"),
  22127. weight: math.unit(120, "lb"),
  22128. name: "Front (SFW)",
  22129. image: {
  22130. source: "./media/characters/logan-grey/front-sfw.svg",
  22131. extra: 1836/1738,
  22132. bottom: 108/1944
  22133. }
  22134. },
  22135. backSfw: {
  22136. height: math.unit(5 + 7/12, "feet"),
  22137. weight: math.unit(120, "lb"),
  22138. name: "Back (SFW)",
  22139. image: {
  22140. source: "./media/characters/logan-grey/back-sfw.svg",
  22141. extra: 1880/1794,
  22142. bottom: 24/1904
  22143. }
  22144. },
  22145. hands: {
  22146. height: math.unit(0.84, "feet"),
  22147. name: "Hands",
  22148. image: {
  22149. source: "./media/characters/logan-grey/hands.svg"
  22150. }
  22151. },
  22152. paws: {
  22153. height: math.unit(0.72, "feet"),
  22154. name: "Paws",
  22155. image: {
  22156. source: "./media/characters/logan-grey/paws.svg"
  22157. }
  22158. },
  22159. cock: {
  22160. height: math.unit(1.45, "feet"),
  22161. name: "Cock",
  22162. image: {
  22163. source: "./media/characters/logan-grey/cock.svg"
  22164. }
  22165. },
  22166. cockAlt: {
  22167. height: math.unit(1.437, "feet"),
  22168. name: "Cock (alt)",
  22169. image: {
  22170. source: "./media/characters/logan-grey/cock-alt.svg"
  22171. }
  22172. },
  22173. },
  22174. [
  22175. {
  22176. name: "Normal",
  22177. height: math.unit(5 + 8 / 12, "feet")
  22178. },
  22179. {
  22180. name: "The 500 Foot Femboy",
  22181. height: math.unit(500, "feet"),
  22182. default: true
  22183. },
  22184. {
  22185. name: "Megmacro",
  22186. height: math.unit(20, "miles")
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(8 + 2 / 12, "feet"),
  22195. weight: math.unit(275, "lb"),
  22196. name: "Front",
  22197. image: {
  22198. source: "./media/characters/draganta/front.svg",
  22199. extra: 1177 / 1135,
  22200. bottom: 33.46 / 1212.1
  22201. }
  22202. },
  22203. },
  22204. [
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(8 + 6 / 12, "feet"),
  22208. default: true
  22209. },
  22210. {
  22211. name: "Macro",
  22212. height: math.unit(150, "feet")
  22213. },
  22214. {
  22215. name: "Megamacro",
  22216. height: math.unit(1000, "miles")
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22222. {
  22223. front: {
  22224. height: math.unit(1.72, "m"),
  22225. weight: math.unit(80, "lb"),
  22226. name: "Front",
  22227. image: {
  22228. source: "./media/characters/voski/front.svg",
  22229. extra: 2076.22 / 2022.4,
  22230. bottom: 102.7 / 2177.3866
  22231. }
  22232. },
  22233. frontNsfw: {
  22234. height: math.unit(1.72, "m"),
  22235. weight: math.unit(80, "lb"),
  22236. name: "Front (NSFW)",
  22237. image: {
  22238. source: "./media/characters/voski/front-nsfw.svg",
  22239. extra: 2076.22 / 2022.4,
  22240. bottom: 102.7 / 2177.3866
  22241. }
  22242. },
  22243. back: {
  22244. height: math.unit(1.72, "m"),
  22245. weight: math.unit(80, "lb"),
  22246. name: "Back",
  22247. image: {
  22248. source: "./media/characters/voski/back.svg",
  22249. extra: 2104 / 2051,
  22250. bottom: 10.45 / 2113.63
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(1.72, "m")
  22258. },
  22259. {
  22260. name: "Macro",
  22261. height: math.unit(55, "m"),
  22262. default: true
  22263. },
  22264. {
  22265. name: "Macro+",
  22266. height: math.unit(300, "m")
  22267. },
  22268. {
  22269. name: "Macro++",
  22270. height: math.unit(700, "m")
  22271. },
  22272. {
  22273. name: "Macro+++",
  22274. height: math.unit(4500, "m")
  22275. },
  22276. {
  22277. name: "Macro++++",
  22278. height: math.unit(45, "km")
  22279. },
  22280. {
  22281. name: "Macro+++++",
  22282. height: math.unit(1220, "km")
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(2.3, "m"),
  22291. weight: math.unit(304, "kg"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/icowom-lee/front.svg",
  22295. extra: 985 / 955,
  22296. bottom: 25.4 / 1012
  22297. }
  22298. },
  22299. fronttentacles: {
  22300. height: math.unit(2.3, "m"),
  22301. weight: math.unit(304, "kg"),
  22302. name: "Front-tentacles",
  22303. image: {
  22304. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22305. extra: 985 / 955,
  22306. bottom: 25.4 / 1012
  22307. }
  22308. },
  22309. back: {
  22310. height: math.unit(2.3, "m"),
  22311. weight: math.unit(304, "kg"),
  22312. name: "Back",
  22313. image: {
  22314. source: "./media/characters/icowom-lee/back.svg",
  22315. extra: 975 / 954,
  22316. bottom: 9.5 / 985
  22317. }
  22318. },
  22319. backtentacles: {
  22320. height: math.unit(2.3, "m"),
  22321. weight: math.unit(304, "kg"),
  22322. name: "Back-tentacles",
  22323. image: {
  22324. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22325. extra: 975 / 954,
  22326. bottom: 9.5 / 985
  22327. }
  22328. },
  22329. frontDressed: {
  22330. height: math.unit(2.3, "m"),
  22331. weight: math.unit(304, "kg"),
  22332. name: "Front (Dressed)",
  22333. image: {
  22334. source: "./media/characters/icowom-lee/front-dressed.svg",
  22335. extra: 3076 / 2933,
  22336. bottom: 51.4 / 3125.1889
  22337. }
  22338. },
  22339. rump: {
  22340. height: math.unit(0.776, "meters"),
  22341. name: "Rump",
  22342. image: {
  22343. source: "./media/characters/icowom-lee/rump.svg"
  22344. }
  22345. },
  22346. genitals: {
  22347. height: math.unit(0.78, "meters"),
  22348. name: "Genitals",
  22349. image: {
  22350. source: "./media/characters/icowom-lee/genitals.svg"
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Normal",
  22357. height: math.unit(2.3, "meters"),
  22358. default: true
  22359. },
  22360. {
  22361. name: "Macro",
  22362. height: math.unit(94, "meters"),
  22363. default: true
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22369. {
  22370. front: {
  22371. height: math.unit(22, "meters"),
  22372. weight: math.unit(21000, "kg"),
  22373. name: "Front",
  22374. image: {
  22375. source: "./media/characters/shock-diamond/front.svg",
  22376. extra: 2204 / 2053,
  22377. bottom: 65 / 2239.47
  22378. }
  22379. },
  22380. frontNude: {
  22381. height: math.unit(22, "meters"),
  22382. weight: math.unit(21000, "kg"),
  22383. name: "Front (Nude)",
  22384. image: {
  22385. source: "./media/characters/shock-diamond/front-nude.svg",
  22386. extra: 2514 / 2285,
  22387. bottom: 13 / 2527.56
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Normal",
  22394. height: math.unit(3, "meters")
  22395. },
  22396. {
  22397. name: "Macro",
  22398. height: math.unit(22, "meters"),
  22399. default: true
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(5 + 4 / 12, "feet"),
  22408. weight: math.unit(120, "lb"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/rory/front.svg",
  22412. extra: 1318/1241,
  22413. bottom: 42/1360
  22414. }
  22415. },
  22416. back: {
  22417. height: math.unit(5 + 4 / 12, "feet"),
  22418. weight: math.unit(120, "lb"),
  22419. name: "Back",
  22420. image: {
  22421. source: "./media/characters/rory/back.svg",
  22422. extra: 1318/1241,
  22423. bottom: 42/1360
  22424. }
  22425. },
  22426. butt: {
  22427. height: math.unit(1.74, "feet"),
  22428. name: "Butt",
  22429. image: {
  22430. source: "./media/characters/rory/butt.svg"
  22431. }
  22432. },
  22433. dick: {
  22434. height: math.unit(1.02, "feet"),
  22435. name: "Dick",
  22436. image: {
  22437. source: "./media/characters/rory/dick.svg"
  22438. }
  22439. },
  22440. paws: {
  22441. height: math.unit(1, "feet"),
  22442. name: "Paws",
  22443. image: {
  22444. source: "./media/characters/rory/paws.svg"
  22445. }
  22446. },
  22447. frontAlt: {
  22448. height: math.unit(5 + 4 / 12, "feet"),
  22449. weight: math.unit(120, "lb"),
  22450. name: "Front (Alt)",
  22451. image: {
  22452. source: "./media/characters/rory/front-alt.svg",
  22453. extra: 589 / 556,
  22454. bottom: 45.7 / 635.76
  22455. }
  22456. },
  22457. frontAltNude: {
  22458. height: math.unit(5 + 4 / 12, "feet"),
  22459. weight: math.unit(120, "lb"),
  22460. name: "Front (Alt, Nude)",
  22461. image: {
  22462. source: "./media/characters/rory/front-alt-nude.svg",
  22463. extra: 589 / 556,
  22464. bottom: 45.7 / 635.76
  22465. }
  22466. },
  22467. side: {
  22468. height: math.unit(5 + 4 / 12, "feet"),
  22469. weight: math.unit(120, "lb"),
  22470. name: "Side",
  22471. image: {
  22472. source: "./media/characters/rory/side.svg",
  22473. extra: 597 / 564,
  22474. bottom: 55 / 653
  22475. }
  22476. },
  22477. backAlt: {
  22478. height: math.unit(5 + 4 / 12, "feet"),
  22479. weight: math.unit(120, "lb"),
  22480. name: "Back (Alt)",
  22481. image: {
  22482. source: "./media/characters/rory/back-alt.svg",
  22483. extra: 620 / 585,
  22484. bottom: 8.86 / 630.43
  22485. }
  22486. },
  22487. dickAlt: {
  22488. height: math.unit(0.86, "feet"),
  22489. name: "Dick (Alt)",
  22490. image: {
  22491. source: "./media/characters/rory/dick-alt.svg"
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(5 + 4 / 12, "feet"),
  22499. default: true
  22500. },
  22501. {
  22502. name: "Macro",
  22503. height: math.unit(100, "feet")
  22504. },
  22505. {
  22506. name: "Macro+",
  22507. height: math.unit(140, "feet")
  22508. },
  22509. {
  22510. name: "Macro++",
  22511. height: math.unit(300, "feet")
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(5 + 9 / 12, "feet"),
  22520. weight: math.unit(190, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/sprisk/front.svg",
  22524. extra: 1225 / 1180,
  22525. bottom: 42.7 / 1266.4
  22526. }
  22527. },
  22528. frontNsfw: {
  22529. height: math.unit(5 + 9 / 12, "feet"),
  22530. weight: math.unit(190, "lb"),
  22531. name: "Front (NSFW)",
  22532. image: {
  22533. source: "./media/characters/sprisk/front-nsfw.svg",
  22534. extra: 1225 / 1180,
  22535. bottom: 42.7 / 1266.4
  22536. }
  22537. },
  22538. back: {
  22539. height: math.unit(5 + 9 / 12, "feet"),
  22540. weight: math.unit(190, "lb"),
  22541. name: "Back",
  22542. image: {
  22543. source: "./media/characters/sprisk/back.svg",
  22544. extra: 1247 / 1200,
  22545. bottom: 5.6 / 1253.04
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Tiny",
  22552. height: math.unit(2, "inches")
  22553. },
  22554. {
  22555. name: "Normal",
  22556. height: math.unit(5 + 9 / 12, "feet"),
  22557. default: true
  22558. },
  22559. {
  22560. name: "Mini Macro",
  22561. height: math.unit(18, "feet")
  22562. },
  22563. {
  22564. name: "Macro",
  22565. height: math.unit(100, "feet")
  22566. },
  22567. {
  22568. name: "MACRO",
  22569. height: math.unit(50, "miles")
  22570. },
  22571. {
  22572. name: "M A C R O",
  22573. height: math.unit(300, "miles")
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22579. {
  22580. side: {
  22581. height: math.unit(15.6, "meters"),
  22582. weight: math.unit(700000, "kg"),
  22583. name: "Side",
  22584. image: {
  22585. source: "./media/characters/bunsen/side.svg",
  22586. extra: 1644 / 358
  22587. }
  22588. },
  22589. foot: {
  22590. height: math.unit(1.611 * 1644 / 358, "meter"),
  22591. name: "Foot",
  22592. image: {
  22593. source: "./media/characters/bunsen/foot.svg"
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Small",
  22600. height: math.unit(10, "feet")
  22601. },
  22602. {
  22603. name: "Normal",
  22604. height: math.unit(15.6, "meters"),
  22605. default: true
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22611. {
  22612. front: {
  22613. height: math.unit(4 + 11 / 12, "feet"),
  22614. weight: math.unit(140, "lb"),
  22615. name: "Front",
  22616. image: {
  22617. source: "./media/characters/sesh/front.svg",
  22618. extra: 3420 / 3231,
  22619. bottom: 72 / 3949.5
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(4 + 11 / 12, "feet")
  22627. },
  22628. {
  22629. name: "Grown",
  22630. height: math.unit(15, "feet"),
  22631. default: true
  22632. },
  22633. {
  22634. name: "Macro",
  22635. height: math.unit(1500, "feet")
  22636. },
  22637. {
  22638. name: "Megamacro",
  22639. height: math.unit(30, "miles")
  22640. },
  22641. {
  22642. name: "Continental",
  22643. height: math.unit(3000, "miles")
  22644. },
  22645. {
  22646. name: "Gravity Mass",
  22647. height: math.unit(300000, "miles")
  22648. },
  22649. {
  22650. name: "Planet Buster",
  22651. height: math.unit(30000000, "miles")
  22652. },
  22653. {
  22654. name: "Big",
  22655. height: math.unit(3000000000, "miles")
  22656. },
  22657. ]
  22658. ))
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22661. {
  22662. front: {
  22663. height: math.unit(9, "feet"),
  22664. weight: math.unit(350, "lb"),
  22665. name: "Front",
  22666. image: {
  22667. source: "./media/characters/pepper/front.svg",
  22668. extra: 1448 / 1312,
  22669. bottom: 9.4 / 1457.88
  22670. }
  22671. },
  22672. back: {
  22673. height: math.unit(9, "feet"),
  22674. weight: math.unit(350, "lb"),
  22675. name: "Back",
  22676. image: {
  22677. source: "./media/characters/pepper/back.svg",
  22678. extra: 1423 / 1300,
  22679. bottom: 4.6 / 1429
  22680. }
  22681. },
  22682. maw: {
  22683. height: math.unit(0.932, "feet"),
  22684. name: "Maw",
  22685. image: {
  22686. source: "./media/characters/pepper/maw.svg"
  22687. }
  22688. },
  22689. },
  22690. [
  22691. {
  22692. name: "Normal",
  22693. height: math.unit(9, "feet"),
  22694. default: true
  22695. },
  22696. ]
  22697. ))
  22698. characterMakers.push(() => makeCharacter(
  22699. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22700. {
  22701. front: {
  22702. height: math.unit(6, "feet"),
  22703. weight: math.unit(150, "lb"),
  22704. name: "Front",
  22705. image: {
  22706. source: "./media/characters/maelstrom/front.svg",
  22707. extra: 2100 / 1883,
  22708. bottom: 94 / 2196.7
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Less Kaiju",
  22715. height: math.unit(200, "feet")
  22716. },
  22717. {
  22718. name: "Kaiju",
  22719. height: math.unit(400, "feet"),
  22720. default: true
  22721. },
  22722. {
  22723. name: "Kaiju-er",
  22724. height: math.unit(600, "feet")
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(6 + 5 / 12, "feet"),
  22733. weight: math.unit(180, "lb"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/lexir/front.svg",
  22737. extra: 180 / 172,
  22738. bottom: 12 / 192
  22739. }
  22740. },
  22741. back: {
  22742. height: math.unit(6 + 5 / 12, "feet"),
  22743. weight: math.unit(180, "lb"),
  22744. name: "Back",
  22745. image: {
  22746. source: "./media/characters/lexir/back.svg",
  22747. extra: 183.84 / 175.5,
  22748. bottom: 3.1 / 187
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Very Smal",
  22755. height: math.unit(1, "nm")
  22756. },
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(6 + 5 / 12, "feet"),
  22760. default: true
  22761. },
  22762. {
  22763. name: "Macro",
  22764. height: math.unit(1, "mile")
  22765. },
  22766. {
  22767. name: "Megamacro",
  22768. height: math.unit(50, "miles")
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(1.5, "meters"),
  22777. weight: math.unit(100, "lb"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/maksio/front.svg",
  22781. extra: 1549 / 1531,
  22782. bottom: 123.7 / 1674.5429
  22783. }
  22784. },
  22785. back: {
  22786. height: math.unit(1.5, "meters"),
  22787. weight: math.unit(100, "lb"),
  22788. name: "Back",
  22789. image: {
  22790. source: "./media/characters/maksio/back.svg",
  22791. extra: 1541 / 1509,
  22792. bottom: 97 / 1639
  22793. }
  22794. },
  22795. hand: {
  22796. height: math.unit(0.621, "feet"),
  22797. name: "Hand",
  22798. image: {
  22799. source: "./media/characters/maksio/hand.svg"
  22800. }
  22801. },
  22802. foot: {
  22803. height: math.unit(1.611, "feet"),
  22804. name: "Foot",
  22805. image: {
  22806. source: "./media/characters/maksio/foot.svg"
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Shrunken",
  22813. height: math.unit(10, "cm")
  22814. },
  22815. {
  22816. name: "Normal",
  22817. height: math.unit(150, "cm"),
  22818. default: true
  22819. },
  22820. ]
  22821. ))
  22822. characterMakers.push(() => makeCharacter(
  22823. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22824. {
  22825. front: {
  22826. height: math.unit(100, "feet"),
  22827. name: "Front",
  22828. image: {
  22829. source: "./media/characters/erza-bear/front.svg",
  22830. extra: 2449 / 2390,
  22831. bottom: 46 / 2494
  22832. }
  22833. },
  22834. back: {
  22835. height: math.unit(100, "feet"),
  22836. name: "Back",
  22837. image: {
  22838. source: "./media/characters/erza-bear/back.svg",
  22839. extra: 2489 / 2430,
  22840. bottom: 85.4 / 2480
  22841. }
  22842. },
  22843. tail: {
  22844. height: math.unit(42, "feet"),
  22845. name: "Tail",
  22846. image: {
  22847. source: "./media/characters/erza-bear/tail.svg"
  22848. }
  22849. },
  22850. tongue: {
  22851. height: math.unit(8, "feet"),
  22852. name: "Tongue",
  22853. image: {
  22854. source: "./media/characters/erza-bear/tongue.svg"
  22855. }
  22856. },
  22857. dick: {
  22858. height: math.unit(10.5, "feet"),
  22859. name: "Dick",
  22860. image: {
  22861. source: "./media/characters/erza-bear/dick.svg"
  22862. }
  22863. },
  22864. dickVertical: {
  22865. height: math.unit(16.9, "feet"),
  22866. name: "Dick (Vertical)",
  22867. image: {
  22868. source: "./media/characters/erza-bear/dick-vertical.svg"
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(100, "feet"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(172, "cm"),
  22885. weight: math.unit(73, "kg"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/violet-flor/front.svg",
  22889. extra: 1530 / 1442,
  22890. bottom: 61.9 / 1588.8
  22891. }
  22892. },
  22893. back: {
  22894. height: math.unit(180, "cm"),
  22895. weight: math.unit(73, "kg"),
  22896. name: "Back",
  22897. image: {
  22898. source: "./media/characters/violet-flor/back.svg",
  22899. extra: 1692 / 1630,
  22900. bottom: 20 / 1712
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Normal",
  22907. height: math.unit(172, "cm"),
  22908. default: true
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22914. {
  22915. front: {
  22916. height: math.unit(6, "feet"),
  22917. weight: math.unit(220, "lb"),
  22918. name: "Front",
  22919. image: {
  22920. source: "./media/characters/lynn-rhea/front.svg",
  22921. extra: 310 / 273
  22922. }
  22923. },
  22924. back: {
  22925. height: math.unit(6, "feet"),
  22926. weight: math.unit(220, "lb"),
  22927. name: "Back",
  22928. image: {
  22929. source: "./media/characters/lynn-rhea/back.svg",
  22930. extra: 310 / 273
  22931. }
  22932. },
  22933. dicks: {
  22934. height: math.unit(0.9, "feet"),
  22935. name: "Dicks",
  22936. image: {
  22937. source: "./media/characters/lynn-rhea/dicks.svg"
  22938. }
  22939. },
  22940. slit: {
  22941. height: math.unit(0.4, "feet"),
  22942. name: "Slit",
  22943. image: {
  22944. source: "./media/characters/lynn-rhea/slit.svg"
  22945. }
  22946. },
  22947. },
  22948. [
  22949. {
  22950. name: "Micro",
  22951. height: math.unit(1, "inch")
  22952. },
  22953. {
  22954. name: "Macro",
  22955. height: math.unit(60, "feet"),
  22956. default: true
  22957. },
  22958. {
  22959. name: "Megamacro",
  22960. height: math.unit(2, "miles")
  22961. },
  22962. {
  22963. name: "Gigamacro",
  22964. height: math.unit(3, "earths")
  22965. },
  22966. {
  22967. name: "Galactic",
  22968. height: math.unit(0.8, "galaxies")
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22974. {
  22975. front: {
  22976. height: math.unit(1600, "feet"),
  22977. weight: math.unit(85758785169, "kg"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/valathos/front.svg",
  22981. extra: 1451 / 1339
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Macro",
  22988. height: math.unit(1600, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(7 + 5 / 12, "feet"),
  22998. weight: math.unit(300, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/azula/front.svg",
  23002. extra: 3208 / 2880,
  23003. bottom: 80.2 / 3277
  23004. }
  23005. },
  23006. back: {
  23007. height: math.unit(7 + 5 / 12, "feet"),
  23008. weight: math.unit(300, "lb"),
  23009. name: "Back",
  23010. image: {
  23011. source: "./media/characters/azula/back.svg",
  23012. extra: 3169 / 2822,
  23013. bottom: 150.6 / 3321
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Normal",
  23020. height: math.unit(7 + 5 / 12, "feet"),
  23021. default: true
  23022. },
  23023. {
  23024. name: "Big",
  23025. height: math.unit(20, "feet")
  23026. },
  23027. ]
  23028. ))
  23029. characterMakers.push(() => makeCharacter(
  23030. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23031. {
  23032. front: {
  23033. height: math.unit(5 + 1 / 12, "feet"),
  23034. weight: math.unit(110, "lb"),
  23035. name: "Front",
  23036. image: {
  23037. source: "./media/characters/rupert/front.svg",
  23038. extra: 1549 / 1495,
  23039. bottom: 54.2 / 1604.4
  23040. }
  23041. },
  23042. },
  23043. [
  23044. {
  23045. name: "Normal",
  23046. height: math.unit(5 + 1 / 12, "feet"),
  23047. default: true
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23053. {
  23054. front: {
  23055. height: math.unit(8 + 4 / 12, "feet"),
  23056. weight: math.unit(350, "lb"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/sheera-castellar/front.svg",
  23060. extra: 1957 / 1894,
  23061. bottom: 26.97 / 1975.017
  23062. }
  23063. },
  23064. side: {
  23065. height: math.unit(8 + 4 / 12, "feet"),
  23066. weight: math.unit(350, "lb"),
  23067. name: "Side",
  23068. image: {
  23069. source: "./media/characters/sheera-castellar/side.svg",
  23070. extra: 1957 / 1894
  23071. }
  23072. },
  23073. back: {
  23074. height: math.unit(8 + 4 / 12, "feet"),
  23075. weight: math.unit(350, "lb"),
  23076. name: "Back",
  23077. image: {
  23078. source: "./media/characters/sheera-castellar/back.svg",
  23079. extra: 1957 / 1894
  23080. }
  23081. },
  23082. angled: {
  23083. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23084. weight: math.unit(350, "lb"),
  23085. name: "Angled",
  23086. image: {
  23087. source: "./media/characters/sheera-castellar/angled.svg",
  23088. extra: 1807 / 1707,
  23089. bottom: 68 / 1875
  23090. }
  23091. },
  23092. genitals: {
  23093. height: math.unit(2.2, "feet"),
  23094. name: "Genitals",
  23095. image: {
  23096. source: "./media/characters/sheera-castellar/genitals.svg"
  23097. }
  23098. },
  23099. taur: {
  23100. height: math.unit(10 + 6/12, "feet"),
  23101. name: "Taur",
  23102. image: {
  23103. source: "./media/characters/sheera-castellar/taur.svg",
  23104. extra: 2017/1909,
  23105. bottom: 185/2202
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(8 + 4 / 12, "feet")
  23113. },
  23114. {
  23115. name: "Macro",
  23116. height: math.unit(150, "feet"),
  23117. default: true
  23118. },
  23119. {
  23120. name: "Macro+",
  23121. height: math.unit(800, "feet")
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23127. {
  23128. front: {
  23129. height: math.unit(6, "feet"),
  23130. weight: math.unit(150, "lb"),
  23131. name: "Front",
  23132. image: {
  23133. source: "./media/characters/jaipur/front.svg",
  23134. extra: 3860 / 3731,
  23135. bottom: 287 / 4140
  23136. }
  23137. },
  23138. back: {
  23139. height: math.unit(6, "feet"),
  23140. weight: math.unit(150, "lb"),
  23141. name: "Back",
  23142. image: {
  23143. source: "./media/characters/jaipur/back.svg",
  23144. extra: 4060 / 3930,
  23145. bottom: 151 / 4200
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "Normal",
  23152. height: math.unit(1.85, "meters"),
  23153. default: true
  23154. },
  23155. {
  23156. name: "Macro",
  23157. height: math.unit(150, "meters")
  23158. },
  23159. {
  23160. name: "Macro+",
  23161. height: math.unit(0.5, "miles")
  23162. },
  23163. {
  23164. name: "Macro++",
  23165. height: math.unit(2.5, "miles")
  23166. },
  23167. {
  23168. name: "Macro+++",
  23169. height: math.unit(12, "miles")
  23170. },
  23171. {
  23172. name: "Macro++++",
  23173. height: math.unit(120, "miles")
  23174. },
  23175. {
  23176. name: "Macro+++++",
  23177. height: math.unit(1200, "miles")
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(6, "feet"),
  23186. weight: math.unit(150, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/sheila-wolf/front.svg",
  23190. extra: 1931 / 1808,
  23191. bottom: 29.5 / 1960
  23192. }
  23193. },
  23194. dick: {
  23195. height: math.unit(1.464, "feet"),
  23196. name: "Dick",
  23197. image: {
  23198. source: "./media/characters/sheila-wolf/dick.svg"
  23199. }
  23200. },
  23201. muzzle: {
  23202. height: math.unit(0.513, "feet"),
  23203. name: "Muzzle",
  23204. image: {
  23205. source: "./media/characters/sheila-wolf/muzzle.svg"
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Macro",
  23212. height: math.unit(70, "feet"),
  23213. default: true
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(32, "meters"),
  23222. weight: math.unit(300000, "kg"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/almor/front.svg",
  23226. extra: 1408 / 1322,
  23227. bottom: 94.6 / 1506.5
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Macro",
  23234. height: math.unit(32, "meters"),
  23235. default: true
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23241. {
  23242. front: {
  23243. height: math.unit(7, "feet"),
  23244. weight: math.unit(200, "lb"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/silver/front.svg",
  23248. extra: 472.1 / 450.5,
  23249. bottom: 26.5 / 499.424
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(7, "feet"),
  23257. default: true
  23258. },
  23259. {
  23260. name: "Macro",
  23261. height: math.unit(800, "feet")
  23262. },
  23263. {
  23264. name: "Megamacro",
  23265. height: math.unit(250, "miles")
  23266. },
  23267. ]
  23268. ))
  23269. characterMakers.push(() => makeCharacter(
  23270. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23271. {
  23272. front: {
  23273. height: math.unit(6, "feet"),
  23274. weight: math.unit(150, "lb"),
  23275. name: "Front",
  23276. image: {
  23277. source: "./media/characters/pliskin/front.svg",
  23278. extra: 1469 / 1359,
  23279. bottom: 70 / 1540
  23280. }
  23281. },
  23282. },
  23283. [
  23284. {
  23285. name: "Micro",
  23286. height: math.unit(3, "inches")
  23287. },
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(5 + 11 / 12, "feet"),
  23291. default: true
  23292. },
  23293. {
  23294. name: "Macro",
  23295. height: math.unit(120, "feet")
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23301. {
  23302. front: {
  23303. height: math.unit(6, "feet"),
  23304. weight: math.unit(150, "lb"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/sammy/front.svg",
  23308. extra: 1193 / 1089,
  23309. bottom: 30.5 / 1226
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Macro",
  23316. height: math.unit(1700, "feet"),
  23317. default: true
  23318. },
  23319. {
  23320. name: "Examacro",
  23321. height: math.unit(2.5e9, "lightyears")
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23327. {
  23328. front: {
  23329. height: math.unit(21, "meters"),
  23330. weight: math.unit(12, "tonnes"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/kuru/front.svg",
  23334. extra: 4301 / 3785,
  23335. bottom: 371.3 / 4691
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Macro",
  23342. height: math.unit(21, "meters"),
  23343. default: true
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23349. {
  23350. front: {
  23351. height: math.unit(23, "meters"),
  23352. weight: math.unit(12.2, "tonnes"),
  23353. name: "Front",
  23354. image: {
  23355. source: "./media/characters/rakka/front.svg",
  23356. extra: 4670 / 4169,
  23357. bottom: 301 / 4968.7
  23358. }
  23359. },
  23360. },
  23361. [
  23362. {
  23363. name: "Macro",
  23364. height: math.unit(23, "meters"),
  23365. default: true
  23366. },
  23367. ]
  23368. ))
  23369. characterMakers.push(() => makeCharacter(
  23370. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23371. {
  23372. front: {
  23373. height: math.unit(6, "feet"),
  23374. weight: math.unit(150, "lb"),
  23375. name: "Front",
  23376. image: {
  23377. source: "./media/characters/rhys-feline/front.svg",
  23378. extra: 2488 / 2308,
  23379. bottom: 35.67 / 2519.19
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Really Small",
  23386. height: math.unit(1, "nm")
  23387. },
  23388. {
  23389. name: "Micro",
  23390. height: math.unit(4, "inches")
  23391. },
  23392. {
  23393. name: "Normal",
  23394. height: math.unit(4 + 10 / 12, "feet"),
  23395. default: true
  23396. },
  23397. {
  23398. name: "Macro",
  23399. height: math.unit(100, "feet")
  23400. },
  23401. {
  23402. name: "Megamacto",
  23403. height: math.unit(50, "miles")
  23404. },
  23405. ]
  23406. ))
  23407. characterMakers.push(() => makeCharacter(
  23408. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23409. {
  23410. side: {
  23411. height: math.unit(30, "feet"),
  23412. weight: math.unit(35000, "kg"),
  23413. name: "Side",
  23414. image: {
  23415. source: "./media/characters/alydar/side.svg",
  23416. extra: 234 / 222,
  23417. bottom: 6.5 / 241
  23418. }
  23419. },
  23420. front: {
  23421. height: math.unit(30, "feet"),
  23422. weight: math.unit(35000, "kg"),
  23423. name: "Front",
  23424. image: {
  23425. source: "./media/characters/alydar/front.svg",
  23426. extra: 223.37 / 210.2,
  23427. bottom: 22.3 / 246.76
  23428. }
  23429. },
  23430. top: {
  23431. height: math.unit(64.54, "feet"),
  23432. weight: math.unit(35000, "kg"),
  23433. name: "Top",
  23434. image: {
  23435. source: "./media/characters/alydar/top.svg"
  23436. }
  23437. },
  23438. anthro: {
  23439. height: math.unit(30, "feet"),
  23440. weight: math.unit(9000, "kg"),
  23441. name: "Anthro",
  23442. image: {
  23443. source: "./media/characters/alydar/anthro.svg",
  23444. extra: 432 / 421,
  23445. bottom: 7.18 / 440
  23446. }
  23447. },
  23448. maw: {
  23449. height: math.unit(11.693, "feet"),
  23450. name: "Maw",
  23451. image: {
  23452. source: "./media/characters/alydar/maw.svg"
  23453. }
  23454. },
  23455. head: {
  23456. height: math.unit(11.693, "feet"),
  23457. name: "Head",
  23458. image: {
  23459. source: "./media/characters/alydar/head.svg"
  23460. }
  23461. },
  23462. headAlt: {
  23463. height: math.unit(12.861, "feet"),
  23464. name: "Head (Alt)",
  23465. image: {
  23466. source: "./media/characters/alydar/head-alt.svg"
  23467. }
  23468. },
  23469. wing: {
  23470. height: math.unit(20.712, "feet"),
  23471. name: "Wing",
  23472. image: {
  23473. source: "./media/characters/alydar/wing.svg"
  23474. }
  23475. },
  23476. wingFeather: {
  23477. height: math.unit(9.662, "feet"),
  23478. name: "Wing Feather",
  23479. image: {
  23480. source: "./media/characters/alydar/wing-feather.svg"
  23481. }
  23482. },
  23483. countourFeather: {
  23484. height: math.unit(4.154, "feet"),
  23485. name: "Contour Feather",
  23486. image: {
  23487. source: "./media/characters/alydar/contour-feather.svg"
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Diplomatic",
  23494. height: math.unit(13, "feet"),
  23495. default: true
  23496. },
  23497. {
  23498. name: "Small",
  23499. height: math.unit(30, "feet")
  23500. },
  23501. {
  23502. name: "Normal",
  23503. height: math.unit(95, "feet"),
  23504. default: true
  23505. },
  23506. {
  23507. name: "Large",
  23508. height: math.unit(285, "feet")
  23509. },
  23510. {
  23511. name: "Incomprehensible",
  23512. height: math.unit(450, "megameters")
  23513. },
  23514. ]
  23515. ))
  23516. characterMakers.push(() => makeCharacter(
  23517. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23518. {
  23519. side: {
  23520. height: math.unit(11, "feet"),
  23521. weight: math.unit(1750, "kg"),
  23522. name: "Side",
  23523. image: {
  23524. source: "./media/characters/selicia/side.svg",
  23525. extra: 440 / 396,
  23526. bottom: 24.8 / 465.979
  23527. }
  23528. },
  23529. maw: {
  23530. height: math.unit(4.665, "feet"),
  23531. name: "Maw",
  23532. image: {
  23533. source: "./media/characters/selicia/maw.svg"
  23534. }
  23535. },
  23536. },
  23537. [
  23538. {
  23539. name: "Normal",
  23540. height: math.unit(11, "feet"),
  23541. default: true
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23547. {
  23548. side: {
  23549. height: math.unit(2 + 6 / 12, "feet"),
  23550. weight: math.unit(30, "lb"),
  23551. name: "Side",
  23552. image: {
  23553. source: "./media/characters/layla/side.svg",
  23554. extra: 244 / 188,
  23555. bottom: 18.2 / 262.1
  23556. }
  23557. },
  23558. back: {
  23559. height: math.unit(2 + 6 / 12, "feet"),
  23560. weight: math.unit(30, "lb"),
  23561. name: "Back",
  23562. image: {
  23563. source: "./media/characters/layla/back.svg",
  23564. extra: 308 / 241.5,
  23565. bottom: 8.9 / 316.8
  23566. }
  23567. },
  23568. cumming: {
  23569. height: math.unit(2 + 6 / 12, "feet"),
  23570. weight: math.unit(30, "lb"),
  23571. name: "Cumming",
  23572. image: {
  23573. source: "./media/characters/layla/cumming.svg",
  23574. extra: 342 / 279,
  23575. bottom: 595 / 938
  23576. }
  23577. },
  23578. dickFlaccid: {
  23579. height: math.unit(2.595, "feet"),
  23580. name: "Flaccid Genitals",
  23581. image: {
  23582. source: "./media/characters/layla/dick-flaccid.svg"
  23583. }
  23584. },
  23585. dickErect: {
  23586. height: math.unit(2.359, "feet"),
  23587. name: "Erect Genitals",
  23588. image: {
  23589. source: "./media/characters/layla/dick-erect.svg"
  23590. }
  23591. },
  23592. dragon: {
  23593. height: math.unit(40, "feet"),
  23594. name: "Dragon",
  23595. image: {
  23596. source: "./media/characters/layla/dragon.svg",
  23597. extra: 610/535,
  23598. bottom: 367/977
  23599. }
  23600. },
  23601. taur: {
  23602. height: math.unit(30, "feet"),
  23603. name: "Taur",
  23604. image: {
  23605. source: "./media/characters/layla/taur.svg",
  23606. extra: 1268/1199,
  23607. bottom: 112/1380
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Micro",
  23614. height: math.unit(1, "inch")
  23615. },
  23616. {
  23617. name: "Small",
  23618. height: math.unit(1, "foot")
  23619. },
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(2 + 6 / 12, "feet"),
  23623. default: true
  23624. },
  23625. {
  23626. name: "Macro",
  23627. height: math.unit(200, "feet")
  23628. },
  23629. {
  23630. name: "Megamacro",
  23631. height: math.unit(1000, "miles")
  23632. },
  23633. {
  23634. name: "Planetary",
  23635. height: math.unit(8000, "miles")
  23636. },
  23637. {
  23638. name: "True Layla",
  23639. height: math.unit(200000 * 7, "multiverses")
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23645. {
  23646. back: {
  23647. height: math.unit(10.5, "feet"),
  23648. weight: math.unit(800, "lb"),
  23649. name: "Back",
  23650. image: {
  23651. source: "./media/characters/knox/back.svg",
  23652. extra: 1486 / 1089,
  23653. bottom: 107 / 1601.4
  23654. }
  23655. },
  23656. side: {
  23657. height: math.unit(10.5, "feet"),
  23658. weight: math.unit(800, "lb"),
  23659. name: "Side",
  23660. image: {
  23661. source: "./media/characters/knox/side.svg",
  23662. extra: 244 / 218,
  23663. bottom: 14 / 260
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Compact",
  23670. height: math.unit(10.5, "feet"),
  23671. default: true
  23672. },
  23673. {
  23674. name: "Dynamax",
  23675. height: math.unit(210, "feet")
  23676. },
  23677. {
  23678. name: "Full Macro",
  23679. height: math.unit(850, "feet")
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(6, "feet"),
  23688. weight: math.unit(152, "lb"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/shin-pikachu/front.svg",
  23692. extra: 1854/1602,
  23693. bottom: 166/2020
  23694. }
  23695. },
  23696. hand: {
  23697. height: math.unit(1.055, "feet"),
  23698. name: "Hand",
  23699. image: {
  23700. source: "./media/characters/shin-pikachu/hand.svg"
  23701. }
  23702. },
  23703. foot: {
  23704. height: math.unit(1.1, "feet"),
  23705. name: "Foot",
  23706. image: {
  23707. source: "./media/characters/shin-pikachu/foot.svg"
  23708. }
  23709. },
  23710. collar: {
  23711. height: math.unit(0.386, "feet"),
  23712. name: "Collar",
  23713. image: {
  23714. source: "./media/characters/shin-pikachu/collar.svg"
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Smallest",
  23721. height: math.unit(0.5, "inches")
  23722. },
  23723. {
  23724. name: "Micro",
  23725. height: math.unit(6, "inches")
  23726. },
  23727. {
  23728. name: "Normal",
  23729. height: math.unit(6, "feet"),
  23730. default: true
  23731. },
  23732. {
  23733. name: "Macro",
  23734. height: math.unit(150, "feet")
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23740. {
  23741. front: {
  23742. height: math.unit(28, "feet"),
  23743. weight: math.unit(10500, "lb"),
  23744. name: "Front",
  23745. image: {
  23746. source: "./media/characters/kayda/front.svg",
  23747. extra: 1536 / 1428,
  23748. bottom: 68.7 / 1603
  23749. }
  23750. },
  23751. back: {
  23752. height: math.unit(28, "feet"),
  23753. weight: math.unit(10500, "lb"),
  23754. name: "Back",
  23755. image: {
  23756. source: "./media/characters/kayda/back.svg",
  23757. extra: 1557 / 1464,
  23758. bottom: 39.5 / 1597.49
  23759. }
  23760. },
  23761. dick: {
  23762. height: math.unit(3.858, "feet"),
  23763. name: "Dick",
  23764. image: {
  23765. source: "./media/characters/kayda/dick.svg"
  23766. }
  23767. },
  23768. },
  23769. [
  23770. {
  23771. name: "Macro",
  23772. height: math.unit(28, "feet"),
  23773. default: true
  23774. },
  23775. ]
  23776. ))
  23777. characterMakers.push(() => makeCharacter(
  23778. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23779. {
  23780. front: {
  23781. height: math.unit(10 + 11 / 12, "feet"),
  23782. weight: math.unit(1400, "lb"),
  23783. name: "Front",
  23784. image: {
  23785. source: "./media/characters/brian/front.svg",
  23786. extra: 737 / 692,
  23787. bottom: 55.4 / 785
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "Normal",
  23794. height: math.unit(10 + 11 / 12, "feet"),
  23795. default: true
  23796. },
  23797. ]
  23798. ))
  23799. characterMakers.push(() => makeCharacter(
  23800. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23801. {
  23802. front: {
  23803. height: math.unit(5 + 8 / 12, "feet"),
  23804. weight: math.unit(140, "lb"),
  23805. name: "Front",
  23806. image: {
  23807. source: "./media/characters/khemri/front.svg",
  23808. extra: 4780 / 4059,
  23809. bottom: 80.1 / 4859.25
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Micro",
  23816. height: math.unit(6, "inches")
  23817. },
  23818. {
  23819. name: "Normal",
  23820. height: math.unit(5 + 8 / 12, "feet"),
  23821. default: true
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23827. {
  23828. front: {
  23829. height: math.unit(13, "feet"),
  23830. weight: math.unit(1700, "lb"),
  23831. name: "Front",
  23832. image: {
  23833. source: "./media/characters/felix-braveheart/front.svg",
  23834. extra: 1222 / 1157,
  23835. bottom: 53.2 / 1280
  23836. }
  23837. },
  23838. back: {
  23839. height: math.unit(13, "feet"),
  23840. weight: math.unit(1700, "lb"),
  23841. name: "Back",
  23842. image: {
  23843. source: "./media/characters/felix-braveheart/back.svg",
  23844. extra: 1277 / 1203,
  23845. bottom: 50.2 / 1327
  23846. }
  23847. },
  23848. feral: {
  23849. height: math.unit(6, "feet"),
  23850. weight: math.unit(400, "lb"),
  23851. name: "Feral",
  23852. image: {
  23853. source: "./media/characters/felix-braveheart/feral.svg",
  23854. extra: 682 / 625,
  23855. bottom: 6.9 / 688
  23856. }
  23857. },
  23858. },
  23859. [
  23860. {
  23861. name: "Normal",
  23862. height: math.unit(13, "feet"),
  23863. default: true
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23869. {
  23870. side: {
  23871. height: math.unit(5 + 11 / 12, "feet"),
  23872. weight: math.unit(1400, "lb"),
  23873. name: "Side",
  23874. image: {
  23875. source: "./media/characters/shadow-blade/side.svg",
  23876. extra: 1726 / 1267,
  23877. bottom: 58.4 / 1785
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Normal",
  23884. height: math.unit(5 + 11 / 12, "feet"),
  23885. default: true
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23891. {
  23892. front: {
  23893. height: math.unit(1 + 6 / 12, "feet"),
  23894. weight: math.unit(25, "lb"),
  23895. name: "Front",
  23896. image: {
  23897. source: "./media/characters/karla-halldor/front.svg",
  23898. extra: 1459 / 1383,
  23899. bottom: 12 / 1472
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Normal",
  23906. height: math.unit(1 + 6 / 12, "feet"),
  23907. default: true
  23908. },
  23909. ]
  23910. ))
  23911. characterMakers.push(() => makeCharacter(
  23912. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23913. {
  23914. front: {
  23915. height: math.unit(6 + 2 / 12, "feet"),
  23916. weight: math.unit(160, "lb"),
  23917. name: "Front",
  23918. image: {
  23919. source: "./media/characters/ariam/front.svg",
  23920. extra: 714 / 617,
  23921. bottom: 23.4 / 737,
  23922. }
  23923. },
  23924. squatting: {
  23925. height: math.unit(4.1, "feet"),
  23926. weight: math.unit(160, "lb"),
  23927. name: "Squatting",
  23928. image: {
  23929. source: "./media/characters/ariam/squatting.svg",
  23930. extra: 2617 / 2112,
  23931. bottom: 61.2 / 2681,
  23932. }
  23933. },
  23934. },
  23935. [
  23936. {
  23937. name: "Normal",
  23938. height: math.unit(6 + 2 / 12, "feet"),
  23939. default: true
  23940. },
  23941. {
  23942. name: "Normal+",
  23943. height: math.unit(4, "meters")
  23944. },
  23945. {
  23946. name: "Macro",
  23947. height: math.unit(50, "meters")
  23948. },
  23949. {
  23950. name: "Macro+",
  23951. height: math.unit(100, "meters")
  23952. },
  23953. {
  23954. name: "Megamacro",
  23955. height: math.unit(20, "km")
  23956. },
  23957. ]
  23958. ))
  23959. characterMakers.push(() => makeCharacter(
  23960. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23961. {
  23962. front: {
  23963. height: math.unit(1.67, "meters"),
  23964. weight: math.unit(140, "lb"),
  23965. name: "Front",
  23966. image: {
  23967. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23968. extra: 438 / 410,
  23969. bottom: 0.75 / 439
  23970. }
  23971. },
  23972. },
  23973. [
  23974. {
  23975. name: "Shrunken",
  23976. height: math.unit(7.6, "cm")
  23977. },
  23978. {
  23979. name: "Human Scale",
  23980. height: math.unit(1.67, "meters")
  23981. },
  23982. {
  23983. name: "Wolxi Scale",
  23984. height: math.unit(36.7, "meters"),
  23985. default: true
  23986. },
  23987. ]
  23988. ))
  23989. characterMakers.push(() => makeCharacter(
  23990. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23991. {
  23992. front: {
  23993. height: math.unit(1.73, "meters"),
  23994. weight: math.unit(240, "lb"),
  23995. name: "Front",
  23996. image: {
  23997. source: "./media/characters/izue-two-mothers/front.svg",
  23998. extra: 469 / 437,
  23999. bottom: 1.24 / 470.6
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Shrunken",
  24006. height: math.unit(7.86, "cm")
  24007. },
  24008. {
  24009. name: "Human Scale",
  24010. height: math.unit(1.73, "meters")
  24011. },
  24012. {
  24013. name: "Wolxi Scale",
  24014. height: math.unit(38, "meters"),
  24015. default: true
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24021. {
  24022. front: {
  24023. height: math.unit(1.55, "meters"),
  24024. weight: math.unit(120, "lb"),
  24025. name: "Front",
  24026. image: {
  24027. source: "./media/characters/teeku-love-shack/front.svg",
  24028. extra: 387 / 362,
  24029. bottom: 1.51 / 388
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Shrunken",
  24036. height: math.unit(7, "cm")
  24037. },
  24038. {
  24039. name: "Human Scale",
  24040. height: math.unit(1.55, "meters")
  24041. },
  24042. {
  24043. name: "Wolxi Scale",
  24044. height: math.unit(34.1, "meters"),
  24045. default: true
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24051. {
  24052. front: {
  24053. height: math.unit(1.83, "meters"),
  24054. weight: math.unit(135, "lb"),
  24055. name: "Front",
  24056. image: {
  24057. source: "./media/characters/dejma-the-red/front.svg",
  24058. extra: 480 / 458,
  24059. bottom: 1.8 / 482
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Shrunken",
  24066. height: math.unit(8.3, "cm")
  24067. },
  24068. {
  24069. name: "Human Scale",
  24070. height: math.unit(1.83, "meters")
  24071. },
  24072. {
  24073. name: "Wolxi Scale",
  24074. height: math.unit(40, "meters"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(1.78, "meters"),
  24084. weight: math.unit(65, "kg"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/aki/front.svg",
  24088. extra: 452 / 415
  24089. }
  24090. },
  24091. frontNsfw: {
  24092. height: math.unit(1.78, "meters"),
  24093. weight: math.unit(65, "kg"),
  24094. name: "Front (NSFW)",
  24095. image: {
  24096. source: "./media/characters/aki/front-nsfw.svg",
  24097. extra: 452 / 415
  24098. }
  24099. },
  24100. back: {
  24101. height: math.unit(1.78, "meters"),
  24102. weight: math.unit(65, "kg"),
  24103. name: "Back",
  24104. image: {
  24105. source: "./media/characters/aki/back.svg",
  24106. extra: 452 / 415
  24107. }
  24108. },
  24109. rump: {
  24110. height: math.unit(2.05, "feet"),
  24111. name: "Rump",
  24112. image: {
  24113. source: "./media/characters/aki/rump.svg"
  24114. }
  24115. },
  24116. dick: {
  24117. height: math.unit(0.95, "feet"),
  24118. name: "Dick",
  24119. image: {
  24120. source: "./media/characters/aki/dick.svg"
  24121. }
  24122. },
  24123. },
  24124. [
  24125. {
  24126. name: "Micro",
  24127. height: math.unit(15, "cm")
  24128. },
  24129. {
  24130. name: "Normal",
  24131. height: math.unit(178, "cm"),
  24132. default: true
  24133. },
  24134. {
  24135. name: "Macro",
  24136. height: math.unit(214, "m")
  24137. },
  24138. {
  24139. name: "Macro+",
  24140. height: math.unit(534, "m")
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(5 + 5 / 12, "feet"),
  24149. weight: math.unit(120, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/ari/front.svg",
  24153. extra: 714.5 / 682,
  24154. bottom: 8 / 722.5
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(5 + 5 / 12, "feet")
  24162. },
  24163. {
  24164. name: "Macro",
  24165. height: math.unit(100, "feet"),
  24166. default: true
  24167. },
  24168. {
  24169. name: "Megamacro",
  24170. height: math.unit(100, "miles")
  24171. },
  24172. {
  24173. name: "Gigamacro",
  24174. height: math.unit(80000, "miles")
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24180. {
  24181. side: {
  24182. height: math.unit(9, "feet"),
  24183. weight: math.unit(400, "kg"),
  24184. name: "Side",
  24185. image: {
  24186. source: "./media/characters/bolt/side.svg",
  24187. extra: 1126 / 896,
  24188. bottom: 60 / 1187.3,
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Micro",
  24195. height: math.unit(5, "inches")
  24196. },
  24197. {
  24198. name: "Normal",
  24199. height: math.unit(9, "feet"),
  24200. default: true
  24201. },
  24202. {
  24203. name: "Macro",
  24204. height: math.unit(700, "feet")
  24205. },
  24206. {
  24207. name: "Max Size",
  24208. height: math.unit(1.52e22, "yottameters")
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24214. {
  24215. front: {
  24216. height: math.unit(4.53, "meters"),
  24217. weight: math.unit(3, "tons"),
  24218. name: "Front",
  24219. image: {
  24220. source: "./media/characters/draekon-sylviar/front.svg",
  24221. extra: 1228 / 1068,
  24222. bottom: 41 / 1270
  24223. }
  24224. },
  24225. tail: {
  24226. height: math.unit(1.772, "meter"),
  24227. name: "Tail",
  24228. image: {
  24229. source: "./media/characters/draekon-sylviar/tail.svg"
  24230. }
  24231. },
  24232. head: {
  24233. height: math.unit(1.331, "meter"),
  24234. name: "Head",
  24235. image: {
  24236. source: "./media/characters/draekon-sylviar/head.svg"
  24237. }
  24238. },
  24239. hand: {
  24240. height: math.unit(0.564, "meter"),
  24241. name: "Hand",
  24242. image: {
  24243. source: "./media/characters/draekon-sylviar/hand.svg"
  24244. }
  24245. },
  24246. foot: {
  24247. height: math.unit(0.621, "meter"),
  24248. name: "Foot",
  24249. image: {
  24250. source: "./media/characters/draekon-sylviar/foot.svg",
  24251. bottom: 32 / 324
  24252. }
  24253. },
  24254. dick: {
  24255. height: math.unit(61, "cm"),
  24256. name: "Dick",
  24257. image: {
  24258. source: "./media/characters/draekon-sylviar/dick.svg"
  24259. }
  24260. },
  24261. dickseparated: {
  24262. height: math.unit(61, "cm"),
  24263. name: "Dick-separated",
  24264. image: {
  24265. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Small",
  24272. height: math.unit(4.53 / 2, "meters"),
  24273. default: true
  24274. },
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(4.53, "meters"),
  24278. default: true
  24279. },
  24280. {
  24281. name: "Large",
  24282. height: math.unit(4.53 * 2, "meters"),
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24288. {
  24289. front: {
  24290. height: math.unit(6 + 2 / 12, "feet"),
  24291. weight: math.unit(180, "lb"),
  24292. name: "Front",
  24293. image: {
  24294. source: "./media/characters/brawler/front.svg",
  24295. extra: 3301 / 3027,
  24296. bottom: 138 / 3439
  24297. }
  24298. },
  24299. },
  24300. [
  24301. {
  24302. name: "Normal",
  24303. height: math.unit(6 + 2 / 12, "feet"),
  24304. default: true
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24310. {
  24311. front: {
  24312. height: math.unit(11, "feet"),
  24313. weight: math.unit(1000, "lb"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/alex/front.svg",
  24317. bottom: 44.5 / 620
  24318. }
  24319. },
  24320. },
  24321. [
  24322. {
  24323. name: "Micro",
  24324. height: math.unit(5, "inches")
  24325. },
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(11, "feet"),
  24329. default: true
  24330. },
  24331. {
  24332. name: "Macro",
  24333. height: math.unit(9.5e9, "feet")
  24334. },
  24335. {
  24336. name: "Max Size",
  24337. height: math.unit(1.4e283, "yottameters")
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24343. {
  24344. female: {
  24345. height: math.unit(29.9, "m"),
  24346. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24347. name: "Female",
  24348. image: {
  24349. source: "./media/characters/zenari/female.svg",
  24350. extra: 3281.6 / 3217,
  24351. bottom: 72.2 / 3353
  24352. }
  24353. },
  24354. male: {
  24355. height: math.unit(27.7, "m"),
  24356. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24357. name: "Male",
  24358. image: {
  24359. source: "./media/characters/zenari/male.svg",
  24360. extra: 3008 / 2991,
  24361. bottom: 54.6 / 3069
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Macro",
  24368. height: math.unit(29.7, "meters"),
  24369. default: true
  24370. },
  24371. ]
  24372. ))
  24373. characterMakers.push(() => makeCharacter(
  24374. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24375. {
  24376. female: {
  24377. height: math.unit(23.8, "m"),
  24378. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24379. name: "Female",
  24380. image: {
  24381. source: "./media/characters/mactarian/female.svg",
  24382. extra: 2662 / 2569,
  24383. bottom: 73 / 2736
  24384. }
  24385. },
  24386. male: {
  24387. height: math.unit(23.8, "m"),
  24388. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24389. name: "Male",
  24390. image: {
  24391. source: "./media/characters/mactarian/male.svg",
  24392. extra: 2673 / 2600,
  24393. bottom: 76 / 2750
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Macro",
  24400. height: math.unit(23.8, "meters"),
  24401. default: true
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24407. {
  24408. female: {
  24409. height: math.unit(19.3, "m"),
  24410. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24411. name: "Female",
  24412. image: {
  24413. source: "./media/characters/umok/female.svg",
  24414. extra: 2186 / 2078,
  24415. bottom: 87 / 2277
  24416. }
  24417. },
  24418. male: {
  24419. height: math.unit(19.5, "m"),
  24420. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24421. name: "Male",
  24422. image: {
  24423. source: "./media/characters/umok/male.svg",
  24424. extra: 2233 / 2140,
  24425. bottom: 24.4 / 2258
  24426. }
  24427. },
  24428. },
  24429. [
  24430. {
  24431. name: "Macro",
  24432. height: math.unit(19.3, "meters"),
  24433. default: true
  24434. },
  24435. ]
  24436. ))
  24437. characterMakers.push(() => makeCharacter(
  24438. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24439. {
  24440. female: {
  24441. height: math.unit(26.15, "m"),
  24442. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24443. name: "Female",
  24444. image: {
  24445. source: "./media/characters/joraxian/female.svg",
  24446. extra: 2912 / 2824,
  24447. bottom: 36 / 2956
  24448. }
  24449. },
  24450. male: {
  24451. height: math.unit(25.4, "m"),
  24452. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24453. name: "Male",
  24454. image: {
  24455. source: "./media/characters/joraxian/male.svg",
  24456. extra: 2877 / 2721,
  24457. bottom: 82 / 2967
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Macro",
  24464. height: math.unit(26.15, "meters"),
  24465. default: true
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24471. {
  24472. female: {
  24473. height: math.unit(21.6, "m"),
  24474. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24475. name: "Female",
  24476. image: {
  24477. source: "./media/characters/sthara/female.svg",
  24478. extra: 2516 / 2347,
  24479. bottom: 21.5 / 2537
  24480. }
  24481. },
  24482. male: {
  24483. height: math.unit(24, "m"),
  24484. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24485. name: "Male",
  24486. image: {
  24487. source: "./media/characters/sthara/male.svg",
  24488. extra: 2732 / 2607,
  24489. bottom: 23 / 2732
  24490. }
  24491. },
  24492. },
  24493. [
  24494. {
  24495. name: "Macro",
  24496. height: math.unit(21.6, "meters"),
  24497. default: true
  24498. },
  24499. ]
  24500. ))
  24501. characterMakers.push(() => makeCharacter(
  24502. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24503. {
  24504. front: {
  24505. height: math.unit(6 + 4 / 12, "feet"),
  24506. weight: math.unit(175, "lb"),
  24507. name: "Front",
  24508. image: {
  24509. source: "./media/characters/luka-bryzant/front.svg",
  24510. extra: 311 / 289,
  24511. bottom: 4 / 315
  24512. }
  24513. },
  24514. back: {
  24515. height: math.unit(6 + 4 / 12, "feet"),
  24516. weight: math.unit(175, "lb"),
  24517. name: "Back",
  24518. image: {
  24519. source: "./media/characters/luka-bryzant/back.svg",
  24520. extra: 311 / 289,
  24521. bottom: 3.8 / 313.7
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Micro",
  24528. height: math.unit(10, "inches")
  24529. },
  24530. {
  24531. name: "Normal",
  24532. height: math.unit(6 + 4 / 12, "feet"),
  24533. default: true
  24534. },
  24535. {
  24536. name: "Large",
  24537. height: math.unit(12, "feet")
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(5 + 7 / 12, "feet"),
  24546. weight: math.unit(185, "lb"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/aman-aquila/front.svg",
  24550. extra: 1013 / 976,
  24551. bottom: 45.6 / 1057
  24552. }
  24553. },
  24554. side: {
  24555. height: math.unit(5 + 7 / 12, "feet"),
  24556. weight: math.unit(185, "lb"),
  24557. name: "Side",
  24558. image: {
  24559. source: "./media/characters/aman-aquila/side.svg",
  24560. extra: 1054 / 1011,
  24561. bottom: 15 / 1070
  24562. }
  24563. },
  24564. back: {
  24565. height: math.unit(5 + 7 / 12, "feet"),
  24566. weight: math.unit(185, "lb"),
  24567. name: "Back",
  24568. image: {
  24569. source: "./media/characters/aman-aquila/back.svg",
  24570. extra: 1026 / 970,
  24571. bottom: 12 / 1039
  24572. }
  24573. },
  24574. head: {
  24575. height: math.unit(1.211, "feet"),
  24576. name: "Head",
  24577. image: {
  24578. source: "./media/characters/aman-aquila/head.svg",
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Minimicro",
  24585. height: math.unit(0.057, "inches")
  24586. },
  24587. {
  24588. name: "Micro",
  24589. height: math.unit(7, "inches")
  24590. },
  24591. {
  24592. name: "Mini",
  24593. height: math.unit(3 + 7 / 12, "feet")
  24594. },
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(5 + 7 / 12, "feet"),
  24598. default: true
  24599. },
  24600. {
  24601. name: "Macro",
  24602. height: math.unit(157 + 7 / 12, "feet")
  24603. },
  24604. {
  24605. name: "Megamacro",
  24606. height: math.unit(1557 + 7 / 12, "feet")
  24607. },
  24608. {
  24609. name: "Gigamacro",
  24610. height: math.unit(15557 + 7 / 12, "feet")
  24611. },
  24612. ]
  24613. ))
  24614. characterMakers.push(() => makeCharacter(
  24615. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24616. {
  24617. front: {
  24618. height: math.unit(3 + 2 / 12, "inches"),
  24619. weight: math.unit(0.3, "ounces"),
  24620. name: "Front",
  24621. image: {
  24622. source: "./media/characters/hiphae/front.svg",
  24623. extra: 1931 / 1683,
  24624. bottom: 24 / 1955
  24625. }
  24626. },
  24627. },
  24628. [
  24629. {
  24630. name: "Normal",
  24631. height: math.unit(3 + 1 / 2, "inches"),
  24632. default: true
  24633. },
  24634. ]
  24635. ))
  24636. characterMakers.push(() => makeCharacter(
  24637. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24638. {
  24639. front: {
  24640. height: math.unit(5 + 10 / 12, "feet"),
  24641. weight: math.unit(165, "lb"),
  24642. name: "Front",
  24643. image: {
  24644. source: "./media/characters/nicky/front.svg",
  24645. extra: 3144 / 2886,
  24646. bottom: 45.6 / 3192
  24647. }
  24648. },
  24649. back: {
  24650. height: math.unit(5 + 10 / 12, "feet"),
  24651. weight: math.unit(165, "lb"),
  24652. name: "Back",
  24653. image: {
  24654. source: "./media/characters/nicky/back.svg",
  24655. extra: 3055 / 2804,
  24656. bottom: 28.4 / 3087
  24657. }
  24658. },
  24659. frontclothed: {
  24660. height: math.unit(5 + 10 / 12, "feet"),
  24661. weight: math.unit(165, "lb"),
  24662. name: "Front-clothed",
  24663. image: {
  24664. source: "./media/characters/nicky/front-clothed.svg",
  24665. extra: 3184.9 / 2926.9,
  24666. bottom: 86.5 / 3239.9
  24667. }
  24668. },
  24669. foot: {
  24670. height: math.unit(1.16, "feet"),
  24671. name: "Foot",
  24672. image: {
  24673. source: "./media/characters/nicky/foot.svg"
  24674. }
  24675. },
  24676. feet: {
  24677. height: math.unit(1.34, "feet"),
  24678. name: "Feet",
  24679. image: {
  24680. source: "./media/characters/nicky/feet.svg"
  24681. }
  24682. },
  24683. maw: {
  24684. height: math.unit(0.9, "feet"),
  24685. name: "Maw",
  24686. image: {
  24687. source: "./media/characters/nicky/maw.svg"
  24688. }
  24689. },
  24690. },
  24691. [
  24692. {
  24693. name: "Normal",
  24694. height: math.unit(5 + 10 / 12, "feet"),
  24695. default: true
  24696. },
  24697. {
  24698. name: "Macro",
  24699. height: math.unit(60, "feet")
  24700. },
  24701. {
  24702. name: "Megamacro",
  24703. height: math.unit(1, "mile")
  24704. },
  24705. ]
  24706. ))
  24707. characterMakers.push(() => makeCharacter(
  24708. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24709. {
  24710. side: {
  24711. height: math.unit(10, "feet"),
  24712. weight: math.unit(600, "lb"),
  24713. name: "Side",
  24714. image: {
  24715. source: "./media/characters/blair/side.svg",
  24716. bottom: 16.6 / 475,
  24717. extra: 458 / 431
  24718. }
  24719. },
  24720. },
  24721. [
  24722. {
  24723. name: "Micro",
  24724. height: math.unit(8, "inches")
  24725. },
  24726. {
  24727. name: "Normal",
  24728. height: math.unit(10, "feet"),
  24729. default: true
  24730. },
  24731. {
  24732. name: "Macro",
  24733. height: math.unit(180, "feet")
  24734. },
  24735. ]
  24736. ))
  24737. characterMakers.push(() => makeCharacter(
  24738. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24739. {
  24740. front: {
  24741. height: math.unit(5 + 4 / 12, "feet"),
  24742. weight: math.unit(125, "lb"),
  24743. name: "Front",
  24744. image: {
  24745. source: "./media/characters/fisher/front.svg",
  24746. extra: 444 / 390,
  24747. bottom: 2 / 444.8
  24748. }
  24749. },
  24750. },
  24751. [
  24752. {
  24753. name: "Micro",
  24754. height: math.unit(4, "inches")
  24755. },
  24756. {
  24757. name: "Normal",
  24758. height: math.unit(5 + 4 / 12, "feet"),
  24759. default: true
  24760. },
  24761. {
  24762. name: "Macro",
  24763. height: math.unit(100, "feet")
  24764. },
  24765. ]
  24766. ))
  24767. characterMakers.push(() => makeCharacter(
  24768. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24769. {
  24770. front: {
  24771. height: math.unit(6.71, "feet"),
  24772. weight: math.unit(200, "lb"),
  24773. capacity: math.unit(1000000, "people"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/gliss/front.svg",
  24777. extra: 2347 / 2231,
  24778. bottom: 113 / 2462
  24779. }
  24780. },
  24781. hammerspaceSize: {
  24782. height: math.unit(6.71 * 717, "feet"),
  24783. weight: math.unit(200, "lb"),
  24784. capacity: math.unit(1000000, "people"),
  24785. name: "Hammerspace Size",
  24786. image: {
  24787. source: "./media/characters/gliss/front.svg",
  24788. extra: 2347 / 2231,
  24789. bottom: 113 / 2462
  24790. }
  24791. },
  24792. },
  24793. [
  24794. {
  24795. name: "Normal",
  24796. height: math.unit(6.71, "feet"),
  24797. default: true
  24798. },
  24799. ]
  24800. ))
  24801. characterMakers.push(() => makeCharacter(
  24802. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24803. {
  24804. side: {
  24805. height: math.unit(1.44, "m"),
  24806. weight: math.unit(80, "kg"),
  24807. name: "Side",
  24808. image: {
  24809. source: "./media/characters/dune-anderson/side.svg",
  24810. bottom: 49 / 1426
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "Wolf-sized",
  24817. height: math.unit(1.44, "meters")
  24818. },
  24819. {
  24820. name: "Normal",
  24821. height: math.unit(5.05, "meters"),
  24822. default: true
  24823. },
  24824. {
  24825. name: "Big",
  24826. height: math.unit(14.4, "meters")
  24827. },
  24828. {
  24829. name: "Huge",
  24830. height: math.unit(144, "meters")
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(7, "feet"),
  24839. weight: math.unit(425, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/hind/front.svg",
  24843. extra: 2091 / 1860,
  24844. bottom: 129 / 2220
  24845. }
  24846. },
  24847. back: {
  24848. height: math.unit(7, "feet"),
  24849. weight: math.unit(425, "lb"),
  24850. name: "Back",
  24851. image: {
  24852. source: "./media/characters/hind/back.svg",
  24853. extra: 2091 / 1860,
  24854. bottom: 24.6 / 2309
  24855. }
  24856. },
  24857. tail: {
  24858. height: math.unit(2.8, "feet"),
  24859. name: "Tail",
  24860. image: {
  24861. source: "./media/characters/hind/tail.svg"
  24862. }
  24863. },
  24864. head: {
  24865. height: math.unit(2.55, "feet"),
  24866. name: "Head",
  24867. image: {
  24868. source: "./media/characters/hind/head.svg"
  24869. }
  24870. },
  24871. },
  24872. [
  24873. {
  24874. name: "XS",
  24875. height: math.unit(0.7, "feet")
  24876. },
  24877. {
  24878. name: "Normal",
  24879. height: math.unit(7, "feet"),
  24880. default: true
  24881. },
  24882. {
  24883. name: "XL",
  24884. height: math.unit(70, "feet")
  24885. },
  24886. ]
  24887. ))
  24888. characterMakers.push(() => makeCharacter(
  24889. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24890. {
  24891. front: {
  24892. height: math.unit(6, "feet"),
  24893. weight: math.unit(150, "lb"),
  24894. name: "Front",
  24895. image: {
  24896. source: "./media/characters/tharquench-sizestealer/front.svg",
  24897. extra: 2318 / 2063,
  24898. bottom: 93.4 / 2410
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Nano",
  24905. height: math.unit(1, "mm")
  24906. },
  24907. {
  24908. name: "Micro",
  24909. height: math.unit(1, "cm")
  24910. },
  24911. {
  24912. name: "Normal",
  24913. height: math.unit(2.1, "meters"),
  24914. default: true
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24920. {
  24921. front: {
  24922. height: math.unit(7 + 5 / 12, "feet"),
  24923. weight: math.unit(357, "lb"),
  24924. name: "Front",
  24925. image: {
  24926. source: "./media/characters/solex-draconov/front.svg",
  24927. extra: 1993 / 1865,
  24928. bottom: 117 / 2111
  24929. }
  24930. },
  24931. },
  24932. [
  24933. {
  24934. name: "Natural Height",
  24935. height: math.unit(7 + 5 / 12, "feet"),
  24936. default: true
  24937. },
  24938. {
  24939. name: "Macro",
  24940. height: math.unit(350, "feet")
  24941. },
  24942. {
  24943. name: "Macro+",
  24944. height: math.unit(1000, "feet")
  24945. },
  24946. {
  24947. name: "Megamacro",
  24948. height: math.unit(20, "km")
  24949. },
  24950. {
  24951. name: "Megamacro+",
  24952. height: math.unit(1000, "km")
  24953. },
  24954. {
  24955. name: "Gigamacro",
  24956. height: math.unit(2.5, "Gm")
  24957. },
  24958. {
  24959. name: "Teramacro",
  24960. height: math.unit(15, "Tm")
  24961. },
  24962. {
  24963. name: "Galactic",
  24964. height: math.unit(30, "Zm")
  24965. },
  24966. {
  24967. name: "Universal",
  24968. height: math.unit(21000, "Ym")
  24969. },
  24970. {
  24971. name: "Omniversal",
  24972. height: math.unit(9.861e50, "Ym")
  24973. },
  24974. {
  24975. name: "Existential",
  24976. height: math.unit(1e300, "meters")
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24982. {
  24983. side: {
  24984. height: math.unit(25, "feet"),
  24985. weight: math.unit(90000, "lb"),
  24986. name: "Side",
  24987. image: {
  24988. source: "./media/characters/mandarax/side.svg",
  24989. extra: 614 / 332,
  24990. bottom: 55 / 630
  24991. }
  24992. },
  24993. head: {
  24994. height: math.unit(11.4, "feet"),
  24995. name: "Head",
  24996. image: {
  24997. source: "./media/characters/mandarax/head.svg"
  24998. }
  24999. },
  25000. belly: {
  25001. height: math.unit(33, "feet"),
  25002. name: "Belly",
  25003. capacity: math.unit(500, "people"),
  25004. image: {
  25005. source: "./media/characters/mandarax/belly.svg"
  25006. }
  25007. },
  25008. dick: {
  25009. height: math.unit(8.46, "feet"),
  25010. name: "Dick",
  25011. image: {
  25012. source: "./media/characters/mandarax/dick.svg"
  25013. }
  25014. },
  25015. top: {
  25016. height: math.unit(28, "meters"),
  25017. name: "Top",
  25018. image: {
  25019. source: "./media/characters/mandarax/top.svg"
  25020. }
  25021. },
  25022. },
  25023. [
  25024. {
  25025. name: "Normal",
  25026. height: math.unit(25, "feet"),
  25027. default: true
  25028. },
  25029. ]
  25030. ))
  25031. characterMakers.push(() => makeCharacter(
  25032. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25033. {
  25034. front: {
  25035. height: math.unit(5, "feet"),
  25036. weight: math.unit(90, "lb"),
  25037. name: "Front",
  25038. image: {
  25039. source: "./media/characters/pixil/front.svg",
  25040. extra: 2000 / 1618,
  25041. bottom: 12.3 / 2011
  25042. }
  25043. },
  25044. },
  25045. [
  25046. {
  25047. name: "Normal",
  25048. height: math.unit(5, "feet"),
  25049. default: true
  25050. },
  25051. {
  25052. name: "Megamacro",
  25053. height: math.unit(10, "miles"),
  25054. },
  25055. ]
  25056. ))
  25057. characterMakers.push(() => makeCharacter(
  25058. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25059. {
  25060. front: {
  25061. height: math.unit(7 + 2 / 12, "feet"),
  25062. weight: math.unit(200, "lb"),
  25063. name: "Front",
  25064. image: {
  25065. source: "./media/characters/angel/front.svg",
  25066. extra: 1830 / 1737,
  25067. bottom: 22.6 / 1854,
  25068. }
  25069. },
  25070. },
  25071. [
  25072. {
  25073. name: "Normal",
  25074. height: math.unit(7 + 2 / 12, "feet"),
  25075. default: true
  25076. },
  25077. {
  25078. name: "Macro",
  25079. height: math.unit(1000, "feet")
  25080. },
  25081. {
  25082. name: "Megamacro",
  25083. height: math.unit(2, "miles")
  25084. },
  25085. {
  25086. name: "Gigamacro",
  25087. height: math.unit(20, "earths")
  25088. },
  25089. ]
  25090. ))
  25091. characterMakers.push(() => makeCharacter(
  25092. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25093. {
  25094. front: {
  25095. height: math.unit(5, "feet"),
  25096. weight: math.unit(180, "lb"),
  25097. name: "Front",
  25098. image: {
  25099. source: "./media/characters/mekana/front.svg",
  25100. extra: 1671 / 1605,
  25101. bottom: 3.5 / 1691
  25102. }
  25103. },
  25104. side: {
  25105. height: math.unit(5, "feet"),
  25106. weight: math.unit(180, "lb"),
  25107. name: "Side",
  25108. image: {
  25109. source: "./media/characters/mekana/side.svg",
  25110. extra: 1671 / 1605,
  25111. bottom: 3.5 / 1691
  25112. }
  25113. },
  25114. back: {
  25115. height: math.unit(5, "feet"),
  25116. weight: math.unit(180, "lb"),
  25117. name: "Back",
  25118. image: {
  25119. source: "./media/characters/mekana/back.svg",
  25120. extra: 1671 / 1605,
  25121. bottom: 3.5 / 1691
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Normal",
  25128. height: math.unit(5, "feet"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(4 + 6 / 12, "feet"),
  25138. weight: math.unit(80, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/pixie/front.svg",
  25142. extra: 1924 / 1825,
  25143. bottom: 22.4 / 1946
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Normal",
  25150. height: math.unit(4 + 6 / 12, "feet"),
  25151. default: true
  25152. },
  25153. {
  25154. name: "Macro",
  25155. height: math.unit(40, "feet")
  25156. },
  25157. ]
  25158. ))
  25159. characterMakers.push(() => makeCharacter(
  25160. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25161. {
  25162. front: {
  25163. height: math.unit(2.1, "meters"),
  25164. weight: math.unit(200, "lb"),
  25165. name: "Front",
  25166. image: {
  25167. source: "./media/characters/the-lascivious/front.svg",
  25168. extra: 1 / 0.893,
  25169. bottom: 3.5 / 573.7
  25170. }
  25171. },
  25172. },
  25173. [
  25174. {
  25175. name: "Human Scale",
  25176. height: math.unit(2.1, "meters")
  25177. },
  25178. {
  25179. name: "Wolxi Scale",
  25180. height: math.unit(46.2, "m"),
  25181. default: true
  25182. },
  25183. {
  25184. name: "Boinker of Buildings",
  25185. height: math.unit(10, "km")
  25186. },
  25187. {
  25188. name: "Shagger of Skyscrapers",
  25189. height: math.unit(40, "km")
  25190. },
  25191. {
  25192. name: "Banger of Boroughs",
  25193. height: math.unit(4000, "km")
  25194. },
  25195. {
  25196. name: "Screwer of States",
  25197. height: math.unit(100000, "km")
  25198. },
  25199. {
  25200. name: "Pounder of Planets",
  25201. height: math.unit(2000000, "km")
  25202. },
  25203. ]
  25204. ))
  25205. characterMakers.push(() => makeCharacter(
  25206. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25207. {
  25208. front: {
  25209. height: math.unit(6, "feet"),
  25210. weight: math.unit(150, "lb"),
  25211. name: "Front",
  25212. image: {
  25213. source: "./media/characters/aj/front.svg",
  25214. extra: 2039 / 1562,
  25215. bottom: 40 / 2079
  25216. }
  25217. },
  25218. },
  25219. [
  25220. {
  25221. name: "Normal",
  25222. height: math.unit(11 + 6 / 12, "feet"),
  25223. default: true
  25224. },
  25225. {
  25226. name: "Megamacro",
  25227. height: math.unit(60, "megameters")
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25233. {
  25234. side: {
  25235. height: math.unit(31 + 8 / 12, "feet"),
  25236. weight: math.unit(75000, "kg"),
  25237. name: "Side",
  25238. image: {
  25239. source: "./media/characters/koros/side.svg",
  25240. extra: 1442 / 1297,
  25241. bottom: 122.7 / 1562
  25242. }
  25243. },
  25244. dicksKingsCrown: {
  25245. height: math.unit(6, "feet"),
  25246. name: "Dicks (King's Crown)",
  25247. image: {
  25248. source: "./media/characters/koros/dicks-kings-crown.svg"
  25249. }
  25250. },
  25251. dicksTailSet: {
  25252. height: math.unit(3, "feet"),
  25253. name: "Dicks (Tail Set)",
  25254. image: {
  25255. source: "./media/characters/koros/dicks-tail-set.svg"
  25256. }
  25257. },
  25258. dickCumming: {
  25259. height: math.unit(7.98, "feet"),
  25260. name: "Dick (Cumming)",
  25261. image: {
  25262. source: "./media/characters/koros/dick-cumming.svg"
  25263. }
  25264. },
  25265. dicksBack: {
  25266. height: math.unit(5.9, "feet"),
  25267. name: "Dicks (Back)",
  25268. image: {
  25269. source: "./media/characters/koros/dicks-back.svg"
  25270. }
  25271. },
  25272. dicksFront: {
  25273. height: math.unit(3.72, "feet"),
  25274. name: "Dicks (Front)",
  25275. image: {
  25276. source: "./media/characters/koros/dicks-front.svg"
  25277. }
  25278. },
  25279. dicksPeeking: {
  25280. height: math.unit(3.0, "feet"),
  25281. name: "Dicks (Peeking)",
  25282. image: {
  25283. source: "./media/characters/koros/dicks-peeking.svg"
  25284. }
  25285. },
  25286. eye: {
  25287. height: math.unit(1.7, "feet"),
  25288. name: "Eye",
  25289. image: {
  25290. source: "./media/characters/koros/eye.svg"
  25291. }
  25292. },
  25293. headFront: {
  25294. height: math.unit(11.69, "feet"),
  25295. name: "Head (Front)",
  25296. image: {
  25297. source: "./media/characters/koros/head-front.svg"
  25298. }
  25299. },
  25300. headSide: {
  25301. height: math.unit(14, "feet"),
  25302. name: "Head (Side)",
  25303. image: {
  25304. source: "./media/characters/koros/head-side.svg"
  25305. }
  25306. },
  25307. leg: {
  25308. height: math.unit(17, "feet"),
  25309. name: "Leg",
  25310. image: {
  25311. source: "./media/characters/koros/leg.svg"
  25312. }
  25313. },
  25314. mawSide: {
  25315. height: math.unit(12.8, "feet"),
  25316. name: "Maw (Side)",
  25317. image: {
  25318. source: "./media/characters/koros/maw-side.svg"
  25319. }
  25320. },
  25321. mawSpitting: {
  25322. height: math.unit(17, "feet"),
  25323. name: "Maw (Spitting)",
  25324. image: {
  25325. source: "./media/characters/koros/maw-spitting.svg"
  25326. }
  25327. },
  25328. slit: {
  25329. height: math.unit(2.8, "feet"),
  25330. name: "Slit",
  25331. image: {
  25332. source: "./media/characters/koros/slit.svg"
  25333. }
  25334. },
  25335. stomach: {
  25336. height: math.unit(6.8, "feet"),
  25337. capacity: math.unit(20, "people"),
  25338. name: "Stomach",
  25339. image: {
  25340. source: "./media/characters/koros/stomach.svg"
  25341. }
  25342. },
  25343. wingspanBottom: {
  25344. height: math.unit(114, "feet"),
  25345. name: "Wingspan (Bottom)",
  25346. image: {
  25347. source: "./media/characters/koros/wingspan-bottom.svg"
  25348. }
  25349. },
  25350. wingspanTop: {
  25351. height: math.unit(104, "feet"),
  25352. name: "Wingspan (Top)",
  25353. image: {
  25354. source: "./media/characters/koros/wingspan-top.svg"
  25355. }
  25356. },
  25357. },
  25358. [
  25359. {
  25360. name: "Normal",
  25361. height: math.unit(31 + 8 / 12, "feet"),
  25362. default: true
  25363. },
  25364. ]
  25365. ))
  25366. characterMakers.push(() => makeCharacter(
  25367. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25368. {
  25369. front: {
  25370. height: math.unit(18 + 5 / 12, "feet"),
  25371. weight: math.unit(3750, "kg"),
  25372. name: "Front",
  25373. image: {
  25374. source: "./media/characters/vexx/front.svg",
  25375. extra: 426 / 396,
  25376. bottom: 31.5 / 458
  25377. }
  25378. },
  25379. maw: {
  25380. height: math.unit(6, "feet"),
  25381. name: "Maw",
  25382. image: {
  25383. source: "./media/characters/vexx/maw.svg"
  25384. }
  25385. },
  25386. },
  25387. [
  25388. {
  25389. name: "Normal",
  25390. height: math.unit(18 + 5 / 12, "feet"),
  25391. default: true
  25392. },
  25393. ]
  25394. ))
  25395. characterMakers.push(() => makeCharacter(
  25396. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25397. {
  25398. front: {
  25399. height: math.unit(17 + 6 / 12, "feet"),
  25400. weight: math.unit(150, "lb"),
  25401. name: "Front",
  25402. image: {
  25403. source: "./media/characters/baadra/front.svg",
  25404. extra: 3137 / 2890,
  25405. bottom: 168.4 / 3305
  25406. }
  25407. },
  25408. back: {
  25409. height: math.unit(17 + 6 / 12, "feet"),
  25410. weight: math.unit(150, "lb"),
  25411. name: "Back",
  25412. image: {
  25413. source: "./media/characters/baadra/back.svg",
  25414. extra: 3142 / 2890,
  25415. bottom: 220 / 3371
  25416. }
  25417. },
  25418. head: {
  25419. height: math.unit(5.45, "feet"),
  25420. name: "Head",
  25421. image: {
  25422. source: "./media/characters/baadra/head.svg"
  25423. }
  25424. },
  25425. headAngry: {
  25426. height: math.unit(4.95, "feet"),
  25427. name: "Head (Angry)",
  25428. image: {
  25429. source: "./media/characters/baadra/head-angry.svg"
  25430. }
  25431. },
  25432. headOpen: {
  25433. height: math.unit(6, "feet"),
  25434. name: "Head (Open)",
  25435. image: {
  25436. source: "./media/characters/baadra/head-open.svg"
  25437. }
  25438. },
  25439. },
  25440. [
  25441. {
  25442. name: "Normal",
  25443. height: math.unit(17 + 6 / 12, "feet"),
  25444. default: true
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25450. {
  25451. front: {
  25452. height: math.unit(7 + 3 / 12, "feet"),
  25453. weight: math.unit(180, "lb"),
  25454. name: "Front",
  25455. image: {
  25456. source: "./media/characters/juri/front.svg",
  25457. extra: 1401 / 1237,
  25458. bottom: 18.5 / 1418
  25459. }
  25460. },
  25461. side: {
  25462. height: math.unit(7 + 3 / 12, "feet"),
  25463. weight: math.unit(180, "lb"),
  25464. name: "Side",
  25465. image: {
  25466. source: "./media/characters/juri/side.svg",
  25467. extra: 1424 / 1242,
  25468. bottom: 18.5 / 1447
  25469. }
  25470. },
  25471. sitting: {
  25472. height: math.unit(6, "feet"),
  25473. weight: math.unit(180, "lb"),
  25474. name: "Sitting",
  25475. image: {
  25476. source: "./media/characters/juri/sitting.svg",
  25477. extra: 1270 / 1143,
  25478. bottom: 100 / 1343
  25479. }
  25480. },
  25481. back: {
  25482. height: math.unit(7 + 3 / 12, "feet"),
  25483. weight: math.unit(180, "lb"),
  25484. name: "Back",
  25485. image: {
  25486. source: "./media/characters/juri/back.svg",
  25487. extra: 1377 / 1240,
  25488. bottom: 23.7 / 1405
  25489. }
  25490. },
  25491. maw: {
  25492. height: math.unit(2.8, "feet"),
  25493. name: "Maw",
  25494. image: {
  25495. source: "./media/characters/juri/maw.svg"
  25496. }
  25497. },
  25498. stomach: {
  25499. height: math.unit(0.89, "feet"),
  25500. capacity: math.unit(4, "liters"),
  25501. name: "Stomach",
  25502. image: {
  25503. source: "./media/characters/juri/stomach.svg"
  25504. }
  25505. },
  25506. },
  25507. [
  25508. {
  25509. name: "Normal",
  25510. height: math.unit(7 + 3 / 12, "feet"),
  25511. default: true
  25512. },
  25513. ]
  25514. ))
  25515. characterMakers.push(() => makeCharacter(
  25516. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25517. {
  25518. fox: {
  25519. height: math.unit(5 + 6 / 12, "feet"),
  25520. weight: math.unit(140, "lb"),
  25521. name: "Fox",
  25522. image: {
  25523. source: "./media/characters/maxene-sita/fox.svg",
  25524. extra: 146 / 138,
  25525. bottom: 2.1 / 148.19
  25526. }
  25527. },
  25528. foxLaying: {
  25529. height: math.unit(1.70, "feet"),
  25530. weight: math.unit(140, "lb"),
  25531. name: "Fox (Laying)",
  25532. image: {
  25533. source: "./media/characters/maxene-sita/fox-laying.svg",
  25534. extra: 910 / 572,
  25535. bottom: 71 / 981
  25536. }
  25537. },
  25538. kitsune: {
  25539. height: math.unit(10, "feet"),
  25540. weight: math.unit(800, "lb"),
  25541. name: "Kitsune",
  25542. image: {
  25543. source: "./media/characters/maxene-sita/kitsune.svg",
  25544. extra: 185 / 176,
  25545. bottom: 4.7 / 189.9
  25546. }
  25547. },
  25548. hellhound: {
  25549. height: math.unit(10, "feet"),
  25550. weight: math.unit(700, "lb"),
  25551. name: "Hellhound",
  25552. image: {
  25553. source: "./media/characters/maxene-sita/hellhound.svg",
  25554. extra: 1600 / 1545,
  25555. bottom: 81 / 1681
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Normal",
  25562. height: math.unit(5 + 6 / 12, "feet"),
  25563. default: true
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25569. {
  25570. front: {
  25571. height: math.unit(3 + 4 / 12, "feet"),
  25572. weight: math.unit(70, "lb"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/maia/front.svg",
  25576. extra: 227 / 219.5,
  25577. bottom: 40 / 267
  25578. }
  25579. },
  25580. back: {
  25581. height: math.unit(3 + 4 / 12, "feet"),
  25582. weight: math.unit(70, "lb"),
  25583. name: "Back",
  25584. image: {
  25585. source: "./media/characters/maia/back.svg",
  25586. extra: 237 / 225
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(3 + 4 / 12, "feet"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(5 + 10 / 12, "feet"),
  25603. weight: math.unit(197, "lb"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/jabaro/front.svg",
  25607. extra: 225 / 216,
  25608. bottom: 5.06 / 230
  25609. }
  25610. },
  25611. back: {
  25612. height: math.unit(5 + 10 / 12, "feet"),
  25613. weight: math.unit(197, "lb"),
  25614. name: "Back",
  25615. image: {
  25616. source: "./media/characters/jabaro/back.svg",
  25617. extra: 225 / 219,
  25618. bottom: 1.9 / 227
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(5 + 10 / 12, "feet"),
  25626. default: true
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25632. {
  25633. front: {
  25634. height: math.unit(5 + 8 / 12, "feet"),
  25635. weight: math.unit(139, "lb"),
  25636. name: "Front",
  25637. image: {
  25638. source: "./media/characters/risa/front.svg",
  25639. extra: 270 / 260,
  25640. bottom: 11.2 / 282
  25641. }
  25642. },
  25643. back: {
  25644. height: math.unit(5 + 8 / 12, "feet"),
  25645. weight: math.unit(139, "lb"),
  25646. name: "Back",
  25647. image: {
  25648. source: "./media/characters/risa/back.svg",
  25649. extra: 264 / 255,
  25650. bottom: 4 / 268
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(5 + 8 / 12, "feet"),
  25658. default: true
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25664. {
  25665. front: {
  25666. height: math.unit(2 + 11 / 12, "feet"),
  25667. weight: math.unit(30, "lb"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/weatley/front.svg",
  25671. bottom: 10.7 / 414,
  25672. extra: 403.5 / 362
  25673. }
  25674. },
  25675. back: {
  25676. height: math.unit(2 + 11 / 12, "feet"),
  25677. weight: math.unit(30, "lb"),
  25678. name: "Back",
  25679. image: {
  25680. source: "./media/characters/weatley/back.svg",
  25681. bottom: 10.7 / 414,
  25682. extra: 403.5 / 362
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(2 + 11 / 12, "feet"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(5 + 2 / 12, "feet"),
  25699. weight: math.unit(50, "kg"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/mercury-crescent/front.svg",
  25703. extra: 1088 / 1033,
  25704. bottom: 18.9 / 1109
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(5 + 2 / 12, "feet"),
  25712. default: true
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25718. {
  25719. front: {
  25720. height: math.unit(2, "feet"),
  25721. weight: math.unit(15, "kg"),
  25722. name: "Front",
  25723. image: {
  25724. source: "./media/characters/diamond-jones/front.svg",
  25725. extra: 727/723,
  25726. bottom: 46/773
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Normal",
  25733. height: math.unit(2, "feet"),
  25734. default: true
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25740. {
  25741. front: {
  25742. height: math.unit(3, "feet"),
  25743. weight: math.unit(30, "kg"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/sweet-bit/front.svg",
  25747. extra: 675 / 567,
  25748. bottom: 27.7 / 703
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(3, "feet"),
  25756. default: true
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25762. {
  25763. side: {
  25764. height: math.unit(9.178, "feet"),
  25765. weight: math.unit(500, "lb"),
  25766. name: "Side",
  25767. image: {
  25768. source: "./media/characters/umbrazen/side.svg",
  25769. extra: 1730 / 1473,
  25770. bottom: 34.6 / 1765
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Normal",
  25777. height: math.unit(9.178, "feet"),
  25778. default: true
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25784. {
  25785. front: {
  25786. height: math.unit(10, "feet"),
  25787. weight: math.unit(750, "lb"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/arlist/front.svg",
  25791. extra: 961 / 778,
  25792. bottom: 6.2 / 986
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Normal",
  25799. height: math.unit(10, "feet"),
  25800. default: true
  25801. },
  25802. ]
  25803. ))
  25804. characterMakers.push(() => makeCharacter(
  25805. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25806. {
  25807. front: {
  25808. height: math.unit(5 + 1 / 12, "feet"),
  25809. weight: math.unit(110, "lb"),
  25810. name: "Front",
  25811. image: {
  25812. source: "./media/characters/aradel/front.svg",
  25813. extra: 324 / 303,
  25814. bottom: 3.6 / 329.4
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Normal",
  25821. height: math.unit(5 + 1 / 12, "feet"),
  25822. default: true
  25823. },
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(3 + 8 / 12, "feet"),
  25831. weight: math.unit(50, "lb"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/serryn/front.svg",
  25835. extra: 1792 / 1656,
  25836. bottom: 43.5 / 1840
  25837. }
  25838. },
  25839. },
  25840. [
  25841. {
  25842. name: "Normal",
  25843. height: math.unit(3 + 8 / 12, "feet"),
  25844. default: true
  25845. },
  25846. ]
  25847. ))
  25848. characterMakers.push(() => makeCharacter(
  25849. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25850. {
  25851. front: {
  25852. height: math.unit(7 + 10 / 12, "feet"),
  25853. weight: math.unit(255, "lb"),
  25854. name: "Front",
  25855. image: {
  25856. source: "./media/characters/xavier-thyme/front.svg",
  25857. extra: 3733 / 3642,
  25858. bottom: 131 / 3869
  25859. }
  25860. },
  25861. frontRaven: {
  25862. height: math.unit(7 + 10 / 12, "feet"),
  25863. weight: math.unit(255, "lb"),
  25864. name: "Front (Raven)",
  25865. image: {
  25866. source: "./media/characters/xavier-thyme/front-raven.svg",
  25867. extra: 4385 / 3642,
  25868. bottom: 131 / 4517
  25869. }
  25870. },
  25871. },
  25872. [
  25873. {
  25874. name: "Normal",
  25875. height: math.unit(7 + 10 / 12, "feet"),
  25876. default: true
  25877. },
  25878. ]
  25879. ))
  25880. characterMakers.push(() => makeCharacter(
  25881. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25882. {
  25883. front: {
  25884. height: math.unit(1.6, "m"),
  25885. weight: math.unit(50, "kg"),
  25886. name: "Front",
  25887. image: {
  25888. source: "./media/characters/kiki/front.svg",
  25889. extra: 4682 / 3610,
  25890. bottom: 115 / 4777
  25891. }
  25892. },
  25893. },
  25894. [
  25895. {
  25896. name: "Normal",
  25897. height: math.unit(1.6, "meters"),
  25898. default: true
  25899. },
  25900. ]
  25901. ))
  25902. characterMakers.push(() => makeCharacter(
  25903. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25904. {
  25905. front: {
  25906. height: math.unit(50, "m"),
  25907. weight: math.unit(500, "tonnes"),
  25908. name: "Front",
  25909. image: {
  25910. source: "./media/characters/ryoko/front.svg",
  25911. extra: 4632 / 3926,
  25912. bottom: 193 / 4823
  25913. }
  25914. },
  25915. },
  25916. [
  25917. {
  25918. name: "Normal",
  25919. height: math.unit(50, "meters"),
  25920. default: true
  25921. },
  25922. ]
  25923. ))
  25924. characterMakers.push(() => makeCharacter(
  25925. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25926. {
  25927. front: {
  25928. height: math.unit(30, "m"),
  25929. weight: math.unit(22, "tonnes"),
  25930. name: "Front",
  25931. image: {
  25932. source: "./media/characters/elio/front.svg",
  25933. extra: 4582 / 3720,
  25934. bottom: 236 / 4828
  25935. }
  25936. },
  25937. },
  25938. [
  25939. {
  25940. name: "Normal",
  25941. height: math.unit(30, "meters"),
  25942. default: true
  25943. },
  25944. ]
  25945. ))
  25946. characterMakers.push(() => makeCharacter(
  25947. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25948. {
  25949. front: {
  25950. height: math.unit(6 + 3 / 12, "feet"),
  25951. weight: math.unit(120, "lb"),
  25952. name: "Front",
  25953. image: {
  25954. source: "./media/characters/azura/front.svg",
  25955. extra: 1149 / 1135,
  25956. bottom: 45 / 1194
  25957. }
  25958. },
  25959. frontClothed: {
  25960. height: math.unit(6 + 3 / 12, "feet"),
  25961. weight: math.unit(120, "lb"),
  25962. name: "Front (Clothed)",
  25963. image: {
  25964. source: "./media/characters/azura/front-clothed.svg",
  25965. extra: 1149 / 1135,
  25966. bottom: 45 / 1194
  25967. }
  25968. },
  25969. },
  25970. [
  25971. {
  25972. name: "Normal",
  25973. height: math.unit(6 + 3 / 12, "feet"),
  25974. default: true
  25975. },
  25976. {
  25977. name: "Macro",
  25978. height: math.unit(20 + 6 / 12, "feet")
  25979. },
  25980. {
  25981. name: "Megamacro",
  25982. height: math.unit(12, "miles")
  25983. },
  25984. {
  25985. name: "Gigamacro",
  25986. height: math.unit(10000, "miles")
  25987. },
  25988. {
  25989. name: "Teramacro",
  25990. height: math.unit(900000, "miles")
  25991. },
  25992. ]
  25993. ))
  25994. characterMakers.push(() => makeCharacter(
  25995. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25996. {
  25997. front: {
  25998. height: math.unit(12, "feet"),
  25999. weight: math.unit(1, "ton"),
  26000. capacity: math.unit(660000, "gallons"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/zeus/front.svg",
  26004. extra: 5005 / 4717,
  26005. bottom: 363 / 5388
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(12, "feet")
  26013. },
  26014. {
  26015. name: "Preferred Size",
  26016. height: math.unit(0.5, "miles"),
  26017. default: true
  26018. },
  26019. {
  26020. name: "Giga Horse",
  26021. height: math.unit(300, "miles")
  26022. },
  26023. {
  26024. name: "Riding Planets",
  26025. height: math.unit(30, "megameters")
  26026. },
  26027. {
  26028. name: "Cosmic Giant",
  26029. height: math.unit(3, "zettameters")
  26030. },
  26031. {
  26032. name: "Breeding God",
  26033. height: math.unit(9.92e22, "yottameters")
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26039. {
  26040. side: {
  26041. height: math.unit(9, "feet"),
  26042. weight: math.unit(1500, "kg"),
  26043. name: "Side",
  26044. image: {
  26045. source: "./media/characters/fang/side.svg",
  26046. extra: 924 / 866,
  26047. bottom: 47.5 / 972.3
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(9, "feet"),
  26055. default: true
  26056. },
  26057. {
  26058. name: "Macro",
  26059. height: math.unit(75 + 6 / 12, "feet")
  26060. },
  26061. {
  26062. name: "Teramacro",
  26063. height: math.unit(50000, "miles")
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(10, "feet"),
  26072. weight: math.unit(2, "tons"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/rekhit/front.svg",
  26076. extra: 2796 / 2590,
  26077. bottom: 225 / 3022
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Normal",
  26084. height: math.unit(10, "feet"),
  26085. default: true
  26086. },
  26087. {
  26088. name: "Macro",
  26089. height: math.unit(500, "feet")
  26090. },
  26091. ]
  26092. ))
  26093. characterMakers.push(() => makeCharacter(
  26094. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26095. {
  26096. front: {
  26097. height: math.unit(7 + 6.451 / 12, "feet"),
  26098. weight: math.unit(310, "lb"),
  26099. name: "Front",
  26100. image: {
  26101. source: "./media/characters/dahlia-verrick/front.svg",
  26102. extra: 1488 / 1365,
  26103. bottom: 6.2 / 1495
  26104. }
  26105. },
  26106. back: {
  26107. height: math.unit(7 + 6.451 / 12, "feet"),
  26108. weight: math.unit(310, "lb"),
  26109. name: "Back",
  26110. image: {
  26111. source: "./media/characters/dahlia-verrick/back.svg",
  26112. extra: 1472 / 1351,
  26113. bottom: 5.28 / 1477
  26114. }
  26115. },
  26116. frontBusiness: {
  26117. height: math.unit(7 + 6.451 / 12, "feet"),
  26118. weight: math.unit(200, "lb"),
  26119. name: "Front (Business)",
  26120. image: {
  26121. source: "./media/characters/dahlia-verrick/front-business.svg",
  26122. extra: 1478 / 1381,
  26123. bottom: 5.5 / 1484
  26124. }
  26125. },
  26126. frontCasual: {
  26127. height: math.unit(7 + 6.451 / 12, "feet"),
  26128. weight: math.unit(200, "lb"),
  26129. name: "Front (Casual)",
  26130. image: {
  26131. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26132. extra: 1478 / 1381,
  26133. bottom: 5.5 / 1484
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "Travel-Sized",
  26140. height: math.unit(7.45, "inches")
  26141. },
  26142. {
  26143. name: "Normal",
  26144. height: math.unit(7 + 6.451 / 12, "feet"),
  26145. default: true
  26146. },
  26147. {
  26148. name: "Hitting the Town",
  26149. height: math.unit(37 + 8 / 12, "feet")
  26150. },
  26151. {
  26152. name: "Stomp in the Suburbs",
  26153. height: math.unit(964 + 9.728 / 12, "feet")
  26154. },
  26155. {
  26156. name: "Sit on the City",
  26157. height: math.unit(61747 + 10.592 / 12, "feet")
  26158. },
  26159. {
  26160. name: "Glomp the Globe",
  26161. height: math.unit(252919327 + 4.832 / 12, "feet")
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26167. {
  26168. front: {
  26169. height: math.unit(6 + 4 / 12, "feet"),
  26170. weight: math.unit(320, "lb"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/balina-mahigan/front.svg",
  26174. extra: 447 / 428,
  26175. bottom: 18 / 466
  26176. }
  26177. },
  26178. back: {
  26179. height: math.unit(6 + 4 / 12, "feet"),
  26180. weight: math.unit(320, "lb"),
  26181. name: "Back",
  26182. image: {
  26183. source: "./media/characters/balina-mahigan/back.svg",
  26184. extra: 445 / 428,
  26185. bottom: 4.07 / 448
  26186. }
  26187. },
  26188. arm: {
  26189. height: math.unit(1.88, "feet"),
  26190. name: "Arm",
  26191. image: {
  26192. source: "./media/characters/balina-mahigan/arm.svg"
  26193. }
  26194. },
  26195. backPort: {
  26196. height: math.unit(0.685, "feet"),
  26197. name: "Back Port",
  26198. image: {
  26199. source: "./media/characters/balina-mahigan/back-port.svg"
  26200. }
  26201. },
  26202. hoofpaw: {
  26203. height: math.unit(1.41, "feet"),
  26204. name: "Hoofpaw",
  26205. image: {
  26206. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26207. }
  26208. },
  26209. leftHandBack: {
  26210. height: math.unit(0.938, "feet"),
  26211. name: "Left Hand (Back)",
  26212. image: {
  26213. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26214. }
  26215. },
  26216. leftHandFront: {
  26217. height: math.unit(0.938, "feet"),
  26218. name: "Left Hand (Front)",
  26219. image: {
  26220. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26221. }
  26222. },
  26223. rightHandBack: {
  26224. height: math.unit(0.95, "feet"),
  26225. name: "Right Hand (Back)",
  26226. image: {
  26227. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26228. }
  26229. },
  26230. rightHandFront: {
  26231. height: math.unit(0.95, "feet"),
  26232. name: "Right Hand (Front)",
  26233. image: {
  26234. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(6 + 4 / 12, "feet"),
  26242. default: true
  26243. },
  26244. ]
  26245. ))
  26246. characterMakers.push(() => makeCharacter(
  26247. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26248. {
  26249. front: {
  26250. height: math.unit(6, "feet"),
  26251. weight: math.unit(320, "lb"),
  26252. name: "Front",
  26253. image: {
  26254. source: "./media/characters/balina-mejeri/front.svg",
  26255. extra: 517 / 488,
  26256. bottom: 44.2 / 561
  26257. }
  26258. },
  26259. },
  26260. [
  26261. {
  26262. name: "Normal",
  26263. height: math.unit(6 + 4 / 12, "feet")
  26264. },
  26265. {
  26266. name: "Business",
  26267. height: math.unit(155, "feet"),
  26268. default: true
  26269. },
  26270. ]
  26271. ))
  26272. characterMakers.push(() => makeCharacter(
  26273. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26274. {
  26275. kneeling: {
  26276. height: math.unit(6 + 4 / 12, "feet"),
  26277. weight: math.unit(300 * 20, "lb"),
  26278. name: "Kneeling",
  26279. image: {
  26280. source: "./media/characters/balbarian/kneeling.svg",
  26281. extra: 922 / 862,
  26282. bottom: 42.4 / 965
  26283. }
  26284. },
  26285. },
  26286. [
  26287. {
  26288. name: "Normal",
  26289. height: math.unit(6 + 4 / 12, "feet")
  26290. },
  26291. {
  26292. name: "Treasured",
  26293. height: math.unit(18 + 9 / 12, "feet"),
  26294. default: true
  26295. },
  26296. {
  26297. name: "Macro",
  26298. height: math.unit(900, "feet")
  26299. },
  26300. ]
  26301. ))
  26302. characterMakers.push(() => makeCharacter(
  26303. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26304. {
  26305. front: {
  26306. height: math.unit(6 + 4 / 12, "feet"),
  26307. weight: math.unit(325, "lb"),
  26308. name: "Front",
  26309. image: {
  26310. source: "./media/characters/balina-amarini/front.svg",
  26311. extra: 415 / 403,
  26312. bottom: 19 / 433.4
  26313. }
  26314. },
  26315. back: {
  26316. height: math.unit(6 + 4 / 12, "feet"),
  26317. weight: math.unit(325, "lb"),
  26318. name: "Back",
  26319. image: {
  26320. source: "./media/characters/balina-amarini/back.svg",
  26321. extra: 415 / 403,
  26322. bottom: 13.5 / 432
  26323. }
  26324. },
  26325. overdrive: {
  26326. height: math.unit(6 + 4 / 12, "feet"),
  26327. weight: math.unit(400, "lb"),
  26328. name: "Overdrive",
  26329. image: {
  26330. source: "./media/characters/balina-amarini/overdrive.svg",
  26331. extra: 269 / 259,
  26332. bottom: 12 / 282
  26333. }
  26334. },
  26335. },
  26336. [
  26337. {
  26338. name: "Boom",
  26339. height: math.unit(9 + 10 / 12, "feet"),
  26340. default: true
  26341. },
  26342. {
  26343. name: "Macro",
  26344. height: math.unit(280, "feet")
  26345. },
  26346. ]
  26347. ))
  26348. characterMakers.push(() => makeCharacter(
  26349. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26350. {
  26351. goddess: {
  26352. height: math.unit(600, "feet"),
  26353. weight: math.unit(2000000, "tons"),
  26354. name: "Goddess",
  26355. image: {
  26356. source: "./media/characters/lady-kubwa/goddess.svg",
  26357. extra: 1240.5 / 1223,
  26358. bottom: 22 / 1263
  26359. }
  26360. },
  26361. goddesser: {
  26362. height: math.unit(900, "feet"),
  26363. weight: math.unit(20000000, "lb"),
  26364. name: "Goddess-er",
  26365. image: {
  26366. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26367. extra: 899 / 888,
  26368. bottom: 12.6 / 912
  26369. }
  26370. },
  26371. },
  26372. [
  26373. {
  26374. name: "Macro",
  26375. height: math.unit(600, "feet"),
  26376. default: true
  26377. },
  26378. {
  26379. name: "Megamacro",
  26380. height: math.unit(250, "miles")
  26381. },
  26382. ]
  26383. ))
  26384. characterMakers.push(() => makeCharacter(
  26385. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26386. {
  26387. front: {
  26388. height: math.unit(7 + 7 / 12, "feet"),
  26389. weight: math.unit(250, "lb"),
  26390. name: "Front",
  26391. image: {
  26392. source: "./media/characters/tala-grovehorn/front.svg",
  26393. extra: 2636 / 2525,
  26394. bottom: 147 / 2781
  26395. }
  26396. },
  26397. back: {
  26398. height: math.unit(7 + 7 / 12, "feet"),
  26399. weight: math.unit(250, "lb"),
  26400. name: "Back",
  26401. image: {
  26402. source: "./media/characters/tala-grovehorn/back.svg",
  26403. extra: 2635 / 2539,
  26404. bottom: 100 / 2732.8
  26405. }
  26406. },
  26407. mouth: {
  26408. height: math.unit(1.15, "feet"),
  26409. name: "Mouth",
  26410. image: {
  26411. source: "./media/characters/tala-grovehorn/mouth.svg"
  26412. }
  26413. },
  26414. dick: {
  26415. height: math.unit(2.36, "feet"),
  26416. name: "Dick",
  26417. image: {
  26418. source: "./media/characters/tala-grovehorn/dick.svg"
  26419. }
  26420. },
  26421. slit: {
  26422. height: math.unit(0.61, "feet"),
  26423. name: "Slit",
  26424. image: {
  26425. source: "./media/characters/tala-grovehorn/slit.svg"
  26426. }
  26427. },
  26428. },
  26429. [
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(7 + 7 / 12, "feet"),
  26437. weight: math.unit(225, "lb"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/epona/front.svg",
  26441. extra: 2445 / 2290,
  26442. bottom: 251 / 2696
  26443. }
  26444. },
  26445. back: {
  26446. height: math.unit(7 + 7 / 12, "feet"),
  26447. weight: math.unit(225, "lb"),
  26448. name: "Back",
  26449. image: {
  26450. source: "./media/characters/epona/back.svg",
  26451. extra: 2546 / 2408,
  26452. bottom: 44 / 2589
  26453. }
  26454. },
  26455. genitals: {
  26456. height: math.unit(1.5, "feet"),
  26457. name: "Genitals",
  26458. image: {
  26459. source: "./media/characters/epona/genitals.svg"
  26460. }
  26461. },
  26462. },
  26463. [
  26464. {
  26465. name: "Normal",
  26466. height: math.unit(7 + 7 / 12, "feet"),
  26467. default: true
  26468. },
  26469. ]
  26470. ))
  26471. characterMakers.push(() => makeCharacter(
  26472. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26473. {
  26474. front: {
  26475. height: math.unit(7, "feet"),
  26476. weight: math.unit(518, "lb"),
  26477. name: "Front",
  26478. image: {
  26479. source: "./media/characters/avia-bloodbourn/front.svg",
  26480. extra: 1466 / 1350,
  26481. bottom: 65 / 1527
  26482. }
  26483. },
  26484. },
  26485. [
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26490. {
  26491. front: {
  26492. height: math.unit(9.35, "feet"),
  26493. weight: math.unit(600, "lb"),
  26494. name: "Front",
  26495. image: {
  26496. source: "./media/characters/amera/front.svg",
  26497. extra: 891 / 818,
  26498. bottom: 30 / 922.7
  26499. }
  26500. },
  26501. back: {
  26502. height: math.unit(9.35, "feet"),
  26503. weight: math.unit(600, "lb"),
  26504. name: "Back",
  26505. image: {
  26506. source: "./media/characters/amera/back.svg",
  26507. extra: 876 / 824,
  26508. bottom: 6.8 / 884
  26509. }
  26510. },
  26511. dick: {
  26512. height: math.unit(2.14, "feet"),
  26513. name: "Dick",
  26514. image: {
  26515. source: "./media/characters/amera/dick.svg"
  26516. }
  26517. },
  26518. },
  26519. [
  26520. {
  26521. name: "Normal",
  26522. height: math.unit(9.35, "feet"),
  26523. default: true
  26524. },
  26525. ]
  26526. ))
  26527. characterMakers.push(() => makeCharacter(
  26528. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26529. {
  26530. kneeling: {
  26531. height: math.unit(3 + 4 / 12, "feet"),
  26532. weight: math.unit(90, "lb"),
  26533. name: "Kneeling",
  26534. image: {
  26535. source: "./media/characters/rosewen/kneeling.svg",
  26536. extra: 1835 / 1571,
  26537. bottom: 27.7 / 1862
  26538. }
  26539. },
  26540. },
  26541. [
  26542. {
  26543. name: "Normal",
  26544. height: math.unit(3 + 4 / 12, "feet"),
  26545. default: true
  26546. },
  26547. ]
  26548. ))
  26549. characterMakers.push(() => makeCharacter(
  26550. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26551. {
  26552. front: {
  26553. height: math.unit(5 + 10 / 12, "feet"),
  26554. weight: math.unit(200, "lb"),
  26555. name: "Front",
  26556. image: {
  26557. source: "./media/characters/sabah/front.svg",
  26558. extra: 849 / 763,
  26559. bottom: 33.9 / 881
  26560. }
  26561. },
  26562. },
  26563. [
  26564. {
  26565. name: "Normal",
  26566. height: math.unit(5 + 10 / 12, "feet"),
  26567. default: true
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26573. {
  26574. front: {
  26575. height: math.unit(3 + 5 / 12, "feet"),
  26576. weight: math.unit(40, "kg"),
  26577. name: "Front",
  26578. image: {
  26579. source: "./media/characters/purple-flame/front.svg",
  26580. extra: 1577 / 1412,
  26581. bottom: 97 / 1694
  26582. }
  26583. },
  26584. frontDressed: {
  26585. height: math.unit(3 + 5 / 12, "feet"),
  26586. weight: math.unit(40, "kg"),
  26587. name: "Front (Dressed)",
  26588. image: {
  26589. source: "./media/characters/purple-flame/front-dressed.svg",
  26590. extra: 1577 / 1412,
  26591. bottom: 97 / 1694
  26592. }
  26593. },
  26594. headphones: {
  26595. height: math.unit(0.85, "feet"),
  26596. name: "Headphones",
  26597. image: {
  26598. source: "./media/characters/purple-flame/headphones.svg"
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Really Small",
  26605. height: math.unit(5, "cm")
  26606. },
  26607. {
  26608. name: "Micro",
  26609. height: math.unit(1 + 5 / 12, "feet")
  26610. },
  26611. {
  26612. name: "Normal",
  26613. height: math.unit(3 + 5 / 12, "feet"),
  26614. default: true
  26615. },
  26616. {
  26617. name: "Minimacro",
  26618. height: math.unit(125, "feet")
  26619. },
  26620. {
  26621. name: "Macro",
  26622. height: math.unit(0.5, "miles")
  26623. },
  26624. {
  26625. name: "Megamacro",
  26626. height: math.unit(50, "miles")
  26627. },
  26628. {
  26629. name: "Gigantic",
  26630. height: math.unit(750, "miles")
  26631. },
  26632. {
  26633. name: "Planetary",
  26634. height: math.unit(15000, "miles")
  26635. },
  26636. ]
  26637. ))
  26638. characterMakers.push(() => makeCharacter(
  26639. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26640. {
  26641. front: {
  26642. height: math.unit(14, "feet"),
  26643. weight: math.unit(959, "lb"),
  26644. name: "Front",
  26645. image: {
  26646. source: "./media/characters/arsenal/front.svg",
  26647. extra: 2357 / 2157,
  26648. bottom: 93 / 2458
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(14, "feet"),
  26656. default: true
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26662. {
  26663. front: {
  26664. height: math.unit(6, "feet"),
  26665. weight: math.unit(150, "lb"),
  26666. name: "Front",
  26667. image: {
  26668. source: "./media/characters/adira/front.svg",
  26669. extra: 1078 / 1029,
  26670. bottom: 87 / 1166
  26671. }
  26672. },
  26673. },
  26674. [
  26675. {
  26676. name: "Micro",
  26677. height: math.unit(4, "inches"),
  26678. default: true
  26679. },
  26680. {
  26681. name: "Macro",
  26682. height: math.unit(50, "feet")
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26688. {
  26689. front: {
  26690. height: math.unit(16, "feet"),
  26691. weight: math.unit(1000, "lb"),
  26692. name: "Front",
  26693. image: {
  26694. source: "./media/characters/grim/front.svg",
  26695. extra: 622 / 614,
  26696. bottom: 18.1 / 642
  26697. }
  26698. },
  26699. back: {
  26700. height: math.unit(16, "feet"),
  26701. weight: math.unit(1000, "lb"),
  26702. name: "Back",
  26703. image: {
  26704. source: "./media/characters/grim/back.svg",
  26705. extra: 610.6 / 602,
  26706. bottom: 40.8 / 652
  26707. }
  26708. },
  26709. hunched: {
  26710. height: math.unit(9.75, "feet"),
  26711. weight: math.unit(1000, "lb"),
  26712. name: "Hunched",
  26713. image: {
  26714. source: "./media/characters/grim/hunched.svg",
  26715. extra: 304 / 297,
  26716. bottom: 35.4 / 394
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Normal",
  26723. height: math.unit(16, "feet"),
  26724. default: true
  26725. },
  26726. ]
  26727. ))
  26728. characterMakers.push(() => makeCharacter(
  26729. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26730. {
  26731. front: {
  26732. height: math.unit(2.3, "meters"),
  26733. weight: math.unit(300, "lb"),
  26734. name: "Front",
  26735. image: {
  26736. source: "./media/characters/sinja/front-sfw.svg",
  26737. extra: 1393 / 1294,
  26738. bottom: 70 / 1463
  26739. }
  26740. },
  26741. frontNsfw: {
  26742. height: math.unit(2.3, "meters"),
  26743. weight: math.unit(300, "lb"),
  26744. name: "Front (NSFW)",
  26745. image: {
  26746. source: "./media/characters/sinja/front-nsfw.svg",
  26747. extra: 1393 / 1294,
  26748. bottom: 70 / 1463
  26749. }
  26750. },
  26751. back: {
  26752. height: math.unit(2.3, "meters"),
  26753. weight: math.unit(300, "lb"),
  26754. name: "Back",
  26755. image: {
  26756. source: "./media/characters/sinja/back.svg",
  26757. extra: 1393 / 1294,
  26758. bottom: 70 / 1463
  26759. }
  26760. },
  26761. head: {
  26762. height: math.unit(1.771, "feet"),
  26763. name: "Head",
  26764. image: {
  26765. source: "./media/characters/sinja/head.svg"
  26766. }
  26767. },
  26768. slit: {
  26769. height: math.unit(0.8, "feet"),
  26770. name: "Slit",
  26771. image: {
  26772. source: "./media/characters/sinja/slit.svg"
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Normal",
  26779. height: math.unit(2.3, "meters")
  26780. },
  26781. {
  26782. name: "Macro",
  26783. height: math.unit(91, "meters"),
  26784. default: true
  26785. },
  26786. {
  26787. name: "Megamacro",
  26788. height: math.unit(91440, "meters")
  26789. },
  26790. {
  26791. name: "Gigamacro",
  26792. height: math.unit(60960000, "meters")
  26793. },
  26794. {
  26795. name: "Teramacro",
  26796. height: math.unit(9144000000, "meters")
  26797. },
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26802. {
  26803. front: {
  26804. height: math.unit(1.7, "meters"),
  26805. weight: math.unit(130, "lb"),
  26806. name: "Front",
  26807. image: {
  26808. source: "./media/characters/kyu/front.svg",
  26809. extra: 415 / 395,
  26810. bottom: 5 / 420
  26811. }
  26812. },
  26813. head: {
  26814. height: math.unit(1.75, "feet"),
  26815. name: "Head",
  26816. image: {
  26817. source: "./media/characters/kyu/head.svg"
  26818. }
  26819. },
  26820. foot: {
  26821. height: math.unit(0.81, "feet"),
  26822. name: "Foot",
  26823. image: {
  26824. source: "./media/characters/kyu/foot.svg"
  26825. }
  26826. },
  26827. },
  26828. [
  26829. {
  26830. name: "Normal",
  26831. height: math.unit(1.7, "meters")
  26832. },
  26833. {
  26834. name: "Macro",
  26835. height: math.unit(131, "feet"),
  26836. default: true
  26837. },
  26838. {
  26839. name: "Megamacro",
  26840. height: math.unit(91440, "meters")
  26841. },
  26842. {
  26843. name: "Gigamacro",
  26844. height: math.unit(60960000, "meters")
  26845. },
  26846. {
  26847. name: "Teramacro",
  26848. height: math.unit(9144000000, "meters")
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(7 + 1 / 12, "feet"),
  26857. weight: math.unit(250, "lb"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/joey/front.svg",
  26861. extra: 1791 / 1537,
  26862. bottom: 28 / 1816
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Micro",
  26869. height: math.unit(3, "inches")
  26870. },
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(7 + 1 / 12, "feet"),
  26874. default: true
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26880. {
  26881. front: {
  26882. height: math.unit(165, "cm"),
  26883. weight: math.unit(140, "lb"),
  26884. name: "Front",
  26885. image: {
  26886. source: "./media/characters/sam-evans/front.svg",
  26887. extra: 3417 / 3230,
  26888. bottom: 41.3 / 3417
  26889. }
  26890. },
  26891. frontSixTails: {
  26892. height: math.unit(165, "cm"),
  26893. weight: math.unit(140, "lb"),
  26894. name: "Front-six-tails",
  26895. image: {
  26896. source: "./media/characters/sam-evans/front-six-tails.svg",
  26897. extra: 3417 / 3230,
  26898. bottom: 41.3 / 3417
  26899. }
  26900. },
  26901. back: {
  26902. height: math.unit(165, "cm"),
  26903. weight: math.unit(140, "lb"),
  26904. name: "Back",
  26905. image: {
  26906. source: "./media/characters/sam-evans/back.svg",
  26907. extra: 3227 / 3032,
  26908. bottom: 6.8 / 3234
  26909. }
  26910. },
  26911. face: {
  26912. height: math.unit(0.68, "feet"),
  26913. name: "Face",
  26914. image: {
  26915. source: "./media/characters/sam-evans/face.svg"
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(165, "cm"),
  26923. default: true
  26924. },
  26925. {
  26926. name: "Macro",
  26927. height: math.unit(100, "meters")
  26928. },
  26929. {
  26930. name: "Macro+",
  26931. height: math.unit(800, "meters")
  26932. },
  26933. {
  26934. name: "Macro++",
  26935. height: math.unit(3, "km")
  26936. },
  26937. {
  26938. name: "Macro+++",
  26939. height: math.unit(30, "km")
  26940. },
  26941. ]
  26942. ))
  26943. characterMakers.push(() => makeCharacter(
  26944. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26945. {
  26946. front: {
  26947. height: math.unit(10, "feet"),
  26948. weight: math.unit(750, "lb"),
  26949. name: "Front",
  26950. image: {
  26951. source: "./media/characters/juliet-a/front.svg",
  26952. extra: 1766 / 1720,
  26953. bottom: 43 / 1809
  26954. }
  26955. },
  26956. back: {
  26957. height: math.unit(10, "feet"),
  26958. weight: math.unit(750, "lb"),
  26959. name: "Back",
  26960. image: {
  26961. source: "./media/characters/juliet-a/back.svg",
  26962. extra: 1781 / 1734,
  26963. bottom: 35 / 1810,
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(10, "feet"),
  26971. default: true
  26972. },
  26973. {
  26974. name: "Dragon Form",
  26975. height: math.unit(250, "feet")
  26976. },
  26977. {
  26978. name: "Macro",
  26979. height: math.unit(1000, "feet")
  26980. },
  26981. {
  26982. name: "Megamacro",
  26983. height: math.unit(10000, "feet")
  26984. }
  26985. ]
  26986. ))
  26987. characterMakers.push(() => makeCharacter(
  26988. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26989. {
  26990. regular: {
  26991. height: math.unit(7 + 3 / 12, "feet"),
  26992. weight: math.unit(260, "lb"),
  26993. name: "Regular",
  26994. image: {
  26995. source: "./media/characters/wild/regular.svg",
  26996. extra: 97.45 / 92,
  26997. bottom: 6.8 / 104.3
  26998. }
  26999. },
  27000. biggums: {
  27001. height: math.unit(8 + 6 / 12, "feet"),
  27002. weight: math.unit(425, "lb"),
  27003. name: "Biggums",
  27004. image: {
  27005. source: "./media/characters/wild/biggums.svg",
  27006. extra: 97.45 / 92,
  27007. bottom: 7.5 / 132.34
  27008. }
  27009. },
  27010. mawRegular: {
  27011. height: math.unit(1.24, "feet"),
  27012. name: "Maw (Regular)",
  27013. image: {
  27014. source: "./media/characters/wild/maw.svg"
  27015. }
  27016. },
  27017. mawBiggums: {
  27018. height: math.unit(1.47, "feet"),
  27019. name: "Maw (Biggums)",
  27020. image: {
  27021. source: "./media/characters/wild/maw.svg"
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Normal",
  27028. height: math.unit(7 + 3 / 12, "feet"),
  27029. default: true
  27030. },
  27031. ]
  27032. ))
  27033. characterMakers.push(() => makeCharacter(
  27034. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27035. {
  27036. front: {
  27037. height: math.unit(2.5, "meters"),
  27038. weight: math.unit(200, "kg"),
  27039. name: "Front",
  27040. image: {
  27041. source: "./media/characters/vidar/front.svg",
  27042. extra: 2994 / 2795,
  27043. bottom: 56 / 3061
  27044. }
  27045. },
  27046. back: {
  27047. height: math.unit(2.5, "meters"),
  27048. weight: math.unit(200, "kg"),
  27049. name: "Back",
  27050. image: {
  27051. source: "./media/characters/vidar/back.svg",
  27052. extra: 3131 / 2928,
  27053. bottom: 13.5 / 3141.5
  27054. }
  27055. },
  27056. feral: {
  27057. height: math.unit(2.5, "meters"),
  27058. weight: math.unit(2000, "kg"),
  27059. name: "Feral",
  27060. image: {
  27061. source: "./media/characters/vidar/feral.svg",
  27062. extra: 2790 / 1765,
  27063. bottom: 6 / 2796
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(2.5, "meters"),
  27071. default: true
  27072. },
  27073. {
  27074. name: "Macro",
  27075. height: math.unit(100, "meters")
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27081. {
  27082. front: {
  27083. height: math.unit(5 + 9 / 12, "feet"),
  27084. weight: math.unit(120, "lb"),
  27085. name: "Front",
  27086. image: {
  27087. source: "./media/characters/ash/front.svg",
  27088. extra: 2189 / 1961,
  27089. bottom: 5.2 / 2194
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Normal",
  27096. height: math.unit(5 + 9 / 12, "feet"),
  27097. default: true
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(9, "feet"),
  27106. weight: math.unit(10000, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/gygabite/front.svg",
  27110. bottom: 31.7 / 537.8,
  27111. extra: 505 / 370
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Normal",
  27118. height: math.unit(9, "feet"),
  27119. default: true
  27120. },
  27121. ]
  27122. ))
  27123. characterMakers.push(() => makeCharacter(
  27124. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27125. {
  27126. front: {
  27127. height: math.unit(12, "feet"),
  27128. weight: math.unit(35000, "lb"),
  27129. name: "Front",
  27130. image: {
  27131. source: "./media/characters/p0tat0/front.svg",
  27132. extra: 1065 / 921,
  27133. bottom: 55.7 / 1121.25
  27134. }
  27135. },
  27136. },
  27137. [
  27138. {
  27139. name: "Normal",
  27140. height: math.unit(12, "feet"),
  27141. default: true
  27142. },
  27143. ]
  27144. ))
  27145. characterMakers.push(() => makeCharacter(
  27146. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27147. {
  27148. side: {
  27149. height: math.unit(6.5, "feet"),
  27150. weight: math.unit(800, "lb"),
  27151. name: "Side",
  27152. image: {
  27153. source: "./media/characters/dusk/side.svg",
  27154. extra: 615 / 373,
  27155. bottom: 53 / 664
  27156. }
  27157. },
  27158. sitting: {
  27159. height: math.unit(7, "feet"),
  27160. weight: math.unit(800, "lb"),
  27161. name: "Sitting",
  27162. image: {
  27163. source: "./media/characters/dusk/sitting.svg",
  27164. extra: 753 / 425,
  27165. bottom: 33 / 774
  27166. }
  27167. },
  27168. head: {
  27169. height: math.unit(6.1, "feet"),
  27170. name: "Head",
  27171. image: {
  27172. source: "./media/characters/dusk/head.svg"
  27173. }
  27174. },
  27175. },
  27176. [
  27177. {
  27178. name: "Normal",
  27179. height: math.unit(7, "feet"),
  27180. default: true
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(15, "feet"),
  27189. weight: math.unit(7000, "lb"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/jay-direwolf/front.svg",
  27193. extra: 1810 / 1732,
  27194. bottom: 66 / 1892
  27195. }
  27196. },
  27197. },
  27198. [
  27199. {
  27200. name: "Normal",
  27201. height: math.unit(15, "feet"),
  27202. default: true
  27203. },
  27204. ]
  27205. ))
  27206. characterMakers.push(() => makeCharacter(
  27207. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27208. {
  27209. front: {
  27210. height: math.unit(4 + 9 / 12, "feet"),
  27211. weight: math.unit(130, "lb"),
  27212. name: "Front",
  27213. image: {
  27214. source: "./media/characters/anchovie/front.svg",
  27215. extra: 382 / 350,
  27216. bottom: 25 / 409
  27217. }
  27218. },
  27219. back: {
  27220. height: math.unit(4 + 9 / 12, "feet"),
  27221. weight: math.unit(130, "lb"),
  27222. name: "Back",
  27223. image: {
  27224. source: "./media/characters/anchovie/back.svg",
  27225. extra: 385 / 352,
  27226. bottom: 16.6 / 402
  27227. }
  27228. },
  27229. frontDressed: {
  27230. height: math.unit(4 + 9 / 12, "feet"),
  27231. weight: math.unit(130, "lb"),
  27232. name: "Front (Dressed)",
  27233. image: {
  27234. source: "./media/characters/anchovie/front-dressed.svg",
  27235. extra: 382 / 350,
  27236. bottom: 25 / 409
  27237. }
  27238. },
  27239. backDressed: {
  27240. height: math.unit(4 + 9 / 12, "feet"),
  27241. weight: math.unit(130, "lb"),
  27242. name: "Back (Dressed)",
  27243. image: {
  27244. source: "./media/characters/anchovie/back-dressed.svg",
  27245. extra: 385 / 352,
  27246. bottom: 16.6 / 402
  27247. }
  27248. },
  27249. },
  27250. [
  27251. {
  27252. name: "Micro",
  27253. height: math.unit(6.4, "inches")
  27254. },
  27255. {
  27256. name: "Normal",
  27257. height: math.unit(4 + 9 / 12, "feet"),
  27258. default: true
  27259. },
  27260. ]
  27261. ))
  27262. characterMakers.push(() => makeCharacter(
  27263. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27264. {
  27265. front: {
  27266. height: math.unit(2, "meters"),
  27267. weight: math.unit(180, "lb"),
  27268. name: "Front",
  27269. image: {
  27270. source: "./media/characters/acidrenamon/front.svg",
  27271. extra: 987 / 890,
  27272. bottom: 22.8 / 1009
  27273. }
  27274. },
  27275. back: {
  27276. height: math.unit(2, "meters"),
  27277. weight: math.unit(180, "lb"),
  27278. name: "Back",
  27279. image: {
  27280. source: "./media/characters/acidrenamon/back.svg",
  27281. extra: 983 / 891,
  27282. bottom: 8.4 / 992
  27283. }
  27284. },
  27285. head: {
  27286. height: math.unit(1.92, "feet"),
  27287. name: "Head",
  27288. image: {
  27289. source: "./media/characters/acidrenamon/head.svg"
  27290. }
  27291. },
  27292. rump: {
  27293. height: math.unit(1.72, "feet"),
  27294. name: "Rump",
  27295. image: {
  27296. source: "./media/characters/acidrenamon/rump.svg"
  27297. }
  27298. },
  27299. tail: {
  27300. height: math.unit(4.2, "feet"),
  27301. name: "Tail",
  27302. image: {
  27303. source: "./media/characters/acidrenamon/tail.svg"
  27304. }
  27305. },
  27306. },
  27307. [
  27308. {
  27309. name: "Normal",
  27310. height: math.unit(2, "meters"),
  27311. default: true
  27312. },
  27313. {
  27314. name: "Minimacro",
  27315. height: math.unit(7, "meters")
  27316. },
  27317. {
  27318. name: "Macro",
  27319. height: math.unit(200, "meters")
  27320. },
  27321. {
  27322. name: "Gigamacro",
  27323. height: math.unit(0.2, "earths")
  27324. },
  27325. ]
  27326. ))
  27327. characterMakers.push(() => makeCharacter(
  27328. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27329. {
  27330. front: {
  27331. height: math.unit(6, "feet"),
  27332. weight: math.unit(150, "lb"),
  27333. name: "Front",
  27334. image: {
  27335. source: "./media/characters/kenzie-lee/front.svg",
  27336. extra: 1525 / 1465,
  27337. bottom: 45 / 1570
  27338. }
  27339. },
  27340. side: {
  27341. height: math.unit(6, "feet"),
  27342. weight: math.unit(150, "lb"),
  27343. name: "Side",
  27344. image: {
  27345. source: "./media/characters/kenzie-lee/side.svg",
  27346. extra: 5505 / 5383,
  27347. bottom: 60 / 5573
  27348. }
  27349. },
  27350. paw: {
  27351. height: math.unit(0.57, "feet"),
  27352. name: "Paw",
  27353. image: {
  27354. source: "./media/characters/kenzie-lee/paw.svg"
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(152, "feet"),
  27362. default: true
  27363. },
  27364. {
  27365. name: "Megamacro",
  27366. height: math.unit(7, "miles")
  27367. },
  27368. {
  27369. name: "Gigamacro",
  27370. height: math.unit(8000, "miles")
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27376. {
  27377. side: {
  27378. height: math.unit(6, "feet"),
  27379. weight: math.unit(150, "lb"),
  27380. name: "Side",
  27381. image: {
  27382. source: "./media/characters/withers/side.svg",
  27383. extra: 1830 / 1728,
  27384. bottom: 96 / 1927
  27385. }
  27386. },
  27387. front: {
  27388. height: math.unit(6, "feet"),
  27389. weight: math.unit(150, "lb"),
  27390. name: "Front",
  27391. image: {
  27392. source: "./media/characters/withers/front.svg",
  27393. extra: 1514 / 1438,
  27394. bottom: 118 / 1632
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Macro",
  27401. height: math.unit(168, "feet"),
  27402. default: true
  27403. },
  27404. {
  27405. name: "Megamacro",
  27406. height: math.unit(15, "miles")
  27407. }
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(6 + 7 / 12, "feet"),
  27415. weight: math.unit(250, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/nemoskii/front.svg",
  27419. extra: 2270 / 1734,
  27420. bottom: 86 / 2354
  27421. }
  27422. },
  27423. back: {
  27424. height: math.unit(6 + 7 / 12, "feet"),
  27425. weight: math.unit(250, "lb"),
  27426. name: "Back",
  27427. image: {
  27428. source: "./media/characters/nemoskii/back.svg",
  27429. extra: 1845 / 1788,
  27430. bottom: 10.5 / 1852
  27431. }
  27432. },
  27433. head: {
  27434. height: math.unit(1.31, "feet"),
  27435. name: "Head",
  27436. image: {
  27437. source: "./media/characters/nemoskii/head.svg"
  27438. }
  27439. },
  27440. },
  27441. [
  27442. {
  27443. name: "Micro",
  27444. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27445. },
  27446. {
  27447. name: "Normal",
  27448. height: math.unit(6 + 7 / 12, "feet"),
  27449. default: true
  27450. },
  27451. {
  27452. name: "Macro",
  27453. height: math.unit((6 + 7 / 12) * 150, "feet")
  27454. },
  27455. {
  27456. name: "Macro+",
  27457. height: math.unit((6 + 7 / 12) * 500, "feet")
  27458. },
  27459. {
  27460. name: "Megamacro",
  27461. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27462. },
  27463. ]
  27464. ))
  27465. characterMakers.push(() => makeCharacter(
  27466. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27467. {
  27468. front: {
  27469. height: math.unit(1, "mile"),
  27470. weight: math.unit(265261.9, "lb"),
  27471. name: "Front",
  27472. image: {
  27473. source: "./media/characters/shui/front.svg",
  27474. extra: 1633 / 1564,
  27475. bottom: 91.5 / 1726
  27476. }
  27477. },
  27478. },
  27479. [
  27480. {
  27481. name: "Macro",
  27482. height: math.unit(1, "mile"),
  27483. default: true
  27484. },
  27485. ]
  27486. ))
  27487. characterMakers.push(() => makeCharacter(
  27488. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27489. {
  27490. front: {
  27491. height: math.unit(12 + 6 / 12, "feet"),
  27492. weight: math.unit(1342, "lb"),
  27493. name: "Front",
  27494. image: {
  27495. source: "./media/characters/arokh-takakura/front.svg",
  27496. extra: 1089 / 1043,
  27497. bottom: 77.4 / 1176.7
  27498. }
  27499. },
  27500. back: {
  27501. height: math.unit(12 + 6 / 12, "feet"),
  27502. weight: math.unit(1342, "lb"),
  27503. name: "Back",
  27504. image: {
  27505. source: "./media/characters/arokh-takakura/back.svg",
  27506. extra: 1046 / 1019,
  27507. bottom: 102 / 1150
  27508. }
  27509. },
  27510. },
  27511. [
  27512. {
  27513. name: "Big",
  27514. height: math.unit(12 + 6 / 12, "feet"),
  27515. default: true
  27516. },
  27517. ]
  27518. ))
  27519. characterMakers.push(() => makeCharacter(
  27520. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27521. {
  27522. front: {
  27523. height: math.unit(5 + 6 / 12, "feet"),
  27524. weight: math.unit(150, "lb"),
  27525. name: "Front",
  27526. image: {
  27527. source: "./media/characters/theo/front.svg",
  27528. extra: 1184 / 1131,
  27529. bottom: 7.4 / 1191
  27530. }
  27531. },
  27532. },
  27533. [
  27534. {
  27535. name: "Micro",
  27536. height: math.unit(5, "inches")
  27537. },
  27538. {
  27539. name: "Normal",
  27540. height: math.unit(5 + 6 / 12, "feet"),
  27541. default: true
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27547. {
  27548. front: {
  27549. height: math.unit(5 + 9 / 12, "feet"),
  27550. weight: math.unit(130, "lb"),
  27551. name: "Front",
  27552. image: {
  27553. source: "./media/characters/cecelia-swift/front.svg",
  27554. extra: 502 / 484,
  27555. bottom: 23 / 523
  27556. }
  27557. },
  27558. back: {
  27559. height: math.unit(5 + 9 / 12, "feet"),
  27560. weight: math.unit(130, "lb"),
  27561. name: "Back",
  27562. image: {
  27563. source: "./media/characters/cecelia-swift/back.svg",
  27564. extra: 499 / 485,
  27565. bottom: 12 / 511
  27566. }
  27567. },
  27568. head: {
  27569. height: math.unit(0.90, "feet"),
  27570. name: "Head",
  27571. image: {
  27572. source: "./media/characters/cecelia-swift/head.svg"
  27573. }
  27574. },
  27575. rump: {
  27576. height: math.unit(1.75, "feet"),
  27577. name: "Rump",
  27578. image: {
  27579. source: "./media/characters/cecelia-swift/rump.svg"
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Normal",
  27586. height: math.unit(5 + 9 / 12, "feet"),
  27587. default: true
  27588. },
  27589. {
  27590. name: "Big",
  27591. height: math.unit(50, "feet")
  27592. },
  27593. {
  27594. name: "Macro",
  27595. height: math.unit(100, "feet")
  27596. },
  27597. {
  27598. name: "Macro+",
  27599. height: math.unit(500, "feet")
  27600. },
  27601. {
  27602. name: "Macro++",
  27603. height: math.unit(1000, "feet")
  27604. },
  27605. ]
  27606. ))
  27607. characterMakers.push(() => makeCharacter(
  27608. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27609. {
  27610. front: {
  27611. height: math.unit(6, "feet"),
  27612. weight: math.unit(150, "lb"),
  27613. name: "Front",
  27614. image: {
  27615. source: "./media/characters/kaunan/front.svg",
  27616. extra: 2890 / 2523,
  27617. bottom: 49 / 2939
  27618. }
  27619. },
  27620. },
  27621. [
  27622. {
  27623. name: "Macro",
  27624. height: math.unit(150, "feet"),
  27625. default: true
  27626. },
  27627. ]
  27628. ))
  27629. characterMakers.push(() => makeCharacter(
  27630. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27631. {
  27632. front: {
  27633. height: math.unit(175, "cm"),
  27634. weight: math.unit(60, "kg"),
  27635. name: "Front",
  27636. image: {
  27637. source: "./media/characters/fei/front.svg",
  27638. extra: 1873/1723,
  27639. bottom: 53/1926
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Mortal",
  27646. height: math.unit(175, "cm")
  27647. },
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(3500, "m"),
  27651. default: true
  27652. },
  27653. {
  27654. name: "Stroll",
  27655. height: math.unit(17.5, "km")
  27656. },
  27657. {
  27658. name: "Showoff",
  27659. height: math.unit(175, "km")
  27660. },
  27661. ]
  27662. ))
  27663. characterMakers.push(() => makeCharacter(
  27664. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27665. {
  27666. front: {
  27667. height: math.unit(7, "feet"),
  27668. weight: math.unit(1000, "kg"),
  27669. name: "Front",
  27670. image: {
  27671. source: "./media/characters/edrax/front.svg",
  27672. extra: 2838 / 2550,
  27673. bottom: 130 / 2968
  27674. }
  27675. },
  27676. },
  27677. [
  27678. {
  27679. name: "Small",
  27680. height: math.unit(7, "feet")
  27681. },
  27682. {
  27683. name: "Normal",
  27684. height: math.unit(1500, "meters")
  27685. },
  27686. {
  27687. name: "Mega",
  27688. height: math.unit(12000000, "km"),
  27689. default: true
  27690. },
  27691. {
  27692. name: "Megamacro",
  27693. height: math.unit(10600000, "lightyears")
  27694. },
  27695. {
  27696. name: "Hypermacro",
  27697. height: math.unit(256, "yottameters")
  27698. },
  27699. ]
  27700. ))
  27701. characterMakers.push(() => makeCharacter(
  27702. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27703. {
  27704. front: {
  27705. height: math.unit(10, "feet"),
  27706. weight: math.unit(750, "lb"),
  27707. name: "Front",
  27708. image: {
  27709. source: "./media/characters/clove/front.svg",
  27710. extra: 2031 / 1860,
  27711. bottom: 47.8 / 2080
  27712. }
  27713. },
  27714. back: {
  27715. height: math.unit(10, "feet"),
  27716. weight: math.unit(750, "lb"),
  27717. name: "Back",
  27718. image: {
  27719. source: "./media/characters/clove/back.svg",
  27720. extra: 2025 / 1859,
  27721. bottom: 46 / 2071
  27722. }
  27723. },
  27724. },
  27725. [
  27726. {
  27727. name: "Normal",
  27728. height: math.unit(10, "feet"),
  27729. default: true
  27730. },
  27731. ]
  27732. ))
  27733. characterMakers.push(() => makeCharacter(
  27734. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27735. {
  27736. front: {
  27737. height: math.unit(4, "feet"),
  27738. weight: math.unit(50, "lb"),
  27739. name: "Front",
  27740. image: {
  27741. source: "./media/characters/alex-rabbit/front.svg",
  27742. extra: 507 / 458,
  27743. bottom: 18.5 / 527
  27744. }
  27745. },
  27746. back: {
  27747. height: math.unit(4, "feet"),
  27748. weight: math.unit(50, "lb"),
  27749. name: "Back",
  27750. image: {
  27751. source: "./media/characters/alex-rabbit/back.svg",
  27752. extra: 502 / 460,
  27753. bottom: 18.9 / 521
  27754. }
  27755. },
  27756. },
  27757. [
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(4, "feet"),
  27761. default: true
  27762. },
  27763. ]
  27764. ))
  27765. characterMakers.push(() => makeCharacter(
  27766. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27767. {
  27768. front: {
  27769. height: math.unit(1 + 3 / 12, "feet"),
  27770. weight: math.unit(80, "lb"),
  27771. name: "Front",
  27772. image: {
  27773. source: "./media/characters/zander-rose/front.svg",
  27774. extra: 916 / 797,
  27775. bottom: 17 / 933
  27776. }
  27777. },
  27778. back: {
  27779. height: math.unit(1 + 3 / 12, "feet"),
  27780. weight: math.unit(80, "lb"),
  27781. name: "Back",
  27782. image: {
  27783. source: "./media/characters/zander-rose/back.svg",
  27784. extra: 903 / 779,
  27785. bottom: 31 / 934
  27786. }
  27787. },
  27788. },
  27789. [
  27790. {
  27791. name: "Normal",
  27792. height: math.unit(1 + 3 / 12, "feet"),
  27793. default: true
  27794. },
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27799. {
  27800. anthro: {
  27801. height: math.unit(6, "feet"),
  27802. weight: math.unit(150, "lb"),
  27803. name: "Anthro",
  27804. image: {
  27805. source: "./media/characters/razz/anthro.svg",
  27806. extra: 1437 / 1343,
  27807. bottom: 48 / 1485
  27808. }
  27809. },
  27810. feral: {
  27811. height: math.unit(6, "feet"),
  27812. weight: math.unit(150, "lb"),
  27813. name: "Feral",
  27814. image: {
  27815. source: "./media/characters/razz/feral.svg",
  27816. extra: 2569 / 1385,
  27817. bottom: 95 / 2664
  27818. }
  27819. },
  27820. },
  27821. [
  27822. {
  27823. name: "Normal",
  27824. height: math.unit(6, "feet"),
  27825. default: true
  27826. },
  27827. ]
  27828. ))
  27829. characterMakers.push(() => makeCharacter(
  27830. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27831. {
  27832. front: {
  27833. height: math.unit(9 + 4 / 12, "feet"),
  27834. weight: math.unit(500, "lb"),
  27835. name: "Front",
  27836. image: {
  27837. source: "./media/characters/morrigan/front.svg",
  27838. extra: 2707 / 2579,
  27839. bottom: 156 / 2863
  27840. }
  27841. },
  27842. },
  27843. [
  27844. {
  27845. name: "Normal",
  27846. height: math.unit(9 + 4 / 12, "feet"),
  27847. default: true
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27853. {
  27854. front: {
  27855. height: math.unit(5, "stories"),
  27856. weight: math.unit(4000, "lb"),
  27857. name: "Front",
  27858. image: {
  27859. source: "./media/characters/jenene/front.svg",
  27860. extra: 1780 / 1710,
  27861. bottom: 57 / 1837
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Normal",
  27868. height: math.unit(5, "stories"),
  27869. default: true
  27870. },
  27871. ]
  27872. ))
  27873. characterMakers.push(() => makeCharacter(
  27874. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27875. {
  27876. taurSfw: {
  27877. height: math.unit(10, "meters"),
  27878. weight: math.unit(17500, "kg"),
  27879. name: "Taur",
  27880. image: {
  27881. source: "./media/characters/faey/taur-sfw.svg",
  27882. extra: 1200 / 968,
  27883. bottom: 41 / 1241
  27884. }
  27885. },
  27886. chestmaw: {
  27887. height: math.unit(2.01, "meters"),
  27888. name: "Chestmaw",
  27889. image: {
  27890. source: "./media/characters/faey/chestmaw.svg"
  27891. }
  27892. },
  27893. foot: {
  27894. height: math.unit(2.43, "meters"),
  27895. name: "Foot",
  27896. image: {
  27897. source: "./media/characters/faey/foot.svg"
  27898. }
  27899. },
  27900. jaws: {
  27901. height: math.unit(1.66, "meters"),
  27902. name: "Jaws",
  27903. image: {
  27904. source: "./media/characters/faey/jaws.svg"
  27905. }
  27906. },
  27907. tongues: {
  27908. height: math.unit(2.01, "meters"),
  27909. name: "Tongues",
  27910. image: {
  27911. source: "./media/characters/faey/tongues.svg"
  27912. }
  27913. },
  27914. },
  27915. [
  27916. {
  27917. name: "Small",
  27918. height: math.unit(10, "meters"),
  27919. default: true
  27920. },
  27921. {
  27922. name: "Big",
  27923. height: math.unit(500000, "km")
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27929. {
  27930. front: {
  27931. height: math.unit(7, "feet"),
  27932. weight: math.unit(275, "lb"),
  27933. name: "Front",
  27934. image: {
  27935. source: "./media/characters/roku/front.svg",
  27936. extra: 903 / 878,
  27937. bottom: 37 / 940
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(7, "feet"),
  27945. default: true
  27946. },
  27947. {
  27948. name: "Macro",
  27949. height: math.unit(500, "feet")
  27950. },
  27951. {
  27952. name: "Megamacro",
  27953. height: math.unit(200, "miles")
  27954. },
  27955. ]
  27956. ))
  27957. characterMakers.push(() => makeCharacter(
  27958. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27959. {
  27960. front: {
  27961. height: math.unit(6 + 2 / 12, "feet"),
  27962. weight: math.unit(150, "lb"),
  27963. name: "Front",
  27964. image: {
  27965. source: "./media/characters/lira/front.svg",
  27966. extra: 1727 / 1605,
  27967. bottom: 26 / 1753
  27968. }
  27969. },
  27970. back: {
  27971. height: math.unit(6 + 2 / 12, "feet"),
  27972. weight: math.unit(150, "lb"),
  27973. name: "Back",
  27974. image: {
  27975. source: "./media/characters/lira/back.svg",
  27976. extra: 1713/1621,
  27977. bottom: 20/1733
  27978. }
  27979. },
  27980. hand: {
  27981. height: math.unit(0.75, "feet"),
  27982. name: "Hand",
  27983. image: {
  27984. source: "./media/characters/lira/hand.svg"
  27985. }
  27986. },
  27987. maw: {
  27988. height: math.unit(0.65, "feet"),
  27989. name: "Maw",
  27990. image: {
  27991. source: "./media/characters/lira/maw.svg"
  27992. }
  27993. },
  27994. pawDigi: {
  27995. height: math.unit(1.6, "feet"),
  27996. name: "Paw Digi",
  27997. image: {
  27998. source: "./media/characters/lira/paw-digi.svg"
  27999. }
  28000. },
  28001. pawPlanti: {
  28002. height: math.unit(1.4, "feet"),
  28003. name: "Paw Planti",
  28004. image: {
  28005. source: "./media/characters/lira/paw-planti.svg"
  28006. }
  28007. },
  28008. },
  28009. [
  28010. {
  28011. name: "Normal",
  28012. height: math.unit(6 + 2 / 12, "feet"),
  28013. default: true
  28014. },
  28015. {
  28016. name: "Macro",
  28017. height: math.unit(100, "feet")
  28018. },
  28019. {
  28020. name: "Macro²",
  28021. height: math.unit(1600, "feet")
  28022. },
  28023. {
  28024. name: "Planetary",
  28025. height: math.unit(20, "earths")
  28026. },
  28027. ]
  28028. ))
  28029. characterMakers.push(() => makeCharacter(
  28030. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28031. {
  28032. front: {
  28033. height: math.unit(6, "feet"),
  28034. weight: math.unit(150, "lb"),
  28035. name: "Front",
  28036. image: {
  28037. source: "./media/characters/hadjet/front.svg",
  28038. extra: 1480 / 1346,
  28039. bottom: 26 / 1506
  28040. }
  28041. },
  28042. frontNsfw: {
  28043. height: math.unit(6, "feet"),
  28044. weight: math.unit(150, "lb"),
  28045. name: "Front (NSFW)",
  28046. image: {
  28047. source: "./media/characters/hadjet/front-nsfw.svg",
  28048. extra: 1440 / 1358,
  28049. bottom: 52 / 1492
  28050. }
  28051. },
  28052. },
  28053. [
  28054. {
  28055. name: "Macro",
  28056. height: math.unit(10, "stories"),
  28057. default: true
  28058. },
  28059. {
  28060. name: "Megamacro",
  28061. height: math.unit(1.5, "miles")
  28062. },
  28063. {
  28064. name: "Megamacro+",
  28065. height: math.unit(5, "miles")
  28066. },
  28067. ]
  28068. ))
  28069. characterMakers.push(() => makeCharacter(
  28070. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28071. {
  28072. side: {
  28073. height: math.unit(106, "feet"),
  28074. weight: math.unit(500, "tonnes"),
  28075. name: "Side",
  28076. image: {
  28077. source: "./media/characters/kodran/side.svg",
  28078. extra: 553 / 480,
  28079. bottom: 33 / 586
  28080. }
  28081. },
  28082. front: {
  28083. height: math.unit(132, "feet"),
  28084. weight: math.unit(500, "tonnes"),
  28085. name: "Front",
  28086. image: {
  28087. source: "./media/characters/kodran/front.svg",
  28088. extra: 667 / 643,
  28089. bottom: 42 / 709
  28090. }
  28091. },
  28092. flying: {
  28093. height: math.unit(350, "feet"),
  28094. weight: math.unit(500, "tonnes"),
  28095. name: "Flying",
  28096. image: {
  28097. source: "./media/characters/kodran/flying.svg"
  28098. }
  28099. },
  28100. foot: {
  28101. height: math.unit(33, "feet"),
  28102. name: "Foot",
  28103. image: {
  28104. source: "./media/characters/kodran/foot.svg"
  28105. }
  28106. },
  28107. footFront: {
  28108. height: math.unit(19, "feet"),
  28109. name: "Foot (Front)",
  28110. image: {
  28111. source: "./media/characters/kodran/foot-front.svg",
  28112. extra: 261 / 261,
  28113. bottom: 91 / 352
  28114. }
  28115. },
  28116. headFront: {
  28117. height: math.unit(53, "feet"),
  28118. name: "Head (Front)",
  28119. image: {
  28120. source: "./media/characters/kodran/head-front.svg"
  28121. }
  28122. },
  28123. headSide: {
  28124. height: math.unit(65, "feet"),
  28125. name: "Head (Side)",
  28126. image: {
  28127. source: "./media/characters/kodran/head-side.svg"
  28128. }
  28129. },
  28130. throat: {
  28131. height: math.unit(79, "feet"),
  28132. name: "Throat",
  28133. image: {
  28134. source: "./media/characters/kodran/throat.svg"
  28135. }
  28136. },
  28137. },
  28138. [
  28139. {
  28140. name: "Large",
  28141. height: math.unit(106, "feet"),
  28142. default: true
  28143. },
  28144. ]
  28145. ))
  28146. characterMakers.push(() => makeCharacter(
  28147. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28148. {
  28149. side: {
  28150. height: math.unit(11, "feet"),
  28151. weight: math.unit(150, "lb"),
  28152. name: "Side",
  28153. image: {
  28154. source: "./media/characters/pyxaron/side.svg",
  28155. extra: 305 / 195,
  28156. bottom: 17 / 322
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(11, "feet"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(6, "feet"),
  28173. weight: math.unit(150, "lb"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/meep/front.svg",
  28177. extra: 88 / 80,
  28178. bottom: 6 / 94
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Fun Sized",
  28185. height: math.unit(2, "inches"),
  28186. default: true
  28187. },
  28188. {
  28189. name: "Friend Sized",
  28190. height: math.unit(8, "inches")
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28196. {
  28197. front: {
  28198. height: math.unit(15, "feet"),
  28199. weight: math.unit(2500, "lb"),
  28200. name: "Front",
  28201. image: {
  28202. source: "./media/characters/holly-rabbit/front.svg",
  28203. extra: 1433 / 1233,
  28204. bottom: 125 / 1558
  28205. }
  28206. },
  28207. dick: {
  28208. height: math.unit(4.6, "feet"),
  28209. name: "Dick",
  28210. image: {
  28211. source: "./media/characters/holly-rabbit/dick.svg"
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Normal",
  28218. height: math.unit(15, "feet"),
  28219. default: true
  28220. },
  28221. {
  28222. name: "Macro",
  28223. height: math.unit(250, "feet")
  28224. },
  28225. {
  28226. name: "Macro+",
  28227. height: math.unit(2500, "feet")
  28228. },
  28229. ]
  28230. ))
  28231. characterMakers.push(() => makeCharacter(
  28232. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28233. {
  28234. front: {
  28235. height: math.unit(3.02, "meters"),
  28236. weight: math.unit(500, "kg"),
  28237. name: "Front",
  28238. image: {
  28239. source: "./media/characters/drena/front.svg",
  28240. extra: 282 / 243,
  28241. bottom: 8 / 290
  28242. }
  28243. },
  28244. side: {
  28245. height: math.unit(3.02, "meters"),
  28246. weight: math.unit(500, "kg"),
  28247. name: "Side",
  28248. image: {
  28249. source: "./media/characters/drena/side.svg",
  28250. extra: 280 / 245,
  28251. bottom: 10 / 290
  28252. }
  28253. },
  28254. back: {
  28255. height: math.unit(3.02, "meters"),
  28256. weight: math.unit(500, "kg"),
  28257. name: "Back",
  28258. image: {
  28259. source: "./media/characters/drena/back.svg",
  28260. extra: 278 / 243,
  28261. bottom: 2 / 280
  28262. }
  28263. },
  28264. foot: {
  28265. height: math.unit(0.75, "meters"),
  28266. name: "Foot",
  28267. image: {
  28268. source: "./media/characters/drena/foot.svg"
  28269. }
  28270. },
  28271. maw: {
  28272. height: math.unit(0.82, "meters"),
  28273. name: "Maw",
  28274. image: {
  28275. source: "./media/characters/drena/maw.svg"
  28276. }
  28277. },
  28278. rump: {
  28279. height: math.unit(0.93, "meters"),
  28280. name: "Rump",
  28281. image: {
  28282. source: "./media/characters/drena/rump.svg"
  28283. }
  28284. },
  28285. },
  28286. [
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(3.02, "meters"),
  28290. default: true
  28291. },
  28292. ]
  28293. ))
  28294. characterMakers.push(() => makeCharacter(
  28295. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28296. {
  28297. front: {
  28298. height: math.unit(6 + 4 / 12, "feet"),
  28299. weight: math.unit(250, "lb"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/remmyzilla/front.svg",
  28303. extra: 4033 / 3588,
  28304. bottom: 123 / 4156
  28305. }
  28306. },
  28307. back: {
  28308. height: math.unit(6 + 4 / 12, "feet"),
  28309. weight: math.unit(250, "lb"),
  28310. name: "Back",
  28311. image: {
  28312. source: "./media/characters/remmyzilla/back.svg",
  28313. extra: 2687 / 2555,
  28314. bottom: 48 / 2735
  28315. }
  28316. },
  28317. paw: {
  28318. height: math.unit(1.73, "feet"),
  28319. name: "Paw",
  28320. image: {
  28321. source: "./media/characters/remmyzilla/paw.svg"
  28322. }
  28323. },
  28324. maw: {
  28325. height: math.unit(1.73, "feet"),
  28326. name: "Maw",
  28327. image: {
  28328. source: "./media/characters/remmyzilla/maw.svg"
  28329. }
  28330. },
  28331. },
  28332. [
  28333. {
  28334. name: "Normal",
  28335. height: math.unit(6 + 4 / 12, "feet")
  28336. },
  28337. {
  28338. name: "Minimacro",
  28339. height: math.unit(12 + 8 / 12, "feet")
  28340. },
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(640, "feet"),
  28344. default: true
  28345. },
  28346. {
  28347. name: "Megamacro",
  28348. height: math.unit(6400, "feet")
  28349. },
  28350. {
  28351. name: "Gigamacro",
  28352. height: math.unit(64000, "miles")
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(2.5, "meters"),
  28361. weight: math.unit(300, "lb"),
  28362. name: "Front",
  28363. image: {
  28364. source: "./media/characters/lawrence/front.svg",
  28365. extra: 357 / 335,
  28366. bottom: 30 / 387
  28367. }
  28368. },
  28369. back: {
  28370. height: math.unit(2.5, "meters"),
  28371. weight: math.unit(300, "lb"),
  28372. name: "Back",
  28373. image: {
  28374. source: "./media/characters/lawrence/back.svg",
  28375. extra: 357 / 338,
  28376. bottom: 16 / 373
  28377. }
  28378. },
  28379. head: {
  28380. height: math.unit(0.9, "meter"),
  28381. name: "Head",
  28382. image: {
  28383. source: "./media/characters/lawrence/head.svg"
  28384. }
  28385. },
  28386. maw: {
  28387. height: math.unit(0.7, "meter"),
  28388. name: "Maw",
  28389. image: {
  28390. source: "./media/characters/lawrence/maw.svg"
  28391. }
  28392. },
  28393. footBottom: {
  28394. height: math.unit(0.5, "meter"),
  28395. name: "Foot (Bottom)",
  28396. image: {
  28397. source: "./media/characters/lawrence/foot-bottom.svg"
  28398. }
  28399. },
  28400. footTop: {
  28401. height: math.unit(0.5, "meter"),
  28402. name: "Foot (Top)",
  28403. image: {
  28404. source: "./media/characters/lawrence/foot-top.svg"
  28405. }
  28406. },
  28407. },
  28408. [
  28409. {
  28410. name: "Normal",
  28411. height: math.unit(2.5, "meters"),
  28412. default: true
  28413. },
  28414. {
  28415. name: "Macro",
  28416. height: math.unit(95, "meters")
  28417. },
  28418. {
  28419. name: "Megamacro",
  28420. height: math.unit(150, "km")
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28426. {
  28427. front: {
  28428. height: math.unit(4.2, "meters"),
  28429. name: "Front",
  28430. image: {
  28431. source: "./media/characters/sydney/front.svg",
  28432. extra: 1323 / 1277,
  28433. bottom: 111 / 1434
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(4.2, "meters"),
  28441. default: true
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28447. {
  28448. back: {
  28449. height: math.unit(201, "feet"),
  28450. name: "Back",
  28451. image: {
  28452. source: "./media/characters/jessica/back.svg",
  28453. extra: 273 / 259,
  28454. bottom: 7 / 280
  28455. }
  28456. },
  28457. },
  28458. [
  28459. {
  28460. name: "Normal",
  28461. height: math.unit(201, "feet"),
  28462. default: true
  28463. },
  28464. {
  28465. name: "Megamacro",
  28466. height: math.unit(8, "miles")
  28467. },
  28468. ]
  28469. ))
  28470. characterMakers.push(() => makeCharacter(
  28471. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28472. {
  28473. side: {
  28474. height: math.unit(320, "cm"),
  28475. name: "Side",
  28476. image: {
  28477. source: "./media/characters/victoria/side.svg",
  28478. extra: 778 / 346,
  28479. bottom: 56 / 834
  28480. }
  28481. },
  28482. maw: {
  28483. height: math.unit(5.9, "feet"),
  28484. name: "Maw",
  28485. image: {
  28486. source: "./media/characters/victoria/maw.svg"
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Normal",
  28493. height: math.unit(320, "cm"),
  28494. default: true
  28495. },
  28496. ]
  28497. ))
  28498. characterMakers.push(() => makeCharacter(
  28499. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28500. {
  28501. front: {
  28502. height: math.unit(5 + 6 / 12, "feet"),
  28503. name: "Front",
  28504. image: {
  28505. source: "./media/characters/cat/front.svg",
  28506. extra: 1449/1295,
  28507. bottom: 34/1483
  28508. }
  28509. },
  28510. back: {
  28511. height: math.unit(5 + 6 / 12, "feet"),
  28512. name: "Back",
  28513. image: {
  28514. source: "./media/characters/cat/back.svg",
  28515. extra: 1466/1301,
  28516. bottom: 19/1485
  28517. }
  28518. },
  28519. taur: {
  28520. height: math.unit(7, "feet"),
  28521. name: "Taur",
  28522. image: {
  28523. source: "./media/characters/cat/taur.svg",
  28524. extra: 1389/1233,
  28525. bottom: 83/1472
  28526. }
  28527. },
  28528. lucarioFront: {
  28529. height: math.unit(4, "feet"),
  28530. name: "Lucario (Front)",
  28531. image: {
  28532. source: "./media/characters/cat/lucario-front.svg",
  28533. extra: 1149/1019,
  28534. bottom: 84/1233
  28535. }
  28536. },
  28537. lucarioBack: {
  28538. height: math.unit(4, "feet"),
  28539. name: "Lucario (Back)",
  28540. image: {
  28541. source: "./media/characters/cat/lucario-back.svg",
  28542. extra: 1190/1059,
  28543. bottom: 33/1223
  28544. }
  28545. },
  28546. megaLucario: {
  28547. height: math.unit(4, "feet"),
  28548. name: "Mega Lucario",
  28549. image: {
  28550. source: "./media/characters/cat/mega-lucario.svg",
  28551. extra: 1515 / 1319,
  28552. bottom: 63 / 1578
  28553. }
  28554. },
  28555. nickit: {
  28556. height: math.unit(2, "feet"),
  28557. name: "Nickit",
  28558. image: {
  28559. source: "./media/characters/cat/nickit.svg",
  28560. extra: 1980 / 1585,
  28561. bottom: 102 / 2082
  28562. }
  28563. },
  28564. lopunnyFront: {
  28565. height: math.unit(5, "feet"),
  28566. name: "Lopunny (Front)",
  28567. image: {
  28568. source: "./media/characters/cat/lopunny-front.svg",
  28569. extra: 1782 / 1469,
  28570. bottom: 38 / 1820
  28571. }
  28572. },
  28573. lopunnyBack: {
  28574. height: math.unit(5, "feet"),
  28575. name: "Lopunny (Back)",
  28576. image: {
  28577. source: "./media/characters/cat/lopunny-back.svg",
  28578. extra: 1660 / 1490,
  28579. bottom: 25 / 1685
  28580. }
  28581. },
  28582. },
  28583. [
  28584. {
  28585. name: "Really small",
  28586. height: math.unit(1, "nm")
  28587. },
  28588. {
  28589. name: "Micro",
  28590. height: math.unit(5, "inches")
  28591. },
  28592. {
  28593. name: "Normal",
  28594. height: math.unit(5 + 6 / 12, "feet"),
  28595. default: true
  28596. },
  28597. {
  28598. name: "Macro",
  28599. height: math.unit(50, "feet")
  28600. },
  28601. {
  28602. name: "Macro+",
  28603. height: math.unit(150, "feet")
  28604. },
  28605. {
  28606. name: "Megamacro",
  28607. height: math.unit(100, "miles")
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(63.4, "meters"),
  28616. weight: math.unit(3.28349e+6, "kilograms"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/kirina-violet/front.svg",
  28620. extra: 2812 / 2725,
  28621. bottom: 0 / 2812
  28622. }
  28623. },
  28624. back: {
  28625. height: math.unit(63.4, "meters"),
  28626. weight: math.unit(3.28349e+6, "kilograms"),
  28627. name: "Back",
  28628. image: {
  28629. source: "./media/characters/kirina-violet/back.svg",
  28630. extra: 2812 / 2725,
  28631. bottom: 0 / 2812
  28632. }
  28633. },
  28634. mouth: {
  28635. height: math.unit(4.35, "meters"),
  28636. name: "Mouth",
  28637. image: {
  28638. source: "./media/characters/kirina-violet/mouth.svg"
  28639. }
  28640. },
  28641. paw: {
  28642. height: math.unit(5.6, "meters"),
  28643. name: "Paw",
  28644. image: {
  28645. source: "./media/characters/kirina-violet/paw.svg"
  28646. }
  28647. },
  28648. tail: {
  28649. height: math.unit(18, "meters"),
  28650. name: "Tail",
  28651. image: {
  28652. source: "./media/characters/kirina-violet/tail.svg"
  28653. }
  28654. },
  28655. },
  28656. [
  28657. {
  28658. name: "Macro",
  28659. height: math.unit(63.4, "meters"),
  28660. default: true
  28661. },
  28662. ]
  28663. ))
  28664. characterMakers.push(() => makeCharacter(
  28665. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28666. {
  28667. front: {
  28668. height: math.unit(75, "feet"),
  28669. name: "Front",
  28670. image: {
  28671. source: "./media/characters/cat-gigachu/front.svg",
  28672. extra: 1239/1027,
  28673. bottom: 32/1271
  28674. }
  28675. },
  28676. back: {
  28677. height: math.unit(75, "feet"),
  28678. name: "Back",
  28679. image: {
  28680. source: "./media/characters/cat-gigachu/back.svg",
  28681. extra: 1229/1030,
  28682. bottom: 9/1238
  28683. }
  28684. },
  28685. },
  28686. [
  28687. {
  28688. name: "Dynamax",
  28689. height: math.unit(75, "feet"),
  28690. default: true
  28691. },
  28692. ]
  28693. ))
  28694. characterMakers.push(() => makeCharacter(
  28695. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28696. {
  28697. front: {
  28698. height: math.unit(6, "feet"),
  28699. weight: math.unit(150, "lb"),
  28700. name: "Front",
  28701. image: {
  28702. source: "./media/characters/sfaiyan/front.svg",
  28703. extra: 999 / 978,
  28704. bottom: 5 / 1004
  28705. }
  28706. },
  28707. },
  28708. [
  28709. {
  28710. name: "Normal",
  28711. height: math.unit(1.82, "meters")
  28712. },
  28713. {
  28714. name: "Giant",
  28715. height: math.unit(2.27, "km"),
  28716. default: true
  28717. },
  28718. ]
  28719. ))
  28720. characterMakers.push(() => makeCharacter(
  28721. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28722. {
  28723. front: {
  28724. height: math.unit(179, "cm"),
  28725. weight: math.unit(100, "kg"),
  28726. name: "Front",
  28727. image: {
  28728. source: "./media/characters/raunehkeli/front.svg",
  28729. extra: 1934 / 1926,
  28730. bottom: 0 / 1934
  28731. }
  28732. },
  28733. },
  28734. [
  28735. {
  28736. name: "Normal",
  28737. height: math.unit(179, "cm")
  28738. },
  28739. {
  28740. name: "Maximum",
  28741. height: math.unit(575, "meters"),
  28742. default: true
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28748. {
  28749. front: {
  28750. height: math.unit(6, "feet"),
  28751. weight: math.unit(150, "lb"),
  28752. name: "Front",
  28753. image: {
  28754. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28755. extra: 2625 / 2518,
  28756. bottom: 60 / 2685
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Normal",
  28763. height: math.unit(6 + 2 / 12, "feet")
  28764. },
  28765. {
  28766. name: "Macro",
  28767. height: math.unit(1180, "feet"),
  28768. default: true
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(5 + 6 / 12, "feet"),
  28777. weight: math.unit(108, "lb"),
  28778. name: "Front",
  28779. image: {
  28780. source: "./media/characters/lilith-zott/front.svg",
  28781. extra: 2510 / 2238,
  28782. bottom: 100 / 2610
  28783. }
  28784. },
  28785. frontDressed: {
  28786. height: math.unit(5 + 6 / 12, "feet"),
  28787. weight: math.unit(108, "lb"),
  28788. name: "Front (Dressed)",
  28789. image: {
  28790. source: "./media/characters/lilith-zott/front-dressed.svg",
  28791. extra: 2510 / 2238,
  28792. bottom: 100 / 2610
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Normal",
  28799. height: math.unit(5 + 6 / 12, "feet")
  28800. },
  28801. {
  28802. name: "Macro",
  28803. height: math.unit(1030, "feet"),
  28804. default: true
  28805. },
  28806. ]
  28807. ))
  28808. characterMakers.push(() => makeCharacter(
  28809. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28810. {
  28811. front: {
  28812. height: math.unit(6, "feet"),
  28813. weight: math.unit(150, "lb"),
  28814. name: "Front",
  28815. image: {
  28816. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28817. extra: 2567 / 2435,
  28818. bottom: 39 / 2606
  28819. }
  28820. },
  28821. frontSuper: {
  28822. height: math.unit(6, "feet"),
  28823. name: "Front (Super)",
  28824. image: {
  28825. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28826. extra: 2567 / 2435,
  28827. bottom: 39 / 2606
  28828. }
  28829. },
  28830. },
  28831. [
  28832. {
  28833. name: "Normal",
  28834. height: math.unit(5 + 10 / 12, "feet")
  28835. },
  28836. {
  28837. name: "Macro",
  28838. height: math.unit(1100, "feet"),
  28839. default: true
  28840. },
  28841. ]
  28842. ))
  28843. characterMakers.push(() => makeCharacter(
  28844. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28845. {
  28846. front: {
  28847. height: math.unit(100, "miles"),
  28848. name: "Front",
  28849. image: {
  28850. source: "./media/characters/sona/front.svg",
  28851. extra: 2433 / 2201,
  28852. bottom: 53 / 2486
  28853. }
  28854. },
  28855. foot: {
  28856. height: math.unit(16.1, "miles"),
  28857. name: "Foot",
  28858. image: {
  28859. source: "./media/characters/sona/foot.svg"
  28860. }
  28861. },
  28862. },
  28863. [
  28864. {
  28865. name: "Macro",
  28866. height: math.unit(100, "miles"),
  28867. default: true
  28868. },
  28869. ]
  28870. ))
  28871. characterMakers.push(() => makeCharacter(
  28872. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28873. {
  28874. front: {
  28875. height: math.unit(6, "feet"),
  28876. weight: math.unit(150, "lb"),
  28877. name: "Front",
  28878. image: {
  28879. source: "./media/characters/bailey/front.svg",
  28880. extra: 1778 / 1724,
  28881. bottom: 30 / 1808
  28882. }
  28883. },
  28884. },
  28885. [
  28886. {
  28887. name: "Micro",
  28888. height: math.unit(4, "inches")
  28889. },
  28890. {
  28891. name: "Normal",
  28892. height: math.unit(5 + 5 / 12, "feet"),
  28893. default: true
  28894. },
  28895. {
  28896. name: "Macro",
  28897. height: math.unit(250, "feet")
  28898. },
  28899. {
  28900. name: "Megamacro",
  28901. height: math.unit(100, "miles")
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28907. {
  28908. front: {
  28909. height: math.unit(5 + 2 / 12, "feet"),
  28910. weight: math.unit(120, "lb"),
  28911. name: "Front",
  28912. image: {
  28913. source: "./media/characters/snaps/front.svg",
  28914. extra: 2370 / 2177,
  28915. bottom: 48 / 2418
  28916. }
  28917. },
  28918. back: {
  28919. height: math.unit(5 + 2 / 12, "feet"),
  28920. weight: math.unit(120, "lb"),
  28921. name: "Back",
  28922. image: {
  28923. source: "./media/characters/snaps/back.svg",
  28924. extra: 2408 / 2258,
  28925. bottom: 15 / 2423
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Micro",
  28932. height: math.unit(9, "inches")
  28933. },
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(5 + 2 / 12, "feet"),
  28937. default: true
  28938. },
  28939. {
  28940. name: "Mini Macro",
  28941. height: math.unit(10, "feet")
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(1.8, "meters"),
  28950. weight: math.unit(85, "kg"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/azteck/front.svg",
  28954. extra: 2815 / 2625,
  28955. bottom: 89 / 2904
  28956. }
  28957. },
  28958. back: {
  28959. height: math.unit(1.8, "meters"),
  28960. weight: math.unit(85, "kg"),
  28961. name: "Back",
  28962. image: {
  28963. source: "./media/characters/azteck/back.svg",
  28964. extra: 2856 / 2648,
  28965. bottom: 85 / 2941
  28966. }
  28967. },
  28968. frontDressed: {
  28969. height: math.unit(1.8, "meters"),
  28970. weight: math.unit(85, "kg"),
  28971. name: "Front (Dressed)",
  28972. image: {
  28973. source: "./media/characters/azteck/front-dressed.svg",
  28974. extra: 2147 / 2003,
  28975. bottom: 68 / 2215
  28976. }
  28977. },
  28978. head: {
  28979. height: math.unit(0.47, "meters"),
  28980. weight: math.unit(85, "kg"),
  28981. name: "Head",
  28982. image: {
  28983. source: "./media/characters/azteck/head.svg"
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Bite sized",
  28990. height: math.unit(16, "cm")
  28991. },
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(1.8, "meters"),
  28995. default: true
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29001. {
  29002. front: {
  29003. height: math.unit(6, "feet"),
  29004. weight: math.unit(150, "lb"),
  29005. name: "Front",
  29006. image: {
  29007. source: "./media/characters/pidge/front.svg",
  29008. extra: 620 / 588,
  29009. bottom: 9 / 629
  29010. }
  29011. },
  29012. back: {
  29013. height: math.unit(6, "feet"),
  29014. weight: math.unit(150, "lb"),
  29015. name: "Back",
  29016. image: {
  29017. source: "./media/characters/pidge/back.svg",
  29018. extra: 620 / 588,
  29019. bottom: 9 / 629
  29020. }
  29021. },
  29022. },
  29023. [
  29024. {
  29025. name: "Macro",
  29026. height: math.unit(1, "mile"),
  29027. default: true
  29028. },
  29029. ]
  29030. ))
  29031. characterMakers.push(() => makeCharacter(
  29032. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29033. {
  29034. front: {
  29035. height: math.unit(6, "feet"),
  29036. weight: math.unit(150, "lb"),
  29037. name: "Front",
  29038. image: {
  29039. source: "./media/characters/en/front.svg",
  29040. extra: 1697 / 1563,
  29041. bottom: 103 / 1800
  29042. }
  29043. },
  29044. back: {
  29045. height: math.unit(6, "feet"),
  29046. weight: math.unit(150, "lb"),
  29047. name: "Back",
  29048. image: {
  29049. source: "./media/characters/en/back.svg",
  29050. extra: 1700 / 1570,
  29051. bottom: 51 / 1751
  29052. }
  29053. },
  29054. frontDressed: {
  29055. height: math.unit(6, "feet"),
  29056. weight: math.unit(150, "lb"),
  29057. name: "Front (Dressed)",
  29058. image: {
  29059. source: "./media/characters/en/front-dressed.svg",
  29060. extra: 1697 / 1563,
  29061. bottom: 103 / 1800
  29062. }
  29063. },
  29064. backDressed: {
  29065. height: math.unit(6, "feet"),
  29066. weight: math.unit(150, "lb"),
  29067. name: "Back (Dressed)",
  29068. image: {
  29069. source: "./media/characters/en/back-dressed.svg",
  29070. extra: 1700 / 1570,
  29071. bottom: 51 / 1751
  29072. }
  29073. },
  29074. },
  29075. [
  29076. {
  29077. name: "Macro",
  29078. height: math.unit(210, "feet"),
  29079. default: true
  29080. },
  29081. ]
  29082. ))
  29083. characterMakers.push(() => makeCharacter(
  29084. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29085. {
  29086. front: {
  29087. height: math.unit(6, "feet"),
  29088. weight: math.unit(150, "lb"),
  29089. name: "Front",
  29090. image: {
  29091. source: "./media/characters/haze-orris/front.svg",
  29092. extra: 3975 / 3525,
  29093. bottom: 137 / 4112
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Micro",
  29100. height: math.unit(150, "mm"),
  29101. default: true
  29102. },
  29103. ]
  29104. ))
  29105. characterMakers.push(() => makeCharacter(
  29106. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29107. {
  29108. front: {
  29109. height: math.unit(6, "feet"),
  29110. weight: math.unit(150, "lb"),
  29111. name: "Front",
  29112. image: {
  29113. source: "./media/characters/casselene-yaro/front.svg",
  29114. extra: 4721 / 4541,
  29115. bottom: 82 / 4803
  29116. }
  29117. },
  29118. back: {
  29119. height: math.unit(6, "feet"),
  29120. weight: math.unit(150, "lb"),
  29121. name: "Back",
  29122. image: {
  29123. source: "./media/characters/casselene-yaro/back.svg",
  29124. extra: 4569 / 4377,
  29125. bottom: 69 / 4638
  29126. }
  29127. },
  29128. frontDressed: {
  29129. height: math.unit(6, "feet"),
  29130. weight: math.unit(150, "lb"),
  29131. name: "Front-dressed",
  29132. image: {
  29133. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29134. extra: 4721 / 4541,
  29135. bottom: 82 / 4803
  29136. }
  29137. },
  29138. },
  29139. [
  29140. {
  29141. name: "Macro",
  29142. height: math.unit(190, "feet"),
  29143. default: true
  29144. },
  29145. ]
  29146. ))
  29147. characterMakers.push(() => makeCharacter(
  29148. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29149. {
  29150. front: {
  29151. height: math.unit(6, "feet"),
  29152. weight: math.unit(150, "lb"),
  29153. name: "Front",
  29154. image: {
  29155. source: "./media/characters/myra-rue-delore/front.svg",
  29156. extra: 1340 / 1308,
  29157. bottom: 67 / 1407
  29158. }
  29159. },
  29160. back: {
  29161. height: math.unit(6, "feet"),
  29162. weight: math.unit(150, "lb"),
  29163. name: "Back",
  29164. image: {
  29165. source: "./media/characters/myra-rue-delore/back.svg",
  29166. extra: 1341 / 1310,
  29167. bottom: 40 / 1381
  29168. }
  29169. },
  29170. frontDressed: {
  29171. height: math.unit(6, "feet"),
  29172. weight: math.unit(150, "lb"),
  29173. name: "Front (Dressed)",
  29174. image: {
  29175. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29176. extra: 1340 / 1308,
  29177. bottom: 67 / 1407
  29178. }
  29179. },
  29180. },
  29181. [
  29182. {
  29183. name: "Macro",
  29184. height: math.unit(150, "feet"),
  29185. default: true
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29191. {
  29192. front: {
  29193. height: math.unit(10, "feet"),
  29194. weight: math.unit(15015, "lb"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/fem!plat/front.svg",
  29198. extra: 2799 / 2604,
  29199. bottom: 149 / 2948
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Normal",
  29206. height: math.unit(10, "feet"),
  29207. default: true
  29208. },
  29209. {
  29210. name: "Macro",
  29211. height: math.unit(100, "feet")
  29212. },
  29213. {
  29214. name: "Megamacro",
  29215. height: math.unit(1000, "feet")
  29216. },
  29217. ]
  29218. ))
  29219. characterMakers.push(() => makeCharacter(
  29220. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29221. {
  29222. front: {
  29223. height: math.unit(15 + 5 / 12, "feet"),
  29224. weight: math.unit(4600, "lb"),
  29225. name: "Front",
  29226. image: {
  29227. source: "./media/characters/neapolitan-ananassa/front.svg",
  29228. extra: 2903 / 2736,
  29229. bottom: 0 / 2903
  29230. }
  29231. },
  29232. side: {
  29233. height: math.unit(15 + 5 / 12, "feet"),
  29234. weight: math.unit(4600, "lb"),
  29235. name: "Side",
  29236. image: {
  29237. source: "./media/characters/neapolitan-ananassa/side.svg",
  29238. extra: 2925 / 2719,
  29239. bottom: 0 / 2925
  29240. }
  29241. },
  29242. back: {
  29243. height: math.unit(15 + 5 / 12, "feet"),
  29244. weight: math.unit(4600, "lb"),
  29245. name: "Back",
  29246. image: {
  29247. source: "./media/characters/neapolitan-ananassa/back.svg",
  29248. extra: 2903 / 2736,
  29249. bottom: 0 / 2903
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(15 + 5 / 12, "feet"),
  29257. default: true
  29258. },
  29259. {
  29260. name: "Post-Millenium",
  29261. height: math.unit(35 + 5 / 12, "feet")
  29262. },
  29263. {
  29264. name: "Post-Era",
  29265. height: math.unit(450 + 5 / 12, "feet")
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(300, "meters"),
  29274. weight: math.unit(125000, "tonnes"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/pazuzu/front.svg",
  29278. extra: 877 / 794,
  29279. bottom: 47 / 924
  29280. }
  29281. },
  29282. },
  29283. [
  29284. {
  29285. name: "Macro",
  29286. height: math.unit(300, "meters"),
  29287. default: true
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29293. {
  29294. side: {
  29295. height: math.unit(10 + 7 / 12, "feet"),
  29296. weight: math.unit(2.5, "tons"),
  29297. name: "Side",
  29298. image: {
  29299. source: "./media/characters/aasha/side.svg",
  29300. extra: 1345 / 1245,
  29301. bottom: 111 / 1456
  29302. }
  29303. },
  29304. back: {
  29305. height: math.unit(10 + 7 / 12, "feet"),
  29306. weight: math.unit(2.5, "tons"),
  29307. name: "Back",
  29308. image: {
  29309. source: "./media/characters/aasha/back.svg",
  29310. extra: 1133 / 1057,
  29311. bottom: 257 / 1390
  29312. }
  29313. },
  29314. },
  29315. [
  29316. {
  29317. name: "Normal",
  29318. height: math.unit(10 + 7 / 12, "feet"),
  29319. default: true
  29320. },
  29321. ]
  29322. ))
  29323. characterMakers.push(() => makeCharacter(
  29324. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29325. {
  29326. front: {
  29327. height: math.unit(6 + 3 / 12, "feet"),
  29328. name: "Front",
  29329. image: {
  29330. source: "./media/characters/nevan/front.svg",
  29331. extra: 704 / 704,
  29332. bottom: 28 / 732
  29333. }
  29334. },
  29335. back: {
  29336. height: math.unit(6 + 3 / 12, "feet"),
  29337. name: "Back",
  29338. image: {
  29339. source: "./media/characters/nevan/back.svg",
  29340. extra: 714 / 714,
  29341. bottom: 21 / 735
  29342. }
  29343. },
  29344. frontFlaccid: {
  29345. height: math.unit(6 + 3 / 12, "feet"),
  29346. name: "Front (Flaccid)",
  29347. image: {
  29348. source: "./media/characters/nevan/front-flaccid.svg",
  29349. extra: 704 / 704,
  29350. bottom: 28 / 732
  29351. }
  29352. },
  29353. frontErect: {
  29354. height: math.unit(6 + 3 / 12, "feet"),
  29355. name: "Front (Erect)",
  29356. image: {
  29357. source: "./media/characters/nevan/front-erect.svg",
  29358. extra: 704 / 704,
  29359. bottom: 28 / 732
  29360. }
  29361. },
  29362. backFlaccid: {
  29363. height: math.unit(6 + 3 / 12, "feet"),
  29364. name: "Back (Flaccid)",
  29365. image: {
  29366. source: "./media/characters/nevan/back-flaccid.svg",
  29367. extra: 714 / 714,
  29368. bottom: 21 / 735
  29369. }
  29370. },
  29371. },
  29372. [
  29373. {
  29374. name: "Normal",
  29375. height: math.unit(6 + 3 / 12, "feet"),
  29376. default: true
  29377. },
  29378. ]
  29379. ))
  29380. characterMakers.push(() => makeCharacter(
  29381. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29382. {
  29383. front: {
  29384. height: math.unit(4, "feet"),
  29385. name: "Front",
  29386. image: {
  29387. source: "./media/characters/arhan/front.svg",
  29388. extra: 3368 / 3133,
  29389. bottom: 0 / 3368
  29390. }
  29391. },
  29392. side: {
  29393. height: math.unit(4, "feet"),
  29394. name: "Side",
  29395. image: {
  29396. source: "./media/characters/arhan/side.svg",
  29397. extra: 3347 / 3105,
  29398. bottom: 0 / 3347
  29399. }
  29400. },
  29401. tongue: {
  29402. height: math.unit(1.42, "feet"),
  29403. name: "Tongue",
  29404. image: {
  29405. source: "./media/characters/arhan/tongue.svg"
  29406. }
  29407. },
  29408. head: {
  29409. height: math.unit(0.85, "feet"),
  29410. name: "Head",
  29411. image: {
  29412. source: "./media/characters/arhan/head.svg"
  29413. }
  29414. },
  29415. },
  29416. [
  29417. {
  29418. name: "Normal",
  29419. height: math.unit(4, "feet"),
  29420. default: true
  29421. },
  29422. ]
  29423. ))
  29424. characterMakers.push(() => makeCharacter(
  29425. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29426. {
  29427. front: {
  29428. height: math.unit(5 + 7.5 / 12, "feet"),
  29429. weight: math.unit(120, "lb"),
  29430. name: "Front",
  29431. image: {
  29432. source: "./media/characters/digi-duncan/front.svg",
  29433. extra: 330 / 326,
  29434. bottom: 16 / 346
  29435. }
  29436. },
  29437. side: {
  29438. height: math.unit(5 + 7.5 / 12, "feet"),
  29439. weight: math.unit(120, "lb"),
  29440. name: "Side",
  29441. image: {
  29442. source: "./media/characters/digi-duncan/side.svg",
  29443. extra: 341 / 337,
  29444. bottom: 1 / 342
  29445. }
  29446. },
  29447. back: {
  29448. height: math.unit(5 + 7.5 / 12, "feet"),
  29449. weight: math.unit(120, "lb"),
  29450. name: "Back",
  29451. image: {
  29452. source: "./media/characters/digi-duncan/back.svg",
  29453. extra: 330 / 326,
  29454. bottom: 12 / 342
  29455. }
  29456. },
  29457. },
  29458. [
  29459. {
  29460. name: "Speck",
  29461. height: math.unit(0.25, "mm")
  29462. },
  29463. {
  29464. name: "Micro",
  29465. height: math.unit(5, "mm")
  29466. },
  29467. {
  29468. name: "Tiny",
  29469. height: math.unit(0.5, "inches"),
  29470. default: true
  29471. },
  29472. {
  29473. name: "Human",
  29474. height: math.unit(5 + 7.5 / 12, "feet")
  29475. },
  29476. {
  29477. name: "Minigiant",
  29478. height: math.unit(8 + 5.25, "feet")
  29479. },
  29480. {
  29481. name: "Giant",
  29482. height: math.unit(2000, "feet")
  29483. },
  29484. {
  29485. name: "Mega",
  29486. height: math.unit(371.1, "miles")
  29487. },
  29488. ]
  29489. ))
  29490. characterMakers.push(() => makeCharacter(
  29491. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29492. {
  29493. front: {
  29494. height: math.unit(2, "meters"),
  29495. weight: math.unit(350, "kg"),
  29496. name: "Front",
  29497. image: {
  29498. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29499. extra: 898 / 838,
  29500. bottom: 9 / 907
  29501. }
  29502. },
  29503. },
  29504. [
  29505. {
  29506. name: "Micro",
  29507. height: math.unit(8, "meters")
  29508. },
  29509. {
  29510. name: "Normal",
  29511. height: math.unit(50, "meters"),
  29512. default: true
  29513. },
  29514. {
  29515. name: "Macro",
  29516. height: math.unit(500, "meters")
  29517. },
  29518. ]
  29519. ))
  29520. characterMakers.push(() => makeCharacter(
  29521. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29522. {
  29523. front: {
  29524. height: math.unit(6 + 6 / 12, "feet"),
  29525. name: "Front",
  29526. image: {
  29527. source: "./media/characters/khardesh/front.svg",
  29528. extra: 888 / 797,
  29529. bottom: 25 / 913
  29530. }
  29531. },
  29532. },
  29533. [
  29534. {
  29535. name: "Normal",
  29536. height: math.unit(6 + 6 / 12, "feet"),
  29537. default: true
  29538. },
  29539. {
  29540. name: "Normal+",
  29541. height: math.unit(4, "meters")
  29542. },
  29543. {
  29544. name: "Macro",
  29545. height: math.unit(50, "meters")
  29546. },
  29547. {
  29548. name: "Macro+",
  29549. height: math.unit(100, "meters")
  29550. },
  29551. {
  29552. name: "Megamacro",
  29553. height: math.unit(20, "km")
  29554. },
  29555. ]
  29556. ))
  29557. characterMakers.push(() => makeCharacter(
  29558. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29559. {
  29560. front: {
  29561. height: math.unit(6, "feet"),
  29562. weight: math.unit(150, "lb"),
  29563. name: "Front",
  29564. image: {
  29565. source: "./media/characters/kosho/front.svg",
  29566. extra: 1847 / 1847,
  29567. bottom: 86 / 1933
  29568. }
  29569. },
  29570. },
  29571. [
  29572. {
  29573. name: "Second-stage micro",
  29574. height: math.unit(0.5, "inches")
  29575. },
  29576. {
  29577. name: "First-stage micro",
  29578. height: math.unit(6, "inches")
  29579. },
  29580. {
  29581. name: "Normal",
  29582. height: math.unit(6, "feet"),
  29583. default: true
  29584. },
  29585. {
  29586. name: "First-stage macro",
  29587. height: math.unit(72, "feet")
  29588. },
  29589. {
  29590. name: "Second-stage macro",
  29591. height: math.unit(864, "feet")
  29592. },
  29593. ]
  29594. ))
  29595. characterMakers.push(() => makeCharacter(
  29596. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29597. {
  29598. normal: {
  29599. height: math.unit(4 + 6 / 12, "feet"),
  29600. name: "Normal",
  29601. image: {
  29602. source: "./media/characters/hydra/normal.svg",
  29603. extra: 2833 / 2634,
  29604. bottom: 68 / 2901
  29605. }
  29606. },
  29607. smol: {
  29608. height: math.unit(0.705, "inches"),
  29609. name: "Smol",
  29610. image: {
  29611. source: "./media/characters/hydra/smol.svg",
  29612. extra: 2715 / 2540,
  29613. bottom: 0 / 2715
  29614. }
  29615. },
  29616. },
  29617. [
  29618. {
  29619. name: "Normal",
  29620. height: math.unit(4 + 6 / 12, "feet"),
  29621. default: true
  29622. }
  29623. ]
  29624. ))
  29625. characterMakers.push(() => makeCharacter(
  29626. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29627. {
  29628. front: {
  29629. height: math.unit(0.6, "cm"),
  29630. name: "Front",
  29631. image: {
  29632. source: "./media/characters/daz/front.svg",
  29633. extra: 1682 / 1164,
  29634. bottom: 42 / 1724
  29635. }
  29636. },
  29637. },
  29638. [
  29639. {
  29640. name: "Normal",
  29641. height: math.unit(0.6, "cm"),
  29642. default: true
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29648. {
  29649. front: {
  29650. height: math.unit(6, "feet"),
  29651. weight: math.unit(235, "lb"),
  29652. name: "Front",
  29653. image: {
  29654. source: "./media/characters/theo-pangolin/front.svg",
  29655. extra: 1996 / 1969,
  29656. bottom: 115 / 2111
  29657. }
  29658. },
  29659. back: {
  29660. height: math.unit(6, "feet"),
  29661. weight: math.unit(235, "lb"),
  29662. name: "Back",
  29663. image: {
  29664. source: "./media/characters/theo-pangolin/back.svg",
  29665. extra: 1979 / 1979,
  29666. bottom: 40 / 2019
  29667. }
  29668. },
  29669. feral: {
  29670. height: math.unit(2, "feet"),
  29671. weight: math.unit(30, "lb"),
  29672. name: "Feral",
  29673. image: {
  29674. source: "./media/characters/theo-pangolin/feral.svg",
  29675. extra: 803 / 791,
  29676. bottom: 181 / 984
  29677. }
  29678. },
  29679. footFive: {
  29680. height: math.unit(1.43, "feet"),
  29681. name: "Foot (Five Toes)",
  29682. image: {
  29683. source: "./media/characters/theo-pangolin/foot-five.svg"
  29684. }
  29685. },
  29686. footFour: {
  29687. height: math.unit(1.43, "feet"),
  29688. name: "Foot (Four Toes)",
  29689. image: {
  29690. source: "./media/characters/theo-pangolin/foot-four.svg"
  29691. }
  29692. },
  29693. handFour: {
  29694. height: math.unit(0.81, "feet"),
  29695. name: "Hand (Four Fingers)",
  29696. image: {
  29697. source: "./media/characters/theo-pangolin/hand-four.svg"
  29698. }
  29699. },
  29700. handThree: {
  29701. height: math.unit(0.81, "feet"),
  29702. name: "Hand (Three Fingers)",
  29703. image: {
  29704. source: "./media/characters/theo-pangolin/hand-three.svg"
  29705. }
  29706. },
  29707. headFront: {
  29708. height: math.unit(1.37, "feet"),
  29709. name: "Head (Front)",
  29710. image: {
  29711. source: "./media/characters/theo-pangolin/head-front.svg"
  29712. }
  29713. },
  29714. headSide: {
  29715. height: math.unit(1.43, "feet"),
  29716. name: "Head (Side)",
  29717. image: {
  29718. source: "./media/characters/theo-pangolin/head-side.svg"
  29719. }
  29720. },
  29721. tongue: {
  29722. height: math.unit(2.29, "feet"),
  29723. name: "Tongue",
  29724. image: {
  29725. source: "./media/characters/theo-pangolin/tongue.svg"
  29726. }
  29727. },
  29728. },
  29729. [
  29730. {
  29731. name: "Normal",
  29732. height: math.unit(6, "feet")
  29733. },
  29734. {
  29735. name: "Macro",
  29736. height: math.unit(400, "feet"),
  29737. default: true
  29738. },
  29739. ]
  29740. ))
  29741. characterMakers.push(() => makeCharacter(
  29742. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29743. {
  29744. front: {
  29745. height: math.unit(6, "inches"),
  29746. weight: math.unit(0.036, "kg"),
  29747. name: "Front",
  29748. image: {
  29749. source: "./media/characters/renée/front.svg",
  29750. extra: 900 / 886,
  29751. bottom: 8 / 908
  29752. }
  29753. },
  29754. },
  29755. [
  29756. {
  29757. name: "Nano",
  29758. height: math.unit(1, "nm")
  29759. },
  29760. {
  29761. name: "Micro",
  29762. height: math.unit(1, "mm")
  29763. },
  29764. {
  29765. name: "Normal",
  29766. height: math.unit(6, "inches")
  29767. },
  29768. {
  29769. name: "Macro",
  29770. height: math.unit(2000, "feet"),
  29771. default: true
  29772. },
  29773. {
  29774. name: "Megamacro",
  29775. height: math.unit(2, "km")
  29776. },
  29777. {
  29778. name: "Gigamacro",
  29779. height: math.unit(2000, "km")
  29780. },
  29781. {
  29782. name: "Teramacro",
  29783. height: math.unit(250000, "km")
  29784. },
  29785. ]
  29786. ))
  29787. characterMakers.push(() => makeCharacter(
  29788. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29789. {
  29790. front: {
  29791. height: math.unit(4, "meters"),
  29792. weight: math.unit(150, "kg"),
  29793. name: "Front",
  29794. image: {
  29795. source: "./media/characters/caledvwlch/front.svg",
  29796. extra: 1760 / 1551,
  29797. bottom: 28 / 1788
  29798. }
  29799. },
  29800. side: {
  29801. height: math.unit(4, "meters"),
  29802. weight: math.unit(150, "kg"),
  29803. name: "Side",
  29804. image: {
  29805. source: "./media/characters/caledvwlch/side.svg",
  29806. extra: 1605 / 1536,
  29807. bottom: 31 / 1636
  29808. }
  29809. },
  29810. back: {
  29811. height: math.unit(4, "meters"),
  29812. weight: math.unit(150, "kg"),
  29813. name: "Back",
  29814. image: {
  29815. source: "./media/characters/caledvwlch/back.svg",
  29816. extra: 1635 / 1565,
  29817. bottom: 27 / 1662
  29818. }
  29819. },
  29820. },
  29821. [
  29822. {
  29823. name: "\"Incognito\"",
  29824. height: math.unit(4, "meters")
  29825. },
  29826. {
  29827. name: "Small rampage",
  29828. height: math.unit(600, "meters")
  29829. },
  29830. {
  29831. name: "Mega",
  29832. height: math.unit(30, "km")
  29833. },
  29834. {
  29835. name: "Home-size",
  29836. height: math.unit(50, "km"),
  29837. default: true
  29838. },
  29839. {
  29840. name: "Giga",
  29841. height: math.unit(300, "km")
  29842. },
  29843. {
  29844. name: "Lounging",
  29845. height: math.unit(11000, "km")
  29846. },
  29847. {
  29848. name: "Planet snacking",
  29849. height: math.unit(2000000, "km")
  29850. },
  29851. ]
  29852. ))
  29853. characterMakers.push(() => makeCharacter(
  29854. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29855. {
  29856. front: {
  29857. height: math.unit(6, "feet"),
  29858. weight: math.unit(215, "lb"),
  29859. name: "Front",
  29860. image: {
  29861. source: "./media/characters/sapphire-svell/front.svg",
  29862. extra: 495 / 455,
  29863. bottom: 20 / 515
  29864. }
  29865. },
  29866. back: {
  29867. height: math.unit(6, "feet"),
  29868. weight: math.unit(216, "lb"),
  29869. name: "Back",
  29870. image: {
  29871. source: "./media/characters/sapphire-svell/back.svg",
  29872. extra: 497 / 477,
  29873. bottom: 7 / 504
  29874. }
  29875. },
  29876. maw: {
  29877. height: math.unit(1.57, "feet"),
  29878. name: "Maw",
  29879. image: {
  29880. source: "./media/characters/sapphire-svell/maw.svg"
  29881. }
  29882. },
  29883. foot: {
  29884. height: math.unit(1.07, "feet"),
  29885. name: "Foot",
  29886. image: {
  29887. source: "./media/characters/sapphire-svell/foot.svg"
  29888. }
  29889. },
  29890. toering: {
  29891. height: math.unit(1.7, "inch"),
  29892. name: "Toering",
  29893. image: {
  29894. source: "./media/characters/sapphire-svell/toering.svg"
  29895. }
  29896. },
  29897. },
  29898. [
  29899. {
  29900. name: "Normal",
  29901. height: math.unit(300, "feet"),
  29902. default: true
  29903. },
  29904. {
  29905. name: "Augmented",
  29906. height: math.unit(1250, "feet")
  29907. },
  29908. {
  29909. name: "Unleashed",
  29910. height: math.unit(3000, "feet")
  29911. },
  29912. ]
  29913. ))
  29914. characterMakers.push(() => makeCharacter(
  29915. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29916. {
  29917. side: {
  29918. height: math.unit(2 + 3 / 12, "feet"),
  29919. weight: math.unit(110, "lb"),
  29920. name: "Side",
  29921. image: {
  29922. source: "./media/characters/glitch-flux/side.svg",
  29923. extra: 997 / 805,
  29924. bottom: 20 / 1017
  29925. }
  29926. },
  29927. },
  29928. [
  29929. {
  29930. name: "Normal",
  29931. height: math.unit(2 + 3 / 12, "feet"),
  29932. default: true
  29933. },
  29934. ]
  29935. ))
  29936. characterMakers.push(() => makeCharacter(
  29937. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29938. {
  29939. front: {
  29940. height: math.unit(4, "meters"),
  29941. name: "Front",
  29942. image: {
  29943. source: "./media/characters/mid/front.svg",
  29944. extra: 507 / 476,
  29945. bottom: 17 / 524
  29946. }
  29947. },
  29948. back: {
  29949. height: math.unit(4, "meters"),
  29950. name: "Back",
  29951. image: {
  29952. source: "./media/characters/mid/back.svg",
  29953. extra: 519 / 487,
  29954. bottom: 7 / 526
  29955. }
  29956. },
  29957. stuck: {
  29958. height: math.unit(2.2, "meters"),
  29959. name: "Stuck",
  29960. image: {
  29961. source: "./media/characters/mid/stuck.svg",
  29962. extra: 1951 / 1869,
  29963. bottom: 88 / 2039
  29964. }
  29965. }
  29966. },
  29967. [
  29968. {
  29969. name: "Normal",
  29970. height: math.unit(4, "meters"),
  29971. default: true
  29972. },
  29973. {
  29974. name: "Big",
  29975. height: math.unit(10, "meters")
  29976. },
  29977. {
  29978. name: "Macro",
  29979. height: math.unit(800, "meters")
  29980. },
  29981. {
  29982. name: "Megamacro",
  29983. height: math.unit(100, "km")
  29984. },
  29985. {
  29986. name: "Overgrown",
  29987. height: math.unit(1, "parsec")
  29988. },
  29989. ]
  29990. ))
  29991. characterMakers.push(() => makeCharacter(
  29992. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29993. {
  29994. front: {
  29995. height: math.unit(2.5, "meters"),
  29996. weight: math.unit(225, "kg"),
  29997. name: "Front",
  29998. image: {
  29999. source: "./media/characters/iris/front.svg",
  30000. extra: 3348 / 3251,
  30001. bottom: 205 / 3553
  30002. }
  30003. },
  30004. maw: {
  30005. height: math.unit(0.56, "meter"),
  30006. name: "Maw",
  30007. image: {
  30008. source: "./media/characters/iris/maw.svg"
  30009. }
  30010. },
  30011. },
  30012. [
  30013. {
  30014. name: "Mewter cat",
  30015. height: math.unit(1.2, "meters")
  30016. },
  30017. {
  30018. name: "Minimacro",
  30019. height: math.unit(2.5, "meters"),
  30020. default: true
  30021. },
  30022. {
  30023. name: "Macro",
  30024. height: math.unit(180, "meters")
  30025. },
  30026. {
  30027. name: "Megamacro",
  30028. height: math.unit(2746, "meters")
  30029. },
  30030. ]
  30031. ))
  30032. characterMakers.push(() => makeCharacter(
  30033. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30034. {
  30035. front: {
  30036. height: math.unit(6, "feet"),
  30037. weight: math.unit(135, "lb"),
  30038. name: "Front",
  30039. image: {
  30040. source: "./media/characters/axel/front.svg",
  30041. extra: 908 / 908,
  30042. bottom: 58 / 966
  30043. }
  30044. },
  30045. side: {
  30046. height: math.unit(6, "feet"),
  30047. weight: math.unit(135, "lb"),
  30048. name: "Side",
  30049. image: {
  30050. source: "./media/characters/axel/side.svg",
  30051. extra: 958 / 958,
  30052. bottom: 11 / 969
  30053. }
  30054. },
  30055. back: {
  30056. height: math.unit(6, "feet"),
  30057. weight: math.unit(135, "lb"),
  30058. name: "Back",
  30059. image: {
  30060. source: "./media/characters/axel/back.svg",
  30061. extra: 887 / 887,
  30062. bottom: 34 / 921
  30063. }
  30064. },
  30065. head: {
  30066. height: math.unit(1.07, "feet"),
  30067. name: "Head",
  30068. image: {
  30069. source: "./media/characters/axel/head.svg"
  30070. }
  30071. },
  30072. beak: {
  30073. height: math.unit(1.4, "feet"),
  30074. name: "Beak",
  30075. image: {
  30076. source: "./media/characters/axel/beak.svg"
  30077. }
  30078. },
  30079. beakSide: {
  30080. height: math.unit(1.4, "feet"),
  30081. name: "Beak Side",
  30082. image: {
  30083. source: "./media/characters/axel/beak-side.svg"
  30084. }
  30085. },
  30086. sheath: {
  30087. height: math.unit(0.5, "feet"),
  30088. name: "Sheath",
  30089. image: {
  30090. source: "./media/characters/axel/sheath.svg"
  30091. }
  30092. },
  30093. dick: {
  30094. height: math.unit(0.98, "feet"),
  30095. name: "Dick",
  30096. image: {
  30097. source: "./media/characters/axel/dick.svg"
  30098. }
  30099. },
  30100. },
  30101. [
  30102. {
  30103. name: "Macro",
  30104. height: math.unit(68, "meters"),
  30105. default: true
  30106. },
  30107. ]
  30108. ))
  30109. characterMakers.push(() => makeCharacter(
  30110. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30111. {
  30112. front: {
  30113. height: math.unit(3.5, "meters"),
  30114. weight: math.unit(1200, "kg"),
  30115. name: "Front",
  30116. image: {
  30117. source: "./media/characters/joanna/front.svg",
  30118. extra: 1596 / 1488,
  30119. bottom: 29 / 1625
  30120. }
  30121. },
  30122. back: {
  30123. height: math.unit(3.5, "meters"),
  30124. weight: math.unit(1200, "kg"),
  30125. name: "Back",
  30126. image: {
  30127. source: "./media/characters/joanna/back.svg",
  30128. extra: 1594 / 1495,
  30129. bottom: 26 / 1620
  30130. }
  30131. },
  30132. frontShorts: {
  30133. height: math.unit(3.5, "meters"),
  30134. weight: math.unit(1200, "kg"),
  30135. name: "Front (Shorts)",
  30136. image: {
  30137. source: "./media/characters/joanna/front-shorts.svg",
  30138. extra: 1596 / 1488,
  30139. bottom: 29 / 1625
  30140. }
  30141. },
  30142. frontBiker: {
  30143. height: math.unit(3.5, "meters"),
  30144. weight: math.unit(1200, "kg"),
  30145. name: "Front (Biker)",
  30146. image: {
  30147. source: "./media/characters/joanna/front-biker.svg",
  30148. extra: 1596 / 1488,
  30149. bottom: 29 / 1625
  30150. }
  30151. },
  30152. backBiker: {
  30153. height: math.unit(3.5, "meters"),
  30154. weight: math.unit(1200, "kg"),
  30155. name: "Back (Biker)",
  30156. image: {
  30157. source: "./media/characters/joanna/back-biker.svg",
  30158. extra: 1594 / 1495,
  30159. bottom: 88 / 1682
  30160. }
  30161. },
  30162. bikeLeft: {
  30163. height: math.unit(2.4, "meters"),
  30164. weight: math.unit(1600, "kg"),
  30165. name: "Bike (Left)",
  30166. image: {
  30167. source: "./media/characters/joanna/bike-left.svg",
  30168. extra: 720 / 720,
  30169. bottom: 8 / 728
  30170. }
  30171. },
  30172. bikeRight: {
  30173. height: math.unit(2.4, "meters"),
  30174. weight: math.unit(1600, "kg"),
  30175. name: "Bike (Right)",
  30176. image: {
  30177. source: "./media/characters/joanna/bike-right.svg",
  30178. extra: 720 / 720,
  30179. bottom: 8 / 728
  30180. }
  30181. },
  30182. },
  30183. [
  30184. {
  30185. name: "Incognito",
  30186. height: math.unit(3.5, "meters")
  30187. },
  30188. {
  30189. name: "Casual Big",
  30190. height: math.unit(200, "meters")
  30191. },
  30192. {
  30193. name: "Macro",
  30194. height: math.unit(600, "meters")
  30195. },
  30196. {
  30197. name: "Original",
  30198. height: math.unit(20, "km"),
  30199. default: true
  30200. },
  30201. {
  30202. name: "Giga",
  30203. height: math.unit(400, "km")
  30204. },
  30205. {
  30206. name: "Lounging",
  30207. height: math.unit(1500, "km")
  30208. },
  30209. {
  30210. name: "Planetary",
  30211. height: math.unit(200000, "km")
  30212. },
  30213. ]
  30214. ))
  30215. characterMakers.push(() => makeCharacter(
  30216. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30217. {
  30218. front: {
  30219. height: math.unit(6, "feet"),
  30220. weight: math.unit(150, "lb"),
  30221. name: "Front",
  30222. image: {
  30223. source: "./media/characters/hugo-sigil/front.svg",
  30224. extra: 522 / 500,
  30225. bottom: 2 / 524
  30226. }
  30227. },
  30228. back: {
  30229. height: math.unit(6, "feet"),
  30230. weight: math.unit(150, "lb"),
  30231. name: "Back",
  30232. image: {
  30233. source: "./media/characters/hugo-sigil/back.svg",
  30234. extra: 519 / 495,
  30235. bottom: 5 / 524
  30236. }
  30237. },
  30238. maw: {
  30239. height: math.unit(1.4, "feet"),
  30240. weight: math.unit(150, "lb"),
  30241. name: "Maw",
  30242. image: {
  30243. source: "./media/characters/hugo-sigil/maw.svg"
  30244. }
  30245. },
  30246. feet: {
  30247. height: math.unit(1.56, "feet"),
  30248. weight: math.unit(150, "lb"),
  30249. name: "Feet",
  30250. image: {
  30251. source: "./media/characters/hugo-sigil/feet.svg",
  30252. extra: 177 / 177,
  30253. bottom: 12 / 189
  30254. }
  30255. },
  30256. },
  30257. [
  30258. {
  30259. name: "Normal",
  30260. height: math.unit(6, "feet")
  30261. },
  30262. {
  30263. name: "Macro",
  30264. height: math.unit(200, "feet"),
  30265. default: true
  30266. },
  30267. ]
  30268. ))
  30269. characterMakers.push(() => makeCharacter(
  30270. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30271. {
  30272. front: {
  30273. height: math.unit(6, "feet"),
  30274. weight: math.unit(150, "lb"),
  30275. name: "Front",
  30276. image: {
  30277. source: "./media/characters/peri/front.svg",
  30278. extra: 2354 / 2233,
  30279. bottom: 49 / 2403
  30280. }
  30281. },
  30282. },
  30283. [
  30284. {
  30285. name: "Really Small",
  30286. height: math.unit(1, "nm")
  30287. },
  30288. {
  30289. name: "Micro",
  30290. height: math.unit(4, "inches")
  30291. },
  30292. {
  30293. name: "Normal",
  30294. height: math.unit(7, "inches"),
  30295. default: true
  30296. },
  30297. {
  30298. name: "Macro",
  30299. height: math.unit(400, "feet")
  30300. },
  30301. {
  30302. name: "Megamacro",
  30303. height: math.unit(100, "miles")
  30304. },
  30305. ]
  30306. ))
  30307. characterMakers.push(() => makeCharacter(
  30308. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30309. {
  30310. frontSlim: {
  30311. height: math.unit(7, "feet"),
  30312. name: "Front (Slim)",
  30313. image: {
  30314. source: "./media/characters/issilora/front-slim.svg",
  30315. extra: 529 / 449,
  30316. bottom: 53 / 582
  30317. }
  30318. },
  30319. sideSlim: {
  30320. height: math.unit(7, "feet"),
  30321. name: "Side (Slim)",
  30322. image: {
  30323. source: "./media/characters/issilora/side-slim.svg",
  30324. extra: 570 / 480,
  30325. bottom: 30 / 600
  30326. }
  30327. },
  30328. backSlim: {
  30329. height: math.unit(7, "feet"),
  30330. name: "Back (Slim)",
  30331. image: {
  30332. source: "./media/characters/issilora/back-slim.svg",
  30333. extra: 537 / 455,
  30334. bottom: 46 / 583
  30335. }
  30336. },
  30337. frontBuff: {
  30338. height: math.unit(7, "feet"),
  30339. name: "Front (Buff)",
  30340. image: {
  30341. source: "./media/characters/issilora/front-buff.svg",
  30342. extra: 2310 / 2035,
  30343. bottom: 335 / 2645
  30344. }
  30345. },
  30346. head: {
  30347. height: math.unit(1.94, "feet"),
  30348. name: "Head",
  30349. image: {
  30350. source: "./media/characters/issilora/head.svg"
  30351. }
  30352. },
  30353. },
  30354. [
  30355. {
  30356. name: "Minimum",
  30357. height: math.unit(7, "feet")
  30358. },
  30359. {
  30360. name: "Comfortable",
  30361. height: math.unit(17, "feet")
  30362. },
  30363. {
  30364. name: "Fun Size",
  30365. height: math.unit(47, "feet")
  30366. },
  30367. {
  30368. name: "Natural Macro",
  30369. height: math.unit(137, "feet"),
  30370. default: true
  30371. },
  30372. {
  30373. name: "Maximum Kaiju",
  30374. height: math.unit(397, "feet")
  30375. },
  30376. ]
  30377. ))
  30378. characterMakers.push(() => makeCharacter(
  30379. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30380. {
  30381. front: {
  30382. height: math.unit(50 + 9/12, "feet"),
  30383. weight: math.unit(32.8, "tons"),
  30384. name: "Front",
  30385. image: {
  30386. source: "./media/characters/irb'iiritaahn/front.svg",
  30387. extra: 1878/1826,
  30388. bottom: 326/2204
  30389. }
  30390. },
  30391. back: {
  30392. height: math.unit(50 + 9/12, "feet"),
  30393. weight: math.unit(32.8, "tons"),
  30394. name: "Back",
  30395. image: {
  30396. source: "./media/characters/irb'iiritaahn/back.svg",
  30397. extra: 2052/2018,
  30398. bottom: 152/2204
  30399. }
  30400. },
  30401. head: {
  30402. height: math.unit(12.86, "feet"),
  30403. name: "Head",
  30404. image: {
  30405. source: "./media/characters/irb'iiritaahn/head.svg"
  30406. }
  30407. },
  30408. maw: {
  30409. height: math.unit(9.66, "feet"),
  30410. name: "Maw",
  30411. image: {
  30412. source: "./media/characters/irb'iiritaahn/maw.svg"
  30413. }
  30414. },
  30415. frontDick: {
  30416. height: math.unit(8.78461, "feet"),
  30417. name: "Front Dick",
  30418. image: {
  30419. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30420. }
  30421. },
  30422. rearDick: {
  30423. height: math.unit(8.78461, "feet"),
  30424. name: "Rear Dick",
  30425. image: {
  30426. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30427. }
  30428. },
  30429. rearDickUnfolded: {
  30430. height: math.unit(8.78, "feet"),
  30431. name: "Rear Dick (Unfolded)",
  30432. image: {
  30433. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30434. }
  30435. },
  30436. wings: {
  30437. height: math.unit(43, "feet"),
  30438. name: "Wings",
  30439. image: {
  30440. source: "./media/characters/irb'iiritaahn/wings.svg"
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Macro",
  30447. height: math.unit(50 + 9/12, "feet"),
  30448. default: true
  30449. },
  30450. ]
  30451. ))
  30452. characterMakers.push(() => makeCharacter(
  30453. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30454. {
  30455. front: {
  30456. height: math.unit(205, "cm"),
  30457. weight: math.unit(102, "kg"),
  30458. name: "Front",
  30459. image: {
  30460. source: "./media/characters/irbisgreif/front.svg",
  30461. extra: 785/706,
  30462. bottom: 13/798
  30463. }
  30464. },
  30465. back: {
  30466. height: math.unit(205, "cm"),
  30467. weight: math.unit(102, "kg"),
  30468. name: "Back",
  30469. image: {
  30470. source: "./media/characters/irbisgreif/back.svg",
  30471. extra: 713/701,
  30472. bottom: 26/739
  30473. }
  30474. },
  30475. frontDressed: {
  30476. height: math.unit(216, "cm"),
  30477. weight: math.unit(102, "kg"),
  30478. name: "Front-dressed",
  30479. image: {
  30480. source: "./media/characters/irbisgreif/front-dressed.svg",
  30481. extra: 902/776,
  30482. bottom: 14/916
  30483. }
  30484. },
  30485. sideDressed: {
  30486. height: math.unit(195, "cm"),
  30487. weight: math.unit(102, "kg"),
  30488. name: "Side-dressed",
  30489. image: {
  30490. source: "./media/characters/irbisgreif/side-dressed.svg",
  30491. extra: 788/688,
  30492. bottom: 21/809
  30493. }
  30494. },
  30495. backDressed: {
  30496. height: math.unit(216, "cm"),
  30497. weight: math.unit(102, "kg"),
  30498. name: "Back-dressed",
  30499. image: {
  30500. source: "./media/characters/irbisgreif/back-dressed.svg",
  30501. extra: 901/783,
  30502. bottom: 10/911
  30503. }
  30504. },
  30505. dick: {
  30506. height: math.unit(0.49, "feet"),
  30507. name: "Dick",
  30508. image: {
  30509. source: "./media/characters/irbisgreif/dick.svg"
  30510. }
  30511. },
  30512. wingTop: {
  30513. height: math.unit(1.93 , "feet"),
  30514. name: "Wing-top",
  30515. image: {
  30516. source: "./media/characters/irbisgreif/wing-top.svg"
  30517. }
  30518. },
  30519. wingBottom: {
  30520. height: math.unit(1.93 , "feet"),
  30521. name: "Wing-bottom",
  30522. image: {
  30523. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Normal",
  30530. height: math.unit(216, "cm"),
  30531. default: true
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30537. {
  30538. front: {
  30539. height: math.unit(6, "feet"),
  30540. weight: math.unit(150, "lb"),
  30541. name: "Front",
  30542. image: {
  30543. source: "./media/characters/pride/front.svg",
  30544. extra: 1299/1230,
  30545. bottom: 18/1317
  30546. }
  30547. },
  30548. },
  30549. [
  30550. {
  30551. name: "Normal",
  30552. height: math.unit(7, "feet")
  30553. },
  30554. {
  30555. name: "Mini-macro",
  30556. height: math.unit(11, "feet")
  30557. },
  30558. {
  30559. name: "Macro",
  30560. height: math.unit(15, "meters"),
  30561. default: true
  30562. },
  30563. {
  30564. name: "Macro+",
  30565. height: math.unit(40, "meters")
  30566. },
  30567. ]
  30568. ))
  30569. characterMakers.push(() => makeCharacter(
  30570. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30571. {
  30572. front: {
  30573. height: math.unit(4 + 2 / 12, "feet"),
  30574. weight: math.unit(95, "lb"),
  30575. name: "Front",
  30576. image: {
  30577. source: "./media/characters/vaelophis-nyx/front.svg",
  30578. extra: 2532/2330,
  30579. bottom: 0/2532
  30580. }
  30581. },
  30582. back: {
  30583. height: math.unit(4 + 2 / 12, "feet"),
  30584. weight: math.unit(95, "lb"),
  30585. name: "Back",
  30586. image: {
  30587. source: "./media/characters/vaelophis-nyx/back.svg",
  30588. extra: 2484/2361,
  30589. bottom: 0/2484
  30590. }
  30591. },
  30592. feralSide: {
  30593. height: math.unit(2 + 1/12, "feet"),
  30594. weight: math.unit(20, "lb"),
  30595. name: "Feral (Side)",
  30596. image: {
  30597. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30598. extra: 1721/1581,
  30599. bottom: 70/1791
  30600. }
  30601. },
  30602. feralLazing: {
  30603. height: math.unit(1.08, "feet"),
  30604. weight: math.unit(20, "lb"),
  30605. name: "Feral (Lazing)",
  30606. image: {
  30607. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30608. extra: 822/822,
  30609. bottom: 248/1070
  30610. }
  30611. },
  30612. ear: {
  30613. height: math.unit(0.416, "feet"),
  30614. name: "Ear",
  30615. image: {
  30616. source: "./media/characters/vaelophis-nyx/ear.svg"
  30617. }
  30618. },
  30619. eye: {
  30620. height: math.unit(0.0748, "feet"),
  30621. name: "Eye",
  30622. image: {
  30623. source: "./media/characters/vaelophis-nyx/eye.svg"
  30624. }
  30625. },
  30626. mouth: {
  30627. height: math.unit(0.378, "feet"),
  30628. name: "Mouth",
  30629. image: {
  30630. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30631. }
  30632. },
  30633. spade: {
  30634. height: math.unit(0.55, "feet"),
  30635. name: "Spade",
  30636. image: {
  30637. source: "./media/characters/vaelophis-nyx/spade.svg"
  30638. }
  30639. },
  30640. },
  30641. [
  30642. {
  30643. name: "Normal",
  30644. height: math.unit(4 + 2/12, "feet"),
  30645. default: true
  30646. },
  30647. ]
  30648. ))
  30649. characterMakers.push(() => makeCharacter(
  30650. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30651. {
  30652. front: {
  30653. height: math.unit(7, "feet"),
  30654. weight: math.unit(231, "lb"),
  30655. name: "Front",
  30656. image: {
  30657. source: "./media/characters/flux/front.svg",
  30658. extra: 919/871,
  30659. bottom: 0/919
  30660. }
  30661. },
  30662. back: {
  30663. height: math.unit(7, "feet"),
  30664. weight: math.unit(231, "lb"),
  30665. name: "Back",
  30666. image: {
  30667. source: "./media/characters/flux/back.svg",
  30668. extra: 1040/992,
  30669. bottom: 0/1040
  30670. }
  30671. },
  30672. frontDressed: {
  30673. height: math.unit(7, "feet"),
  30674. weight: math.unit(231, "lb"),
  30675. name: "Front (Dressed)",
  30676. image: {
  30677. source: "./media/characters/flux/front-dressed.svg",
  30678. extra: 919/871,
  30679. bottom: 0/919
  30680. }
  30681. },
  30682. feralSide: {
  30683. height: math.unit(5, "feet"),
  30684. weight: math.unit(150, "lb"),
  30685. name: "Feral (Side)",
  30686. image: {
  30687. source: "./media/characters/flux/feral-side.svg",
  30688. extra: 598/528,
  30689. bottom: 28/626
  30690. }
  30691. },
  30692. head: {
  30693. height: math.unit(1.585, "feet"),
  30694. name: "Head",
  30695. image: {
  30696. source: "./media/characters/flux/head.svg"
  30697. }
  30698. },
  30699. headSide: {
  30700. height: math.unit(1.74, "feet"),
  30701. name: "Head (Side)",
  30702. image: {
  30703. source: "./media/characters/flux/head-side.svg"
  30704. }
  30705. },
  30706. headSideFire: {
  30707. height: math.unit(1.76, "feet"),
  30708. name: "Head (Side, Fire)",
  30709. image: {
  30710. source: "./media/characters/flux/head-side-fire.svg"
  30711. }
  30712. },
  30713. },
  30714. [
  30715. {
  30716. name: "Normal",
  30717. height: math.unit(7, "feet"),
  30718. default: true
  30719. },
  30720. ]
  30721. ))
  30722. characterMakers.push(() => makeCharacter(
  30723. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30724. {
  30725. front: {
  30726. height: math.unit(9, "feet"),
  30727. weight: math.unit(1012, "lb"),
  30728. name: "Front",
  30729. image: {
  30730. source: "./media/characters/ulfra-lupae/front.svg",
  30731. extra: 1083/1011,
  30732. bottom: 67/1150
  30733. }
  30734. },
  30735. },
  30736. [
  30737. {
  30738. name: "Micro",
  30739. height: math.unit(6, "inches")
  30740. },
  30741. {
  30742. name: "Socializing",
  30743. height: math.unit(6 + 5/12, "feet")
  30744. },
  30745. {
  30746. name: "Normal",
  30747. height: math.unit(9, "feet"),
  30748. default: true
  30749. },
  30750. {
  30751. name: "Macro",
  30752. height: math.unit(150, "feet")
  30753. },
  30754. ]
  30755. ))
  30756. characterMakers.push(() => makeCharacter(
  30757. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30758. {
  30759. front: {
  30760. height: math.unit(5 + 2/12, "feet"),
  30761. weight: math.unit(120, "lb"),
  30762. name: "Front",
  30763. image: {
  30764. source: "./media/characters/timber/front.svg",
  30765. extra: 2814/2705,
  30766. bottom: 181/2995
  30767. }
  30768. },
  30769. },
  30770. [
  30771. {
  30772. name: "Normal",
  30773. height: math.unit(5 + 2/12, "feet"),
  30774. default: true
  30775. },
  30776. ]
  30777. ))
  30778. characterMakers.push(() => makeCharacter(
  30779. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30780. {
  30781. front: {
  30782. height: math.unit(5 + 7/12, "feet"),
  30783. weight: math.unit(220, "lb"),
  30784. name: "Front",
  30785. image: {
  30786. source: "./media/characters/nicki/front.svg",
  30787. extra: 453/419,
  30788. bottom: 7/460
  30789. }
  30790. },
  30791. frontAlt: {
  30792. height: math.unit(5 + 7/12, "feet"),
  30793. weight: math.unit(220, "lb"),
  30794. name: "Front-alt",
  30795. image: {
  30796. source: "./media/characters/nicki/front-alt.svg",
  30797. extra: 435/411,
  30798. bottom: 12/447
  30799. }
  30800. },
  30801. back: {
  30802. height: math.unit(5 + 7/12, "feet"),
  30803. weight: math.unit(220, "lb"),
  30804. name: "Back",
  30805. image: {
  30806. source: "./media/characters/nicki/back.svg",
  30807. extra: 440/413,
  30808. bottom: 19/459
  30809. }
  30810. },
  30811. taur: {
  30812. height: math.unit(7 + 6/12, "feet"),
  30813. weight: math.unit(700, "lb"),
  30814. name: "Taur",
  30815. image: {
  30816. source: "./media/characters/nicki/taur.svg",
  30817. extra: 975/773,
  30818. bottom: 0/975
  30819. }
  30820. },
  30821. frontNsfw: {
  30822. height: math.unit(5 + 7/12, "feet"),
  30823. weight: math.unit(220, "lb"),
  30824. name: "Front (NSFW)",
  30825. image: {
  30826. source: "./media/characters/nicki/front-nsfw.svg",
  30827. extra: 453/419,
  30828. bottom: 7/460
  30829. }
  30830. },
  30831. frontNsfwAlt: {
  30832. height: math.unit(5 + 7/12, "feet"),
  30833. weight: math.unit(220, "lb"),
  30834. name: "Front (Alt, NSFW)",
  30835. image: {
  30836. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30837. extra: 435/411,
  30838. bottom: 12/447
  30839. }
  30840. },
  30841. backNsfw: {
  30842. height: math.unit(5 + 7/12, "feet"),
  30843. weight: math.unit(220, "lb"),
  30844. name: "Back (NSFW)",
  30845. image: {
  30846. source: "./media/characters/nicki/back-nsfw.svg",
  30847. extra: 440/413,
  30848. bottom: 19/459
  30849. }
  30850. },
  30851. head: {
  30852. height: math.unit(2.1, "feet"),
  30853. name: "Head",
  30854. image: {
  30855. source: "./media/characters/nicki/head.svg"
  30856. }
  30857. },
  30858. paw: {
  30859. height: math.unit(1.88, "feet"),
  30860. name: "Paw",
  30861. image: {
  30862. source: "./media/characters/nicki/paw.svg"
  30863. }
  30864. },
  30865. },
  30866. [
  30867. {
  30868. name: "Normal",
  30869. height: math.unit(5 + 7/12, "feet"),
  30870. default: true
  30871. },
  30872. ]
  30873. ))
  30874. characterMakers.push(() => makeCharacter(
  30875. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30876. {
  30877. front: {
  30878. height: math.unit(7 + 10/12, "feet"),
  30879. weight: math.unit(3.5, "tons"),
  30880. name: "Front",
  30881. image: {
  30882. source: "./media/characters/lee/front.svg",
  30883. extra: 1773/1615,
  30884. bottom: 86/1859
  30885. }
  30886. },
  30887. hand: {
  30888. height: math.unit(1.78, "feet"),
  30889. name: "Hand",
  30890. image: {
  30891. source: "./media/characters/lee/hand.svg"
  30892. }
  30893. },
  30894. maw: {
  30895. height: math.unit(1.18, "feet"),
  30896. name: "Maw",
  30897. image: {
  30898. source: "./media/characters/lee/maw.svg"
  30899. }
  30900. },
  30901. },
  30902. [
  30903. {
  30904. name: "Normal",
  30905. height: math.unit(7 + 10/12, "feet"),
  30906. default: true
  30907. },
  30908. ]
  30909. ))
  30910. characterMakers.push(() => makeCharacter(
  30911. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30912. {
  30913. front: {
  30914. height: math.unit(9, "feet"),
  30915. name: "Front",
  30916. image: {
  30917. source: "./media/characters/guti/front.svg",
  30918. extra: 4551/4355,
  30919. bottom: 123/4674
  30920. }
  30921. },
  30922. tongue: {
  30923. height: math.unit(1, "feet"),
  30924. name: "Tongue",
  30925. image: {
  30926. source: "./media/characters/guti/tongue.svg"
  30927. }
  30928. },
  30929. paw: {
  30930. height: math.unit(1.18, "feet"),
  30931. name: "Paw",
  30932. image: {
  30933. source: "./media/characters/guti/paw.svg"
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Normal",
  30940. height: math.unit(9, "feet"),
  30941. default: true
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30947. {
  30948. side: {
  30949. height: math.unit(5, "meters"),
  30950. name: "Side",
  30951. image: {
  30952. source: "./media/characters/vesper/side.svg",
  30953. extra: 1605/1518,
  30954. bottom: 0/1605
  30955. }
  30956. },
  30957. },
  30958. [
  30959. {
  30960. name: "Small",
  30961. height: math.unit(5, "meters")
  30962. },
  30963. {
  30964. name: "Sage",
  30965. height: math.unit(100, "meters"),
  30966. default: true
  30967. },
  30968. {
  30969. name: "Fun Size",
  30970. height: math.unit(600, "meters")
  30971. },
  30972. {
  30973. name: "Goddess",
  30974. height: math.unit(20000, "km")
  30975. },
  30976. {
  30977. name: "Maximum",
  30978. height: math.unit(5, "galaxies")
  30979. },
  30980. ]
  30981. ))
  30982. characterMakers.push(() => makeCharacter(
  30983. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30984. {
  30985. front: {
  30986. height: math.unit(6 + 3/12, "feet"),
  30987. weight: math.unit(190, "lb"),
  30988. name: "Front",
  30989. image: {
  30990. source: "./media/characters/gawain/front.svg",
  30991. extra: 2222/2139,
  30992. bottom: 90/2312
  30993. }
  30994. },
  30995. back: {
  30996. height: math.unit(6 + 3/12, "feet"),
  30997. weight: math.unit(190, "lb"),
  30998. name: "Back",
  30999. image: {
  31000. source: "./media/characters/gawain/back.svg",
  31001. extra: 2199/2111,
  31002. bottom: 73/2272
  31003. }
  31004. },
  31005. },
  31006. [
  31007. {
  31008. name: "Normal",
  31009. height: math.unit(6 + 3/12, "feet"),
  31010. default: true
  31011. },
  31012. ]
  31013. ))
  31014. characterMakers.push(() => makeCharacter(
  31015. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31016. {
  31017. side: {
  31018. height: math.unit(3.5, "meters"),
  31019. weight: math.unit(16000, "lb"),
  31020. name: "Side",
  31021. image: {
  31022. source: "./media/characters/dascalti/side.svg",
  31023. extra: 392/273,
  31024. bottom: 47/439
  31025. }
  31026. },
  31027. breath: {
  31028. height: math.unit(7.4, "feet"),
  31029. name: "Breath",
  31030. image: {
  31031. source: "./media/characters/dascalti/breath.svg"
  31032. }
  31033. },
  31034. fed: {
  31035. height: math.unit(3.6, "meters"),
  31036. weight: math.unit(16000, "lb"),
  31037. name: "Fed",
  31038. image: {
  31039. source: "./media/characters/dascalti/fed.svg",
  31040. extra: 1419/820,
  31041. bottom: 95/1514
  31042. }
  31043. },
  31044. },
  31045. [
  31046. {
  31047. name: "Normal",
  31048. height: math.unit(3.5, "meters"),
  31049. default: true
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31055. {
  31056. front: {
  31057. height: math.unit(3 + 5/12, "feet"),
  31058. name: "Front",
  31059. image: {
  31060. source: "./media/characters/mauve/front.svg",
  31061. extra: 1126/1033,
  31062. bottom: 65/1191
  31063. }
  31064. },
  31065. side: {
  31066. height: math.unit(3 + 5/12, "feet"),
  31067. name: "Side",
  31068. image: {
  31069. source: "./media/characters/mauve/side.svg",
  31070. extra: 1089/1001,
  31071. bottom: 29/1118
  31072. }
  31073. },
  31074. back: {
  31075. height: math.unit(3 + 5/12, "feet"),
  31076. name: "Back",
  31077. image: {
  31078. source: "./media/characters/mauve/back.svg",
  31079. extra: 1173/1053,
  31080. bottom: 109/1282
  31081. }
  31082. },
  31083. },
  31084. [
  31085. {
  31086. name: "Normal",
  31087. height: math.unit(3 + 5/12, "feet"),
  31088. default: true
  31089. },
  31090. ]
  31091. ))
  31092. characterMakers.push(() => makeCharacter(
  31093. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31094. {
  31095. front: {
  31096. height: math.unit(6 + 3/12, "feet"),
  31097. weight: math.unit(430, "lb"),
  31098. name: "Front",
  31099. image: {
  31100. source: "./media/characters/carlos/front.svg",
  31101. extra: 1964/1913,
  31102. bottom: 70/2034
  31103. }
  31104. },
  31105. },
  31106. [
  31107. {
  31108. name: "Normal",
  31109. height: math.unit(6 + 3/12, "feet"),
  31110. default: true
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31116. {
  31117. back: {
  31118. height: math.unit(5 + 10/12, "feet"),
  31119. weight: math.unit(200, "lb"),
  31120. name: "Back",
  31121. image: {
  31122. source: "./media/characters/jax/back.svg",
  31123. extra: 764/739,
  31124. bottom: 25/789
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(5 + 10/12, "feet"),
  31132. default: true
  31133. },
  31134. ]
  31135. ))
  31136. characterMakers.push(() => makeCharacter(
  31137. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31138. {
  31139. front: {
  31140. height: math.unit(8, "feet"),
  31141. weight: math.unit(250, "lb"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/eikthynir/front.svg",
  31145. extra: 1332/1166,
  31146. bottom: 82/1414
  31147. }
  31148. },
  31149. back: {
  31150. height: math.unit(8, "feet"),
  31151. weight: math.unit(250, "lb"),
  31152. name: "Back",
  31153. image: {
  31154. source: "./media/characters/eikthynir/back.svg",
  31155. extra: 1342/1190,
  31156. bottom: 19/1361
  31157. }
  31158. },
  31159. dick: {
  31160. height: math.unit(2.35, "feet"),
  31161. name: "Dick",
  31162. image: {
  31163. source: "./media/characters/eikthynir/dick.svg"
  31164. }
  31165. },
  31166. },
  31167. [
  31168. {
  31169. name: "Normal",
  31170. height: math.unit(8, "feet"),
  31171. default: true
  31172. },
  31173. ]
  31174. ))
  31175. characterMakers.push(() => makeCharacter(
  31176. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31177. {
  31178. front: {
  31179. height: math.unit(99, "meters"),
  31180. weight: math.unit(13000, "tons"),
  31181. name: "Front",
  31182. image: {
  31183. source: "./media/characters/zlmos/front.svg",
  31184. extra: 2202/1992,
  31185. bottom: 315/2517
  31186. }
  31187. },
  31188. },
  31189. [
  31190. {
  31191. name: "Macro",
  31192. height: math.unit(99, "meters"),
  31193. default: true
  31194. },
  31195. ]
  31196. ))
  31197. characterMakers.push(() => makeCharacter(
  31198. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31199. {
  31200. front: {
  31201. height: math.unit(6 + 5/12, "feet"),
  31202. name: "Front",
  31203. image: {
  31204. source: "./media/characters/purri/front.svg",
  31205. extra: 1698/1610,
  31206. bottom: 32/1730
  31207. }
  31208. },
  31209. frontAlt: {
  31210. height: math.unit(6 + 5/12, "feet"),
  31211. name: "Front (Alt)",
  31212. image: {
  31213. source: "./media/characters/purri/front-alt.svg",
  31214. extra: 450/420,
  31215. bottom: 26/476
  31216. }
  31217. },
  31218. boots: {
  31219. height: math.unit(5.5, "feet"),
  31220. name: "Boots",
  31221. image: {
  31222. source: "./media/characters/purri/boots.svg",
  31223. extra: 905/853,
  31224. bottom: 18/923
  31225. }
  31226. },
  31227. lying: {
  31228. height: math.unit(2, "feet"),
  31229. name: "Lying",
  31230. image: {
  31231. source: "./media/characters/purri/lying.svg",
  31232. extra: 940/843,
  31233. bottom: 146/1086
  31234. }
  31235. },
  31236. devious: {
  31237. height: math.unit(1.77, "feet"),
  31238. name: "Devious",
  31239. image: {
  31240. source: "./media/characters/purri/devious.svg",
  31241. extra: 1440/1155,
  31242. bottom: 147/1587
  31243. }
  31244. },
  31245. bean: {
  31246. height: math.unit(1.94, "feet"),
  31247. name: "Bean",
  31248. image: {
  31249. source: "./media/characters/purri/bean.svg"
  31250. }
  31251. },
  31252. },
  31253. [
  31254. {
  31255. name: "Micro",
  31256. height: math.unit(1, "mm")
  31257. },
  31258. {
  31259. name: "Normal",
  31260. height: math.unit(6 + 5/12, "feet"),
  31261. default: true
  31262. },
  31263. {
  31264. name: "Macro :3c",
  31265. height: math.unit(2, "miles")
  31266. },
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31271. {
  31272. front: {
  31273. height: math.unit(6 + 2/12, "feet"),
  31274. weight: math.unit(250, "lb"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/moonlight/front.svg",
  31278. extra: 1044/908,
  31279. bottom: 56/1100
  31280. }
  31281. },
  31282. feral: {
  31283. height: math.unit(3 + 1/12, "feet"),
  31284. weight: math.unit(50, "kg"),
  31285. name: "Feral",
  31286. image: {
  31287. source: "./media/characters/moonlight/feral.svg",
  31288. extra: 3705/2791,
  31289. bottom: 145/3850
  31290. }
  31291. },
  31292. paw: {
  31293. height: math.unit(1, "feet"),
  31294. name: "Paw",
  31295. image: {
  31296. source: "./media/characters/moonlight/paw.svg"
  31297. }
  31298. },
  31299. paws: {
  31300. height: math.unit(0.98, "feet"),
  31301. name: "Paws",
  31302. image: {
  31303. source: "./media/characters/moonlight/paws.svg",
  31304. extra: 939/939,
  31305. bottom: 50/989
  31306. }
  31307. },
  31308. mouth: {
  31309. height: math.unit(0.48, "feet"),
  31310. name: "Mouth",
  31311. image: {
  31312. source: "./media/characters/moonlight/mouth.svg"
  31313. }
  31314. },
  31315. dick: {
  31316. height: math.unit(1.46, "feet"),
  31317. name: "Dick",
  31318. image: {
  31319. source: "./media/characters/moonlight/dick.svg"
  31320. }
  31321. },
  31322. },
  31323. [
  31324. {
  31325. name: "Normal",
  31326. height: math.unit(6 + 2/12, "feet"),
  31327. default: true
  31328. },
  31329. {
  31330. name: "Macro",
  31331. height: math.unit(300, "feet")
  31332. },
  31333. {
  31334. name: "Macro+",
  31335. height: math.unit(1, "mile")
  31336. },
  31337. {
  31338. name: "Mt. Moon",
  31339. height: math.unit(5, "miles")
  31340. },
  31341. {
  31342. name: "Megamacro",
  31343. height: math.unit(15, "miles")
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31349. {
  31350. back: {
  31351. height: math.unit(6, "feet"),
  31352. weight: math.unit(150, "lb"),
  31353. name: "Back",
  31354. image: {
  31355. source: "./media/characters/sylen/back.svg",
  31356. extra: 1335/1273,
  31357. bottom: 107/1442
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Normal",
  31364. height: math.unit(5 + 5/12, "feet")
  31365. },
  31366. {
  31367. name: "Megamacro",
  31368. height: math.unit(3, "miles"),
  31369. default: true
  31370. },
  31371. ]
  31372. ))
  31373. characterMakers.push(() => makeCharacter(
  31374. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31375. {
  31376. front: {
  31377. height: math.unit(6, "feet"),
  31378. weight: math.unit(190, "lb"),
  31379. name: "Front",
  31380. image: {
  31381. source: "./media/characters/huttser/front.svg",
  31382. extra: 1152/1058,
  31383. bottom: 23/1175
  31384. }
  31385. },
  31386. side: {
  31387. height: math.unit(6, "feet"),
  31388. weight: math.unit(190, "lb"),
  31389. name: "Side",
  31390. image: {
  31391. source: "./media/characters/huttser/side.svg",
  31392. extra: 1174/1065,
  31393. bottom: 18/1192
  31394. }
  31395. },
  31396. back: {
  31397. height: math.unit(6, "feet"),
  31398. weight: math.unit(190, "lb"),
  31399. name: "Back",
  31400. image: {
  31401. source: "./media/characters/huttser/back.svg",
  31402. extra: 1158/1056,
  31403. bottom: 12/1170
  31404. }
  31405. },
  31406. },
  31407. [
  31408. ]
  31409. ))
  31410. characterMakers.push(() => makeCharacter(
  31411. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31412. {
  31413. side: {
  31414. height: math.unit(12 + 9/12, "feet"),
  31415. weight: math.unit(15000, "lb"),
  31416. name: "Side",
  31417. image: {
  31418. source: "./media/characters/faan/side.svg",
  31419. extra: 2747/2697,
  31420. bottom: 0/2747
  31421. }
  31422. },
  31423. front: {
  31424. height: math.unit(12 + 9/12, "feet"),
  31425. weight: math.unit(15000, "lb"),
  31426. name: "Front",
  31427. image: {
  31428. source: "./media/characters/faan/front.svg",
  31429. extra: 607/571,
  31430. bottom: 24/631
  31431. }
  31432. },
  31433. head: {
  31434. height: math.unit(2.85, "feet"),
  31435. name: "Head",
  31436. image: {
  31437. source: "./media/characters/faan/head.svg"
  31438. }
  31439. },
  31440. headAlt: {
  31441. height: math.unit(3.13, "feet"),
  31442. name: "Head-alt",
  31443. image: {
  31444. source: "./media/characters/faan/head-alt.svg"
  31445. }
  31446. },
  31447. },
  31448. [
  31449. {
  31450. name: "Normal",
  31451. height: math.unit(12 + 9/12, "feet"),
  31452. default: true
  31453. },
  31454. ]
  31455. ))
  31456. characterMakers.push(() => makeCharacter(
  31457. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31458. {
  31459. front: {
  31460. height: math.unit(6, "feet"),
  31461. weight: math.unit(300, "lb"),
  31462. name: "Front",
  31463. image: {
  31464. source: "./media/characters/tanio/front.svg",
  31465. extra: 711/673,
  31466. bottom: 25/736
  31467. }
  31468. },
  31469. },
  31470. [
  31471. {
  31472. name: "Normal",
  31473. height: math.unit(6, "feet"),
  31474. default: true
  31475. },
  31476. ]
  31477. ))
  31478. characterMakers.push(() => makeCharacter(
  31479. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31480. {
  31481. front: {
  31482. height: math.unit(3, "inches"),
  31483. name: "Front",
  31484. image: {
  31485. source: "./media/characters/noboru/front.svg",
  31486. extra: 1039/932,
  31487. bottom: 18/1057
  31488. }
  31489. },
  31490. },
  31491. [
  31492. {
  31493. name: "Micro",
  31494. height: math.unit(3, "inches"),
  31495. default: true
  31496. },
  31497. ]
  31498. ))
  31499. characterMakers.push(() => makeCharacter(
  31500. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31501. {
  31502. front: {
  31503. height: math.unit(1.85, "meters"),
  31504. weight: math.unit(80, "kg"),
  31505. name: "Front",
  31506. image: {
  31507. source: "./media/characters/daniel-barrett/front.svg",
  31508. extra: 355/337,
  31509. bottom: 9/364
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Pico",
  31516. height: math.unit(0.0433, "mm")
  31517. },
  31518. {
  31519. name: "Nano",
  31520. height: math.unit(1.5, "mm")
  31521. },
  31522. {
  31523. name: "Micro",
  31524. height: math.unit(5.3, "cm"),
  31525. default: true
  31526. },
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(1.85, "meters")
  31530. },
  31531. {
  31532. name: "Macro",
  31533. height: math.unit(64.7, "meters")
  31534. },
  31535. {
  31536. name: "Megamacro",
  31537. height: math.unit(2.26, "km")
  31538. },
  31539. {
  31540. name: "Gigamacro",
  31541. height: math.unit(79, "km")
  31542. },
  31543. {
  31544. name: "Teramacro",
  31545. height: math.unit(2765, "km")
  31546. },
  31547. {
  31548. name: "Petamacro",
  31549. height: math.unit(96678, "km")
  31550. },
  31551. ]
  31552. ))
  31553. characterMakers.push(() => makeCharacter(
  31554. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31555. {
  31556. front: {
  31557. height: math.unit(30, "meters"),
  31558. weight: math.unit(400, "tons"),
  31559. name: "Front",
  31560. image: {
  31561. source: "./media/characters/zeel/front.svg",
  31562. extra: 2599/2599,
  31563. bottom: 226/2825
  31564. }
  31565. },
  31566. },
  31567. [
  31568. {
  31569. name: "Macro",
  31570. height: math.unit(30, "meters"),
  31571. default: true
  31572. },
  31573. ]
  31574. ))
  31575. characterMakers.push(() => makeCharacter(
  31576. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31577. {
  31578. front: {
  31579. height: math.unit(6 + 7/12, "feet"),
  31580. weight: math.unit(210, "lb"),
  31581. name: "Front",
  31582. image: {
  31583. source: "./media/characters/tarn/front.svg",
  31584. extra: 3517/3220,
  31585. bottom: 91/3608
  31586. }
  31587. },
  31588. back: {
  31589. height: math.unit(6 + 7/12, "feet"),
  31590. weight: math.unit(210, "lb"),
  31591. name: "Back",
  31592. image: {
  31593. source: "./media/characters/tarn/back.svg",
  31594. extra: 3566/3241,
  31595. bottom: 34/3600
  31596. }
  31597. },
  31598. dick: {
  31599. height: math.unit(1.65, "feet"),
  31600. name: "Dick",
  31601. image: {
  31602. source: "./media/characters/tarn/dick.svg"
  31603. }
  31604. },
  31605. paw: {
  31606. height: math.unit(1.80, "feet"),
  31607. name: "Paw",
  31608. image: {
  31609. source: "./media/characters/tarn/paw.svg"
  31610. }
  31611. },
  31612. tongue: {
  31613. height: math.unit(0.97, "feet"),
  31614. name: "Tongue",
  31615. image: {
  31616. source: "./media/characters/tarn/tongue.svg"
  31617. }
  31618. },
  31619. },
  31620. [
  31621. {
  31622. name: "Micro",
  31623. height: math.unit(4, "inches")
  31624. },
  31625. {
  31626. name: "Normal",
  31627. height: math.unit(6 + 7/12, "feet"),
  31628. default: true
  31629. },
  31630. {
  31631. name: "Macro",
  31632. height: math.unit(300, "feet")
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31638. {
  31639. front: {
  31640. height: math.unit(5 + 7/12, "feet"),
  31641. weight: math.unit(80, "kg"),
  31642. name: "Front",
  31643. image: {
  31644. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31645. extra: 3023/2865,
  31646. bottom: 33/3056
  31647. }
  31648. },
  31649. back: {
  31650. height: math.unit(5 + 7/12, "feet"),
  31651. weight: math.unit(80, "kg"),
  31652. name: "Back",
  31653. image: {
  31654. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31655. extra: 3020/2886,
  31656. bottom: 30/3050
  31657. }
  31658. },
  31659. dick: {
  31660. height: math.unit(0.98, "feet"),
  31661. name: "Dick",
  31662. image: {
  31663. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31664. }
  31665. },
  31666. anatomy: {
  31667. height: math.unit(2.86, "feet"),
  31668. name: "Anatomy",
  31669. image: {
  31670. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31671. }
  31672. },
  31673. },
  31674. [
  31675. {
  31676. name: "Really Small",
  31677. height: math.unit(2, "inches")
  31678. },
  31679. {
  31680. name: "Micro",
  31681. height: math.unit(5.583, "inches")
  31682. },
  31683. {
  31684. name: "Normal",
  31685. height: math.unit(5 + 7/12, "feet"),
  31686. default: true
  31687. },
  31688. {
  31689. name: "Macro",
  31690. height: math.unit(67, "feet")
  31691. },
  31692. {
  31693. name: "Megamacro",
  31694. height: math.unit(134, "feet")
  31695. },
  31696. ]
  31697. ))
  31698. characterMakers.push(() => makeCharacter(
  31699. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31700. {
  31701. front: {
  31702. height: math.unit(9, "feet"),
  31703. weight: math.unit(120, "lb"),
  31704. name: "Front",
  31705. image: {
  31706. source: "./media/characters/sally/front.svg",
  31707. extra: 1506/1349,
  31708. bottom: 66/1572
  31709. }
  31710. },
  31711. },
  31712. [
  31713. {
  31714. name: "Normal",
  31715. height: math.unit(9, "feet"),
  31716. default: true
  31717. },
  31718. ]
  31719. ))
  31720. characterMakers.push(() => makeCharacter(
  31721. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31722. {
  31723. front: {
  31724. height: math.unit(8, "feet"),
  31725. weight: math.unit(900, "lb"),
  31726. name: "Front",
  31727. image: {
  31728. source: "./media/characters/owen/front.svg",
  31729. extra: 1761/1657,
  31730. bottom: 74/1835
  31731. }
  31732. },
  31733. side: {
  31734. height: math.unit(8, "feet"),
  31735. weight: math.unit(900, "lb"),
  31736. name: "Side",
  31737. image: {
  31738. source: "./media/characters/owen/side.svg",
  31739. extra: 1797/1734,
  31740. bottom: 30/1827
  31741. }
  31742. },
  31743. back: {
  31744. height: math.unit(8, "feet"),
  31745. weight: math.unit(900, "lb"),
  31746. name: "Back",
  31747. image: {
  31748. source: "./media/characters/owen/back.svg",
  31749. extra: 1796/1706,
  31750. bottom: 59/1855
  31751. }
  31752. },
  31753. maw: {
  31754. height: math.unit(1.76, "feet"),
  31755. name: "Maw",
  31756. image: {
  31757. source: "./media/characters/owen/maw.svg"
  31758. }
  31759. },
  31760. },
  31761. [
  31762. {
  31763. name: "Normal",
  31764. height: math.unit(8, "feet"),
  31765. default: true
  31766. },
  31767. ]
  31768. ))
  31769. characterMakers.push(() => makeCharacter(
  31770. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31771. {
  31772. front: {
  31773. height: math.unit(4, "feet"),
  31774. weight: math.unit(400, "lb"),
  31775. name: "Front",
  31776. image: {
  31777. source: "./media/characters/ryth/front.svg",
  31778. extra: 1920/1748,
  31779. bottom: 42/1962
  31780. }
  31781. },
  31782. back: {
  31783. height: math.unit(4, "feet"),
  31784. weight: math.unit(400, "lb"),
  31785. name: "Back",
  31786. image: {
  31787. source: "./media/characters/ryth/back.svg",
  31788. extra: 1897/1690,
  31789. bottom: 89/1986
  31790. }
  31791. },
  31792. mouth: {
  31793. height: math.unit(1.39, "feet"),
  31794. name: "Mouth",
  31795. image: {
  31796. source: "./media/characters/ryth/mouth.svg"
  31797. }
  31798. },
  31799. tailmaw: {
  31800. height: math.unit(1.23, "feet"),
  31801. name: "Tailmaw",
  31802. image: {
  31803. source: "./media/characters/ryth/tailmaw.svg"
  31804. }
  31805. },
  31806. goia: {
  31807. height: math.unit(12, "feet"),
  31808. weight: math.unit(10800, "lb"),
  31809. name: "Goia",
  31810. image: {
  31811. source: "./media/characters/ryth/goia.svg",
  31812. extra: 3450/3198,
  31813. bottom: 61/3511
  31814. }
  31815. },
  31816. },
  31817. [
  31818. {
  31819. name: "Normal",
  31820. height: math.unit(4, "feet"),
  31821. default: true
  31822. },
  31823. ]
  31824. ))
  31825. characterMakers.push(() => makeCharacter(
  31826. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31827. {
  31828. front: {
  31829. height: math.unit(7, "feet"),
  31830. weight: math.unit(180, "lb"),
  31831. name: "Front",
  31832. image: {
  31833. source: "./media/characters/necrolance/front.svg",
  31834. extra: 1062/947,
  31835. bottom: 41/1103
  31836. }
  31837. },
  31838. back: {
  31839. height: math.unit(7, "feet"),
  31840. weight: math.unit(180, "lb"),
  31841. name: "Back",
  31842. image: {
  31843. source: "./media/characters/necrolance/back.svg",
  31844. extra: 1045/984,
  31845. bottom: 14/1059
  31846. }
  31847. },
  31848. wing: {
  31849. height: math.unit(2.67, "feet"),
  31850. name: "Wing",
  31851. image: {
  31852. source: "./media/characters/necrolance/wing.svg"
  31853. }
  31854. },
  31855. },
  31856. [
  31857. {
  31858. name: "Normal",
  31859. height: math.unit(7, "feet"),
  31860. default: true
  31861. },
  31862. ]
  31863. ))
  31864. characterMakers.push(() => makeCharacter(
  31865. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31866. {
  31867. front: {
  31868. height: math.unit(76, "meters"),
  31869. weight: math.unit(30000, "tons"),
  31870. name: "Front",
  31871. image: {
  31872. source: "./media/characters/tyler/front.svg",
  31873. extra: 1640/1640,
  31874. bottom: 114/1754
  31875. }
  31876. },
  31877. },
  31878. [
  31879. {
  31880. name: "Macro",
  31881. height: math.unit(76, "meters"),
  31882. default: true
  31883. },
  31884. ]
  31885. ))
  31886. characterMakers.push(() => makeCharacter(
  31887. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31888. {
  31889. front: {
  31890. height: math.unit(4 + 11/12, "feet"),
  31891. weight: math.unit(132, "lb"),
  31892. name: "Front",
  31893. image: {
  31894. source: "./media/characters/icey/front.svg",
  31895. extra: 2750/2550,
  31896. bottom: 33/2783
  31897. }
  31898. },
  31899. back: {
  31900. height: math.unit(4 + 11/12, "feet"),
  31901. weight: math.unit(132, "lb"),
  31902. name: "Back",
  31903. image: {
  31904. source: "./media/characters/icey/back.svg",
  31905. extra: 2624/2481,
  31906. bottom: 35/2659
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Normal",
  31913. height: math.unit(4 + 11/12, "feet"),
  31914. default: true
  31915. },
  31916. ]
  31917. ))
  31918. characterMakers.push(() => makeCharacter(
  31919. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31920. {
  31921. front: {
  31922. height: math.unit(100, "feet"),
  31923. weight: math.unit(0, "lb"),
  31924. name: "Front",
  31925. image: {
  31926. source: "./media/characters/smile/front.svg",
  31927. extra: 2983/2912,
  31928. bottom: 162/3145
  31929. }
  31930. },
  31931. back: {
  31932. height: math.unit(100, "feet"),
  31933. weight: math.unit(0, "lb"),
  31934. name: "Back",
  31935. image: {
  31936. source: "./media/characters/smile/back.svg",
  31937. extra: 3143/3031,
  31938. bottom: 91/3234
  31939. }
  31940. },
  31941. head: {
  31942. height: math.unit(26.3, "feet"),
  31943. weight: math.unit(0, "lb"),
  31944. name: "Head",
  31945. image: {
  31946. source: "./media/characters/smile/head.svg"
  31947. }
  31948. },
  31949. collar: {
  31950. height: math.unit(5.3, "feet"),
  31951. weight: math.unit(0, "lb"),
  31952. name: "Collar",
  31953. image: {
  31954. source: "./media/characters/smile/collar.svg"
  31955. }
  31956. },
  31957. },
  31958. [
  31959. {
  31960. name: "Macro",
  31961. height: math.unit(100, "feet"),
  31962. default: true
  31963. },
  31964. ]
  31965. ))
  31966. characterMakers.push(() => makeCharacter(
  31967. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31968. {
  31969. dragon: {
  31970. height: math.unit(26, "feet"),
  31971. weight: math.unit(36, "tons"),
  31972. name: "Dragon",
  31973. image: {
  31974. source: "./media/characters/arimphae/dragon.svg",
  31975. extra: 1574/983,
  31976. bottom: 357/1931
  31977. }
  31978. },
  31979. drake: {
  31980. height: math.unit(9, "feet"),
  31981. weight: math.unit(1.5, "tons"),
  31982. name: "Drake",
  31983. image: {
  31984. source: "./media/characters/arimphae/drake.svg",
  31985. extra: 1120/925,
  31986. bottom: 435/1555
  31987. }
  31988. },
  31989. },
  31990. [
  31991. {
  31992. name: "Small",
  31993. height: math.unit(26*5/9, "feet")
  31994. },
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(26, "feet"),
  31998. default: true
  31999. },
  32000. ]
  32001. ))
  32002. characterMakers.push(() => makeCharacter(
  32003. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32004. {
  32005. front: {
  32006. height: math.unit(8 + 9/12, "feet"),
  32007. name: "Front",
  32008. image: {
  32009. source: "./media/characters/xander/front.svg",
  32010. extra: 848/673,
  32011. bottom: 62/910
  32012. }
  32013. },
  32014. },
  32015. [
  32016. {
  32017. name: "Normal",
  32018. height: math.unit(8 + 9/12, "feet"),
  32019. default: true
  32020. },
  32021. {
  32022. name: "Gaze Grabber",
  32023. height: math.unit(13 + 8/12, "feet")
  32024. },
  32025. {
  32026. name: "Jaw Dropper",
  32027. height: math.unit(27, "feet")
  32028. },
  32029. {
  32030. name: "Show Stopper",
  32031. height: math.unit(136, "feet")
  32032. },
  32033. {
  32034. name: "Superstar",
  32035. height: math.unit(1.9e6, "miles")
  32036. },
  32037. ]
  32038. ))
  32039. characterMakers.push(() => makeCharacter(
  32040. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32041. {
  32042. side: {
  32043. height: math.unit(2100, "feet"),
  32044. name: "Side",
  32045. image: {
  32046. source: "./media/characters/osiris/side.svg",
  32047. extra: 1105/939,
  32048. bottom: 167/1272
  32049. }
  32050. },
  32051. },
  32052. [
  32053. {
  32054. name: "Macro",
  32055. height: math.unit(2100, "feet"),
  32056. default: true
  32057. },
  32058. ]
  32059. ))
  32060. characterMakers.push(() => makeCharacter(
  32061. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32062. {
  32063. front: {
  32064. height: math.unit(6 + 8/12, "feet"),
  32065. weight: math.unit(225, "lb"),
  32066. name: "Front",
  32067. image: {
  32068. source: "./media/characters/rhys-londe/front.svg",
  32069. extra: 2258/2141,
  32070. bottom: 188/2446
  32071. }
  32072. },
  32073. back: {
  32074. height: math.unit(6 + 8/12, "feet"),
  32075. weight: math.unit(225, "lb"),
  32076. name: "Back",
  32077. image: {
  32078. source: "./media/characters/rhys-londe/back.svg",
  32079. extra: 2237/2137,
  32080. bottom: 63/2300
  32081. }
  32082. },
  32083. frontNsfw: {
  32084. height: math.unit(6 + 8/12, "feet"),
  32085. weight: math.unit(225, "lb"),
  32086. name: "Front (NSFW)",
  32087. image: {
  32088. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32089. extra: 2258/2141,
  32090. bottom: 188/2446
  32091. }
  32092. },
  32093. backNsfw: {
  32094. height: math.unit(6 + 8/12, "feet"),
  32095. weight: math.unit(225, "lb"),
  32096. name: "Back (NSFW)",
  32097. image: {
  32098. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32099. extra: 2237/2137,
  32100. bottom: 63/2300
  32101. }
  32102. },
  32103. dick: {
  32104. height: math.unit(30, "inches"),
  32105. name: "Dick",
  32106. image: {
  32107. source: "./media/characters/rhys-londe/dick.svg"
  32108. }
  32109. },
  32110. maw: {
  32111. height: math.unit(1.6, "feet"),
  32112. name: "Maw",
  32113. image: {
  32114. source: "./media/characters/rhys-londe/maw.svg"
  32115. }
  32116. },
  32117. },
  32118. [
  32119. {
  32120. name: "Normal",
  32121. height: math.unit(6 + 8/12, "feet"),
  32122. default: true
  32123. },
  32124. ]
  32125. ))
  32126. characterMakers.push(() => makeCharacter(
  32127. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32128. {
  32129. front: {
  32130. height: math.unit(3 + 10/12, "feet"),
  32131. weight: math.unit(90, "lb"),
  32132. name: "Front",
  32133. image: {
  32134. source: "./media/characters/taivas-ensim/front.svg",
  32135. extra: 1327/1216,
  32136. bottom: 96/1423
  32137. }
  32138. },
  32139. back: {
  32140. height: math.unit(3 + 10/12, "feet"),
  32141. weight: math.unit(90, "lb"),
  32142. name: "Back",
  32143. image: {
  32144. source: "./media/characters/taivas-ensim/back.svg",
  32145. extra: 1355/1247,
  32146. bottom: 11/1366
  32147. }
  32148. },
  32149. frontNsfw: {
  32150. height: math.unit(3 + 10/12, "feet"),
  32151. weight: math.unit(90, "lb"),
  32152. name: "Front (NSFW)",
  32153. image: {
  32154. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32155. extra: 1327/1216,
  32156. bottom: 96/1423
  32157. }
  32158. },
  32159. backNsfw: {
  32160. height: math.unit(3 + 10/12, "feet"),
  32161. weight: math.unit(90, "lb"),
  32162. name: "Back (NSFW)",
  32163. image: {
  32164. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32165. extra: 1355/1247,
  32166. bottom: 11/1366
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(3 + 10/12, "feet"),
  32174. default: true
  32175. },
  32176. ]
  32177. ))
  32178. characterMakers.push(() => makeCharacter(
  32179. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32180. {
  32181. front: {
  32182. height: math.unit(9 + 6/12, "feet"),
  32183. weight: math.unit(940, "lb"),
  32184. name: "Front",
  32185. image: {
  32186. source: "./media/characters/byliss/front.svg",
  32187. extra: 1327/1290,
  32188. bottom: 82/1409
  32189. }
  32190. },
  32191. back: {
  32192. height: math.unit(9 + 6/12, "feet"),
  32193. weight: math.unit(940, "lb"),
  32194. name: "Back",
  32195. image: {
  32196. source: "./media/characters/byliss/back.svg",
  32197. extra: 1376/1349,
  32198. bottom: 9/1385
  32199. }
  32200. },
  32201. frontNsfw: {
  32202. height: math.unit(9 + 6/12, "feet"),
  32203. weight: math.unit(940, "lb"),
  32204. name: "Front (NSFW)",
  32205. image: {
  32206. source: "./media/characters/byliss/front-nsfw.svg",
  32207. extra: 1327/1290,
  32208. bottom: 82/1409
  32209. }
  32210. },
  32211. backNsfw: {
  32212. height: math.unit(9 + 6/12, "feet"),
  32213. weight: math.unit(940, "lb"),
  32214. name: "Back (NSFW)",
  32215. image: {
  32216. source: "./media/characters/byliss/back-nsfw.svg",
  32217. extra: 1376/1349,
  32218. bottom: 9/1385
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Normal",
  32225. height: math.unit(9 + 6/12, "feet"),
  32226. default: true
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32232. {
  32233. front: {
  32234. height: math.unit(5 + 2/12, "feet"),
  32235. weight: math.unit(200, "lb"),
  32236. name: "Front",
  32237. image: {
  32238. source: "./media/characters/noraly/front.svg",
  32239. extra: 4985/4773,
  32240. bottom: 150/5135
  32241. }
  32242. },
  32243. full: {
  32244. height: math.unit(5 + 2/12, "feet"),
  32245. weight: math.unit(164, "lb"),
  32246. name: "Full",
  32247. image: {
  32248. source: "./media/characters/noraly/full.svg",
  32249. extra: 1114/1059,
  32250. bottom: 35/1149
  32251. }
  32252. },
  32253. fuller: {
  32254. height: math.unit(5 + 2/12, "feet"),
  32255. weight: math.unit(230, "lb"),
  32256. name: "Fuller",
  32257. image: {
  32258. source: "./media/characters/noraly/fuller.svg",
  32259. extra: 1114/1059,
  32260. bottom: 35/1149
  32261. }
  32262. },
  32263. fullest: {
  32264. height: math.unit(5 + 2/12, "feet"),
  32265. weight: math.unit(300, "lb"),
  32266. name: "Fullest",
  32267. image: {
  32268. source: "./media/characters/noraly/fullest.svg",
  32269. extra: 1114/1059,
  32270. bottom: 35/1149
  32271. }
  32272. },
  32273. },
  32274. [
  32275. {
  32276. name: "Normal",
  32277. height: math.unit(5 + 2/12, "feet"),
  32278. default: true
  32279. },
  32280. ]
  32281. ))
  32282. characterMakers.push(() => makeCharacter(
  32283. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32284. {
  32285. front: {
  32286. height: math.unit(5 + 2/12, "feet"),
  32287. weight: math.unit(210, "lb"),
  32288. name: "Front",
  32289. image: {
  32290. source: "./media/characters/pera/front.svg",
  32291. extra: 1560/1531,
  32292. bottom: 165/1725
  32293. }
  32294. },
  32295. back: {
  32296. height: math.unit(5 + 2/12, "feet"),
  32297. weight: math.unit(210, "lb"),
  32298. name: "Back",
  32299. image: {
  32300. source: "./media/characters/pera/back.svg",
  32301. extra: 1523/1493,
  32302. bottom: 152/1675
  32303. }
  32304. },
  32305. dick: {
  32306. height: math.unit(2.4, "feet"),
  32307. name: "Dick",
  32308. image: {
  32309. source: "./media/characters/pera/dick.svg"
  32310. }
  32311. },
  32312. },
  32313. [
  32314. {
  32315. name: "Normal",
  32316. height: math.unit(5 + 2/12, "feet"),
  32317. default: true
  32318. },
  32319. ]
  32320. ))
  32321. characterMakers.push(() => makeCharacter(
  32322. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32323. {
  32324. front: {
  32325. height: math.unit(12, "feet"),
  32326. weight: math.unit(3200, "lb"),
  32327. name: "Front",
  32328. image: {
  32329. source: "./media/characters/julian/front.svg",
  32330. extra: 2962/2701,
  32331. bottom: 184/3146
  32332. }
  32333. },
  32334. maw: {
  32335. height: math.unit(5.35, "feet"),
  32336. name: "Maw",
  32337. image: {
  32338. source: "./media/characters/julian/maw.svg"
  32339. }
  32340. },
  32341. paw: {
  32342. height: math.unit(3.07, "feet"),
  32343. name: "Paw",
  32344. image: {
  32345. source: "./media/characters/julian/paw.svg"
  32346. }
  32347. },
  32348. },
  32349. [
  32350. {
  32351. name: "Default",
  32352. height: math.unit(12, "feet"),
  32353. default: true
  32354. },
  32355. {
  32356. name: "Big",
  32357. height: math.unit(50, "feet")
  32358. },
  32359. {
  32360. name: "Really Big",
  32361. height: math.unit(1, "mile")
  32362. },
  32363. {
  32364. name: "Extremely Big",
  32365. height: math.unit(100, "miles")
  32366. },
  32367. {
  32368. name: "Planet Hugger",
  32369. height: math.unit(200, "megameters")
  32370. },
  32371. {
  32372. name: "Unreasonably Big",
  32373. height: math.unit(1e300, "meters")
  32374. },
  32375. ]
  32376. ))
  32377. characterMakers.push(() => makeCharacter(
  32378. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32379. {
  32380. solgooleo: {
  32381. height: math.unit(4, "meters"),
  32382. weight: math.unit(6000*1.5, "kg"),
  32383. volume: math.unit(6000, "liters"),
  32384. name: "Solgooleo",
  32385. image: {
  32386. source: "./media/characters/pi/solgooleo.svg",
  32387. extra: 388/331,
  32388. bottom: 29/417
  32389. }
  32390. },
  32391. },
  32392. [
  32393. {
  32394. name: "Normal",
  32395. height: math.unit(4, "meters"),
  32396. default: true
  32397. },
  32398. ]
  32399. ))
  32400. characterMakers.push(() => makeCharacter(
  32401. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32402. {
  32403. front: {
  32404. height: math.unit(8 + 2/12, "feet"),
  32405. weight: math.unit(4, "tons"),
  32406. name: "Front",
  32407. image: {
  32408. source: "./media/characters/shaun/front.svg",
  32409. extra: 1550/1505,
  32410. bottom: 353/1903
  32411. }
  32412. },
  32413. },
  32414. [
  32415. {
  32416. name: "Lorg",
  32417. height: math.unit(8 + 2/12, "feet"),
  32418. default: true
  32419. },
  32420. ]
  32421. ))
  32422. characterMakers.push(() => makeCharacter(
  32423. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32424. {
  32425. front: {
  32426. height: math.unit(7, "feet"),
  32427. name: "Front",
  32428. image: {
  32429. source: "./media/characters/sini/front.svg",
  32430. extra: 726/678,
  32431. bottom: 35/761
  32432. }
  32433. },
  32434. back: {
  32435. height: math.unit(7, "feet"),
  32436. name: "Back",
  32437. image: {
  32438. source: "./media/characters/sini/back.svg",
  32439. extra: 743/701,
  32440. bottom: 12/755
  32441. }
  32442. },
  32443. mawAnthro: {
  32444. height: math.unit(2.14, "feet"),
  32445. name: "Maw (Anthro)",
  32446. image: {
  32447. source: "./media/characters/sini/maw-anthro.svg"
  32448. }
  32449. },
  32450. dick: {
  32451. height: math.unit(1.45, "feet"),
  32452. name: "Dick (Anthro)",
  32453. image: {
  32454. source: "./media/characters/sini/dick-anthro.svg"
  32455. }
  32456. },
  32457. feral: {
  32458. height: math.unit(16, "feet"),
  32459. name: "Feral",
  32460. image: {
  32461. source: "./media/characters/sini/feral.svg",
  32462. extra: 814/605,
  32463. bottom: 11/825
  32464. }
  32465. },
  32466. mawFeral: {
  32467. height: math.unit(5.66, "feet"),
  32468. name: "Maw-feral",
  32469. image: {
  32470. source: "./media/characters/sini/maw-feral.svg"
  32471. }
  32472. },
  32473. footFeral: {
  32474. height: math.unit(5.17, "feet"),
  32475. name: "Foot-feral",
  32476. image: {
  32477. source: "./media/characters/sini/foot-feral.svg"
  32478. }
  32479. },
  32480. },
  32481. [
  32482. {
  32483. name: "Normal",
  32484. height: math.unit(7, "feet"),
  32485. default: true
  32486. },
  32487. ]
  32488. ))
  32489. characterMakers.push(() => makeCharacter(
  32490. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32491. {
  32492. side: {
  32493. height: math.unit(13, "meters"),
  32494. weight: math.unit(9072, "kg"),
  32495. name: "Side",
  32496. image: {
  32497. source: "./media/characters/raylldo/side.svg",
  32498. extra: 403/344,
  32499. bottom: 42/445
  32500. }
  32501. },
  32502. leaping: {
  32503. height: math.unit(12.3, "meters"),
  32504. weight: math.unit(9072, "kg"),
  32505. name: "Leaping",
  32506. image: {
  32507. source: "./media/characters/raylldo/leaping.svg",
  32508. extra: 470/249,
  32509. bottom: 13/483
  32510. }
  32511. },
  32512. flying: {
  32513. height: math.unit(18, "meters"),
  32514. weight: math.unit(9072, "kg"),
  32515. name: "Flying",
  32516. image: {
  32517. source: "./media/characters/raylldo/flying.svg"
  32518. }
  32519. },
  32520. head: {
  32521. height: math.unit(5.85, "meters"),
  32522. name: "Head",
  32523. image: {
  32524. source: "./media/characters/raylldo/head.svg"
  32525. }
  32526. },
  32527. maw: {
  32528. height: math.unit(5.32, "meters"),
  32529. name: "Maw",
  32530. image: {
  32531. source: "./media/characters/raylldo/maw.svg"
  32532. }
  32533. },
  32534. eye: {
  32535. height: math.unit(0.54, "meters"),
  32536. name: "Eye",
  32537. image: {
  32538. source: "./media/characters/raylldo/eye.svg"
  32539. }
  32540. },
  32541. },
  32542. [
  32543. {
  32544. name: "Normal",
  32545. height: math.unit(13, "meters"),
  32546. default: true
  32547. },
  32548. ]
  32549. ))
  32550. characterMakers.push(() => makeCharacter(
  32551. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32552. {
  32553. anthroFront: {
  32554. height: math.unit(9, "feet"),
  32555. weight: math.unit(600, "lb"),
  32556. name: "Anthro (Front)",
  32557. image: {
  32558. source: "./media/characters/glint/anthro-front.svg",
  32559. extra: 1097/1018,
  32560. bottom: 28/1125
  32561. }
  32562. },
  32563. anthroBack: {
  32564. height: math.unit(9, "feet"),
  32565. weight: math.unit(600, "lb"),
  32566. name: "Anthro (Back)",
  32567. image: {
  32568. source: "./media/characters/glint/anthro-back.svg",
  32569. extra: 1154/997,
  32570. bottom: 36/1190
  32571. }
  32572. },
  32573. feral: {
  32574. height: math.unit(11, "feet"),
  32575. weight: math.unit(50000, "lb"),
  32576. name: "Feral",
  32577. image: {
  32578. source: "./media/characters/glint/feral.svg",
  32579. extra: 3035/1585,
  32580. bottom: 1169/4204
  32581. }
  32582. },
  32583. dickAnthro: {
  32584. height: math.unit(0.7, "meters"),
  32585. name: "Dick (Anthro)",
  32586. image: {
  32587. source: "./media/characters/glint/dick-anthro.svg"
  32588. }
  32589. },
  32590. dickFeral: {
  32591. height: math.unit(2.65, "meters"),
  32592. name: "Dick (Feral)",
  32593. image: {
  32594. source: "./media/characters/glint/dick-feral.svg"
  32595. }
  32596. },
  32597. slitHidden: {
  32598. height: math.unit(5.85, "meters"),
  32599. name: "Slit (Hidden)",
  32600. image: {
  32601. source: "./media/characters/glint/slit-hidden.svg"
  32602. }
  32603. },
  32604. slitErect: {
  32605. height: math.unit(5.85, "meters"),
  32606. name: "Slit (Erect)",
  32607. image: {
  32608. source: "./media/characters/glint/slit-erect.svg"
  32609. }
  32610. },
  32611. mawAnthro: {
  32612. height: math.unit(0.63, "meters"),
  32613. name: "Maw (Anthro)",
  32614. image: {
  32615. source: "./media/characters/glint/maw.svg"
  32616. }
  32617. },
  32618. mawFeral: {
  32619. height: math.unit(2.89, "meters"),
  32620. name: "Maw (Feral)",
  32621. image: {
  32622. source: "./media/characters/glint/maw.svg"
  32623. }
  32624. },
  32625. },
  32626. [
  32627. {
  32628. name: "Normal",
  32629. height: math.unit(9, "feet"),
  32630. default: true
  32631. },
  32632. ]
  32633. ))
  32634. characterMakers.push(() => makeCharacter(
  32635. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32636. {
  32637. side: {
  32638. height: math.unit(15, "feet"),
  32639. weight: math.unit(5000, "kg"),
  32640. name: "Side",
  32641. image: {
  32642. source: "./media/characters/kairne/side.svg",
  32643. extra: 979/811,
  32644. bottom: 13/992
  32645. }
  32646. },
  32647. front: {
  32648. height: math.unit(15, "feet"),
  32649. weight: math.unit(5000, "kg"),
  32650. name: "Front",
  32651. image: {
  32652. source: "./media/characters/kairne/front.svg",
  32653. extra: 908/814,
  32654. bottom: 26/934
  32655. }
  32656. },
  32657. sideNsfw: {
  32658. height: math.unit(15, "feet"),
  32659. weight: math.unit(5000, "kg"),
  32660. name: "Side (NSFW)",
  32661. image: {
  32662. source: "./media/characters/kairne/side-nsfw.svg",
  32663. extra: 979/811,
  32664. bottom: 13/992
  32665. }
  32666. },
  32667. frontNsfw: {
  32668. height: math.unit(15, "feet"),
  32669. weight: math.unit(5000, "kg"),
  32670. name: "Front (NSFW)",
  32671. image: {
  32672. source: "./media/characters/kairne/front-nsfw.svg",
  32673. extra: 908/814,
  32674. bottom: 26/934
  32675. }
  32676. },
  32677. dickCaged: {
  32678. height: math.unit(0.65, "meters"),
  32679. name: "Dick-caged",
  32680. image: {
  32681. source: "./media/characters/kairne/dick-caged.svg"
  32682. }
  32683. },
  32684. dick: {
  32685. height: math.unit(0.79, "meters"),
  32686. name: "Dick",
  32687. image: {
  32688. source: "./media/characters/kairne/dick.svg"
  32689. }
  32690. },
  32691. genitals: {
  32692. height: math.unit(1.29, "meters"),
  32693. name: "Genitals",
  32694. image: {
  32695. source: "./media/characters/kairne/genitals.svg"
  32696. }
  32697. },
  32698. maw: {
  32699. height: math.unit(1.73, "meters"),
  32700. name: "Maw",
  32701. image: {
  32702. source: "./media/characters/kairne/maw.svg"
  32703. }
  32704. },
  32705. },
  32706. [
  32707. {
  32708. name: "Normal",
  32709. height: math.unit(15, "feet"),
  32710. default: true
  32711. },
  32712. ]
  32713. ))
  32714. characterMakers.push(() => makeCharacter(
  32715. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32716. {
  32717. front: {
  32718. height: math.unit(5 + 8/12, "feet"),
  32719. weight: math.unit(139, "lb"),
  32720. name: "Front",
  32721. image: {
  32722. source: "./media/characters/biscuit-jackal/front.svg",
  32723. extra: 2106/1961,
  32724. bottom: 58/2164
  32725. }
  32726. },
  32727. back: {
  32728. height: math.unit(5 + 8/12, "feet"),
  32729. weight: math.unit(139, "lb"),
  32730. name: "Back",
  32731. image: {
  32732. source: "./media/characters/biscuit-jackal/back.svg",
  32733. extra: 2132/1976,
  32734. bottom: 57/2189
  32735. }
  32736. },
  32737. werejackal: {
  32738. height: math.unit(6 + 3/12, "feet"),
  32739. weight: math.unit(188, "lb"),
  32740. name: "Werejackal",
  32741. image: {
  32742. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32743. extra: 2373/2178,
  32744. bottom: 53/2426
  32745. }
  32746. },
  32747. },
  32748. [
  32749. {
  32750. name: "Normal",
  32751. height: math.unit(5 + 8/12, "feet"),
  32752. default: true
  32753. },
  32754. ]
  32755. ))
  32756. characterMakers.push(() => makeCharacter(
  32757. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32758. {
  32759. front: {
  32760. height: math.unit(140, "cm"),
  32761. weight: math.unit(45, "kg"),
  32762. name: "Front",
  32763. image: {
  32764. source: "./media/characters/tayra-white/front.svg",
  32765. extra: 2229/2192,
  32766. bottom: 75/2304
  32767. }
  32768. },
  32769. },
  32770. [
  32771. {
  32772. name: "Normal",
  32773. height: math.unit(140, "cm"),
  32774. default: true
  32775. },
  32776. ]
  32777. ))
  32778. characterMakers.push(() => makeCharacter(
  32779. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32780. {
  32781. front: {
  32782. height: math.unit(4 + 5/12, "feet"),
  32783. name: "Front",
  32784. image: {
  32785. source: "./media/characters/scoop/front.svg",
  32786. extra: 1257/1136,
  32787. bottom: 69/1326
  32788. }
  32789. },
  32790. back: {
  32791. height: math.unit(4 + 5/12, "feet"),
  32792. name: "Back",
  32793. image: {
  32794. source: "./media/characters/scoop/back.svg",
  32795. extra: 1321/1152,
  32796. bottom: 32/1353
  32797. }
  32798. },
  32799. maw: {
  32800. height: math.unit(0.68, "feet"),
  32801. name: "Maw",
  32802. image: {
  32803. source: "./media/characters/scoop/maw.svg"
  32804. }
  32805. },
  32806. },
  32807. [
  32808. {
  32809. name: "Really Small",
  32810. height: math.unit(1, "mm")
  32811. },
  32812. {
  32813. name: "Micro",
  32814. height: math.unit(1, "inch")
  32815. },
  32816. {
  32817. name: "Normal",
  32818. height: math.unit(4 + 5/12, "feet"),
  32819. default: true
  32820. },
  32821. {
  32822. name: "Macro",
  32823. height: math.unit(200, "feet")
  32824. },
  32825. {
  32826. name: "Megamacro",
  32827. height: math.unit(3240, "feet")
  32828. },
  32829. {
  32830. name: "Teramacro",
  32831. height: math.unit(2500, "miles")
  32832. },
  32833. ]
  32834. ))
  32835. characterMakers.push(() => makeCharacter(
  32836. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32837. {
  32838. front: {
  32839. height: math.unit(15 + 7/12, "feet"),
  32840. name: "Front",
  32841. image: {
  32842. source: "./media/characters/saphinara/front.svg",
  32843. extra: 604/546,
  32844. bottom: 19/623
  32845. }
  32846. },
  32847. side: {
  32848. height: math.unit(15 + 7/12, "feet"),
  32849. name: "Side",
  32850. image: {
  32851. source: "./media/characters/saphinara/side.svg",
  32852. extra: 605/547,
  32853. bottom: 6/611
  32854. }
  32855. },
  32856. back: {
  32857. height: math.unit(15 + 7/12, "feet"),
  32858. name: "Back",
  32859. image: {
  32860. source: "./media/characters/saphinara/back.svg",
  32861. extra: 591/531,
  32862. bottom: 13/604
  32863. }
  32864. },
  32865. frontTail: {
  32866. height: math.unit(15 + 7/12, "feet"),
  32867. name: "Front (Full Tail)",
  32868. image: {
  32869. source: "./media/characters/saphinara/front-tail.svg",
  32870. extra: 748/547,
  32871. bottom: 66/814
  32872. }
  32873. },
  32874. },
  32875. [
  32876. {
  32877. name: "Normal",
  32878. height: math.unit(15 + 7/12, "feet"),
  32879. default: true
  32880. },
  32881. {
  32882. name: "Angry",
  32883. height: math.unit(30 + 6/12, "feet")
  32884. },
  32885. {
  32886. name: "Enraged",
  32887. height: math.unit(102 + 1/12, "feet")
  32888. },
  32889. ]
  32890. ))
  32891. characterMakers.push(() => makeCharacter(
  32892. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32893. {
  32894. front: {
  32895. height: math.unit(6 + 8/12, "feet"),
  32896. weight: math.unit(300, "lb"),
  32897. name: "Front",
  32898. image: {
  32899. source: "./media/characters/jrain/front.svg",
  32900. extra: 3039/2865,
  32901. bottom: 399/3438
  32902. }
  32903. },
  32904. back: {
  32905. height: math.unit(6 + 8/12, "feet"),
  32906. weight: math.unit(300, "lb"),
  32907. name: "Back",
  32908. image: {
  32909. source: "./media/characters/jrain/back.svg",
  32910. extra: 3089/2938,
  32911. bottom: 172/3261
  32912. }
  32913. },
  32914. head: {
  32915. height: math.unit(2.14, "feet"),
  32916. name: "Head",
  32917. image: {
  32918. source: "./media/characters/jrain/head.svg"
  32919. }
  32920. },
  32921. maw: {
  32922. height: math.unit(1.77, "feet"),
  32923. name: "Maw",
  32924. image: {
  32925. source: "./media/characters/jrain/maw.svg"
  32926. }
  32927. },
  32928. leftHand: {
  32929. height: math.unit(1.1, "feet"),
  32930. name: "Left Hand",
  32931. image: {
  32932. source: "./media/characters/jrain/left-hand.svg"
  32933. }
  32934. },
  32935. rightHand: {
  32936. height: math.unit(1.1, "feet"),
  32937. name: "Right Hand",
  32938. image: {
  32939. source: "./media/characters/jrain/right-hand.svg"
  32940. }
  32941. },
  32942. eye: {
  32943. height: math.unit(0.35, "feet"),
  32944. name: "Eye",
  32945. image: {
  32946. source: "./media/characters/jrain/eye.svg"
  32947. }
  32948. },
  32949. },
  32950. [
  32951. {
  32952. name: "Normal",
  32953. height: math.unit(6 + 8/12, "feet"),
  32954. default: true
  32955. },
  32956. {
  32957. name: "Casually Large",
  32958. height: math.unit(25, "feet")
  32959. },
  32960. {
  32961. name: "Giant",
  32962. height: math.unit(100, "feet")
  32963. },
  32964. {
  32965. name: "Kaiju",
  32966. height: math.unit(300, "feet")
  32967. },
  32968. ]
  32969. ))
  32970. characterMakers.push(() => makeCharacter(
  32971. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32972. {
  32973. dragon: {
  32974. height: math.unit(5, "meters"),
  32975. name: "Dragon",
  32976. image: {
  32977. source: "./media/characters/sabrina/dragon.svg",
  32978. extra: 3670 / 2365,
  32979. bottom: 333 / 4003
  32980. }
  32981. },
  32982. gryphon: {
  32983. height: math.unit(3, "meters"),
  32984. name: "Gryphon",
  32985. image: {
  32986. source: "./media/characters/sabrina/gryphon.svg",
  32987. extra: 1576 / 945,
  32988. bottom: 71 / 1647
  32989. }
  32990. },
  32991. snake: {
  32992. height: math.unit(12, "meters"),
  32993. name: "Snake",
  32994. image: {
  32995. source: "./media/characters/sabrina/snake.svg",
  32996. extra: 1758 / 1320,
  32997. bottom: 186 / 1944
  32998. }
  32999. },
  33000. collar: {
  33001. height: math.unit(1.86, "meters"),
  33002. name: "Collar",
  33003. image: {
  33004. source: "./media/characters/sabrina/collar.svg"
  33005. }
  33006. },
  33007. eye: {
  33008. height: math.unit(0.53, "meters"),
  33009. name: "Eye",
  33010. image: {
  33011. source: "./media/characters/sabrina/eye.svg"
  33012. }
  33013. },
  33014. foot: {
  33015. height: math.unit(1.86, "meters"),
  33016. name: "Foot",
  33017. image: {
  33018. source: "./media/characters/sabrina/foot.svg"
  33019. }
  33020. },
  33021. hand: {
  33022. height: math.unit(1.32, "meters"),
  33023. name: "Hand",
  33024. image: {
  33025. source: "./media/characters/sabrina/hand.svg"
  33026. }
  33027. },
  33028. head: {
  33029. height: math.unit(2.44, "meters"),
  33030. name: "Head",
  33031. image: {
  33032. source: "./media/characters/sabrina/head.svg"
  33033. }
  33034. },
  33035. headAngry: {
  33036. height: math.unit(2.44, "meters"),
  33037. name: "Head (Angry))",
  33038. image: {
  33039. source: "./media/characters/sabrina/head-angry.svg"
  33040. }
  33041. },
  33042. maw: {
  33043. height: math.unit(1.65, "meters"),
  33044. name: "Maw",
  33045. image: {
  33046. source: "./media/characters/sabrina/maw.svg"
  33047. }
  33048. },
  33049. spikes: {
  33050. height: math.unit(1.69, "meters"),
  33051. name: "Spikes",
  33052. image: {
  33053. source: "./media/characters/sabrina/spikes.svg"
  33054. }
  33055. },
  33056. stomach: {
  33057. height: math.unit(1.15, "meters"),
  33058. name: "Stomach",
  33059. image: {
  33060. source: "./media/characters/sabrina/stomach.svg"
  33061. }
  33062. },
  33063. tongue: {
  33064. height: math.unit(1.27, "meters"),
  33065. name: "Tongue",
  33066. image: {
  33067. source: "./media/characters/sabrina/tongue.svg"
  33068. }
  33069. },
  33070. wingDorsal: {
  33071. height: math.unit(4.85, "meters"),
  33072. name: "Wing (Dorsal)",
  33073. image: {
  33074. source: "./media/characters/sabrina/wing-dorsal.svg"
  33075. }
  33076. },
  33077. wingVentral: {
  33078. height: math.unit(4.85, "meters"),
  33079. name: "Wing (Ventral)",
  33080. image: {
  33081. source: "./media/characters/sabrina/wing-ventral.svg"
  33082. }
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Normal",
  33088. height: math.unit(5, "meters"),
  33089. default: true
  33090. },
  33091. ]
  33092. ))
  33093. characterMakers.push(() => makeCharacter(
  33094. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33095. {
  33096. frontMaid: {
  33097. height: math.unit(5 + 5/12, "feet"),
  33098. weight: math.unit(130, "lb"),
  33099. name: "Front (Maid)",
  33100. image: {
  33101. source: "./media/characters/midnight-tales/front-maid.svg",
  33102. extra: 489/454,
  33103. bottom: 61/550
  33104. }
  33105. },
  33106. frontFormal: {
  33107. height: math.unit(5 + 5/12, "feet"),
  33108. weight: math.unit(130, "lb"),
  33109. name: "Front (Formal)",
  33110. image: {
  33111. source: "./media/characters/midnight-tales/front-formal.svg",
  33112. extra: 489/454,
  33113. bottom: 61/550
  33114. }
  33115. },
  33116. back: {
  33117. height: math.unit(5 + 5/12, "feet"),
  33118. weight: math.unit(130, "lb"),
  33119. name: "Back",
  33120. image: {
  33121. source: "./media/characters/midnight-tales/back.svg",
  33122. extra: 498/456,
  33123. bottom: 33/531
  33124. }
  33125. },
  33126. frontBeast: {
  33127. height: math.unit(40, "feet"),
  33128. weight: math.unit(64000, "lb"),
  33129. name: "Front (Beast)",
  33130. image: {
  33131. source: "./media/characters/midnight-tales/front-beast.svg",
  33132. extra: 927/860,
  33133. bottom: 53/980
  33134. }
  33135. },
  33136. backBeast: {
  33137. height: math.unit(40, "feet"),
  33138. weight: math.unit(64000, "lb"),
  33139. name: "Back (Beast)",
  33140. image: {
  33141. source: "./media/characters/midnight-tales/back-beast.svg",
  33142. extra: 929/855,
  33143. bottom: 16/945
  33144. }
  33145. },
  33146. footBeast: {
  33147. height: math.unit(6.7, "feet"),
  33148. name: "Foot (Beast)",
  33149. image: {
  33150. source: "./media/characters/midnight-tales/foot-beast.svg"
  33151. }
  33152. },
  33153. headBeast: {
  33154. height: math.unit(8, "feet"),
  33155. name: "Head (Beast)",
  33156. image: {
  33157. source: "./media/characters/midnight-tales/head-beast.svg"
  33158. }
  33159. },
  33160. },
  33161. [
  33162. {
  33163. name: "Normal",
  33164. height: math.unit(5 + 5 / 12, "feet"),
  33165. default: true
  33166. },
  33167. {
  33168. name: "Macro",
  33169. height: math.unit(25, "feet")
  33170. },
  33171. ]
  33172. ))
  33173. characterMakers.push(() => makeCharacter(
  33174. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33175. {
  33176. front: {
  33177. height: math.unit(5 + 10/12, "feet"),
  33178. name: "Front",
  33179. image: {
  33180. source: "./media/characters/argon/front.svg",
  33181. extra: 2009/1935,
  33182. bottom: 118/2127
  33183. }
  33184. },
  33185. back: {
  33186. height: math.unit(5 + 10/12, "feet"),
  33187. name: "Back",
  33188. image: {
  33189. source: "./media/characters/argon/back.svg",
  33190. extra: 2047/1992,
  33191. bottom: 20/2067
  33192. }
  33193. },
  33194. frontDressed: {
  33195. height: math.unit(5 + 10/12, "feet"),
  33196. name: "Front (Dressed)",
  33197. image: {
  33198. source: "./media/characters/argon/front-dressed.svg",
  33199. extra: 2009/1935,
  33200. bottom: 118/2127
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Normal",
  33207. height: math.unit(5 + 10/12, "feet"),
  33208. default: true
  33209. },
  33210. ]
  33211. ))
  33212. characterMakers.push(() => makeCharacter(
  33213. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33214. {
  33215. front: {
  33216. height: math.unit(8 + 6/12, "feet"),
  33217. weight: math.unit(1150, "lb"),
  33218. name: "Front",
  33219. image: {
  33220. source: "./media/characters/kichi/front.svg",
  33221. extra: 1267/1164,
  33222. bottom: 61/1328
  33223. }
  33224. },
  33225. back: {
  33226. height: math.unit(8 + 6/12, "feet"),
  33227. weight: math.unit(1150, "lb"),
  33228. name: "Back",
  33229. image: {
  33230. source: "./media/characters/kichi/back.svg",
  33231. extra: 1273/1166,
  33232. bottom: 33/1306
  33233. }
  33234. },
  33235. },
  33236. [
  33237. {
  33238. name: "Normal",
  33239. height: math.unit(8 + 6/12, "feet"),
  33240. default: true
  33241. },
  33242. ]
  33243. ))
  33244. characterMakers.push(() => makeCharacter(
  33245. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33246. {
  33247. front: {
  33248. height: math.unit(6, "feet"),
  33249. weight: math.unit(210, "lb"),
  33250. name: "Front",
  33251. image: {
  33252. source: "./media/characters/manetel-greyscale/front.svg",
  33253. extra: 350/312,
  33254. bottom: 8/358
  33255. }
  33256. },
  33257. },
  33258. [
  33259. {
  33260. name: "Micro",
  33261. height: math.unit(2, "inches")
  33262. },
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(6, "feet"),
  33266. default: true
  33267. },
  33268. {
  33269. name: "Minimacro",
  33270. height: math.unit(17, "feet")
  33271. },
  33272. {
  33273. name: "Macro",
  33274. height: math.unit(117, "feet")
  33275. },
  33276. ]
  33277. ))
  33278. characterMakers.push(() => makeCharacter(
  33279. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33280. {
  33281. side: {
  33282. height: math.unit(5 + 1/12, "feet"),
  33283. weight: math.unit(418, "lb"),
  33284. name: "Side",
  33285. image: {
  33286. source: "./media/characters/softpurr/side.svg",
  33287. extra: 1993/1945,
  33288. bottom: 134/2127
  33289. }
  33290. },
  33291. front: {
  33292. height: math.unit(5 + 1/12, "feet"),
  33293. weight: math.unit(418, "lb"),
  33294. name: "Front",
  33295. image: {
  33296. source: "./media/characters/softpurr/front.svg",
  33297. extra: 1950/1856,
  33298. bottom: 174/2124
  33299. }
  33300. },
  33301. paw: {
  33302. height: math.unit(1, "feet"),
  33303. name: "Paw",
  33304. image: {
  33305. source: "./media/characters/softpurr/paw.svg"
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Normal",
  33312. height: math.unit(5 + 1/12, "feet"),
  33313. default: true
  33314. },
  33315. ]
  33316. ))
  33317. characterMakers.push(() => makeCharacter(
  33318. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33319. {
  33320. front: {
  33321. height: math.unit(260, "meters"),
  33322. name: "Front",
  33323. image: {
  33324. source: "./media/characters/anahita/front.svg",
  33325. extra: 665/635,
  33326. bottom: 89/754
  33327. }
  33328. },
  33329. },
  33330. [
  33331. {
  33332. name: "Macro",
  33333. height: math.unit(260, "meters"),
  33334. default: true
  33335. },
  33336. ]
  33337. ))
  33338. characterMakers.push(() => makeCharacter(
  33339. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33340. {
  33341. front: {
  33342. height: math.unit(4 + 10/12, "feet"),
  33343. weight: math.unit(160, "lb"),
  33344. name: "Front",
  33345. image: {
  33346. source: "./media/characters/chip-mouse/front.svg",
  33347. extra: 3528/3408,
  33348. bottom: 0/3528
  33349. }
  33350. },
  33351. frontNsfw: {
  33352. height: math.unit(4 + 10/12, "feet"),
  33353. weight: math.unit(160, "lb"),
  33354. name: "Front (NSFW)",
  33355. image: {
  33356. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33357. extra: 3528/3408,
  33358. bottom: 0/3528
  33359. }
  33360. },
  33361. },
  33362. [
  33363. {
  33364. name: "Normal",
  33365. height: math.unit(4 + 10/12, "feet"),
  33366. default: true
  33367. },
  33368. ]
  33369. ))
  33370. characterMakers.push(() => makeCharacter(
  33371. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33372. {
  33373. side: {
  33374. height: math.unit(10, "feet"),
  33375. weight: math.unit(14000, "lb"),
  33376. name: "Side",
  33377. image: {
  33378. source: "./media/characters/kremm/side.svg",
  33379. extra: 1390/1053,
  33380. bottom: 90/1480
  33381. }
  33382. },
  33383. gut: {
  33384. height: math.unit(5.8, "feet"),
  33385. name: "Gut",
  33386. image: {
  33387. source: "./media/characters/kremm/gut.svg"
  33388. }
  33389. },
  33390. ass: {
  33391. height: math.unit(6.1, "feet"),
  33392. name: "Ass",
  33393. image: {
  33394. source: "./media/characters/kremm/ass.svg"
  33395. }
  33396. },
  33397. jaws: {
  33398. height: math.unit(2.2, "feet"),
  33399. name: "Jaws",
  33400. image: {
  33401. source: "./media/characters/kremm/jaws.svg"
  33402. }
  33403. },
  33404. dick: {
  33405. height: math.unit(4.26, "feet"),
  33406. name: "Dick",
  33407. image: {
  33408. source: "./media/characters/kremm/dick.svg"
  33409. }
  33410. },
  33411. },
  33412. [
  33413. {
  33414. name: "Normal",
  33415. height: math.unit(10, "feet"),
  33416. default: true
  33417. },
  33418. ]
  33419. ))
  33420. characterMakers.push(() => makeCharacter(
  33421. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33422. {
  33423. front: {
  33424. height: math.unit(30, "stories"),
  33425. name: "Front",
  33426. image: {
  33427. source: "./media/characters/kai/front.svg",
  33428. extra: 1892/1718,
  33429. bottom: 162/2054
  33430. }
  33431. },
  33432. },
  33433. [
  33434. {
  33435. name: "Macro",
  33436. height: math.unit(30, "stories"),
  33437. default: true
  33438. },
  33439. ]
  33440. ))
  33441. characterMakers.push(() => makeCharacter(
  33442. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33443. {
  33444. front: {
  33445. height: math.unit(6 + 4/12, "feet"),
  33446. weight: math.unit(145, "lb"),
  33447. name: "Front",
  33448. image: {
  33449. source: "./media/characters/sykes/front.svg",
  33450. extra: 1321 / 1187,
  33451. bottom: 66 / 1387
  33452. }
  33453. },
  33454. back: {
  33455. height: math.unit(6 + 4/12, "feet"),
  33456. weight: math.unit(145, "lb"),
  33457. name: "Back",
  33458. image: {
  33459. source: "./media/characters/sykes/back.svg",
  33460. extra: 1326/1181,
  33461. bottom: 31/1357
  33462. }
  33463. },
  33464. handBack: {
  33465. height: math.unit(0.9, "feet"),
  33466. name: "Hand (Back)",
  33467. image: {
  33468. source: "./media/characters/sykes/hand-back.svg"
  33469. }
  33470. },
  33471. handFront: {
  33472. height: math.unit(0.839, "feet"),
  33473. name: "Hand (Front)",
  33474. image: {
  33475. source: "./media/characters/sykes/hand-front.svg"
  33476. }
  33477. },
  33478. leftFoot: {
  33479. height: math.unit(1.2, "feet"),
  33480. name: "Foot (Left)",
  33481. image: {
  33482. source: "./media/characters/sykes/foot-left.svg"
  33483. }
  33484. },
  33485. rightFoot: {
  33486. height: math.unit(1.2, "feet"),
  33487. name: "Foot (Right)",
  33488. image: {
  33489. source: "./media/characters/sykes/foot-right.svg"
  33490. }
  33491. },
  33492. maw: {
  33493. height: math.unit(1.93, "feet"),
  33494. name: "Maw",
  33495. image: {
  33496. source: "./media/characters/sykes/maw.svg"
  33497. }
  33498. },
  33499. teeth: {
  33500. height: math.unit(0.51, "feet"),
  33501. name: "Teeth",
  33502. image: {
  33503. source: "./media/characters/sykes/teeth.svg"
  33504. }
  33505. },
  33506. tongue: {
  33507. height: math.unit(2.13, "feet"),
  33508. name: "Tongue",
  33509. image: {
  33510. source: "./media/characters/sykes/tongue.svg"
  33511. }
  33512. },
  33513. uvula: {
  33514. height: math.unit(0.16, "feet"),
  33515. name: "Uvula",
  33516. image: {
  33517. source: "./media/characters/sykes/uvula.svg"
  33518. }
  33519. },
  33520. collar: {
  33521. height: math.unit(0.287, "feet"),
  33522. name: "Collar",
  33523. image: {
  33524. source: "./media/characters/sykes/collar.svg"
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Shrunken",
  33531. height: math.unit(5, "inches")
  33532. },
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(6 + 4 / 12, "feet"),
  33536. default: true
  33537. },
  33538. {
  33539. name: "Big",
  33540. height: math.unit(15, "feet")
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33546. {
  33547. front: {
  33548. height: math.unit(5 + 8/12, "feet"),
  33549. weight: math.unit(190, "lb"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/oven-otter/front.svg",
  33553. extra: 1809/1740,
  33554. bottom: 181/1990
  33555. }
  33556. },
  33557. back: {
  33558. height: math.unit(5 + 8/12, "feet"),
  33559. weight: math.unit(190, "lb"),
  33560. name: "Back",
  33561. image: {
  33562. source: "./media/characters/oven-otter/back.svg",
  33563. extra: 1709/1635,
  33564. bottom: 118/1827
  33565. }
  33566. },
  33567. hand: {
  33568. height: math.unit(1.07, "feet"),
  33569. name: "Hand",
  33570. image: {
  33571. source: "./media/characters/oven-otter/hand.svg"
  33572. }
  33573. },
  33574. beans: {
  33575. height: math.unit(1.74, "feet"),
  33576. name: "Beans",
  33577. image: {
  33578. source: "./media/characters/oven-otter/beans.svg"
  33579. }
  33580. },
  33581. },
  33582. [
  33583. {
  33584. name: "Micro",
  33585. height: math.unit(0.5, "inches")
  33586. },
  33587. {
  33588. name: "Normal",
  33589. height: math.unit(5 + 8/12, "feet"),
  33590. default: true
  33591. },
  33592. {
  33593. name: "Macro",
  33594. height: math.unit(250, "feet")
  33595. },
  33596. {
  33597. name: "Really High",
  33598. height: math.unit(420, "feet")
  33599. },
  33600. ]
  33601. ))
  33602. characterMakers.push(() => makeCharacter(
  33603. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33604. {
  33605. front: {
  33606. height: math.unit(5, "meters"),
  33607. weight: math.unit(292000000000000, "kg"),
  33608. name: "Front",
  33609. image: {
  33610. source: "./media/characters/devourer/front.svg",
  33611. extra: 1800/1733,
  33612. bottom: 211/2011
  33613. }
  33614. },
  33615. maw: {
  33616. height: math.unit(1.1, "meter"),
  33617. name: "Maw",
  33618. image: {
  33619. source: "./media/characters/devourer/maw.svg"
  33620. }
  33621. },
  33622. },
  33623. [
  33624. {
  33625. name: "Small",
  33626. height: math.unit(3, "meters")
  33627. },
  33628. {
  33629. name: "Large",
  33630. height: math.unit(5, "meters"),
  33631. default: true
  33632. },
  33633. ]
  33634. ))
  33635. characterMakers.push(() => makeCharacter(
  33636. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33637. {
  33638. front: {
  33639. height: math.unit(6, "feet"),
  33640. weight: math.unit(400, "lb"),
  33641. name: "Front",
  33642. image: {
  33643. source: "./media/characters/ellarby/front.svg",
  33644. extra: 1909/1763,
  33645. bottom: 80/1989
  33646. }
  33647. },
  33648. back: {
  33649. height: math.unit(6, "feet"),
  33650. weight: math.unit(400, "lb"),
  33651. name: "Back",
  33652. image: {
  33653. source: "./media/characters/ellarby/back.svg",
  33654. extra: 1914/1784,
  33655. bottom: 172/2086
  33656. }
  33657. },
  33658. },
  33659. [
  33660. {
  33661. name: "Mischief",
  33662. height: math.unit(18, "inches")
  33663. },
  33664. {
  33665. name: "Trouble",
  33666. height: math.unit(12, "feet")
  33667. },
  33668. {
  33669. name: "Havoc",
  33670. height: math.unit(200, "feet"),
  33671. default: true
  33672. },
  33673. {
  33674. name: "Pandemonium",
  33675. height: math.unit(1, "mile")
  33676. },
  33677. {
  33678. name: "Catastrophe",
  33679. height: math.unit(100, "miles")
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33685. {
  33686. front: {
  33687. height: math.unit(4.7, "meters"),
  33688. weight: math.unit(6500, "kg"),
  33689. name: "Front",
  33690. image: {
  33691. source: "./media/characters/vex/front.svg",
  33692. extra: 1288/1140,
  33693. bottom: 100/1388
  33694. }
  33695. },
  33696. },
  33697. [
  33698. {
  33699. name: "Normal",
  33700. height: math.unit(4.7, "meters"),
  33701. default: true
  33702. },
  33703. ]
  33704. ))
  33705. characterMakers.push(() => makeCharacter(
  33706. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33707. {
  33708. normal: {
  33709. height: math.unit(6, "feet"),
  33710. weight: math.unit(350, "lb"),
  33711. name: "Normal",
  33712. image: {
  33713. source: "./media/characters/teshy/normal.svg",
  33714. extra: 1795/1735,
  33715. bottom: 16/1811
  33716. }
  33717. },
  33718. monsterFront: {
  33719. height: math.unit(12, "feet"),
  33720. weight: math.unit(4700, "lb"),
  33721. name: "Monster (Front)",
  33722. image: {
  33723. source: "./media/characters/teshy/monster-front.svg",
  33724. extra: 2042/2034,
  33725. bottom: 128/2170
  33726. }
  33727. },
  33728. monsterSide: {
  33729. height: math.unit(12, "feet"),
  33730. weight: math.unit(4700, "lb"),
  33731. name: "Monster (Side)",
  33732. image: {
  33733. source: "./media/characters/teshy/monster-side.svg",
  33734. extra: 2067/2056,
  33735. bottom: 70/2137
  33736. }
  33737. },
  33738. monsterBack: {
  33739. height: math.unit(12, "feet"),
  33740. weight: math.unit(4700, "lb"),
  33741. name: "Monster (Back)",
  33742. image: {
  33743. source: "./media/characters/teshy/monster-back.svg",
  33744. extra: 1921/1914,
  33745. bottom: 171/2092
  33746. }
  33747. },
  33748. },
  33749. [
  33750. {
  33751. name: "Normal",
  33752. height: math.unit(6, "feet"),
  33753. default: true
  33754. },
  33755. ]
  33756. ))
  33757. characterMakers.push(() => makeCharacter(
  33758. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33759. {
  33760. front: {
  33761. height: math.unit(6, "feet"),
  33762. name: "Front",
  33763. image: {
  33764. source: "./media/characters/ramey/front.svg",
  33765. extra: 790/787,
  33766. bottom: 27/817
  33767. }
  33768. },
  33769. },
  33770. [
  33771. {
  33772. name: "Normal",
  33773. height: math.unit(6, "feet"),
  33774. default: true
  33775. },
  33776. ]
  33777. ))
  33778. characterMakers.push(() => makeCharacter(
  33779. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33780. {
  33781. front: {
  33782. height: math.unit(5 + 5/12, "feet"),
  33783. weight: math.unit(120, "lb"),
  33784. name: "Front",
  33785. image: {
  33786. source: "./media/characters/phirae/front.svg",
  33787. extra: 2491/2436,
  33788. bottom: 38/2529
  33789. }
  33790. },
  33791. },
  33792. [
  33793. {
  33794. name: "Normal",
  33795. height: math.unit(5 + 5/12, "feet"),
  33796. default: true
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33802. {
  33803. front: {
  33804. height: math.unit(6, "feet"),
  33805. weight: math.unit(150, "lb"),
  33806. name: "Front",
  33807. image: {
  33808. source: "./media/characters/stagglas/front.svg",
  33809. extra: 962/882,
  33810. bottom: 53/1015
  33811. }
  33812. },
  33813. },
  33814. [
  33815. {
  33816. name: "Normal",
  33817. height: math.unit(5 + 3/12, "feet"),
  33818. default: true
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33824. {
  33825. front: {
  33826. height: math.unit(5 + 4/12, "feet"),
  33827. weight: math.unit(145, "lb"),
  33828. name: "Front",
  33829. image: {
  33830. source: "./media/characters/starra/front.svg",
  33831. extra: 1790/1691,
  33832. bottom: 91/1881
  33833. }
  33834. },
  33835. },
  33836. [
  33837. {
  33838. name: "Normal",
  33839. height: math.unit(5 + 4/12, "feet"),
  33840. default: true
  33841. },
  33842. ]
  33843. ))
  33844. characterMakers.push(() => makeCharacter(
  33845. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33846. {
  33847. front: {
  33848. height: math.unit(2.2, "meters"),
  33849. name: "Front",
  33850. image: {
  33851. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33852. extra: 1194/1005,
  33853. bottom: 25/1219
  33854. }
  33855. },
  33856. },
  33857. [
  33858. {
  33859. name: "Normal",
  33860. height: math.unit(2.2, "meters"),
  33861. default: true
  33862. },
  33863. ]
  33864. ))
  33865. characterMakers.push(() => makeCharacter(
  33866. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33867. {
  33868. side: {
  33869. height: math.unit(8 + 2/12, "feet"),
  33870. weight: math.unit(1240, "lb"),
  33871. name: "Side",
  33872. image: {
  33873. source: "./media/characters/mika-valentine/side.svg",
  33874. extra: 2670/2501,
  33875. bottom: 250/2920
  33876. }
  33877. },
  33878. },
  33879. [
  33880. {
  33881. name: "Normal",
  33882. height: math.unit(8 + 2/12, "feet"),
  33883. default: true
  33884. },
  33885. ]
  33886. ))
  33887. characterMakers.push(() => makeCharacter(
  33888. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33889. {
  33890. front: {
  33891. height: math.unit(7 + 2/12, "feet"),
  33892. name: "Front",
  33893. image: {
  33894. source: "./media/characters/xoltol/front.svg",
  33895. extra: 2212/2124,
  33896. bottom: 84/2296
  33897. }
  33898. },
  33899. side: {
  33900. height: math.unit(7 + 2/12, "feet"),
  33901. name: "Side",
  33902. image: {
  33903. source: "./media/characters/xoltol/side.svg",
  33904. extra: 2273/2197,
  33905. bottom: 26/2299
  33906. }
  33907. },
  33908. hand: {
  33909. height: math.unit(2.5, "feet"),
  33910. name: "Hand",
  33911. image: {
  33912. source: "./media/characters/xoltol/hand.svg"
  33913. }
  33914. },
  33915. },
  33916. [
  33917. {
  33918. name: "Small-ish",
  33919. height: math.unit(5 + 11/12, "feet")
  33920. },
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(7 + 2/12, "feet")
  33924. },
  33925. {
  33926. name: "\"Macro\"",
  33927. height: math.unit(14 + 9/12, "feet"),
  33928. default: true
  33929. },
  33930. {
  33931. name: "Alternate Height",
  33932. height: math.unit(20, "feet")
  33933. },
  33934. {
  33935. name: "Actually Macro",
  33936. height: math.unit(100, "feet")
  33937. },
  33938. ]
  33939. ))
  33940. characterMakers.push(() => makeCharacter(
  33941. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33942. {
  33943. front: {
  33944. height: math.unit(5 + 2/12, "feet"),
  33945. name: "Front",
  33946. image: {
  33947. source: "./media/characters/kotetsu-redwood/front.svg",
  33948. extra: 1053/942,
  33949. bottom: 60/1113
  33950. }
  33951. },
  33952. },
  33953. [
  33954. {
  33955. name: "Normal",
  33956. height: math.unit(5 + 2/12, "feet"),
  33957. default: true
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33963. {
  33964. front: {
  33965. height: math.unit(2.4, "meters"),
  33966. weight: math.unit(125, "kg"),
  33967. name: "Front",
  33968. image: {
  33969. source: "./media/characters/lilith/front.svg",
  33970. extra: 1590/1513,
  33971. bottom: 203/1793
  33972. }
  33973. },
  33974. },
  33975. [
  33976. {
  33977. name: "Humanoid",
  33978. height: math.unit(2.4, "meters")
  33979. },
  33980. {
  33981. name: "Normal",
  33982. height: math.unit(6, "meters"),
  33983. default: true
  33984. },
  33985. {
  33986. name: "Largest",
  33987. height: math.unit(55, "meters")
  33988. },
  33989. ]
  33990. ))
  33991. characterMakers.push(() => makeCharacter(
  33992. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33993. {
  33994. front: {
  33995. height: math.unit(8 + 4/12, "feet"),
  33996. weight: math.unit(535, "lb"),
  33997. name: "Front",
  33998. image: {
  33999. source: "./media/characters/beh'kah-bolger/front.svg",
  34000. extra: 1660/1603,
  34001. bottom: 37/1697
  34002. }
  34003. },
  34004. },
  34005. [
  34006. {
  34007. name: "Normal",
  34008. height: math.unit(8 + 4/12, "feet"),
  34009. default: true
  34010. },
  34011. {
  34012. name: "Kaiju",
  34013. height: math.unit(250, "feet")
  34014. },
  34015. {
  34016. name: "Still Growing",
  34017. height: math.unit(10, "miles")
  34018. },
  34019. {
  34020. name: "Continental",
  34021. height: math.unit(5000, "miles")
  34022. },
  34023. {
  34024. name: "Final Form",
  34025. height: math.unit(2500000, "miles")
  34026. },
  34027. ]
  34028. ))
  34029. characterMakers.push(() => makeCharacter(
  34030. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34031. {
  34032. front: {
  34033. height: math.unit(7 + 2/12, "feet"),
  34034. weight: math.unit(230, "kg"),
  34035. name: "Front",
  34036. image: {
  34037. source: "./media/characters/tatyana-milewska/front.svg",
  34038. extra: 1199/1150,
  34039. bottom: 86/1285
  34040. }
  34041. },
  34042. },
  34043. [
  34044. {
  34045. name: "Normal",
  34046. height: math.unit(7 + 2/12, "feet"),
  34047. default: true
  34048. },
  34049. {
  34050. name: "Big",
  34051. height: math.unit(12, "feet")
  34052. },
  34053. {
  34054. name: "Minimacro",
  34055. height: math.unit(20, "feet")
  34056. },
  34057. {
  34058. name: "Macro",
  34059. height: math.unit(120, "feet")
  34060. },
  34061. ]
  34062. ))
  34063. characterMakers.push(() => makeCharacter(
  34064. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34065. {
  34066. front: {
  34067. height: math.unit(7 + 8/12, "feet"),
  34068. weight: math.unit(152, "kg"),
  34069. name: "Front",
  34070. image: {
  34071. source: "./media/characters/helen-arri/front.svg",
  34072. extra: 440/423,
  34073. bottom: 14/454
  34074. }
  34075. },
  34076. back: {
  34077. height: math.unit(7 + 8/12, "feet"),
  34078. weight: math.unit(152, "kg"),
  34079. name: "Back",
  34080. image: {
  34081. source: "./media/characters/helen-arri/back.svg",
  34082. extra: 443/426,
  34083. bottom: 8/451
  34084. }
  34085. },
  34086. },
  34087. [
  34088. {
  34089. name: "Normal",
  34090. height: math.unit(7 + 8/12, "feet"),
  34091. default: true
  34092. },
  34093. {
  34094. name: "Big",
  34095. height: math.unit(14, "feet")
  34096. },
  34097. {
  34098. name: "Minimacro",
  34099. height: math.unit(24, "feet")
  34100. },
  34101. {
  34102. name: "Macro",
  34103. height: math.unit(140, "feet")
  34104. },
  34105. ]
  34106. ))
  34107. characterMakers.push(() => makeCharacter(
  34108. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34109. {
  34110. front: {
  34111. height: math.unit(6, "meters"),
  34112. name: "Front",
  34113. image: {
  34114. source: "./media/characters/ehanu-rehu/front.svg",
  34115. extra: 1800/1800,
  34116. bottom: 59/1859
  34117. }
  34118. },
  34119. },
  34120. [
  34121. {
  34122. name: "Normal",
  34123. height: math.unit(6, "meters"),
  34124. default: true
  34125. },
  34126. ]
  34127. ))
  34128. characterMakers.push(() => makeCharacter(
  34129. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34130. {
  34131. front: {
  34132. height: math.unit(7 + 3/12, "feet"),
  34133. name: "Front",
  34134. image: {
  34135. source: "./media/characters/renholder/front.svg",
  34136. extra: 3096/2960,
  34137. bottom: 250/3346
  34138. }
  34139. },
  34140. },
  34141. [
  34142. {
  34143. name: "Normal Bat",
  34144. height: math.unit(7 + 3/12, "feet"),
  34145. default: true
  34146. },
  34147. {
  34148. name: "Slightly Tall Bat",
  34149. height: math.unit(100, "feet")
  34150. },
  34151. {
  34152. name: "Big Bat",
  34153. height: math.unit(1000, "feet")
  34154. },
  34155. {
  34156. name: "City-Sized Bat",
  34157. height: math.unit(200000, "feet")
  34158. },
  34159. {
  34160. name: "Bigger Bat",
  34161. height: math.unit(10000, "miles")
  34162. },
  34163. {
  34164. name: "Solar Sized Bat",
  34165. height: math.unit(100, "AU")
  34166. },
  34167. {
  34168. name: "Galactic Bat",
  34169. height: math.unit(200000, "lightyears")
  34170. },
  34171. {
  34172. name: "Universally Known Bat",
  34173. height: math.unit(1, "universe")
  34174. },
  34175. ]
  34176. ))
  34177. characterMakers.push(() => makeCharacter(
  34178. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34179. {
  34180. front: {
  34181. height: math.unit(6 + 11/12, "feet"),
  34182. weight: math.unit(250, "lb"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/cookiecat/front.svg",
  34186. extra: 893/827,
  34187. bottom: 14/907
  34188. }
  34189. },
  34190. },
  34191. [
  34192. {
  34193. name: "Micro",
  34194. height: math.unit(3, "inches")
  34195. },
  34196. {
  34197. name: "Normal",
  34198. height: math.unit(6 + 11/12, "feet"),
  34199. default: true
  34200. },
  34201. {
  34202. name: "Macro",
  34203. height: math.unit(100, "feet")
  34204. },
  34205. {
  34206. name: "Macro+",
  34207. height: math.unit(404, "feet")
  34208. },
  34209. {
  34210. name: "Megamacro",
  34211. height: math.unit(165, "miles")
  34212. },
  34213. {
  34214. name: "Planetary",
  34215. height: math.unit(4600, "miles")
  34216. },
  34217. ]
  34218. ))
  34219. characterMakers.push(() => makeCharacter(
  34220. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34221. {
  34222. front: {
  34223. height: math.unit(10 + 3/12, "feet"),
  34224. weight: math.unit(1500, "lb"),
  34225. name: "Front",
  34226. image: {
  34227. source: "./media/characters/tux-kusanagi/front.svg",
  34228. extra: 944/840,
  34229. bottom: 39/983
  34230. }
  34231. },
  34232. back: {
  34233. height: math.unit(10 + 3/12, "feet"),
  34234. weight: math.unit(1500, "lb"),
  34235. name: "Back",
  34236. image: {
  34237. source: "./media/characters/tux-kusanagi/back.svg",
  34238. extra: 941/842,
  34239. bottom: 28/969
  34240. }
  34241. },
  34242. rump: {
  34243. height: math.unit(5.25, "feet"),
  34244. name: "Rump",
  34245. image: {
  34246. source: "./media/characters/tux-kusanagi/rump.svg"
  34247. }
  34248. },
  34249. beak: {
  34250. height: math.unit(1.54, "feet"),
  34251. name: "Beak",
  34252. image: {
  34253. source: "./media/characters/tux-kusanagi/beak.svg"
  34254. }
  34255. },
  34256. },
  34257. [
  34258. {
  34259. name: "Normal",
  34260. height: math.unit(10 + 3/12, "feet"),
  34261. default: true
  34262. },
  34263. ]
  34264. ))
  34265. characterMakers.push(() => makeCharacter(
  34266. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34267. {
  34268. front: {
  34269. height: math.unit(58, "feet"),
  34270. weight: math.unit(200, "tons"),
  34271. name: "Front",
  34272. image: {
  34273. source: "./media/characters/uzarmazari/front.svg",
  34274. extra: 1575/1455,
  34275. bottom: 152/1727
  34276. }
  34277. },
  34278. back: {
  34279. height: math.unit(58, "feet"),
  34280. weight: math.unit(200, "tons"),
  34281. name: "Back",
  34282. image: {
  34283. source: "./media/characters/uzarmazari/back.svg",
  34284. extra: 1585/1510,
  34285. bottom: 157/1742
  34286. }
  34287. },
  34288. head: {
  34289. height: math.unit(26, "feet"),
  34290. name: "Head",
  34291. image: {
  34292. source: "./media/characters/uzarmazari/head.svg"
  34293. }
  34294. },
  34295. },
  34296. [
  34297. {
  34298. name: "Normal",
  34299. height: math.unit(58, "feet"),
  34300. default: true
  34301. },
  34302. ]
  34303. ))
  34304. characterMakers.push(() => makeCharacter(
  34305. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34306. {
  34307. side: {
  34308. height: math.unit(15, "feet"),
  34309. name: "Side",
  34310. image: {
  34311. source: "./media/characters/akitu/side.svg",
  34312. extra: 1421/1321,
  34313. bottom: 157/1578
  34314. }
  34315. },
  34316. front: {
  34317. height: math.unit(15, "feet"),
  34318. name: "Front",
  34319. image: {
  34320. source: "./media/characters/akitu/front.svg",
  34321. extra: 1435/1326,
  34322. bottom: 232/1667
  34323. }
  34324. },
  34325. },
  34326. [
  34327. {
  34328. name: "Normal",
  34329. height: math.unit(15, "feet"),
  34330. default: true
  34331. },
  34332. ]
  34333. ))
  34334. characterMakers.push(() => makeCharacter(
  34335. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34336. {
  34337. front: {
  34338. height: math.unit(10 + 8/12, "feet"),
  34339. name: "Front",
  34340. image: {
  34341. source: "./media/characters/azalie-croixland/front.svg",
  34342. extra: 1972/1856,
  34343. bottom: 31/2003
  34344. }
  34345. },
  34346. },
  34347. [
  34348. {
  34349. name: "Original Height",
  34350. height: math.unit(5 + 4/12, "feet")
  34351. },
  34352. {
  34353. name: "Normal Height",
  34354. height: math.unit(10 + 8/12, "feet"),
  34355. default: true
  34356. },
  34357. ]
  34358. ))
  34359. characterMakers.push(() => makeCharacter(
  34360. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34361. {
  34362. side: {
  34363. height: math.unit(7 + 1/12, "feet"),
  34364. weight: math.unit(245, "lb"),
  34365. name: "Side",
  34366. image: {
  34367. source: "./media/characters/kavus-kazian/side.svg",
  34368. extra: 349/342,
  34369. bottom: 15/364
  34370. }
  34371. },
  34372. },
  34373. [
  34374. {
  34375. name: "Normal",
  34376. height: math.unit(7 + 1/12, "feet"),
  34377. default: true
  34378. },
  34379. ]
  34380. ))
  34381. characterMakers.push(() => makeCharacter(
  34382. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34383. {
  34384. normal: {
  34385. height: math.unit(5 + 11/12, "feet"),
  34386. name: "Normal",
  34387. image: {
  34388. source: "./media/characters/moonlight-rose/normal.svg",
  34389. extra: 1979/1835,
  34390. bottom: 14/1993
  34391. }
  34392. },
  34393. demon: {
  34394. height: math.unit(5, "km"),
  34395. name: "Demon",
  34396. image: {
  34397. source: "./media/characters/moonlight-rose/demon.svg",
  34398. extra: 986/916,
  34399. bottom: 28/1014
  34400. }
  34401. },
  34402. },
  34403. [
  34404. {
  34405. name: "\"Natural\" height",
  34406. height: math.unit(5 + 11/12, "feet")
  34407. },
  34408. {
  34409. name: "Comfortable Size",
  34410. height: math.unit(40, "meters")
  34411. },
  34412. {
  34413. name: "Common Size",
  34414. height: math.unit(50, "km"),
  34415. default: true
  34416. },
  34417. {
  34418. name: "Demonic",
  34419. height: math.unit(1.24415e+21, "meters")
  34420. },
  34421. ]
  34422. ))
  34423. characterMakers.push(() => makeCharacter(
  34424. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34425. {
  34426. front: {
  34427. height: math.unit(16, "feet"),
  34428. weight: math.unit(610, "kg"),
  34429. name: "Front",
  34430. image: {
  34431. source: "./media/characters/huckle/front.svg",
  34432. extra: 1731/1625,
  34433. bottom: 33/1764
  34434. }
  34435. },
  34436. back: {
  34437. height: math.unit(16, "feet"),
  34438. weight: math.unit(610, "kg"),
  34439. name: "Back",
  34440. image: {
  34441. source: "./media/characters/huckle/back.svg",
  34442. extra: 1738/1651,
  34443. bottom: 37/1775
  34444. }
  34445. },
  34446. laughing: {
  34447. height: math.unit(3.75, "feet"),
  34448. name: "Laughing",
  34449. image: {
  34450. source: "./media/characters/huckle/laughing.svg"
  34451. }
  34452. },
  34453. angry: {
  34454. height: math.unit(4.15, "feet"),
  34455. name: "Angry",
  34456. image: {
  34457. source: "./media/characters/huckle/angry.svg"
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(16, "feet"),
  34465. default: true
  34466. },
  34467. {
  34468. name: "Mini Macro",
  34469. height: math.unit(463, "feet")
  34470. },
  34471. {
  34472. name: "Macro",
  34473. height: math.unit(1680, "meters")
  34474. },
  34475. {
  34476. name: "Mega Macro",
  34477. height: math.unit(175, "km")
  34478. },
  34479. {
  34480. name: "Terra Macro",
  34481. height: math.unit(32, "gigameters")
  34482. },
  34483. {
  34484. name: "Multiverse+",
  34485. height: math.unit(2.56e23, "yottameters")
  34486. },
  34487. ]
  34488. ))
  34489. characterMakers.push(() => makeCharacter(
  34490. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34491. {
  34492. front: {
  34493. height: math.unit(6 + 9/12, "feet"),
  34494. weight: math.unit(280, "lb"),
  34495. name: "Front",
  34496. image: {
  34497. source: "./media/characters/candy/front.svg",
  34498. extra: 234/217,
  34499. bottom: 11/245
  34500. }
  34501. },
  34502. },
  34503. [
  34504. {
  34505. name: "Really Small",
  34506. height: math.unit(0.1, "nm")
  34507. },
  34508. {
  34509. name: "Micro",
  34510. height: math.unit(2, "inches")
  34511. },
  34512. {
  34513. name: "Normal",
  34514. height: math.unit(6 + 9/12, "feet"),
  34515. default: true
  34516. },
  34517. {
  34518. name: "Small Macro",
  34519. height: math.unit(69, "feet")
  34520. },
  34521. {
  34522. name: "Macro",
  34523. height: math.unit(160, "feet")
  34524. },
  34525. {
  34526. name: "Megamacro",
  34527. height: math.unit(22000, "miles")
  34528. },
  34529. {
  34530. name: "Gigamacro",
  34531. height: math.unit(50000, "miles")
  34532. },
  34533. ]
  34534. ))
  34535. characterMakers.push(() => makeCharacter(
  34536. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34537. {
  34538. front: {
  34539. height: math.unit(4, "feet"),
  34540. weight: math.unit(90, "lb"),
  34541. name: "Front",
  34542. image: {
  34543. source: "./media/characters/joey-mcdonald/front.svg",
  34544. extra: 1059/852,
  34545. bottom: 33/1092
  34546. }
  34547. },
  34548. back: {
  34549. height: math.unit(4, "feet"),
  34550. weight: math.unit(90, "lb"),
  34551. name: "Back",
  34552. image: {
  34553. source: "./media/characters/joey-mcdonald/back.svg",
  34554. extra: 1077/879,
  34555. bottom: 5/1082
  34556. }
  34557. },
  34558. },
  34559. [
  34560. {
  34561. name: "Normal",
  34562. height: math.unit(4, "feet"),
  34563. default: true
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34569. {
  34570. front: {
  34571. height: math.unit(12 + 6/12, "feet"),
  34572. name: "Front",
  34573. image: {
  34574. source: "./media/characters/kass-lockheed/front.svg",
  34575. extra: 354/343,
  34576. bottom: 9/363
  34577. }
  34578. },
  34579. back: {
  34580. height: math.unit(12 + 6/12, "feet"),
  34581. name: "Back",
  34582. image: {
  34583. source: "./media/characters/kass-lockheed/back.svg",
  34584. extra: 364/352,
  34585. bottom: 3/367
  34586. }
  34587. },
  34588. dick: {
  34589. height: math.unit(3.12, "feet"),
  34590. name: "Dick",
  34591. image: {
  34592. source: "./media/characters/kass-lockheed/dick.svg"
  34593. }
  34594. },
  34595. head: {
  34596. height: math.unit(2.6, "feet"),
  34597. name: "Head",
  34598. image: {
  34599. source: "./media/characters/kass-lockheed/head.svg"
  34600. }
  34601. },
  34602. bleh: {
  34603. height: math.unit(2.85, "feet"),
  34604. name: "Bleh",
  34605. image: {
  34606. source: "./media/characters/kass-lockheed/bleh.svg"
  34607. }
  34608. },
  34609. smug: {
  34610. height: math.unit(2.85, "feet"),
  34611. name: "Smug",
  34612. image: {
  34613. source: "./media/characters/kass-lockheed/smug.svg"
  34614. }
  34615. },
  34616. },
  34617. [
  34618. {
  34619. name: "Normal",
  34620. height: math.unit(12 + 6/12, "feet"),
  34621. default: true
  34622. },
  34623. ]
  34624. ))
  34625. characterMakers.push(() => makeCharacter(
  34626. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34627. {
  34628. front: {
  34629. height: math.unit(6 + 2/12, "feet"),
  34630. name: "Front",
  34631. image: {
  34632. source: "./media/characters/taylor/front.svg",
  34633. extra: 639/495,
  34634. bottom: 12/651
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(6 + 2/12, "feet"),
  34642. default: true
  34643. },
  34644. {
  34645. name: "Big",
  34646. height: math.unit(15, "feet")
  34647. },
  34648. {
  34649. name: "Lorg",
  34650. height: math.unit(80, "feet")
  34651. },
  34652. {
  34653. name: "Too Lorg",
  34654. height: math.unit(120, "feet")
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(15, "feet"),
  34663. name: "Front",
  34664. image: {
  34665. source: "./media/characters/kaizer/front.svg",
  34666. extra: 1612/1436,
  34667. bottom: 43/1655
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Normal",
  34674. height: math.unit(15, "feet"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(2, "feet"),
  34684. weight: math.unit(30, "lb"),
  34685. name: "Front",
  34686. image: {
  34687. source: "./media/characters/sandy/front.svg",
  34688. extra: 1439/1307,
  34689. bottom: 194/1633
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(2, "feet"),
  34697. default: true
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34703. {
  34704. front: {
  34705. height: math.unit(3, "feet"),
  34706. name: "Front",
  34707. image: {
  34708. source: "./media/characters/mellvi/front.svg",
  34709. extra: 1831/1630,
  34710. bottom: 58/1889
  34711. }
  34712. },
  34713. },
  34714. [
  34715. {
  34716. name: "Normal",
  34717. height: math.unit(3, "feet"),
  34718. default: true
  34719. },
  34720. ]
  34721. ))
  34722. characterMakers.push(() => makeCharacter(
  34723. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34724. {
  34725. front: {
  34726. height: math.unit(5 + 11/12, "feet"),
  34727. weight: math.unit(200, "lb"),
  34728. name: "Front",
  34729. image: {
  34730. source: "./media/characters/shirou/front.svg",
  34731. extra: 2491/2383,
  34732. bottom: 189/2680
  34733. }
  34734. },
  34735. back: {
  34736. height: math.unit(5 + 11/12, "feet"),
  34737. weight: math.unit(200, "lb"),
  34738. name: "Back",
  34739. image: {
  34740. source: "./media/characters/shirou/back.svg",
  34741. extra: 2554/2450,
  34742. bottom: 76/2630
  34743. }
  34744. },
  34745. },
  34746. [
  34747. {
  34748. name: "Normal",
  34749. height: math.unit(5 + 11/12, "feet"),
  34750. default: true
  34751. },
  34752. ]
  34753. ))
  34754. characterMakers.push(() => makeCharacter(
  34755. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34756. {
  34757. front: {
  34758. height: math.unit(6 + 3/12, "feet"),
  34759. weight: math.unit(177, "lb"),
  34760. name: "Front",
  34761. image: {
  34762. source: "./media/characters/noryu/front.svg",
  34763. extra: 973/885,
  34764. bottom: 10/983
  34765. }
  34766. },
  34767. },
  34768. [
  34769. {
  34770. name: "Normal",
  34771. height: math.unit(6 + 3/12, "feet"),
  34772. default: true
  34773. },
  34774. ]
  34775. ))
  34776. characterMakers.push(() => makeCharacter(
  34777. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34778. {
  34779. front: {
  34780. height: math.unit(5 + 6/12, "feet"),
  34781. weight: math.unit(170, "lb"),
  34782. name: "Front",
  34783. image: {
  34784. source: "./media/characters/mevolas-rubenido/front.svg",
  34785. extra: 2109/1901,
  34786. bottom: 96/2205
  34787. }
  34788. },
  34789. },
  34790. [
  34791. {
  34792. name: "Normal",
  34793. height: math.unit(5 + 6/12, "feet"),
  34794. default: true
  34795. },
  34796. ]
  34797. ))
  34798. characterMakers.push(() => makeCharacter(
  34799. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34800. {
  34801. front: {
  34802. height: math.unit(100, "feet"),
  34803. name: "Front",
  34804. image: {
  34805. source: "./media/characters/dee/front.svg",
  34806. extra: 2153/2036,
  34807. bottom: 59/2212
  34808. }
  34809. },
  34810. back: {
  34811. height: math.unit(100, "feet"),
  34812. name: "Back",
  34813. image: {
  34814. source: "./media/characters/dee/back.svg",
  34815. extra: 2183/2058,
  34816. bottom: 75/2258
  34817. }
  34818. },
  34819. foot: {
  34820. height: math.unit(19.43, "feet"),
  34821. name: "Foot",
  34822. image: {
  34823. source: "./media/characters/dee/foot.svg"
  34824. }
  34825. },
  34826. hoof: {
  34827. height: math.unit(20.6, "feet"),
  34828. name: "Hoof",
  34829. image: {
  34830. source: "./media/characters/dee/hoof.svg"
  34831. }
  34832. },
  34833. },
  34834. [
  34835. {
  34836. name: "Macro",
  34837. height: math.unit(100, "feet"),
  34838. default: true
  34839. },
  34840. ]
  34841. ))
  34842. characterMakers.push(() => makeCharacter(
  34843. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34844. {
  34845. front: {
  34846. height: math.unit(5 + 6/12, "feet"),
  34847. name: "Front",
  34848. image: {
  34849. source: "./media/characters/teh/front.svg",
  34850. extra: 1002/847,
  34851. bottom: 62/1064
  34852. }
  34853. },
  34854. },
  34855. [
  34856. {
  34857. name: "Normal",
  34858. height: math.unit(5 + 6/12, "feet"),
  34859. default: true
  34860. },
  34861. ]
  34862. ))
  34863. characterMakers.push(() => makeCharacter(
  34864. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34865. {
  34866. side: {
  34867. height: math.unit(6 + 1/12, "feet"),
  34868. weight: math.unit(204, "lb"),
  34869. name: "Side",
  34870. image: {
  34871. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34872. extra: 974/775,
  34873. bottom: 169/1143
  34874. }
  34875. },
  34876. sitting: {
  34877. height: math.unit(6 + 2/12, "feet"),
  34878. weight: math.unit(204, "lb"),
  34879. name: "Sitting",
  34880. image: {
  34881. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34882. extra: 1175/964,
  34883. bottom: 378/1553
  34884. }
  34885. },
  34886. },
  34887. [
  34888. {
  34889. name: "Normal",
  34890. height: math.unit(6 + 1/12, "feet"),
  34891. default: true
  34892. },
  34893. ]
  34894. ))
  34895. characterMakers.push(() => makeCharacter(
  34896. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34897. {
  34898. front: {
  34899. height: math.unit(6, "inches"),
  34900. name: "Front",
  34901. image: {
  34902. source: "./media/characters/tululi/front.svg",
  34903. extra: 1997/1876,
  34904. bottom: 20/2017
  34905. }
  34906. },
  34907. },
  34908. [
  34909. {
  34910. name: "Normal",
  34911. height: math.unit(6, "inches"),
  34912. default: true
  34913. },
  34914. ]
  34915. ))
  34916. characterMakers.push(() => makeCharacter(
  34917. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34918. {
  34919. front: {
  34920. height: math.unit(4 + 1/12, "feet"),
  34921. name: "Front",
  34922. image: {
  34923. source: "./media/characters/star/front.svg",
  34924. extra: 1493/1189,
  34925. bottom: 48/1541
  34926. }
  34927. },
  34928. },
  34929. [
  34930. {
  34931. name: "Normal",
  34932. height: math.unit(4 + 1/12, "feet"),
  34933. default: true
  34934. },
  34935. ]
  34936. ))
  34937. characterMakers.push(() => makeCharacter(
  34938. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34939. {
  34940. front: {
  34941. height: math.unit(6 + 3/12, "feet"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/comet/front.svg",
  34945. extra: 1681/1462,
  34946. bottom: 26/1707
  34947. }
  34948. },
  34949. },
  34950. [
  34951. {
  34952. name: "Normal",
  34953. height: math.unit(6 + 3/12, "feet"),
  34954. default: true
  34955. },
  34956. ]
  34957. ))
  34958. characterMakers.push(() => makeCharacter(
  34959. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34960. {
  34961. front: {
  34962. height: math.unit(950, "feet"),
  34963. name: "Front",
  34964. image: {
  34965. source: "./media/characters/vortex/front.svg",
  34966. extra: 1497/1434,
  34967. bottom: 56/1553
  34968. }
  34969. },
  34970. maw: {
  34971. height: math.unit(285, "feet"),
  34972. name: "Maw",
  34973. image: {
  34974. source: "./media/characters/vortex/maw.svg"
  34975. }
  34976. },
  34977. },
  34978. [
  34979. {
  34980. name: "Macro",
  34981. height: math.unit(950, "feet"),
  34982. default: true
  34983. },
  34984. ]
  34985. ))
  34986. characterMakers.push(() => makeCharacter(
  34987. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34988. {
  34989. front: {
  34990. height: math.unit(600, "feet"),
  34991. weight: math.unit(0.02, "grams"),
  34992. name: "Front",
  34993. image: {
  34994. source: "./media/characters/doodle/front.svg",
  34995. extra: 1578/1413,
  34996. bottom: 37/1615
  34997. }
  34998. },
  34999. },
  35000. [
  35001. {
  35002. name: "Macro",
  35003. height: math.unit(600, "feet"),
  35004. default: true
  35005. },
  35006. ]
  35007. ))
  35008. characterMakers.push(() => makeCharacter(
  35009. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35010. {
  35011. front: {
  35012. height: math.unit(6 + 6/12, "feet"),
  35013. name: "Front",
  35014. image: {
  35015. source: "./media/characters/jai/front.svg",
  35016. extra: 1645/1534,
  35017. bottom: 115/1760
  35018. }
  35019. },
  35020. },
  35021. [
  35022. {
  35023. name: "Normal",
  35024. height: math.unit(6 + 6/12, "feet"),
  35025. default: true
  35026. },
  35027. ]
  35028. ))
  35029. characterMakers.push(() => makeCharacter(
  35030. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35031. {
  35032. front: {
  35033. height: math.unit(6 + 8/12, "feet"),
  35034. name: "Front",
  35035. image: {
  35036. source: "./media/characters/pixel/front.svg",
  35037. extra: 1900/1735,
  35038. bottom: 63/1963
  35039. }
  35040. },
  35041. },
  35042. [
  35043. {
  35044. name: "Normal",
  35045. height: math.unit(6 + 8/12, "feet"),
  35046. default: true
  35047. },
  35048. ]
  35049. ))
  35050. characterMakers.push(() => makeCharacter(
  35051. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35052. {
  35053. front: {
  35054. height: math.unit(4 + 11/12, "feet"),
  35055. weight: math.unit(111, "lb"),
  35056. name: "Front",
  35057. image: {
  35058. source: "./media/characters/rhett/front.svg",
  35059. extra: 1682/1586,
  35060. bottom: 92/1774
  35061. }
  35062. },
  35063. },
  35064. [
  35065. {
  35066. name: "Mini",
  35067. height: math.unit(1 + 1/12, "feet")
  35068. },
  35069. {
  35070. name: "Normal",
  35071. height: math.unit(4 + 11/12, "feet"),
  35072. default: true
  35073. },
  35074. ]
  35075. ))
  35076. characterMakers.push(() => makeCharacter(
  35077. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35078. {
  35079. front: {
  35080. height: math.unit(3 + 3/12, "feet"),
  35081. name: "Front",
  35082. image: {
  35083. source: "./media/characters/penny/front.svg",
  35084. extra: 1406/1311,
  35085. bottom: 26/1432
  35086. }
  35087. },
  35088. },
  35089. [
  35090. {
  35091. name: "Normal",
  35092. height: math.unit(3 + 3/12, "feet"),
  35093. default: true
  35094. },
  35095. ]
  35096. ))
  35097. characterMakers.push(() => makeCharacter(
  35098. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35099. {
  35100. front: {
  35101. height: math.unit(4 + 11/12, "feet"),
  35102. name: "Front",
  35103. image: {
  35104. source: "./media/characters/monty/front.svg",
  35105. extra: 1479/1209,
  35106. bottom: 0/1479
  35107. }
  35108. },
  35109. },
  35110. [
  35111. {
  35112. name: "Normal",
  35113. height: math.unit(4 + 11/12, "feet"),
  35114. default: true
  35115. },
  35116. ]
  35117. ))
  35118. characterMakers.push(() => makeCharacter(
  35119. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35120. {
  35121. front: {
  35122. height: math.unit(8 + 4/12, "feet"),
  35123. name: "Front",
  35124. image: {
  35125. source: "./media/characters/sterling/front.svg",
  35126. extra: 1420/1236,
  35127. bottom: 27/1447
  35128. }
  35129. },
  35130. },
  35131. [
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(8 + 4/12, "feet"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35141. {
  35142. front: {
  35143. height: math.unit(15, "feet"),
  35144. name: "Front",
  35145. image: {
  35146. source: "./media/characters/marble/front.svg",
  35147. extra: 973/937,
  35148. bottom: 32/1005
  35149. }
  35150. },
  35151. },
  35152. [
  35153. {
  35154. name: "Normal",
  35155. height: math.unit(15, "feet"),
  35156. default: true
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35162. {
  35163. front: {
  35164. height: math.unit(3, "inches"),
  35165. name: "Front",
  35166. image: {
  35167. source: "./media/characters/powder/front.svg",
  35168. extra: 1504/1334,
  35169. bottom: 518/2022
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Normal",
  35176. height: math.unit(3, "inches"),
  35177. default: true
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35183. {
  35184. front: {
  35185. height: math.unit(4 + 5/12, "feet"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/joey-raccoon/front.svg",
  35189. extra: 1273/1197,
  35190. bottom: 0/1273
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Normal",
  35197. height: math.unit(4 + 5/12, "feet"),
  35198. default: true
  35199. },
  35200. ]
  35201. ))
  35202. characterMakers.push(() => makeCharacter(
  35203. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35204. {
  35205. front: {
  35206. height: math.unit(8 + 4/12, "feet"),
  35207. name: "Front",
  35208. image: {
  35209. source: "./media/characters/vick/front.svg",
  35210. extra: 2187/2118,
  35211. bottom: 47/2234
  35212. }
  35213. },
  35214. },
  35215. [
  35216. {
  35217. name: "Normal",
  35218. height: math.unit(8 + 4/12, "feet"),
  35219. default: true
  35220. },
  35221. ]
  35222. ))
  35223. characterMakers.push(() => makeCharacter(
  35224. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35225. {
  35226. front: {
  35227. height: math.unit(5 + 5/12, "feet"),
  35228. name: "Front",
  35229. image: {
  35230. source: "./media/characters/mitsy/front.svg",
  35231. extra: 1842/1695,
  35232. bottom: 0/1842
  35233. }
  35234. },
  35235. },
  35236. [
  35237. {
  35238. name: "Normal",
  35239. height: math.unit(5 + 5/12, "feet"),
  35240. default: true
  35241. },
  35242. ]
  35243. ))
  35244. characterMakers.push(() => makeCharacter(
  35245. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35246. {
  35247. front: {
  35248. height: math.unit(6 + 3/12, "feet"),
  35249. name: "Front",
  35250. image: {
  35251. source: "./media/characters/silvy/front.svg",
  35252. extra: 1995/1836,
  35253. bottom: 225/2220
  35254. }
  35255. },
  35256. },
  35257. [
  35258. {
  35259. name: "Normal",
  35260. height: math.unit(6 + 3/12, "feet"),
  35261. default: true
  35262. },
  35263. ]
  35264. ))
  35265. characterMakers.push(() => makeCharacter(
  35266. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35267. {
  35268. front: {
  35269. height: math.unit(3 + 8/12, "feet"),
  35270. name: "Front",
  35271. image: {
  35272. source: "./media/characters/rodney/front.svg",
  35273. extra: 1956/1747,
  35274. bottom: 31/1987
  35275. }
  35276. },
  35277. frontDressed: {
  35278. height: math.unit(2.9, "feet"),
  35279. name: "Front (Dressed)",
  35280. image: {
  35281. source: "./media/characters/rodney/front-dressed.svg",
  35282. extra: 1382/1241,
  35283. bottom: 385/1767
  35284. }
  35285. },
  35286. },
  35287. [
  35288. {
  35289. name: "Normal",
  35290. height: math.unit(3 + 8/12, "feet"),
  35291. default: true
  35292. },
  35293. ]
  35294. ))
  35295. characterMakers.push(() => makeCharacter(
  35296. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35297. {
  35298. front: {
  35299. height: math.unit(5 + 9/12, "feet"),
  35300. weight: math.unit(194, "lbs"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/zakail-sudekai/front.svg",
  35304. extra: 2696/2533,
  35305. bottom: 248/2944
  35306. }
  35307. },
  35308. maw: {
  35309. height: math.unit(1.35, "feet"),
  35310. name: "Maw",
  35311. image: {
  35312. source: "./media/characters/zakail-sudekai/maw.svg"
  35313. }
  35314. },
  35315. },
  35316. [
  35317. {
  35318. name: "Normal",
  35319. height: math.unit(5 + 9/12, "feet"),
  35320. default: true
  35321. },
  35322. ]
  35323. ))
  35324. characterMakers.push(() => makeCharacter(
  35325. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35326. {
  35327. front: {
  35328. height: math.unit(8 + 4/12, "feet"),
  35329. weight: math.unit(1200, "lb"),
  35330. name: "Front",
  35331. image: {
  35332. source: "./media/characters/eleanor/front.svg",
  35333. extra: 1226/1192,
  35334. bottom: 52/1278
  35335. }
  35336. },
  35337. back: {
  35338. height: math.unit(8 + 4/12, "feet"),
  35339. weight: math.unit(1200, "lb"),
  35340. name: "Back",
  35341. image: {
  35342. source: "./media/characters/eleanor/back.svg",
  35343. extra: 1242/1184,
  35344. bottom: 60/1302
  35345. }
  35346. },
  35347. head: {
  35348. height: math.unit(2.62, "feet"),
  35349. name: "Head",
  35350. image: {
  35351. source: "./media/characters/eleanor/head.svg"
  35352. }
  35353. },
  35354. },
  35355. [
  35356. {
  35357. name: "Normal",
  35358. height: math.unit(8 + 4/12, "feet"),
  35359. default: true
  35360. },
  35361. ]
  35362. ))
  35363. characterMakers.push(() => makeCharacter(
  35364. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35365. {
  35366. front: {
  35367. height: math.unit(8 + 4/12, "feet"),
  35368. weight: math.unit(750, "lb"),
  35369. name: "Front",
  35370. image: {
  35371. source: "./media/characters/tanya/front.svg",
  35372. extra: 1749/1615,
  35373. bottom: 33/1782
  35374. }
  35375. },
  35376. },
  35377. [
  35378. {
  35379. name: "Normal",
  35380. height: math.unit(8 + 4/12, "feet"),
  35381. default: true
  35382. },
  35383. ]
  35384. ))
  35385. characterMakers.push(() => makeCharacter(
  35386. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35387. {
  35388. front: {
  35389. height: math.unit(5, "feet"),
  35390. weight: math.unit(225, "lb"),
  35391. name: "Front",
  35392. image: {
  35393. source: "./media/characters/cindy/front.svg",
  35394. extra: 1320/1250,
  35395. bottom: 42/1362
  35396. }
  35397. },
  35398. frontDressed: {
  35399. height: math.unit(5, "feet"),
  35400. weight: math.unit(225, "lb"),
  35401. name: "Front (Dressed)",
  35402. image: {
  35403. source: "./media/characters/cindy/front-dressed.svg",
  35404. extra: 1320/1250,
  35405. bottom: 42/1362
  35406. }
  35407. },
  35408. back: {
  35409. height: math.unit(5, "feet"),
  35410. weight: math.unit(225, "lb"),
  35411. name: "Back",
  35412. image: {
  35413. source: "./media/characters/cindy/back.svg",
  35414. extra: 1384/1346,
  35415. bottom: 14/1398
  35416. }
  35417. },
  35418. },
  35419. [
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(5, "feet"),
  35423. default: true
  35424. },
  35425. ]
  35426. ))
  35427. characterMakers.push(() => makeCharacter(
  35428. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35429. {
  35430. front: {
  35431. height: math.unit(6 + 9/12, "feet"),
  35432. weight: math.unit(440, "lb"),
  35433. name: "Front",
  35434. image: {
  35435. source: "./media/characters/wilbur-owen/front.svg",
  35436. extra: 1575/1448,
  35437. bottom: 72/1647
  35438. }
  35439. },
  35440. back: {
  35441. height: math.unit(6 + 9/12, "feet"),
  35442. weight: math.unit(440, "lb"),
  35443. name: "Back",
  35444. image: {
  35445. source: "./media/characters/wilbur-owen/back.svg",
  35446. extra: 1578/1445,
  35447. bottom: 36/1614
  35448. }
  35449. },
  35450. },
  35451. [
  35452. {
  35453. name: "Normal",
  35454. height: math.unit(6 + 9/12, "feet"),
  35455. default: true
  35456. },
  35457. ]
  35458. ))
  35459. characterMakers.push(() => makeCharacter(
  35460. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35461. {
  35462. front: {
  35463. height: math.unit(6 + 5/12, "feet"),
  35464. weight: math.unit(650, "lb"),
  35465. name: "Front",
  35466. image: {
  35467. source: "./media/characters/keegan/front.svg",
  35468. extra: 2387/2198,
  35469. bottom: 33/2420
  35470. }
  35471. },
  35472. side: {
  35473. height: math.unit(6 + 5/12, "feet"),
  35474. weight: math.unit(650, "lb"),
  35475. name: "Side",
  35476. image: {
  35477. source: "./media/characters/keegan/side.svg",
  35478. extra: 2390/2202,
  35479. bottom: 47/2437
  35480. }
  35481. },
  35482. back: {
  35483. height: math.unit(6 + 5/12, "feet"),
  35484. weight: math.unit(650, "lb"),
  35485. name: "Back",
  35486. image: {
  35487. source: "./media/characters/keegan/back.svg",
  35488. extra: 2418/2268,
  35489. bottom: 15/2433
  35490. }
  35491. },
  35492. frontSfw: {
  35493. height: math.unit(6 + 5/12, "feet"),
  35494. weight: math.unit(650, "lb"),
  35495. name: "Front (SFW)",
  35496. image: {
  35497. source: "./media/characters/keegan/front-sfw.svg",
  35498. extra: 2387/2198,
  35499. bottom: 33/2420
  35500. }
  35501. },
  35502. beans: {
  35503. height: math.unit(1.85, "feet"),
  35504. name: "Beans",
  35505. image: {
  35506. source: "./media/characters/keegan/beans.svg"
  35507. }
  35508. },
  35509. },
  35510. [
  35511. {
  35512. name: "Normal",
  35513. height: math.unit(6 + 5/12, "feet"),
  35514. default: true
  35515. },
  35516. ]
  35517. ))
  35518. characterMakers.push(() => makeCharacter(
  35519. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35520. {
  35521. front: {
  35522. height: math.unit(9, "feet"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/colton/front.svg",
  35526. extra: 1589/1326,
  35527. bottom: 139/1728
  35528. }
  35529. },
  35530. },
  35531. [
  35532. {
  35533. name: "Normal",
  35534. height: math.unit(9, "feet"),
  35535. default: true
  35536. },
  35537. ]
  35538. ))
  35539. characterMakers.push(() => makeCharacter(
  35540. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35541. {
  35542. front: {
  35543. height: math.unit(2 + 9/12, "feet"),
  35544. name: "Front",
  35545. image: {
  35546. source: "./media/characters/bora/front.svg",
  35547. extra: 1265/1250,
  35548. bottom: 24/1289
  35549. }
  35550. },
  35551. },
  35552. [
  35553. {
  35554. name: "Normal",
  35555. height: math.unit(2 + 9/12, "feet"),
  35556. default: true
  35557. },
  35558. ]
  35559. ))
  35560. characterMakers.push(() => makeCharacter(
  35561. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35562. {
  35563. front: {
  35564. height: math.unit(8, "feet"),
  35565. name: "Front",
  35566. image: {
  35567. source: "./media/characters/myu-myu/front.svg",
  35568. extra: 1949/1857,
  35569. bottom: 90/2039
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(8, "feet"),
  35577. default: true
  35578. },
  35579. {
  35580. name: "Big",
  35581. height: math.unit(15, "feet")
  35582. },
  35583. {
  35584. name: "BIG",
  35585. height: math.unit(25, "feet")
  35586. },
  35587. ]
  35588. ))
  35589. characterMakers.push(() => makeCharacter(
  35590. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35591. {
  35592. side: {
  35593. height: math.unit(7 + 5/12, "feet"),
  35594. weight: math.unit(2800, "lb"),
  35595. name: "Side",
  35596. image: {
  35597. source: "./media/characters/haloren/side.svg",
  35598. extra: 1793/409,
  35599. bottom: 59/1852
  35600. }
  35601. },
  35602. frontPaw: {
  35603. height: math.unit(2.36, "feet"),
  35604. name: "Front paw",
  35605. image: {
  35606. source: "./media/characters/haloren/front-paw.svg"
  35607. }
  35608. },
  35609. hindPaw: {
  35610. height: math.unit(3.18, "feet"),
  35611. name: "Hind paw",
  35612. image: {
  35613. source: "./media/characters/haloren/hind-paw.svg"
  35614. }
  35615. },
  35616. maw: {
  35617. height: math.unit(5.05, "feet"),
  35618. name: "Maw",
  35619. image: {
  35620. source: "./media/characters/haloren/maw.svg"
  35621. }
  35622. },
  35623. dick: {
  35624. height: math.unit(2.90, "feet"),
  35625. name: "Dick",
  35626. image: {
  35627. source: "./media/characters/haloren/dick.svg"
  35628. }
  35629. },
  35630. },
  35631. [
  35632. {
  35633. name: "Normal",
  35634. height: math.unit(7 + 5/12, "feet"),
  35635. default: true
  35636. },
  35637. {
  35638. name: "Enhanced",
  35639. height: math.unit(14 + 3/12, "feet")
  35640. },
  35641. ]
  35642. ))
  35643. characterMakers.push(() => makeCharacter(
  35644. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35645. {
  35646. front: {
  35647. height: math.unit(171, "cm"),
  35648. name: "Front",
  35649. image: {
  35650. source: "./media/characters/kimmy/front.svg",
  35651. extra: 1491/1435,
  35652. bottom: 53/1544
  35653. }
  35654. },
  35655. },
  35656. [
  35657. {
  35658. name: "Small",
  35659. height: math.unit(9, "cm")
  35660. },
  35661. {
  35662. name: "Normal",
  35663. height: math.unit(171, "cm"),
  35664. default: true
  35665. },
  35666. ]
  35667. ))
  35668. characterMakers.push(() => makeCharacter(
  35669. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35670. {
  35671. front: {
  35672. height: math.unit(8, "feet"),
  35673. weight: math.unit(300, "lb"),
  35674. name: "Front",
  35675. image: {
  35676. source: "./media/characters/galeboomer/front.svg",
  35677. extra: 4651/4415,
  35678. bottom: 162/4813
  35679. }
  35680. },
  35681. back: {
  35682. height: math.unit(8, "feet"),
  35683. weight: math.unit(300, "lb"),
  35684. name: "Back",
  35685. image: {
  35686. source: "./media/characters/galeboomer/back.svg",
  35687. extra: 4544/4314,
  35688. bottom: 16/4560
  35689. }
  35690. },
  35691. frontAlt: {
  35692. height: math.unit(8, "feet"),
  35693. weight: math.unit(300, "lb"),
  35694. name: "Front (Alt)",
  35695. image: {
  35696. source: "./media/characters/galeboomer/front-alt.svg",
  35697. extra: 4458/4228,
  35698. bottom: 68/4526
  35699. }
  35700. },
  35701. maw: {
  35702. height: math.unit(1.2, "feet"),
  35703. name: "Maw",
  35704. image: {
  35705. source: "./media/characters/galeboomer/maw.svg"
  35706. }
  35707. },
  35708. },
  35709. [
  35710. {
  35711. name: "Normal",
  35712. height: math.unit(8, "feet"),
  35713. default: true
  35714. },
  35715. ]
  35716. ))
  35717. characterMakers.push(() => makeCharacter(
  35718. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35719. {
  35720. front: {
  35721. height: math.unit(5 + 9/12, "feet"),
  35722. weight: math.unit(120, "lb"),
  35723. name: "Front",
  35724. image: {
  35725. source: "./media/characters/chyr/front.svg",
  35726. extra: 1323/1254,
  35727. bottom: 63/1386
  35728. }
  35729. },
  35730. back: {
  35731. height: math.unit(5 + 9/12, "feet"),
  35732. weight: math.unit(120, "lb"),
  35733. name: "Back",
  35734. image: {
  35735. source: "./media/characters/chyr/back.svg",
  35736. extra: 1323/1252,
  35737. bottom: 48/1371
  35738. }
  35739. },
  35740. },
  35741. [
  35742. {
  35743. name: "Normal",
  35744. height: math.unit(5 + 9/12, "feet"),
  35745. default: true
  35746. },
  35747. ]
  35748. ))
  35749. characterMakers.push(() => makeCharacter(
  35750. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35751. {
  35752. front: {
  35753. height: math.unit(7, "feet"),
  35754. weight: math.unit(310, "lb"),
  35755. name: "Front",
  35756. image: {
  35757. source: "./media/characters/solarus/front.svg",
  35758. extra: 2415/2021,
  35759. bottom: 103/2518
  35760. }
  35761. },
  35762. back: {
  35763. height: math.unit(7, "feet"),
  35764. weight: math.unit(310, "lb"),
  35765. name: "Back",
  35766. image: {
  35767. source: "./media/characters/solarus/back.svg",
  35768. extra: 2463/2089,
  35769. bottom: 79/2542
  35770. }
  35771. },
  35772. },
  35773. [
  35774. {
  35775. name: "Normal",
  35776. height: math.unit(7, "feet"),
  35777. default: true
  35778. },
  35779. ]
  35780. ))
  35781. characterMakers.push(() => makeCharacter(
  35782. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35783. {
  35784. front: {
  35785. height: math.unit(16, "feet"),
  35786. name: "Front",
  35787. image: {
  35788. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35789. extra: 1844/1780,
  35790. bottom: 58/1902
  35791. }
  35792. },
  35793. winterCoat: {
  35794. height: math.unit(16, "feet"),
  35795. name: "Winter Coat",
  35796. image: {
  35797. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35798. extra: 1807/1775,
  35799. bottom: 69/1876
  35800. }
  35801. },
  35802. },
  35803. [
  35804. {
  35805. name: "Normal",
  35806. height: math.unit(16, "feet"),
  35807. default: true
  35808. },
  35809. {
  35810. name: "Chicago Size",
  35811. height: math.unit(560, "feet")
  35812. },
  35813. ]
  35814. ))
  35815. characterMakers.push(() => makeCharacter(
  35816. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35817. {
  35818. front: {
  35819. height: math.unit(11 + 6/12, "feet"),
  35820. weight: math.unit(1366, "lb"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/lexor/front.svg",
  35824. extra: 1560/1481,
  35825. bottom: 211/1771
  35826. }
  35827. },
  35828. back: {
  35829. height: math.unit(11 + 6/12, "feet"),
  35830. weight: math.unit(1366, "lb"),
  35831. name: "Back",
  35832. image: {
  35833. source: "./media/characters/lexor/back.svg",
  35834. extra: 1614/1533,
  35835. bottom: 76/1690
  35836. }
  35837. },
  35838. maw: {
  35839. height: math.unit(3, "feet"),
  35840. name: "Maw",
  35841. image: {
  35842. source: "./media/characters/lexor/maw.svg"
  35843. }
  35844. },
  35845. dick: {
  35846. height: math.unit(2.59, "feet"),
  35847. name: "Dick",
  35848. image: {
  35849. source: "./media/characters/lexor/dick.svg"
  35850. }
  35851. },
  35852. },
  35853. [
  35854. {
  35855. name: "Normal",
  35856. height: math.unit(11 + 6/12, "feet"),
  35857. default: true
  35858. },
  35859. ]
  35860. ))
  35861. characterMakers.push(() => makeCharacter(
  35862. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35863. {
  35864. front: {
  35865. height: math.unit(5 + 8/12, "feet"),
  35866. name: "Front",
  35867. image: {
  35868. source: "./media/characters/magnum/front.svg",
  35869. extra: 942/855,
  35870. bottom: 26/968
  35871. }
  35872. },
  35873. },
  35874. [
  35875. {
  35876. name: "Normal",
  35877. height: math.unit(5 + 8/12, "feet"),
  35878. default: true
  35879. },
  35880. ]
  35881. ))
  35882. characterMakers.push(() => makeCharacter(
  35883. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35884. {
  35885. front: {
  35886. height: math.unit(18 + 4/12, "feet"),
  35887. weight: math.unit(1500, "kg"),
  35888. name: "Front",
  35889. image: {
  35890. source: "./media/characters/solas-sharpsman/front.svg",
  35891. extra: 1698/1589,
  35892. bottom: 0/1698
  35893. }
  35894. },
  35895. },
  35896. [
  35897. {
  35898. name: "Normal",
  35899. height: math.unit(18 + 4/12, "feet"),
  35900. default: true
  35901. },
  35902. ]
  35903. ))
  35904. characterMakers.push(() => makeCharacter(
  35905. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35906. {
  35907. front: {
  35908. height: math.unit(5 + 5/12, "feet"),
  35909. weight: math.unit(180, "lb"),
  35910. name: "Front",
  35911. image: {
  35912. source: "./media/characters/october/front.svg",
  35913. extra: 1800/1650,
  35914. bottom: 0/1800
  35915. }
  35916. },
  35917. frontNsfw: {
  35918. height: math.unit(5 + 5/12, "feet"),
  35919. weight: math.unit(180, "lb"),
  35920. name: "Front (NSFW)",
  35921. image: {
  35922. source: "./media/characters/october/front-nsfw.svg",
  35923. extra: 1392/1307,
  35924. bottom: 42/1434
  35925. }
  35926. },
  35927. },
  35928. [
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(5 + 5/12, "feet"),
  35932. default: true
  35933. },
  35934. ]
  35935. ))
  35936. characterMakers.push(() => makeCharacter(
  35937. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35938. {
  35939. front: {
  35940. height: math.unit(8 + 6/12, "feet"),
  35941. name: "Front",
  35942. image: {
  35943. source: "./media/characters/essynkardi/front.svg",
  35944. extra: 1914/1846,
  35945. bottom: 22/1936
  35946. }
  35947. },
  35948. },
  35949. [
  35950. {
  35951. name: "Normal",
  35952. height: math.unit(8 + 6/12, "feet"),
  35953. default: true
  35954. },
  35955. ]
  35956. ))
  35957. characterMakers.push(() => makeCharacter(
  35958. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35959. {
  35960. front: {
  35961. height: math.unit(6 + 6/12, "feet"),
  35962. weight: math.unit(7, "lb"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/icky/front.svg",
  35966. extra: 813/782,
  35967. bottom: 66/879
  35968. }
  35969. },
  35970. back: {
  35971. height: math.unit(6 + 6/12, "feet"),
  35972. weight: math.unit(7, "lb"),
  35973. name: "Back",
  35974. image: {
  35975. source: "./media/characters/icky/back.svg",
  35976. extra: 754/735,
  35977. bottom: 56/810
  35978. }
  35979. },
  35980. },
  35981. [
  35982. {
  35983. name: "Normal",
  35984. height: math.unit(6 + 6/12, "feet"),
  35985. default: true
  35986. },
  35987. ]
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(15, "feet"),
  35994. name: "Front",
  35995. image: {
  35996. source: "./media/characters/rojas/front.svg",
  35997. extra: 1462/1408,
  35998. bottom: 95/1557
  35999. }
  36000. },
  36001. back: {
  36002. height: math.unit(15, "feet"),
  36003. name: "Back",
  36004. image: {
  36005. source: "./media/characters/rojas/back.svg",
  36006. extra: 1023/954,
  36007. bottom: 28/1051
  36008. }
  36009. },
  36010. },
  36011. [
  36012. {
  36013. name: "Normal",
  36014. height: math.unit(15, "feet"),
  36015. default: true
  36016. },
  36017. ]
  36018. ))
  36019. characterMakers.push(() => makeCharacter(
  36020. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36021. {
  36022. frontHuman: {
  36023. height: math.unit(5 + 7/12, "feet"),
  36024. name: "Front (Human)",
  36025. image: {
  36026. source: "./media/characters/alek-dryagan/front-human.svg",
  36027. extra: 1687/1667,
  36028. bottom: 69/1756
  36029. }
  36030. },
  36031. backHuman: {
  36032. height: math.unit(5 + 7/12, "feet"),
  36033. name: "Back (Human)",
  36034. image: {
  36035. source: "./media/characters/alek-dryagan/back-human.svg",
  36036. extra: 1670/1649,
  36037. bottom: 65/1735
  36038. }
  36039. },
  36040. frontDemi: {
  36041. height: math.unit(65, "feet"),
  36042. name: "Front (Demi)",
  36043. image: {
  36044. source: "./media/characters/alek-dryagan/front-demi.svg",
  36045. extra: 1669/1642,
  36046. bottom: 49/1718
  36047. }
  36048. },
  36049. backDemi: {
  36050. height: math.unit(65, "feet"),
  36051. name: "Back (Demi)",
  36052. image: {
  36053. source: "./media/characters/alek-dryagan/back-demi.svg",
  36054. extra: 1658/1637,
  36055. bottom: 40/1698
  36056. }
  36057. },
  36058. mawHuman: {
  36059. height: math.unit(0.3, "feet"),
  36060. name: "Maw (Human)",
  36061. image: {
  36062. source: "./media/characters/alek-dryagan/maw-human.svg"
  36063. }
  36064. },
  36065. mawDemi: {
  36066. height: math.unit(3.8, "feet"),
  36067. name: "Maw (Demi)",
  36068. image: {
  36069. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36070. }
  36071. },
  36072. },
  36073. [
  36074. {
  36075. name: "Normal",
  36076. height: math.unit(5 + 7/12, "feet"),
  36077. default: true
  36078. },
  36079. ]
  36080. ))
  36081. characterMakers.push(() => makeCharacter(
  36082. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36083. {
  36084. frontHuman: {
  36085. height: math.unit(5 + 2/12, "feet"),
  36086. name: "Front (Human)",
  36087. image: {
  36088. source: "./media/characters/gen/front-human.svg",
  36089. extra: 1627/1538,
  36090. bottom: 71/1698
  36091. }
  36092. },
  36093. backHuman: {
  36094. height: math.unit(5 + 2/12, "feet"),
  36095. name: "Back (Human)",
  36096. image: {
  36097. source: "./media/characters/gen/back-human.svg",
  36098. extra: 1638/1548,
  36099. bottom: 69/1707
  36100. }
  36101. },
  36102. frontDemi: {
  36103. height: math.unit(5 + 2/12, "feet"),
  36104. name: "Front (Demi)",
  36105. image: {
  36106. source: "./media/characters/gen/front-demi.svg",
  36107. extra: 1627/1538,
  36108. bottom: 71/1698
  36109. }
  36110. },
  36111. backDemi: {
  36112. height: math.unit(5 + 2/12, "feet"),
  36113. name: "Back (Demi)",
  36114. image: {
  36115. source: "./media/characters/gen/back-demi.svg",
  36116. extra: 1638/1548,
  36117. bottom: 69/1707
  36118. }
  36119. },
  36120. },
  36121. [
  36122. {
  36123. name: "Normal",
  36124. height: math.unit(5 + 2/12, "feet"),
  36125. default: true
  36126. },
  36127. ]
  36128. ))
  36129. characterMakers.push(() => makeCharacter(
  36130. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36131. {
  36132. frontImp: {
  36133. height: math.unit(1 + 11/12, "feet"),
  36134. name: "Front (Imp)",
  36135. image: {
  36136. source: "./media/characters/max-kobold/front-imp.svg",
  36137. extra: 1238/1134,
  36138. bottom: 81/1319
  36139. }
  36140. },
  36141. backImp: {
  36142. height: math.unit(1 + 11/12, "feet"),
  36143. name: "Back (Imp)",
  36144. image: {
  36145. source: "./media/characters/max-kobold/back-imp.svg",
  36146. extra: 1334/1175,
  36147. bottom: 34/1368
  36148. }
  36149. },
  36150. frontDemi: {
  36151. height: math.unit(5 + 9/12, "feet"),
  36152. name: "Front (Demi)",
  36153. image: {
  36154. source: "./media/characters/max-kobold/front-demi.svg",
  36155. extra: 1715/1685,
  36156. bottom: 54/1769
  36157. }
  36158. },
  36159. backDemi: {
  36160. height: math.unit(5 + 9/12, "feet"),
  36161. name: "Back (Demi)",
  36162. image: {
  36163. source: "./media/characters/max-kobold/back-demi.svg",
  36164. extra: 1752/1729,
  36165. bottom: 41/1793
  36166. }
  36167. },
  36168. handImp: {
  36169. height: math.unit(0.45, "feet"),
  36170. name: "Hand (Imp)",
  36171. image: {
  36172. source: "./media/characters/max-kobold/hand.svg"
  36173. }
  36174. },
  36175. pawImp: {
  36176. height: math.unit(0.46, "feet"),
  36177. name: "Paw (Imp)",
  36178. image: {
  36179. source: "./media/characters/max-kobold/paw.svg"
  36180. }
  36181. },
  36182. handDemi: {
  36183. height: math.unit(0.80, "feet"),
  36184. name: "Hand (Demi)",
  36185. image: {
  36186. source: "./media/characters/max-kobold/hand.svg"
  36187. }
  36188. },
  36189. pawDemi: {
  36190. height: math.unit(1.1, "feet"),
  36191. name: "Paw (Demi)",
  36192. image: {
  36193. source: "./media/characters/max-kobold/paw.svg"
  36194. }
  36195. },
  36196. headImp: {
  36197. height: math.unit(1.33, "feet"),
  36198. name: "Head (Imp)",
  36199. image: {
  36200. source: "./media/characters/max-kobold/head-imp.svg"
  36201. }
  36202. },
  36203. mawImp: {
  36204. height: math.unit(0.75, "feet"),
  36205. name: "Maw (Imp)",
  36206. image: {
  36207. source: "./media/characters/max-kobold/maw-imp.svg"
  36208. }
  36209. },
  36210. mawDemi: {
  36211. height: math.unit(0.42, "feet"),
  36212. name: "Maw (Demi)",
  36213. image: {
  36214. source: "./media/characters/max-kobold/maw-demi.svg"
  36215. }
  36216. },
  36217. },
  36218. [
  36219. {
  36220. name: "Normal",
  36221. height: math.unit(1 + 11/12, "feet"),
  36222. default: true
  36223. },
  36224. ]
  36225. ))
  36226. characterMakers.push(() => makeCharacter(
  36227. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36228. {
  36229. front: {
  36230. height: math.unit(7 + 5/12, "feet"),
  36231. name: "Front",
  36232. image: {
  36233. source: "./media/characters/carbon/front.svg",
  36234. extra: 1754/1689,
  36235. bottom: 65/1819
  36236. }
  36237. },
  36238. back: {
  36239. height: math.unit(7 + 5/12, "feet"),
  36240. name: "Back",
  36241. image: {
  36242. source: "./media/characters/carbon/back.svg",
  36243. extra: 1762/1695,
  36244. bottom: 24/1786
  36245. }
  36246. },
  36247. frontGigantamax: {
  36248. height: math.unit(150, "feet"),
  36249. name: "Front (Gigantamax)",
  36250. image: {
  36251. source: "./media/characters/carbon/front-gigantamax.svg",
  36252. extra: 1826/1669,
  36253. bottom: 59/1885
  36254. }
  36255. },
  36256. backGigantamax: {
  36257. height: math.unit(150, "feet"),
  36258. name: "Back (Gigantamax)",
  36259. image: {
  36260. source: "./media/characters/carbon/back-gigantamax.svg",
  36261. extra: 1796/1653,
  36262. bottom: 53/1849
  36263. }
  36264. },
  36265. maw: {
  36266. height: math.unit(0.48, "feet"),
  36267. name: "Maw",
  36268. image: {
  36269. source: "./media/characters/carbon/maw.svg"
  36270. }
  36271. },
  36272. mawGigantamax: {
  36273. height: math.unit(7.5, "feet"),
  36274. name: "Maw (Gigantamax)",
  36275. image: {
  36276. source: "./media/characters/carbon/maw-gigantamax.svg"
  36277. }
  36278. },
  36279. },
  36280. [
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(7 + 5/12, "feet"),
  36284. default: true
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36290. {
  36291. front: {
  36292. height: math.unit(6, "feet"),
  36293. name: "Front",
  36294. image: {
  36295. source: "./media/characters/maverick/front.svg",
  36296. extra: 1672/1661,
  36297. bottom: 85/1757
  36298. }
  36299. },
  36300. back: {
  36301. height: math.unit(6, "feet"),
  36302. name: "Back",
  36303. image: {
  36304. source: "./media/characters/maverick/back.svg",
  36305. extra: 1642/1631,
  36306. bottom: 38/1680
  36307. }
  36308. },
  36309. },
  36310. [
  36311. {
  36312. name: "Normal",
  36313. height: math.unit(6, "feet"),
  36314. default: true
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36320. {
  36321. front: {
  36322. height: math.unit(15, "feet"),
  36323. weight: math.unit(615, "lb"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/grockle/front.svg",
  36327. extra: 1535/1427,
  36328. bottom: 56/1591
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Normal",
  36335. height: math.unit(15, "feet"),
  36336. default: true
  36337. },
  36338. {
  36339. name: "Large",
  36340. height: math.unit(150, "feet")
  36341. },
  36342. {
  36343. name: "Macro",
  36344. height: math.unit(1876, "feet")
  36345. },
  36346. {
  36347. name: "Mega Macro",
  36348. height: math.unit(121940, "feet")
  36349. },
  36350. {
  36351. name: "Giga Macro",
  36352. height: math.unit(750, "km")
  36353. },
  36354. {
  36355. name: "Tera Macro",
  36356. height: math.unit(750000, "km")
  36357. },
  36358. {
  36359. name: "Galactic",
  36360. height: math.unit(1.4e5, "km")
  36361. },
  36362. {
  36363. name: "Godlike",
  36364. height: math.unit(9.8e280, "galaxies")
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36370. {
  36371. front: {
  36372. height: math.unit(11, "meters"),
  36373. weight: math.unit(20, "tonnes"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/alistair/front.svg",
  36377. extra: 1265/1009,
  36378. bottom: 93/1358
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Normal",
  36385. height: math.unit(11, "meters"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36392. {
  36393. front: {
  36394. height: math.unit(5 + 8/12, "feet"),
  36395. name: "Front",
  36396. image: {
  36397. source: "./media/characters/haruka/front.svg",
  36398. extra: 2012/1952,
  36399. bottom: 0/2012
  36400. }
  36401. },
  36402. },
  36403. [
  36404. {
  36405. name: "Normal",
  36406. height: math.unit(5 + 8/12, "feet"),
  36407. default: true
  36408. },
  36409. ]
  36410. ))
  36411. characterMakers.push(() => makeCharacter(
  36412. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36413. {
  36414. back: {
  36415. height: math.unit(9, "feet"),
  36416. name: "Back",
  36417. image: {
  36418. source: "./media/characters/vivian-sylveon/back.svg",
  36419. extra: 1853/1714,
  36420. bottom: 0/1853
  36421. }
  36422. },
  36423. },
  36424. [
  36425. {
  36426. name: "Normal",
  36427. height: math.unit(9, "feet"),
  36428. default: true
  36429. },
  36430. {
  36431. name: "Macro",
  36432. height: math.unit(500, "feet")
  36433. },
  36434. {
  36435. name: "Megamacro",
  36436. height: math.unit(600, "miles")
  36437. },
  36438. {
  36439. name: "Gigamacro",
  36440. height: math.unit(30000, "miles")
  36441. },
  36442. ]
  36443. ))
  36444. characterMakers.push(() => makeCharacter(
  36445. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36446. {
  36447. anthro: {
  36448. height: math.unit(5 + 10/12, "feet"),
  36449. weight: math.unit(100, "lb"),
  36450. name: "Anthro",
  36451. image: {
  36452. source: "./media/characters/daiki/anthro.svg",
  36453. extra: 1115/1027,
  36454. bottom: 69/1184
  36455. }
  36456. },
  36457. feral: {
  36458. height: math.unit(200, "feet"),
  36459. name: "Feral",
  36460. image: {
  36461. source: "./media/characters/daiki/feral.svg",
  36462. extra: 1256/313,
  36463. bottom: 39/1295
  36464. }
  36465. },
  36466. feralHead: {
  36467. height: math.unit(171, "feet"),
  36468. name: "Feral Head",
  36469. image: {
  36470. source: "./media/characters/daiki/feral-head.svg"
  36471. }
  36472. },
  36473. manaDragon: {
  36474. height: math.unit(170, "meters"),
  36475. name: "Mana-dragon",
  36476. image: {
  36477. source: "./media/characters/daiki/mana-dragon.svg",
  36478. extra: 763/420,
  36479. bottom: 97/860
  36480. }
  36481. },
  36482. },
  36483. [
  36484. {
  36485. name: "Normal",
  36486. height: math.unit(5 + 10/12, "feet"),
  36487. default: true
  36488. },
  36489. ]
  36490. ))
  36491. characterMakers.push(() => makeCharacter(
  36492. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36493. {
  36494. fullyEquippedFront: {
  36495. height: math.unit(3 + 1/12, "feet"),
  36496. weight: math.unit(24, "lb"),
  36497. name: "Fully Equipped (Front)",
  36498. image: {
  36499. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36500. extra: 687/605,
  36501. bottom: 18/705
  36502. }
  36503. },
  36504. fullyEquippedBack: {
  36505. height: math.unit(3 + 1/12, "feet"),
  36506. weight: math.unit(24, "lb"),
  36507. name: "Fully Equipped (Back)",
  36508. image: {
  36509. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36510. extra: 689/590,
  36511. bottom: 18/707
  36512. }
  36513. },
  36514. dailyWear: {
  36515. height: math.unit(3 + 1/12, "feet"),
  36516. weight: math.unit(24, "lb"),
  36517. name: "Daily Wear",
  36518. image: {
  36519. source: "./media/characters/tea-spot/daily-wear.svg",
  36520. extra: 701/620,
  36521. bottom: 21/722
  36522. }
  36523. },
  36524. maidWork: {
  36525. height: math.unit(3 + 1/12, "feet"),
  36526. weight: math.unit(24, "lb"),
  36527. name: "Maid Work",
  36528. image: {
  36529. source: "./media/characters/tea-spot/maid-work.svg",
  36530. extra: 693/609,
  36531. bottom: 15/708
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Normal",
  36538. height: math.unit(3 + 1/12, "feet"),
  36539. default: true
  36540. },
  36541. ]
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36545. {
  36546. front: {
  36547. height: math.unit(175, "cm"),
  36548. weight: math.unit(75, "kg"),
  36549. name: "Front",
  36550. image: {
  36551. source: "./media/characters/chee/front.svg",
  36552. extra: 1796/1740,
  36553. bottom: 40/1836
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Micro-Micro",
  36560. height: math.unit(1, "nm")
  36561. },
  36562. {
  36563. name: "Micro-erst",
  36564. height: math.unit(1, "micrometer")
  36565. },
  36566. {
  36567. name: "Micro-er",
  36568. height: math.unit(1, "cm")
  36569. },
  36570. {
  36571. name: "Normal",
  36572. height: math.unit(175, "cm"),
  36573. default: true
  36574. },
  36575. {
  36576. name: "Macro",
  36577. height: math.unit(100, "m")
  36578. },
  36579. {
  36580. name: "Macro-er",
  36581. height: math.unit(1, "km")
  36582. },
  36583. {
  36584. name: "Macro-erst",
  36585. height: math.unit(10, "km")
  36586. },
  36587. {
  36588. name: "Macro-Macro",
  36589. height: math.unit(100, "km")
  36590. },
  36591. ]
  36592. ))
  36593. characterMakers.push(() => makeCharacter(
  36594. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36595. {
  36596. front: {
  36597. height: math.unit(11 + 9/12, "feet"),
  36598. weight: math.unit(935, "lb"),
  36599. name: "Front",
  36600. image: {
  36601. source: "./media/characters/kingsley/front.svg",
  36602. extra: 1803/1674,
  36603. bottom: 127/1930
  36604. }
  36605. },
  36606. frontNude: {
  36607. height: math.unit(11 + 9/12, "feet"),
  36608. weight: math.unit(935, "lb"),
  36609. name: "Front (Nude)",
  36610. image: {
  36611. source: "./media/characters/kingsley/front-nude.svg",
  36612. extra: 1803/1674,
  36613. bottom: 127/1930
  36614. }
  36615. },
  36616. },
  36617. [
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(11 + 9/12, "feet"),
  36621. default: true
  36622. },
  36623. ]
  36624. ))
  36625. characterMakers.push(() => makeCharacter(
  36626. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36627. {
  36628. side: {
  36629. height: math.unit(9, "feet"),
  36630. name: "Side",
  36631. image: {
  36632. source: "./media/characters/rymel/side.svg",
  36633. extra: 792/469,
  36634. bottom: 121/913
  36635. }
  36636. },
  36637. maw: {
  36638. height: math.unit(2.4, "meters"),
  36639. name: "Maw",
  36640. image: {
  36641. source: "./media/characters/rymel/maw.svg"
  36642. }
  36643. },
  36644. },
  36645. [
  36646. {
  36647. name: "House Drake",
  36648. height: math.unit(2, "feet")
  36649. },
  36650. {
  36651. name: "Reduced",
  36652. height: math.unit(4.5, "feet")
  36653. },
  36654. {
  36655. name: "Normal",
  36656. height: math.unit(9, "feet"),
  36657. default: true
  36658. },
  36659. ]
  36660. ))
  36661. characterMakers.push(() => makeCharacter(
  36662. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36663. {
  36664. front: {
  36665. height: math.unit(1.74, "meters"),
  36666. weight: math.unit(55, "kg"),
  36667. name: "Front",
  36668. image: {
  36669. source: "./media/characters/rubus/front.svg",
  36670. extra: 1894/1742,
  36671. bottom: 44/1938
  36672. }
  36673. },
  36674. },
  36675. [
  36676. {
  36677. name: "Normal",
  36678. height: math.unit(1.74, "meters"),
  36679. default: true
  36680. },
  36681. ]
  36682. ))
  36683. characterMakers.push(() => makeCharacter(
  36684. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36685. {
  36686. front: {
  36687. height: math.unit(5 + 2/12, "feet"),
  36688. weight: math.unit(112, "lb"),
  36689. name: "Front",
  36690. image: {
  36691. source: "./media/characters/cassie-kingston/front.svg",
  36692. extra: 1438/1390,
  36693. bottom: 47/1485
  36694. }
  36695. },
  36696. },
  36697. [
  36698. {
  36699. name: "Normal",
  36700. height: math.unit(5 + 2/12, "feet"),
  36701. default: true
  36702. },
  36703. {
  36704. name: "Macro",
  36705. height: math.unit(128, "feet")
  36706. },
  36707. {
  36708. name: "Megamacro",
  36709. height: math.unit(2.56, "miles")
  36710. },
  36711. ]
  36712. ))
  36713. characterMakers.push(() => makeCharacter(
  36714. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36715. {
  36716. front: {
  36717. height: math.unit(7, "feet"),
  36718. name: "Front",
  36719. image: {
  36720. source: "./media/characters/fox/front.svg",
  36721. extra: 1798/1703,
  36722. bottom: 55/1853
  36723. }
  36724. },
  36725. back: {
  36726. height: math.unit(7, "feet"),
  36727. name: "Back",
  36728. image: {
  36729. source: "./media/characters/fox/back.svg",
  36730. extra: 1748/1649,
  36731. bottom: 32/1780
  36732. }
  36733. },
  36734. head: {
  36735. height: math.unit(1.95, "feet"),
  36736. name: "Head",
  36737. image: {
  36738. source: "./media/characters/fox/head.svg"
  36739. }
  36740. },
  36741. dick: {
  36742. height: math.unit(1.33, "feet"),
  36743. name: "Dick",
  36744. image: {
  36745. source: "./media/characters/fox/dick.svg"
  36746. }
  36747. },
  36748. foot: {
  36749. height: math.unit(1, "feet"),
  36750. name: "Foot",
  36751. image: {
  36752. source: "./media/characters/fox/foot.svg"
  36753. }
  36754. },
  36755. paw: {
  36756. height: math.unit(0.92, "feet"),
  36757. name: "Paw",
  36758. image: {
  36759. source: "./media/characters/fox/paw.svg"
  36760. }
  36761. },
  36762. },
  36763. [
  36764. {
  36765. name: "Small",
  36766. height: math.unit(3, "inches")
  36767. },
  36768. {
  36769. name: "\"Realistic\"",
  36770. height: math.unit(7, "feet")
  36771. },
  36772. {
  36773. name: "Normal",
  36774. height: math.unit(150, "feet"),
  36775. default: true
  36776. },
  36777. {
  36778. name: "BIG",
  36779. height: math.unit(1200, "feet")
  36780. },
  36781. {
  36782. name: "👀",
  36783. height: math.unit(5, "miles")
  36784. },
  36785. {
  36786. name: "👀👀👀",
  36787. height: math.unit(64, "miles")
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(625, "feet"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/asonja-rossa/front.svg",
  36799. extra: 1833/1686,
  36800. bottom: 24/1857
  36801. }
  36802. },
  36803. back: {
  36804. height: math.unit(625, "feet"),
  36805. name: "Back",
  36806. image: {
  36807. source: "./media/characters/asonja-rossa/back.svg",
  36808. extra: 1852/1753,
  36809. bottom: 26/1878
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Macro",
  36816. height: math.unit(625, "feet"),
  36817. default: true
  36818. },
  36819. ]
  36820. ))
  36821. characterMakers.push(() => makeCharacter(
  36822. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36823. {
  36824. side: {
  36825. height: math.unit(6, "feet"),
  36826. weight: math.unit(150, "lb"),
  36827. name: "Side",
  36828. image: {
  36829. source: "./media/characters/rezukii/side.svg",
  36830. extra: 979/542,
  36831. bottom: 87/1066
  36832. }
  36833. },
  36834. },
  36835. [
  36836. {
  36837. name: "Tiny",
  36838. height: math.unit(2, "feet")
  36839. },
  36840. {
  36841. name: "Smol",
  36842. height: math.unit(4, "feet")
  36843. },
  36844. {
  36845. name: "Normal",
  36846. height: math.unit(8, "feet"),
  36847. default: true
  36848. },
  36849. {
  36850. name: "Big",
  36851. height: math.unit(12, "feet")
  36852. },
  36853. {
  36854. name: "Macro",
  36855. height: math.unit(30, "feet")
  36856. },
  36857. ]
  36858. ))
  36859. characterMakers.push(() => makeCharacter(
  36860. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36861. {
  36862. front: {
  36863. height: math.unit(14, "feet"),
  36864. weight: math.unit(9.5, "tonnes"),
  36865. name: "Front",
  36866. image: {
  36867. source: "./media/characters/dawnheart/front.svg",
  36868. extra: 2792/2675,
  36869. bottom: 64/2856
  36870. }
  36871. },
  36872. },
  36873. [
  36874. {
  36875. name: "Normal",
  36876. height: math.unit(14, "feet"),
  36877. default: true
  36878. },
  36879. ]
  36880. ))
  36881. characterMakers.push(() => makeCharacter(
  36882. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36883. {
  36884. front: {
  36885. height: math.unit(1.7, "m"),
  36886. name: "Front",
  36887. image: {
  36888. source: "./media/characters/gladi/front.svg",
  36889. extra: 1460/1362,
  36890. bottom: 19/1479
  36891. }
  36892. },
  36893. back: {
  36894. height: math.unit(1.7, "m"),
  36895. name: "Back",
  36896. image: {
  36897. source: "./media/characters/gladi/back.svg",
  36898. extra: 1459/1357,
  36899. bottom: 12/1471
  36900. }
  36901. },
  36902. feral: {
  36903. height: math.unit(2.05, "m"),
  36904. name: "Feral",
  36905. image: {
  36906. source: "./media/characters/gladi/feral.svg",
  36907. extra: 821/557,
  36908. bottom: 91/912
  36909. }
  36910. },
  36911. },
  36912. [
  36913. {
  36914. name: "Shortest",
  36915. height: math.unit(70, "cm")
  36916. },
  36917. {
  36918. name: "Normal",
  36919. height: math.unit(1.7, "m")
  36920. },
  36921. {
  36922. name: "Macro",
  36923. height: math.unit(10, "m"),
  36924. default: true
  36925. },
  36926. {
  36927. name: "Tallest",
  36928. height: math.unit(200, "m")
  36929. },
  36930. ]
  36931. ))
  36932. characterMakers.push(() => makeCharacter(
  36933. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36934. {
  36935. front: {
  36936. height: math.unit(5 + 7/12, "feet"),
  36937. weight: math.unit(92, "kg"),
  36938. name: "Front",
  36939. image: {
  36940. source: "./media/characters/erdno/front.svg",
  36941. extra: 1954/1889,
  36942. bottom: 22/1976
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Normal",
  36949. height: math.unit(5 + 7/12, "feet"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36956. {
  36957. front: {
  36958. height: math.unit(5 + 10/12, "feet"),
  36959. weight: math.unit(150, "lb"),
  36960. name: "Front",
  36961. image: {
  36962. source: "./media/characters/jamie/front.svg",
  36963. extra: 1908/1768,
  36964. bottom: 19/1927
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Minimum",
  36971. height: math.unit(2, "cm")
  36972. },
  36973. {
  36974. name: "Micro",
  36975. height: math.unit(3, "inches")
  36976. },
  36977. {
  36978. name: "Normal",
  36979. height: math.unit(5 + 10/12, "feet"),
  36980. default: true
  36981. },
  36982. {
  36983. name: "Macro",
  36984. height: math.unit(150, "feet")
  36985. },
  36986. {
  36987. name: "Megamacro",
  36988. height: math.unit(10000, "m")
  36989. },
  36990. ]
  36991. ))
  36992. characterMakers.push(() => makeCharacter(
  36993. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36994. {
  36995. front: {
  36996. height: math.unit(2, "meters"),
  36997. weight: math.unit(100, "kg"),
  36998. name: "Front",
  36999. image: {
  37000. source: "./media/characters/shiron/front.svg",
  37001. extra: 2103/1985,
  37002. bottom: 98/2201
  37003. }
  37004. },
  37005. back: {
  37006. height: math.unit(2, "meters"),
  37007. weight: math.unit(100, "kg"),
  37008. name: "Back",
  37009. image: {
  37010. source: "./media/characters/shiron/back.svg",
  37011. extra: 2110/2015,
  37012. bottom: 89/2199
  37013. }
  37014. },
  37015. hand: {
  37016. height: math.unit(0.96, "feet"),
  37017. name: "Hand",
  37018. image: {
  37019. source: "./media/characters/shiron/hand.svg"
  37020. }
  37021. },
  37022. foot: {
  37023. height: math.unit(1.464, "feet"),
  37024. name: "Foot",
  37025. image: {
  37026. source: "./media/characters/shiron/foot.svg"
  37027. }
  37028. },
  37029. },
  37030. [
  37031. {
  37032. name: "Normal",
  37033. height: math.unit(2, "meters")
  37034. },
  37035. {
  37036. name: "Macro",
  37037. height: math.unit(500, "meters"),
  37038. default: true
  37039. },
  37040. {
  37041. name: "Megamacro",
  37042. height: math.unit(20, "km")
  37043. },
  37044. ]
  37045. ))
  37046. characterMakers.push(() => makeCharacter(
  37047. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37048. {
  37049. front: {
  37050. height: math.unit(6, "feet"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/sam/front.svg",
  37054. extra: 849/826,
  37055. bottom: 19/868
  37056. }
  37057. },
  37058. },
  37059. [
  37060. {
  37061. name: "Normal",
  37062. height: math.unit(6, "feet"),
  37063. default: true
  37064. },
  37065. ]
  37066. ))
  37067. characterMakers.push(() => makeCharacter(
  37068. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37069. {
  37070. front: {
  37071. height: math.unit(8 + 4/12, "feet"),
  37072. weight: math.unit(122, "kg"),
  37073. name: "Front",
  37074. image: {
  37075. source: "./media/characters/namori-kurogawa/front.svg",
  37076. extra: 1894/1576,
  37077. bottom: 34/1928
  37078. }
  37079. },
  37080. },
  37081. [
  37082. {
  37083. name: "Normal",
  37084. height: math.unit(8 + 4/12, "feet"),
  37085. default: true
  37086. },
  37087. ]
  37088. ))
  37089. characterMakers.push(() => makeCharacter(
  37090. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37091. {
  37092. front: {
  37093. height: math.unit(9, "feet"),
  37094. weight: math.unit(621, "lb"),
  37095. name: "Front",
  37096. image: {
  37097. source: "./media/characters/unmru/front.svg",
  37098. extra: 1853/1747,
  37099. bottom: 73/1926
  37100. }
  37101. },
  37102. side: {
  37103. height: math.unit(9, "feet"),
  37104. weight: math.unit(621, "lb"),
  37105. name: "Side",
  37106. image: {
  37107. source: "./media/characters/unmru/side.svg",
  37108. extra: 1781/1671,
  37109. bottom: 127/1908
  37110. }
  37111. },
  37112. back: {
  37113. height: math.unit(9, "feet"),
  37114. weight: math.unit(621, "lb"),
  37115. name: "Back",
  37116. image: {
  37117. source: "./media/characters/unmru/back.svg",
  37118. extra: 1894/1765,
  37119. bottom: 75/1969
  37120. }
  37121. },
  37122. dick: {
  37123. height: math.unit(3, "feet"),
  37124. weight: math.unit(35, "lb"),
  37125. name: "Dick",
  37126. image: {
  37127. source: "./media/characters/unmru/dick.svg"
  37128. }
  37129. },
  37130. },
  37131. [
  37132. {
  37133. name: "Normal",
  37134. height: math.unit(9, "feet")
  37135. },
  37136. {
  37137. name: "Natural",
  37138. height: math.unit(27, "feet"),
  37139. default: true
  37140. },
  37141. {
  37142. name: "Giant",
  37143. height: math.unit(90, "feet")
  37144. },
  37145. {
  37146. name: "Kaiju",
  37147. height: math.unit(270, "feet")
  37148. },
  37149. {
  37150. name: "Macro",
  37151. height: math.unit(900, "feet")
  37152. },
  37153. {
  37154. name: "Macro+",
  37155. height: math.unit(2700, "feet")
  37156. },
  37157. {
  37158. name: "Megamacro",
  37159. height: math.unit(9000, "feet")
  37160. },
  37161. {
  37162. name: "City-Crushing",
  37163. height: math.unit(27000, "feet")
  37164. },
  37165. {
  37166. name: "Mountain-Mashing",
  37167. height: math.unit(90000, "feet")
  37168. },
  37169. {
  37170. name: "Earth-Eclipsing",
  37171. height: math.unit(2.7e8, "feet")
  37172. },
  37173. {
  37174. name: "Sol-Swallowing",
  37175. height: math.unit(9e10, "feet")
  37176. },
  37177. {
  37178. name: "Majoris-Munching",
  37179. height: math.unit(2.7e13, "feet")
  37180. },
  37181. ]
  37182. ))
  37183. characterMakers.push(() => makeCharacter(
  37184. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37185. {
  37186. front: {
  37187. height: math.unit(1, "inch"),
  37188. name: "Front",
  37189. image: {
  37190. source: "./media/characters/squeaks-mouse/front.svg",
  37191. extra: 352/308,
  37192. bottom: 25/377
  37193. }
  37194. },
  37195. },
  37196. [
  37197. {
  37198. name: "Micro",
  37199. height: math.unit(1, "inch"),
  37200. default: true
  37201. },
  37202. ]
  37203. ))
  37204. characterMakers.push(() => makeCharacter(
  37205. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37206. {
  37207. side: {
  37208. height: math.unit(35, "feet"),
  37209. name: "Side",
  37210. image: {
  37211. source: "./media/characters/sayko/side.svg",
  37212. extra: 1697/1021,
  37213. bottom: 82/1779
  37214. }
  37215. },
  37216. head: {
  37217. height: math.unit(16, "feet"),
  37218. name: "Head",
  37219. image: {
  37220. source: "./media/characters/sayko/head.svg"
  37221. }
  37222. },
  37223. forepaw: {
  37224. height: math.unit(7.85, "feet"),
  37225. name: "Forepaw",
  37226. image: {
  37227. source: "./media/characters/sayko/forepaw.svg"
  37228. }
  37229. },
  37230. hindpaw: {
  37231. height: math.unit(8.8, "feet"),
  37232. name: "Hindpaw",
  37233. image: {
  37234. source: "./media/characters/sayko/hindpaw.svg"
  37235. }
  37236. },
  37237. },
  37238. [
  37239. {
  37240. name: "Normal",
  37241. height: math.unit(35, "feet"),
  37242. default: true
  37243. },
  37244. {
  37245. name: "Colossus",
  37246. height: math.unit(100, "meters")
  37247. },
  37248. {
  37249. name: "\"Small\" Deity",
  37250. height: math.unit(1, "km")
  37251. },
  37252. {
  37253. name: "\"Large\" Deity",
  37254. height: math.unit(15, "km")
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37260. {
  37261. front: {
  37262. height: math.unit(6, "feet"),
  37263. weight: math.unit(250, "lb"),
  37264. name: "Front",
  37265. image: {
  37266. source: "./media/characters/mukiro/front.svg",
  37267. extra: 1368/1310,
  37268. bottom: 34/1402
  37269. }
  37270. },
  37271. },
  37272. [
  37273. {
  37274. name: "Normal",
  37275. height: math.unit(6, "feet"),
  37276. default: true
  37277. },
  37278. ]
  37279. ))
  37280. characterMakers.push(() => makeCharacter(
  37281. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37282. {
  37283. front: {
  37284. height: math.unit(12 + 4/12, "feet"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37288. extra: 1346/1311,
  37289. bottom: 65/1411
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Base",
  37296. height: math.unit(12 + 4/12, "feet"),
  37297. default: true
  37298. },
  37299. {
  37300. name: "Macro",
  37301. height: math.unit(150, "feet")
  37302. },
  37303. {
  37304. name: "Mega",
  37305. height: math.unit(2, "miles")
  37306. },
  37307. {
  37308. name: "Demi God",
  37309. height: math.unit(4, "AU")
  37310. },
  37311. {
  37312. name: "God Size",
  37313. height: math.unit(1, "universe")
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37319. {
  37320. front: {
  37321. height: math.unit(3 + 3/12, "feet"),
  37322. weight: math.unit(88, "lb"),
  37323. name: "Front",
  37324. image: {
  37325. source: "./media/characters/trey/front.svg",
  37326. extra: 1815/1509,
  37327. bottom: 60/1875
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(3 + 3/12, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(4, "meters"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/adelonda/front.svg",
  37347. extra: 1077/982,
  37348. bottom: 39/1116
  37349. }
  37350. },
  37351. back: {
  37352. height: math.unit(4, "meters"),
  37353. name: "Back",
  37354. image: {
  37355. source: "./media/characters/adelonda/back.svg",
  37356. extra: 1105/1003,
  37357. bottom: 25/1130
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Normal",
  37364. height: math.unit(4, "meters"),
  37365. default: true
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(8 + 4/12, "feet"),
  37374. weight: math.unit(670, "lb"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/acadiel/front.svg",
  37378. extra: 1901/1595,
  37379. bottom: 142/2043
  37380. }
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "Normal",
  37386. height: math.unit(8 + 4/12, "feet"),
  37387. default: true
  37388. },
  37389. {
  37390. name: "Macro",
  37391. height: math.unit(200, "feet")
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(6 + 2/12, "feet"),
  37400. weight: math.unit(185, "lb"),
  37401. name: "Front",
  37402. image: {
  37403. source: "./media/characters/kayne-ein/front.svg",
  37404. extra: 1780/1560,
  37405. bottom: 81/1861
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(6 + 2/12, "feet"),
  37413. default: true
  37414. },
  37415. {
  37416. name: "Transformation Stage",
  37417. height: math.unit(15, "feet")
  37418. },
  37419. {
  37420. name: "Macro",
  37421. height: math.unit(150, "feet")
  37422. },
  37423. {
  37424. name: "Earth's Shadow",
  37425. height: math.unit(6200, "miles")
  37426. },
  37427. {
  37428. name: "Universal Demon",
  37429. height: math.unit(28e9, "parsecs")
  37430. },
  37431. {
  37432. name: "Multiverse God",
  37433. height: math.unit(3, "multiverses")
  37434. },
  37435. ]
  37436. ))
  37437. characterMakers.push(() => makeCharacter(
  37438. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37439. {
  37440. front: {
  37441. height: math.unit(5 + 5/12, "feet"),
  37442. name: "Front",
  37443. image: {
  37444. source: "./media/characters/fawn/front.svg",
  37445. extra: 1873/1731,
  37446. bottom: 95/1968
  37447. }
  37448. },
  37449. back: {
  37450. height: math.unit(5 + 5/12, "feet"),
  37451. name: "Back",
  37452. image: {
  37453. source: "./media/characters/fawn/back.svg",
  37454. extra: 1813/1700,
  37455. bottom: 14/1827
  37456. }
  37457. },
  37458. hoof: {
  37459. height: math.unit(1.45, "feet"),
  37460. name: "Hoof",
  37461. image: {
  37462. source: "./media/characters/fawn/hoof.svg"
  37463. }
  37464. },
  37465. },
  37466. [
  37467. {
  37468. name: "Normal",
  37469. height: math.unit(5 + 5/12, "feet"),
  37470. default: true
  37471. },
  37472. ]
  37473. ))
  37474. characterMakers.push(() => makeCharacter(
  37475. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37476. {
  37477. front: {
  37478. height: math.unit(2 + 5/12, "feet"),
  37479. name: "Front",
  37480. image: {
  37481. source: "./media/characters/orion/front.svg",
  37482. extra: 1366/1304,
  37483. bottom: 43/1409
  37484. }
  37485. },
  37486. paw: {
  37487. height: math.unit(0.52, "feet"),
  37488. name: "Paw",
  37489. image: {
  37490. source: "./media/characters/orion/paw.svg"
  37491. }
  37492. },
  37493. },
  37494. [
  37495. {
  37496. name: "Normal",
  37497. height: math.unit(2 + 5/12, "feet"),
  37498. default: true
  37499. },
  37500. ]
  37501. ))
  37502. characterMakers.push(() => makeCharacter(
  37503. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37504. {
  37505. front: {
  37506. height: math.unit(5 + 10/12, "feet"),
  37507. name: "Front",
  37508. image: {
  37509. source: "./media/characters/vera/front.svg",
  37510. extra: 1680/1575,
  37511. bottom: 49/1729
  37512. }
  37513. },
  37514. back: {
  37515. height: math.unit(5 + 10/12, "feet"),
  37516. name: "Back",
  37517. image: {
  37518. source: "./media/characters/vera/back.svg",
  37519. extra: 1700/1588,
  37520. bottom: 18/1718
  37521. }
  37522. },
  37523. arcanine: {
  37524. height: math.unit(6 + 8/12, "feet"),
  37525. name: "Arcanine",
  37526. image: {
  37527. source: "./media/characters/vera/arcanine.svg",
  37528. extra: 1590/1511,
  37529. bottom: 71/1661
  37530. }
  37531. },
  37532. maw: {
  37533. height: math.unit(0.82, "feet"),
  37534. name: "Maw",
  37535. image: {
  37536. source: "./media/characters/vera/maw.svg"
  37537. }
  37538. },
  37539. mawArcanine: {
  37540. height: math.unit(0.97, "feet"),
  37541. name: "Maw (Arcanine)",
  37542. image: {
  37543. source: "./media/characters/vera/maw-arcanine.svg"
  37544. }
  37545. },
  37546. paw: {
  37547. height: math.unit(0.75, "feet"),
  37548. name: "Paw",
  37549. image: {
  37550. source: "./media/characters/vera/paw.svg"
  37551. }
  37552. },
  37553. pawprint: {
  37554. height: math.unit(0.52, "feet"),
  37555. name: "Pawprint",
  37556. image: {
  37557. source: "./media/characters/vera/pawprint.svg"
  37558. }
  37559. },
  37560. },
  37561. [
  37562. {
  37563. name: "Normal",
  37564. height: math.unit(5 + 10/12, "feet"),
  37565. default: true
  37566. },
  37567. {
  37568. name: "Macro",
  37569. height: math.unit(75, "feet")
  37570. },
  37571. ]
  37572. ))
  37573. characterMakers.push(() => makeCharacter(
  37574. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37575. {
  37576. front: {
  37577. height: math.unit(4, "feet"),
  37578. weight: math.unit(40, "lb"),
  37579. name: "Front",
  37580. image: {
  37581. source: "./media/characters/orvan-rabbit/front.svg",
  37582. extra: 1896/1642,
  37583. bottom: 29/1925
  37584. }
  37585. },
  37586. },
  37587. [
  37588. {
  37589. name: "Normal",
  37590. height: math.unit(4, "feet"),
  37591. default: true
  37592. },
  37593. ]
  37594. ))
  37595. characterMakers.push(() => makeCharacter(
  37596. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37597. {
  37598. front: {
  37599. height: math.unit(6, "feet"),
  37600. weight: math.unit(168, "lb"),
  37601. name: "Front",
  37602. image: {
  37603. source: "./media/characters/lisa/front.svg",
  37604. extra: 2065/1867,
  37605. bottom: 46/2111
  37606. }
  37607. },
  37608. back: {
  37609. height: math.unit(6, "feet"),
  37610. weight: math.unit(168, "lb"),
  37611. name: "Back",
  37612. image: {
  37613. source: "./media/characters/lisa/back.svg",
  37614. extra: 1982/1838,
  37615. bottom: 29/2011
  37616. }
  37617. },
  37618. maw: {
  37619. height: math.unit(0.81, "feet"),
  37620. name: "Maw",
  37621. image: {
  37622. source: "./media/characters/lisa/maw.svg"
  37623. }
  37624. },
  37625. paw: {
  37626. height: math.unit(0.9, "feet"),
  37627. name: "Paw",
  37628. image: {
  37629. source: "./media/characters/lisa/paw.svg"
  37630. }
  37631. },
  37632. caribousune: {
  37633. height: math.unit(7 + 2/12, "feet"),
  37634. weight: math.unit(268, "lb"),
  37635. name: "Caribousune",
  37636. image: {
  37637. source: "./media/characters/lisa/caribousune.svg",
  37638. extra: 1843/1633,
  37639. bottom: 29/1872
  37640. }
  37641. },
  37642. frontCaribousune: {
  37643. height: math.unit(7 + 2/12, "feet"),
  37644. weight: math.unit(268, "lb"),
  37645. name: "Front (Caribousune)",
  37646. image: {
  37647. source: "./media/characters/lisa/front-caribousune.svg",
  37648. extra: 1818/1638,
  37649. bottom: 52/1870
  37650. }
  37651. },
  37652. sideCaribousune: {
  37653. height: math.unit(7 + 2/12, "feet"),
  37654. weight: math.unit(268, "lb"),
  37655. name: "Side (Caribousune)",
  37656. image: {
  37657. source: "./media/characters/lisa/side-caribousune.svg",
  37658. extra: 1851/1635,
  37659. bottom: 16/1867
  37660. }
  37661. },
  37662. backCaribousune: {
  37663. height: math.unit(7 + 2/12, "feet"),
  37664. weight: math.unit(268, "lb"),
  37665. name: "Back (Caribousune)",
  37666. image: {
  37667. source: "./media/characters/lisa/back-caribousune.svg",
  37668. extra: 1801/1604,
  37669. bottom: 44/1845
  37670. }
  37671. },
  37672. caribou: {
  37673. height: math.unit(7 + 2/12, "feet"),
  37674. weight: math.unit(268, "lb"),
  37675. name: "Caribou",
  37676. image: {
  37677. source: "./media/characters/lisa/caribou.svg",
  37678. extra: 1843/1633,
  37679. bottom: 29/1872
  37680. }
  37681. },
  37682. frontCaribou: {
  37683. height: math.unit(7 + 2/12, "feet"),
  37684. weight: math.unit(268, "lb"),
  37685. name: "Front (Caribou)",
  37686. image: {
  37687. source: "./media/characters/lisa/front-caribou.svg",
  37688. extra: 1818/1638,
  37689. bottom: 52/1870
  37690. }
  37691. },
  37692. sideCaribou: {
  37693. height: math.unit(7 + 2/12, "feet"),
  37694. weight: math.unit(268, "lb"),
  37695. name: "Side (Caribou)",
  37696. image: {
  37697. source: "./media/characters/lisa/side-caribou.svg",
  37698. extra: 1851/1635,
  37699. bottom: 16/1867
  37700. }
  37701. },
  37702. backCaribou: {
  37703. height: math.unit(7 + 2/12, "feet"),
  37704. weight: math.unit(268, "lb"),
  37705. name: "Back (Caribou)",
  37706. image: {
  37707. source: "./media/characters/lisa/back-caribou.svg",
  37708. extra: 1801/1604,
  37709. bottom: 44/1845
  37710. }
  37711. },
  37712. mawCaribou: {
  37713. height: math.unit(1.45, "feet"),
  37714. name: "Maw (Caribou)",
  37715. image: {
  37716. source: "./media/characters/lisa/maw-caribou.svg"
  37717. }
  37718. },
  37719. mawCaribousune: {
  37720. height: math.unit(1.45, "feet"),
  37721. name: "Maw (Caribousune)",
  37722. image: {
  37723. source: "./media/characters/lisa/maw-caribousune.svg"
  37724. }
  37725. },
  37726. pawCaribousune: {
  37727. height: math.unit(1.61, "feet"),
  37728. name: "Paw (Caribou)",
  37729. image: {
  37730. source: "./media/characters/lisa/paw-caribousune.svg"
  37731. }
  37732. },
  37733. },
  37734. [
  37735. {
  37736. name: "Normal",
  37737. height: math.unit(6, "feet")
  37738. },
  37739. {
  37740. name: "God Size",
  37741. height: math.unit(72, "feet"),
  37742. default: true
  37743. },
  37744. {
  37745. name: "Towering",
  37746. height: math.unit(288, "feet")
  37747. },
  37748. {
  37749. name: "City Size",
  37750. height: math.unit(48384, "feet")
  37751. },
  37752. {
  37753. name: "Continental",
  37754. height: math.unit(4200, "miles")
  37755. },
  37756. {
  37757. name: "Planet Eater",
  37758. height: math.unit(42, "earths")
  37759. },
  37760. {
  37761. name: "Star Swallower",
  37762. height: math.unit(42, "solarradii")
  37763. },
  37764. {
  37765. name: "System Swallower",
  37766. height: math.unit(84000, "AU")
  37767. },
  37768. {
  37769. name: "Galaxy Gobbler",
  37770. height: math.unit(42, "galaxies")
  37771. },
  37772. {
  37773. name: "Universe Devourer",
  37774. height: math.unit(42, "universes")
  37775. },
  37776. {
  37777. name: "Multiverse Muncher",
  37778. height: math.unit(42, "multiverses")
  37779. },
  37780. ]
  37781. ))
  37782. characterMakers.push(() => makeCharacter(
  37783. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37784. {
  37785. front: {
  37786. height: math.unit(36, "feet"),
  37787. name: "Front",
  37788. image: {
  37789. source: "./media/characters/shadow-rat/front.svg",
  37790. extra: 1845/1758,
  37791. bottom: 83/1928
  37792. }
  37793. },
  37794. },
  37795. [
  37796. {
  37797. name: "Macro",
  37798. height: math.unit(36, "feet"),
  37799. default: true
  37800. },
  37801. ]
  37802. ))
  37803. characterMakers.push(() => makeCharacter(
  37804. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37805. {
  37806. side: {
  37807. height: math.unit(8, "feet"),
  37808. weight: math.unit(2630, "lb"),
  37809. name: "Side",
  37810. image: {
  37811. source: "./media/characters/torallia/side.svg",
  37812. extra: 2164/2021,
  37813. bottom: 371/2535
  37814. }
  37815. },
  37816. },
  37817. [
  37818. {
  37819. name: "Mortal Interaction",
  37820. height: math.unit(8, "feet")
  37821. },
  37822. {
  37823. name: "Natural",
  37824. height: math.unit(24, "feet"),
  37825. default: true
  37826. },
  37827. {
  37828. name: "Giant",
  37829. height: math.unit(80, "feet")
  37830. },
  37831. {
  37832. name: "Kaiju",
  37833. height: math.unit(240, "feet")
  37834. },
  37835. {
  37836. name: "Macro",
  37837. height: math.unit(800, "feet")
  37838. },
  37839. {
  37840. name: "Macro+",
  37841. height: math.unit(2400, "feet")
  37842. },
  37843. {
  37844. name: "Macro++",
  37845. height: math.unit(8000, "feet")
  37846. },
  37847. {
  37848. name: "City-Crushing",
  37849. height: math.unit(24000, "feet")
  37850. },
  37851. {
  37852. name: "Mountain-Mashing",
  37853. height: math.unit(80000, "feet")
  37854. },
  37855. {
  37856. name: "District Demolisher",
  37857. height: math.unit(240000, "feet")
  37858. },
  37859. {
  37860. name: "Tri-County Terror",
  37861. height: math.unit(800000, "feet")
  37862. },
  37863. {
  37864. name: "State Smasher",
  37865. height: math.unit(2.4e6, "feet")
  37866. },
  37867. {
  37868. name: "Nation Nemesis",
  37869. height: math.unit(8e6, "feet")
  37870. },
  37871. {
  37872. name: "Continent Cracker",
  37873. height: math.unit(2.4e7, "feet")
  37874. },
  37875. {
  37876. name: "Planet-Pillaging",
  37877. height: math.unit(8e7, "feet")
  37878. },
  37879. {
  37880. name: "Earth-Eclipsing",
  37881. height: math.unit(2.4e8, "feet")
  37882. },
  37883. {
  37884. name: "Jovian-Jostling",
  37885. height: math.unit(8e8, "feet")
  37886. },
  37887. {
  37888. name: "Gas Giant Gulper",
  37889. height: math.unit(2.4e9, "feet")
  37890. },
  37891. {
  37892. name: "Astral Annihilator",
  37893. height: math.unit(8e9, "feet")
  37894. },
  37895. {
  37896. name: "Celestial Conqueror",
  37897. height: math.unit(2.4e10, "feet")
  37898. },
  37899. {
  37900. name: "Sol-Swallowing",
  37901. height: math.unit(8e10, "feet")
  37902. },
  37903. {
  37904. name: "Hunter of the Heavens",
  37905. height: math.unit(2.4e13, "feet")
  37906. },
  37907. ]
  37908. ))
  37909. characterMakers.push(() => makeCharacter(
  37910. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37911. {
  37912. front: {
  37913. height: math.unit(6 + 8/12, "feet"),
  37914. name: "Front",
  37915. image: {
  37916. source: "./media/characters/rebecca-pawlson/front.svg",
  37917. extra: 1737/1596,
  37918. bottom: 107/1844
  37919. }
  37920. },
  37921. back: {
  37922. height: math.unit(6 + 8/12, "feet"),
  37923. name: "Back",
  37924. image: {
  37925. source: "./media/characters/rebecca-pawlson/back.svg",
  37926. extra: 1702/1523,
  37927. bottom: 86/1788
  37928. }
  37929. },
  37930. },
  37931. [
  37932. {
  37933. name: "Normal",
  37934. height: math.unit(6 + 8/12, "feet")
  37935. },
  37936. {
  37937. name: "Mini Macro",
  37938. height: math.unit(10, "feet"),
  37939. default: true
  37940. },
  37941. {
  37942. name: "Macro",
  37943. height: math.unit(100, "feet")
  37944. },
  37945. {
  37946. name: "Mega Macro",
  37947. height: math.unit(2500, "feet")
  37948. },
  37949. {
  37950. name: "Giga Macro",
  37951. height: math.unit(50, "miles")
  37952. },
  37953. ]
  37954. ))
  37955. characterMakers.push(() => makeCharacter(
  37956. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37957. {
  37958. front: {
  37959. height: math.unit(7 + 6/12, "feet"),
  37960. weight: math.unit(600, "lb"),
  37961. name: "Front",
  37962. image: {
  37963. source: "./media/characters/moxie-nova/front.svg",
  37964. extra: 1734/1652,
  37965. bottom: 41/1775
  37966. }
  37967. },
  37968. },
  37969. [
  37970. {
  37971. name: "Normal",
  37972. height: math.unit(7 + 6/12, "feet"),
  37973. default: true
  37974. },
  37975. ]
  37976. ))
  37977. characterMakers.push(() => makeCharacter(
  37978. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37979. {
  37980. front: {
  37981. height: math.unit(5, "feet"),
  37982. weight: math.unit(150, "lb"),
  37983. name: "Front",
  37984. image: {
  37985. source: "./media/characters/tiffany/front.svg",
  37986. extra: 1941/1845,
  37987. bottom: 58/1999
  37988. }
  37989. },
  37990. },
  37991. [
  37992. {
  37993. name: "Normal",
  37994. height: math.unit(5, "feet"),
  37995. default: true
  37996. },
  37997. ]
  37998. ))
  37999. characterMakers.push(() => makeCharacter(
  38000. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38001. {
  38002. front: {
  38003. height: math.unit(8, "feet"),
  38004. weight: math.unit(300, "lb"),
  38005. name: "Front",
  38006. image: {
  38007. source: "./media/characters/raxinath/front.svg",
  38008. extra: 1407/1309,
  38009. bottom: 39/1446
  38010. }
  38011. },
  38012. back: {
  38013. height: math.unit(8, "feet"),
  38014. weight: math.unit(300, "lb"),
  38015. name: "Back",
  38016. image: {
  38017. source: "./media/characters/raxinath/back.svg",
  38018. extra: 1405/1315,
  38019. bottom: 9/1414
  38020. }
  38021. },
  38022. },
  38023. [
  38024. {
  38025. name: "Speck",
  38026. height: math.unit(0.5, "nm")
  38027. },
  38028. {
  38029. name: "Micro",
  38030. height: math.unit(3, "inches")
  38031. },
  38032. {
  38033. name: "Kobold",
  38034. height: math.unit(3, "feet")
  38035. },
  38036. {
  38037. name: "Normal",
  38038. height: math.unit(8, "feet"),
  38039. default: true
  38040. },
  38041. {
  38042. name: "Giant",
  38043. height: math.unit(50, "feet")
  38044. },
  38045. {
  38046. name: "Macro",
  38047. height: math.unit(1000, "feet")
  38048. },
  38049. {
  38050. name: "Megamacro",
  38051. height: math.unit(1, "mile")
  38052. },
  38053. ]
  38054. ))
  38055. characterMakers.push(() => makeCharacter(
  38056. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38057. {
  38058. front: {
  38059. height: math.unit(10, "feet"),
  38060. weight: math.unit(1442, "lb"),
  38061. name: "Front",
  38062. image: {
  38063. source: "./media/characters/mal-dragon/front.svg",
  38064. extra: 1515/1444,
  38065. bottom: 113/1628
  38066. }
  38067. },
  38068. back: {
  38069. height: math.unit(10, "feet"),
  38070. weight: math.unit(1442, "lb"),
  38071. name: "Back",
  38072. image: {
  38073. source: "./media/characters/mal-dragon/back.svg",
  38074. extra: 1527/1434,
  38075. bottom: 25/1552
  38076. }
  38077. },
  38078. },
  38079. [
  38080. {
  38081. name: "Mortal Interaction",
  38082. height: math.unit(10, "feet"),
  38083. default: true
  38084. },
  38085. {
  38086. name: "Large",
  38087. height: math.unit(30, "feet")
  38088. },
  38089. {
  38090. name: "Kaiju",
  38091. height: math.unit(300, "feet")
  38092. },
  38093. {
  38094. name: "Megamacro",
  38095. height: math.unit(10000, "feet")
  38096. },
  38097. {
  38098. name: "Continent Cracker",
  38099. height: math.unit(30000000, "feet")
  38100. },
  38101. {
  38102. name: "Sol-Swallowing",
  38103. height: math.unit(1e11, "feet")
  38104. },
  38105. {
  38106. name: "Light Universal",
  38107. height: math.unit(5, "universes")
  38108. },
  38109. {
  38110. name: "Universe Atoms",
  38111. height: math.unit(1.829e9, "universes")
  38112. },
  38113. {
  38114. name: "Light Multiversal",
  38115. height: math.unit(5, "multiverses")
  38116. },
  38117. {
  38118. name: "Multiverse Atoms",
  38119. height: math.unit(1.829e9, "multiverses")
  38120. },
  38121. {
  38122. name: "Fabric of Time",
  38123. height: math.unit(1e262, "multiverses")
  38124. },
  38125. ]
  38126. ))
  38127. characterMakers.push(() => makeCharacter(
  38128. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38129. {
  38130. front: {
  38131. height: math.unit(9, "feet"),
  38132. weight: math.unit(1050, "lb"),
  38133. name: "Front",
  38134. image: {
  38135. source: "./media/characters/tabitha/front.svg",
  38136. extra: 2083/1994,
  38137. bottom: 68/2151
  38138. }
  38139. },
  38140. },
  38141. [
  38142. {
  38143. name: "Baseline",
  38144. height: math.unit(9, "feet"),
  38145. default: true
  38146. },
  38147. {
  38148. name: "Giant",
  38149. height: math.unit(90, "feet")
  38150. },
  38151. {
  38152. name: "Macro",
  38153. height: math.unit(900, "feet")
  38154. },
  38155. {
  38156. name: "Megamacro",
  38157. height: math.unit(9000, "feet")
  38158. },
  38159. {
  38160. name: "City-Crushing",
  38161. height: math.unit(27000, "feet")
  38162. },
  38163. {
  38164. name: "Mountain-Mashing",
  38165. height: math.unit(90000, "feet")
  38166. },
  38167. {
  38168. name: "Nation Nemesis",
  38169. height: math.unit(9e6, "feet")
  38170. },
  38171. {
  38172. name: "Continent Cracker",
  38173. height: math.unit(27e6, "feet")
  38174. },
  38175. {
  38176. name: "Earth-Eclipsing",
  38177. height: math.unit(2.7e8, "feet")
  38178. },
  38179. {
  38180. name: "Gas Giant Gulper",
  38181. height: math.unit(2.7e9, "feet")
  38182. },
  38183. {
  38184. name: "Sol-Swallowing",
  38185. height: math.unit(9e10, "feet")
  38186. },
  38187. {
  38188. name: "Galaxy Gulper",
  38189. height: math.unit(9, "galaxies")
  38190. },
  38191. {
  38192. name: "Cosmos Churner",
  38193. height: math.unit(9, "universes")
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38199. {
  38200. front: {
  38201. height: math.unit(160, "cm"),
  38202. weight: math.unit(55, "kg"),
  38203. name: "Front",
  38204. image: {
  38205. source: "./media/characters/tow/front.svg",
  38206. extra: 1751/1722,
  38207. bottom: 74/1825
  38208. }
  38209. },
  38210. },
  38211. [
  38212. {
  38213. name: "Norm",
  38214. height: math.unit(160, "cm")
  38215. },
  38216. {
  38217. name: "Casual",
  38218. height: math.unit(3200, "m"),
  38219. default: true
  38220. },
  38221. {
  38222. name: "Show-Off",
  38223. height: math.unit(160, "km")
  38224. },
  38225. ]
  38226. ))
  38227. characterMakers.push(() => makeCharacter(
  38228. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38229. {
  38230. front: {
  38231. height: math.unit(7 + 11/12, "feet"),
  38232. weight: math.unit(342.8, "lb"),
  38233. name: "Front",
  38234. image: {
  38235. source: "./media/characters/vivian-orca-dragon/front.svg",
  38236. extra: 1890/1865,
  38237. bottom: 28/1918
  38238. }
  38239. },
  38240. },
  38241. [
  38242. {
  38243. name: "Micro",
  38244. height: math.unit(5, "inches")
  38245. },
  38246. {
  38247. name: "Normal",
  38248. height: math.unit(7 + 11/12, "feet"),
  38249. default: true
  38250. },
  38251. {
  38252. name: "Macro",
  38253. height: math.unit(395 + 7/12, "feet")
  38254. },
  38255. ]
  38256. ))
  38257. characterMakers.push(() => makeCharacter(
  38258. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38259. {
  38260. side: {
  38261. height: math.unit(10, "feet"),
  38262. weight: math.unit(1442, "lb"),
  38263. name: "Side",
  38264. image: {
  38265. source: "./media/characters/lotherakon/side.svg",
  38266. extra: 1604/1497,
  38267. bottom: 89/1693
  38268. }
  38269. },
  38270. },
  38271. [
  38272. {
  38273. name: "Mortal Interaction",
  38274. height: math.unit(10, "feet")
  38275. },
  38276. {
  38277. name: "Large",
  38278. height: math.unit(30, "feet"),
  38279. default: true
  38280. },
  38281. {
  38282. name: "Giant",
  38283. height: math.unit(100, "feet")
  38284. },
  38285. {
  38286. name: "Kaiju",
  38287. height: math.unit(300, "feet")
  38288. },
  38289. {
  38290. name: "Macro",
  38291. height: math.unit(1000, "feet")
  38292. },
  38293. {
  38294. name: "Macro+",
  38295. height: math.unit(3000, "feet")
  38296. },
  38297. {
  38298. name: "Megamacro",
  38299. height: math.unit(10000, "feet")
  38300. },
  38301. {
  38302. name: "City-Crushing",
  38303. height: math.unit(30000, "feet")
  38304. },
  38305. {
  38306. name: "Continent Cracker",
  38307. height: math.unit(30e6, "feet")
  38308. },
  38309. {
  38310. name: "Earth Eclipsing",
  38311. height: math.unit(3e8, "feet")
  38312. },
  38313. {
  38314. name: "Gas Giant Gulper",
  38315. height: math.unit(3e9, "feet")
  38316. },
  38317. {
  38318. name: "Sol-Swallowing",
  38319. height: math.unit(1e11, "feet")
  38320. },
  38321. {
  38322. name: "System Swallower",
  38323. height: math.unit(3e14, "feet")
  38324. },
  38325. {
  38326. name: "Galaxy Gulper",
  38327. height: math.unit(10, "galaxies")
  38328. },
  38329. {
  38330. name: "Light Universal",
  38331. height: math.unit(5, "universes")
  38332. },
  38333. {
  38334. name: "Universe Palm",
  38335. height: math.unit(20, "universes")
  38336. },
  38337. {
  38338. name: "Light Multiversal",
  38339. height: math.unit(5, "multiverses")
  38340. },
  38341. {
  38342. name: "Multiverse Palm",
  38343. height: math.unit(20, "multiverses")
  38344. },
  38345. {
  38346. name: "Inferno Incarnate",
  38347. height: math.unit(1e7, "multiverses")
  38348. },
  38349. ]
  38350. ))
  38351. characterMakers.push(() => makeCharacter(
  38352. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38353. {
  38354. front: {
  38355. height: math.unit(8, "feet"),
  38356. weight: math.unit(1200, "lb"),
  38357. name: "Front",
  38358. image: {
  38359. source: "./media/characters/malithee/front.svg",
  38360. extra: 1675/1640,
  38361. bottom: 162/1837
  38362. }
  38363. },
  38364. },
  38365. [
  38366. {
  38367. name: "Mortal Interaction",
  38368. height: math.unit(8, "feet"),
  38369. default: true
  38370. },
  38371. {
  38372. name: "Large",
  38373. height: math.unit(24, "feet")
  38374. },
  38375. {
  38376. name: "Kaiju",
  38377. height: math.unit(240, "feet")
  38378. },
  38379. {
  38380. name: "Megamacro",
  38381. height: math.unit(8000, "feet")
  38382. },
  38383. {
  38384. name: "Continent Cracker",
  38385. height: math.unit(24e6, "feet")
  38386. },
  38387. {
  38388. name: "Earth-Eclipsing",
  38389. height: math.unit(2.4e8, "feet")
  38390. },
  38391. {
  38392. name: "Sol-Swallowing",
  38393. height: math.unit(8e10, "feet")
  38394. },
  38395. {
  38396. name: "Galaxy Gulper",
  38397. height: math.unit(8, "galaxies")
  38398. },
  38399. {
  38400. name: "Light Universal",
  38401. height: math.unit(4, "universes")
  38402. },
  38403. {
  38404. name: "Universe Atoms",
  38405. height: math.unit(1.829e9, "universes")
  38406. },
  38407. {
  38408. name: "Light Multiversal",
  38409. height: math.unit(4, "multiverses")
  38410. },
  38411. {
  38412. name: "Multiverse Atoms",
  38413. height: math.unit(1.829e9, "multiverses")
  38414. },
  38415. {
  38416. name: "Nigh-Omnipresence",
  38417. height: math.unit(8e261, "multiverses")
  38418. },
  38419. ]
  38420. ))
  38421. characterMakers.push(() => makeCharacter(
  38422. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38423. {
  38424. front: {
  38425. height: math.unit(10, "feet"),
  38426. weight: math.unit(1500, "lb"),
  38427. name: "Front",
  38428. image: {
  38429. source: "./media/characters/miles-thestia/front.svg",
  38430. extra: 1812/1727,
  38431. bottom: 86/1898
  38432. }
  38433. },
  38434. back: {
  38435. height: math.unit(10, "feet"),
  38436. weight: math.unit(1500, "lb"),
  38437. name: "Back",
  38438. image: {
  38439. source: "./media/characters/miles-thestia/back.svg",
  38440. extra: 1799/1690,
  38441. bottom: 47/1846
  38442. }
  38443. },
  38444. frontNsfw: {
  38445. height: math.unit(10, "feet"),
  38446. weight: math.unit(1500, "lb"),
  38447. name: "Front (NSFW)",
  38448. image: {
  38449. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38450. extra: 1812/1727,
  38451. bottom: 86/1898
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Mini-Macro",
  38458. height: math.unit(10, "feet"),
  38459. default: true
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38465. {
  38466. front: {
  38467. height: math.unit(25, "feet"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/titan-s-wulf/front.svg",
  38471. extra: 1560/1484,
  38472. bottom: 76/1636
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Smallest",
  38479. height: math.unit(25, "feet"),
  38480. default: true
  38481. },
  38482. {
  38483. name: "Normal",
  38484. height: math.unit(200, "feet")
  38485. },
  38486. {
  38487. name: "Macro",
  38488. height: math.unit(200000, "feet")
  38489. },
  38490. {
  38491. name: "Multiversal Original",
  38492. height: math.unit(10000, "multiverses")
  38493. },
  38494. ]
  38495. ))
  38496. characterMakers.push(() => makeCharacter(
  38497. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38498. {
  38499. front: {
  38500. height: math.unit(8, "feet"),
  38501. weight: math.unit(553, "lb"),
  38502. name: "Front",
  38503. image: {
  38504. source: "./media/characters/tawendeh/front.svg",
  38505. extra: 2365/2268,
  38506. bottom: 83/2448
  38507. }
  38508. },
  38509. frontClothed: {
  38510. height: math.unit(8, "feet"),
  38511. weight: math.unit(553, "lb"),
  38512. name: "Front (Clothed)",
  38513. image: {
  38514. source: "./media/characters/tawendeh/front-clothed.svg",
  38515. extra: 2365/2268,
  38516. bottom: 83/2448
  38517. }
  38518. },
  38519. back: {
  38520. height: math.unit(8, "feet"),
  38521. weight: math.unit(553, "lb"),
  38522. name: "Back",
  38523. image: {
  38524. source: "./media/characters/tawendeh/back.svg",
  38525. extra: 2397/2294,
  38526. bottom: 42/2439
  38527. }
  38528. },
  38529. },
  38530. [
  38531. {
  38532. name: "Mortal Interaction",
  38533. height: math.unit(8, "feet"),
  38534. default: true
  38535. },
  38536. {
  38537. name: "Giant",
  38538. height: math.unit(80, "feet")
  38539. },
  38540. {
  38541. name: "Macro",
  38542. height: math.unit(800, "feet")
  38543. },
  38544. {
  38545. name: "Megamacro",
  38546. height: math.unit(8000, "feet")
  38547. },
  38548. {
  38549. name: "City-Crushing",
  38550. height: math.unit(24000, "feet")
  38551. },
  38552. {
  38553. name: "Mountain-Mashing",
  38554. height: math.unit(80000, "feet")
  38555. },
  38556. {
  38557. name: "Nation Nemesis",
  38558. height: math.unit(8e6, "feet")
  38559. },
  38560. {
  38561. name: "Continent Cracker",
  38562. height: math.unit(24e6, "feet")
  38563. },
  38564. {
  38565. name: "Earth-Eclipsing",
  38566. height: math.unit(2.4e8, "feet")
  38567. },
  38568. {
  38569. name: "Gas Giant Gulper",
  38570. height: math.unit(2.4e9, "feet")
  38571. },
  38572. {
  38573. name: "Sol-Swallowing",
  38574. height: math.unit(8e10, "feet")
  38575. },
  38576. {
  38577. name: "Galaxy Gulper",
  38578. height: math.unit(8, "galaxies")
  38579. },
  38580. {
  38581. name: "Cosmos Churner",
  38582. height: math.unit(8, "universes")
  38583. },
  38584. {
  38585. name: "Omnipotent Otter",
  38586. height: math.unit(80, "universes")
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38592. {
  38593. front: {
  38594. height: math.unit(2.6, "meters"),
  38595. weight: math.unit(900, "kg"),
  38596. name: "Front",
  38597. image: {
  38598. source: "./media/characters/neesha/front.svg",
  38599. extra: 1803/1653,
  38600. bottom: 128/1931
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(2.6, "meters"),
  38608. default: true
  38609. },
  38610. {
  38611. name: "Macro",
  38612. height: math.unit(50, "meters")
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38618. {
  38619. front: {
  38620. height: math.unit(5, "feet"),
  38621. weight: math.unit(185, "lb"),
  38622. name: "Front",
  38623. image: {
  38624. source: "./media/characters/kyera/front.svg",
  38625. extra: 1875/1790,
  38626. bottom: 96/1971
  38627. }
  38628. },
  38629. },
  38630. [
  38631. {
  38632. name: "Normal",
  38633. height: math.unit(5, "feet"),
  38634. default: true
  38635. },
  38636. ]
  38637. ))
  38638. characterMakers.push(() => makeCharacter(
  38639. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38640. {
  38641. front: {
  38642. height: math.unit(7 + 6/12, "feet"),
  38643. weight: math.unit(540, "lb"),
  38644. name: "Front",
  38645. image: {
  38646. source: "./media/characters/yuko/front.svg",
  38647. extra: 1282/1222,
  38648. bottom: 101/1383
  38649. }
  38650. },
  38651. frontClothed: {
  38652. height: math.unit(7 + 6/12, "feet"),
  38653. weight: math.unit(540, "lb"),
  38654. name: "Front (Clothed)",
  38655. image: {
  38656. source: "./media/characters/yuko/front-clothed.svg",
  38657. extra: 1282/1222,
  38658. bottom: 101/1383
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(7 + 6/12, "feet"),
  38666. default: true
  38667. },
  38668. {
  38669. name: "Macro",
  38670. height: math.unit(26 + 9/12, "feet")
  38671. },
  38672. {
  38673. name: "Megamacro",
  38674. height: math.unit(300, "feet")
  38675. },
  38676. {
  38677. name: "Gigamacro",
  38678. height: math.unit(5000, "feet")
  38679. },
  38680. {
  38681. name: "Planetary",
  38682. height: math.unit(10000, "miles")
  38683. },
  38684. ]
  38685. ))
  38686. characterMakers.push(() => makeCharacter(
  38687. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38688. {
  38689. front: {
  38690. height: math.unit(8 + 2/12, "feet"),
  38691. weight: math.unit(600, "lb"),
  38692. name: "Front",
  38693. image: {
  38694. source: "./media/characters/deam-nitrel/front.svg",
  38695. extra: 1308/1234,
  38696. bottom: 125/1433
  38697. }
  38698. },
  38699. },
  38700. [
  38701. {
  38702. name: "Normal",
  38703. height: math.unit(8 + 2/12, "feet"),
  38704. default: true
  38705. },
  38706. ]
  38707. ))
  38708. characterMakers.push(() => makeCharacter(
  38709. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38710. {
  38711. front: {
  38712. height: math.unit(6.1, "feet"),
  38713. weight: math.unit(180, "lb"),
  38714. name: "Front",
  38715. image: {
  38716. source: "./media/characters/skyress/front.svg",
  38717. extra: 1045/915,
  38718. bottom: 28/1073
  38719. }
  38720. },
  38721. maw: {
  38722. height: math.unit(1, "feet"),
  38723. name: "Maw",
  38724. image: {
  38725. source: "./media/characters/skyress/maw.svg"
  38726. }
  38727. },
  38728. },
  38729. [
  38730. {
  38731. name: "Normal",
  38732. height: math.unit(6.1, "feet"),
  38733. default: true
  38734. },
  38735. {
  38736. name: "Macro",
  38737. height: math.unit(200, "feet")
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38743. {
  38744. front: {
  38745. height: math.unit(4 + 2/12, "feet"),
  38746. weight: math.unit(40, "kg"),
  38747. name: "Front",
  38748. image: {
  38749. source: "./media/characters/amethyst-jones/front.svg",
  38750. extra: 1220/1150,
  38751. bottom: 101/1321
  38752. }
  38753. },
  38754. },
  38755. [
  38756. {
  38757. name: "Normal",
  38758. height: math.unit(4 + 2/12, "feet"),
  38759. default: true
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(1.7, "m"),
  38768. weight: math.unit(135, "lb"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/jade/front.svg",
  38772. extra: 1818/1767,
  38773. bottom: 32/1850
  38774. }
  38775. },
  38776. back: {
  38777. height: math.unit(1.7, "m"),
  38778. weight: math.unit(135, "lb"),
  38779. name: "Back",
  38780. image: {
  38781. source: "./media/characters/jade/back.svg",
  38782. extra: 1869/1809,
  38783. bottom: 35/1904
  38784. }
  38785. },
  38786. hand: {
  38787. height: math.unit(0.24, "m"),
  38788. name: "Hand",
  38789. image: {
  38790. source: "./media/characters/jade/hand.svg"
  38791. }
  38792. },
  38793. foot: {
  38794. height: math.unit(0.263, "m"),
  38795. name: "Foot",
  38796. image: {
  38797. source: "./media/characters/jade/foot.svg"
  38798. }
  38799. },
  38800. dick: {
  38801. height: math.unit(0.47, "m"),
  38802. name: "Dick",
  38803. image: {
  38804. source: "./media/characters/jade/dick.svg"
  38805. }
  38806. },
  38807. },
  38808. [
  38809. {
  38810. name: "Micro",
  38811. height: math.unit(22, "cm")
  38812. },
  38813. {
  38814. name: "Normal",
  38815. height: math.unit(1.7, "m"),
  38816. default: true
  38817. },
  38818. {
  38819. name: "Macro",
  38820. height: math.unit(152, "m")
  38821. },
  38822. ]
  38823. ))
  38824. characterMakers.push(() => makeCharacter(
  38825. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38826. {
  38827. front: {
  38828. height: math.unit(100, "miles"),
  38829. weight: math.unit(20000, "tons"),
  38830. name: "Front",
  38831. image: {
  38832. source: "./media/characters/cookie/front.svg",
  38833. extra: 1125/1070,
  38834. bottom: 30/1155
  38835. }
  38836. },
  38837. },
  38838. [
  38839. {
  38840. name: "Big",
  38841. height: math.unit(50, "feet")
  38842. },
  38843. {
  38844. name: "Macro",
  38845. height: math.unit(100, "miles"),
  38846. default: true
  38847. },
  38848. {
  38849. name: "Megamacro",
  38850. height: math.unit(90000, "miles")
  38851. },
  38852. ]
  38853. ))
  38854. characterMakers.push(() => makeCharacter(
  38855. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38856. {
  38857. front: {
  38858. height: math.unit(6, "feet"),
  38859. weight: math.unit(145, "lb"),
  38860. name: "Front",
  38861. image: {
  38862. source: "./media/characters/farzian/front.svg",
  38863. extra: 1902/1693,
  38864. bottom: 108/2010
  38865. }
  38866. },
  38867. },
  38868. [
  38869. {
  38870. name: "Macro",
  38871. height: math.unit(500, "feet"),
  38872. default: true
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38878. {
  38879. front: {
  38880. height: math.unit(3 + 6/12, "feet"),
  38881. weight: math.unit(50, "lb"),
  38882. name: "Front",
  38883. image: {
  38884. source: "./media/characters/kimberly-tilson/front.svg",
  38885. extra: 1400/1322,
  38886. bottom: 36/1436
  38887. }
  38888. },
  38889. back: {
  38890. height: math.unit(3 + 6/12, "feet"),
  38891. weight: math.unit(50, "lb"),
  38892. name: "Back",
  38893. image: {
  38894. source: "./media/characters/kimberly-tilson/back.svg",
  38895. extra: 1370/1307,
  38896. bottom: 20/1390
  38897. }
  38898. },
  38899. },
  38900. [
  38901. {
  38902. name: "Normal",
  38903. height: math.unit(3 + 6/12, "feet"),
  38904. default: true
  38905. },
  38906. ]
  38907. ))
  38908. characterMakers.push(() => makeCharacter(
  38909. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38910. {
  38911. front: {
  38912. height: math.unit(1148, "feet"),
  38913. weight: math.unit(34057, "lb"),
  38914. name: "Front",
  38915. image: {
  38916. source: "./media/characters/harthos/front.svg",
  38917. extra: 1391/1339,
  38918. bottom: 13/1404
  38919. }
  38920. },
  38921. },
  38922. [
  38923. {
  38924. name: "Macro",
  38925. height: math.unit(1148, "feet"),
  38926. default: true
  38927. },
  38928. ]
  38929. ))
  38930. characterMakers.push(() => makeCharacter(
  38931. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38932. {
  38933. front: {
  38934. height: math.unit(15, "feet"),
  38935. name: "Front",
  38936. image: {
  38937. source: "./media/characters/hypatia/front.svg",
  38938. extra: 1653/1591,
  38939. bottom: 79/1732
  38940. }
  38941. },
  38942. },
  38943. [
  38944. {
  38945. name: "Normal",
  38946. height: math.unit(15, "feet")
  38947. },
  38948. {
  38949. name: "Small",
  38950. height: math.unit(300, "feet")
  38951. },
  38952. {
  38953. name: "Macro",
  38954. height: math.unit(2500, "feet"),
  38955. default: true
  38956. },
  38957. {
  38958. name: "Mega Macro",
  38959. height: math.unit(1500, "miles")
  38960. },
  38961. {
  38962. name: "Giga Macro",
  38963. height: math.unit(1.5e6, "miles")
  38964. },
  38965. ]
  38966. ))
  38967. characterMakers.push(() => makeCharacter(
  38968. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38969. {
  38970. front: {
  38971. height: math.unit(6, "feet"),
  38972. weight: math.unit(200, "lb"),
  38973. name: "Front",
  38974. image: {
  38975. source: "./media/characters/wulver/front.svg",
  38976. extra: 1724/1632,
  38977. bottom: 130/1854
  38978. }
  38979. },
  38980. frontNsfw: {
  38981. height: math.unit(6, "feet"),
  38982. weight: math.unit(200, "lb"),
  38983. name: "Front (NSFW)",
  38984. image: {
  38985. source: "./media/characters/wulver/front-nsfw.svg",
  38986. extra: 1724/1632,
  38987. bottom: 130/1854
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Human-Sized",
  38994. height: math.unit(6, "feet")
  38995. },
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(4, "meters"),
  38999. default: true
  39000. },
  39001. {
  39002. name: "Large",
  39003. height: math.unit(6, "m")
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39009. {
  39010. front: {
  39011. height: math.unit(7, "feet"),
  39012. name: "Front",
  39013. image: {
  39014. source: "./media/characters/maru/front.svg",
  39015. extra: 1595/1570,
  39016. bottom: 0/1595
  39017. }
  39018. },
  39019. },
  39020. [
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(7, "feet"),
  39024. default: true
  39025. },
  39026. {
  39027. name: "Macro",
  39028. height: math.unit(700, "feet")
  39029. },
  39030. {
  39031. name: "Mega Macro",
  39032. height: math.unit(25, "miles")
  39033. },
  39034. ]
  39035. ))
  39036. characterMakers.push(() => makeCharacter(
  39037. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39038. {
  39039. front: {
  39040. height: math.unit(6, "feet"),
  39041. weight: math.unit(170, "lb"),
  39042. name: "Front",
  39043. image: {
  39044. source: "./media/characters/xenon/front.svg",
  39045. extra: 1376/1305,
  39046. bottom: 56/1432
  39047. }
  39048. },
  39049. back: {
  39050. height: math.unit(6, "feet"),
  39051. weight: math.unit(170, "lb"),
  39052. name: "Back",
  39053. image: {
  39054. source: "./media/characters/xenon/back.svg",
  39055. extra: 1328/1259,
  39056. bottom: 95/1423
  39057. }
  39058. },
  39059. maw: {
  39060. height: math.unit(0.52, "feet"),
  39061. name: "Maw",
  39062. image: {
  39063. source: "./media/characters/xenon/maw.svg"
  39064. }
  39065. },
  39066. hand: {
  39067. height: math.unit(0.82, "feet"),
  39068. name: "Hand",
  39069. image: {
  39070. source: "./media/characters/xenon/hand.svg"
  39071. }
  39072. },
  39073. foot: {
  39074. height: math.unit(1.13, "feet"),
  39075. name: "Foot",
  39076. image: {
  39077. source: "./media/characters/xenon/foot.svg"
  39078. }
  39079. },
  39080. },
  39081. [
  39082. {
  39083. name: "Micro",
  39084. height: math.unit(0.8, "inches")
  39085. },
  39086. {
  39087. name: "Normal",
  39088. height: math.unit(6, "feet")
  39089. },
  39090. {
  39091. name: "Macro",
  39092. height: math.unit(50, "feet"),
  39093. default: true
  39094. },
  39095. {
  39096. name: "Macro+",
  39097. height: math.unit(250, "feet")
  39098. },
  39099. {
  39100. name: "Megamacro",
  39101. height: math.unit(1500, "feet")
  39102. },
  39103. ]
  39104. ))
  39105. characterMakers.push(() => makeCharacter(
  39106. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39107. {
  39108. front: {
  39109. height: math.unit(7 + 5/12, "feet"),
  39110. name: "Front",
  39111. image: {
  39112. source: "./media/characters/zane/front.svg",
  39113. extra: 1260/1203,
  39114. bottom: 94/1354
  39115. }
  39116. },
  39117. back: {
  39118. height: math.unit(5.05, "feet"),
  39119. name: "Back",
  39120. image: {
  39121. source: "./media/characters/zane/back.svg",
  39122. extra: 893/829,
  39123. bottom: 30/923
  39124. }
  39125. },
  39126. werewolf: {
  39127. height: math.unit(11, "feet"),
  39128. name: "Werewolf",
  39129. image: {
  39130. source: "./media/characters/zane/werewolf.svg",
  39131. extra: 1383/1323,
  39132. bottom: 89/1472
  39133. }
  39134. },
  39135. foot: {
  39136. height: math.unit(1.46, "feet"),
  39137. name: "Foot",
  39138. image: {
  39139. source: "./media/characters/zane/foot.svg"
  39140. }
  39141. },
  39142. footFront: {
  39143. height: math.unit(0.784, "feet"),
  39144. name: "Foot (Front)",
  39145. image: {
  39146. source: "./media/characters/zane/foot-front.svg"
  39147. }
  39148. },
  39149. dick: {
  39150. height: math.unit(1.95, "feet"),
  39151. name: "Dick",
  39152. image: {
  39153. source: "./media/characters/zane/dick.svg"
  39154. }
  39155. },
  39156. dickWerewolf: {
  39157. height: math.unit(3.77, "feet"),
  39158. name: "Dick (Werewolf)",
  39159. image: {
  39160. source: "./media/characters/zane/dick.svg"
  39161. }
  39162. },
  39163. },
  39164. [
  39165. {
  39166. name: "Normal",
  39167. height: math.unit(7 + 5/12, "feet"),
  39168. default: true
  39169. },
  39170. ]
  39171. ))
  39172. characterMakers.push(() => makeCharacter(
  39173. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39174. {
  39175. front: {
  39176. height: math.unit(6 + 2/12, "feet"),
  39177. weight: math.unit(284, "lb"),
  39178. name: "Front",
  39179. image: {
  39180. source: "./media/characters/benni-desparque/front.svg",
  39181. extra: 1353/1126,
  39182. bottom: 69/1422
  39183. }
  39184. },
  39185. },
  39186. [
  39187. {
  39188. name: "Civilian",
  39189. height: math.unit(6 + 2/12, "feet")
  39190. },
  39191. {
  39192. name: "Normal",
  39193. height: math.unit(98, "feet"),
  39194. default: true
  39195. },
  39196. {
  39197. name: "Kaiju Fighter",
  39198. height: math.unit(268, "feet")
  39199. },
  39200. ]
  39201. ))
  39202. characterMakers.push(() => makeCharacter(
  39203. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39204. {
  39205. front: {
  39206. height: math.unit(5, "feet"),
  39207. weight: math.unit(105, "lb"),
  39208. name: "Front",
  39209. image: {
  39210. source: "./media/characters/maxine/front.svg",
  39211. extra: 1386/1250,
  39212. bottom: 71/1457
  39213. }
  39214. },
  39215. },
  39216. [
  39217. {
  39218. name: "Normal",
  39219. height: math.unit(5, "feet"),
  39220. default: true
  39221. },
  39222. ]
  39223. ))
  39224. characterMakers.push(() => makeCharacter(
  39225. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39226. {
  39227. front: {
  39228. height: math.unit(11 + 7/12, "feet"),
  39229. weight: math.unit(9576, "lb"),
  39230. name: "Front",
  39231. image: {
  39232. source: "./media/characters/scaly/front.svg",
  39233. extra: 888/867,
  39234. bottom: 36/924
  39235. }
  39236. },
  39237. },
  39238. [
  39239. {
  39240. name: "Normal",
  39241. height: math.unit(11 + 7/12, "feet"),
  39242. default: true
  39243. },
  39244. ]
  39245. ))
  39246. characterMakers.push(() => makeCharacter(
  39247. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39248. {
  39249. front: {
  39250. height: math.unit(9, "inches"),
  39251. name: "Front",
  39252. image: {
  39253. source: "./media/characters/saelria/front.svg",
  39254. extra: 662/621,
  39255. bottom: 12/674
  39256. }
  39257. },
  39258. },
  39259. [
  39260. {
  39261. name: "Tiny",
  39262. height: math.unit(9, "inches"),
  39263. default: true
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39269. {
  39270. front: {
  39271. height: math.unit(80, "meters"),
  39272. weight: math.unit(7000, "tonnes"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/tef/front.svg",
  39276. extra: 2036/1991,
  39277. bottom: 54/2090
  39278. }
  39279. },
  39280. back: {
  39281. height: math.unit(80, "meters"),
  39282. weight: math.unit(7000, "tonnes"),
  39283. name: "Back",
  39284. image: {
  39285. source: "./media/characters/tef/back.svg",
  39286. extra: 2036/1991,
  39287. bottom: 54/2090
  39288. }
  39289. },
  39290. },
  39291. [
  39292. {
  39293. name: "Macro",
  39294. height: math.unit(80, "meters"),
  39295. default: true
  39296. },
  39297. ]
  39298. ))
  39299. characterMakers.push(() => makeCharacter(
  39300. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39301. {
  39302. front: {
  39303. height: math.unit(13, "feet"),
  39304. weight: math.unit(6, "tons"),
  39305. name: "Front",
  39306. image: {
  39307. source: "./media/characters/rover/front.svg",
  39308. extra: 1233/1156,
  39309. bottom: 50/1283
  39310. }
  39311. },
  39312. back: {
  39313. height: math.unit(13, "feet"),
  39314. weight: math.unit(6, "tons"),
  39315. name: "Back",
  39316. image: {
  39317. source: "./media/characters/rover/back.svg",
  39318. extra: 1327/1258,
  39319. bottom: 39/1366
  39320. }
  39321. },
  39322. },
  39323. [
  39324. {
  39325. name: "Normal",
  39326. height: math.unit(13, "feet"),
  39327. default: true
  39328. },
  39329. {
  39330. name: "Macro",
  39331. height: math.unit(1300, "feet")
  39332. },
  39333. {
  39334. name: "Megamacro",
  39335. height: math.unit(1300, "miles")
  39336. },
  39337. {
  39338. name: "Gigamacro",
  39339. height: math.unit(1300000, "miles")
  39340. },
  39341. ]
  39342. ))
  39343. characterMakers.push(() => makeCharacter(
  39344. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39345. {
  39346. front: {
  39347. height: math.unit(6, "feet"),
  39348. weight: math.unit(150, "lb"),
  39349. name: "Front",
  39350. image: {
  39351. source: "./media/characters/ariz/front.svg",
  39352. extra: 1401/1346,
  39353. bottom: 5/1406
  39354. }
  39355. },
  39356. },
  39357. [
  39358. {
  39359. name: "Normal",
  39360. height: math.unit(10, "feet"),
  39361. default: true
  39362. },
  39363. ]
  39364. ))
  39365. characterMakers.push(() => makeCharacter(
  39366. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39367. {
  39368. front: {
  39369. height: math.unit(6, "feet"),
  39370. weight: math.unit(140, "lb"),
  39371. name: "Front",
  39372. image: {
  39373. source: "./media/characters/sigrun/front.svg",
  39374. extra: 1418/1359,
  39375. bottom: 27/1445
  39376. }
  39377. },
  39378. },
  39379. [
  39380. {
  39381. name: "Macro",
  39382. height: math.unit(35, "feet"),
  39383. default: true
  39384. },
  39385. ]
  39386. ))
  39387. characterMakers.push(() => makeCharacter(
  39388. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39389. {
  39390. front: {
  39391. height: math.unit(6, "feet"),
  39392. weight: math.unit(150, "lb"),
  39393. name: "Front",
  39394. image: {
  39395. source: "./media/characters/numin/front.svg",
  39396. extra: 1433/1388,
  39397. bottom: 12/1445
  39398. }
  39399. },
  39400. },
  39401. [
  39402. {
  39403. name: "Macro",
  39404. height: math.unit(21.5, "km"),
  39405. default: true
  39406. },
  39407. ]
  39408. ))
  39409. characterMakers.push(() => makeCharacter(
  39410. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39411. {
  39412. front: {
  39413. height: math.unit(6, "feet"),
  39414. weight: math.unit(463, "lb"),
  39415. name: "Front",
  39416. image: {
  39417. source: "./media/characters/melwa/front.svg",
  39418. extra: 1307/1248,
  39419. bottom: 93/1400
  39420. }
  39421. },
  39422. },
  39423. [
  39424. {
  39425. name: "Macro",
  39426. height: math.unit(50, "meters"),
  39427. default: true
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(325, "feet"),
  39436. name: "Front",
  39437. image: {
  39438. source: "./media/characters/zorkaiju/front.svg",
  39439. extra: 1955/1814,
  39440. bottom: 40/1995
  39441. }
  39442. },
  39443. frontExtended: {
  39444. height: math.unit(325, "feet"),
  39445. name: "Front (Extended)",
  39446. image: {
  39447. source: "./media/characters/zorkaiju/front-extended.svg",
  39448. extra: 1955/1814,
  39449. bottom: 40/1995
  39450. }
  39451. },
  39452. side: {
  39453. height: math.unit(325, "feet"),
  39454. name: "Side",
  39455. image: {
  39456. source: "./media/characters/zorkaiju/side.svg",
  39457. extra: 1495/1396,
  39458. bottom: 17/1512
  39459. }
  39460. },
  39461. sideExtended: {
  39462. height: math.unit(325, "feet"),
  39463. name: "Side (Extended)",
  39464. image: {
  39465. source: "./media/characters/zorkaiju/side-extended.svg",
  39466. extra: 1495/1396,
  39467. bottom: 17/1512
  39468. }
  39469. },
  39470. back: {
  39471. height: math.unit(325, "feet"),
  39472. name: "Back",
  39473. image: {
  39474. source: "./media/characters/zorkaiju/back.svg",
  39475. extra: 1959/1821,
  39476. bottom: 31/1990
  39477. }
  39478. },
  39479. backExtended: {
  39480. height: math.unit(325, "feet"),
  39481. name: "Back (Extended)",
  39482. image: {
  39483. source: "./media/characters/zorkaiju/back-extended.svg",
  39484. extra: 1959/1821,
  39485. bottom: 31/1990
  39486. }
  39487. },
  39488. hand: {
  39489. height: math.unit(58.4, "feet"),
  39490. name: "Hand",
  39491. image: {
  39492. source: "./media/characters/zorkaiju/hand.svg"
  39493. }
  39494. },
  39495. handExtended: {
  39496. height: math.unit(61.4, "feet"),
  39497. name: "Hand (Extended)",
  39498. image: {
  39499. source: "./media/characters/zorkaiju/hand-extended.svg"
  39500. }
  39501. },
  39502. foot: {
  39503. height: math.unit(95, "feet"),
  39504. name: "Foot",
  39505. image: {
  39506. source: "./media/characters/zorkaiju/foot.svg"
  39507. }
  39508. },
  39509. leftArm: {
  39510. height: math.unit(59, "feet"),
  39511. name: "Left Arm",
  39512. image: {
  39513. source: "./media/characters/zorkaiju/left-arm.svg"
  39514. }
  39515. },
  39516. rightArm: {
  39517. height: math.unit(59, "feet"),
  39518. name: "Right Arm",
  39519. image: {
  39520. source: "./media/characters/zorkaiju/right-arm.svg"
  39521. }
  39522. },
  39523. tail: {
  39524. height: math.unit(104, "feet"),
  39525. name: "Tail",
  39526. image: {
  39527. source: "./media/characters/zorkaiju/tail.svg"
  39528. }
  39529. },
  39530. tailExtended: {
  39531. height: math.unit(104, "feet"),
  39532. name: "Tail (Extended)",
  39533. image: {
  39534. source: "./media/characters/zorkaiju/tail-extended.svg"
  39535. }
  39536. },
  39537. tailBottom: {
  39538. height: math.unit(104, "feet"),
  39539. name: "Tail Bottom",
  39540. image: {
  39541. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39542. }
  39543. },
  39544. crystal: {
  39545. height: math.unit(27.54, "feet"),
  39546. name: "Crystal",
  39547. image: {
  39548. source: "./media/characters/zorkaiju/crystal.svg"
  39549. }
  39550. },
  39551. },
  39552. [
  39553. {
  39554. name: "Kaiju",
  39555. height: math.unit(325, "feet"),
  39556. default: true
  39557. },
  39558. ]
  39559. ))
  39560. characterMakers.push(() => makeCharacter(
  39561. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39562. {
  39563. front: {
  39564. height: math.unit(6 + 1/12, "feet"),
  39565. weight: math.unit(115, "lb"),
  39566. name: "Front",
  39567. image: {
  39568. source: "./media/characters/bailey-belfry/front.svg",
  39569. extra: 1240/1121,
  39570. bottom: 101/1341
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(6 + 1/12, "feet"),
  39578. default: true
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39584. {
  39585. side: {
  39586. height: math.unit(4, "meters"),
  39587. weight: math.unit(250, "kg"),
  39588. name: "Side",
  39589. image: {
  39590. source: "./media/characters/blacky/side.svg",
  39591. extra: 1027/919,
  39592. bottom: 43/1070
  39593. }
  39594. },
  39595. maw: {
  39596. height: math.unit(1, "meters"),
  39597. name: "Maw",
  39598. image: {
  39599. source: "./media/characters/blacky/maw.svg"
  39600. }
  39601. },
  39602. paw: {
  39603. height: math.unit(1, "meters"),
  39604. name: "Paw",
  39605. image: {
  39606. source: "./media/characters/blacky/paw.svg"
  39607. }
  39608. },
  39609. },
  39610. [
  39611. {
  39612. name: "Normal",
  39613. height: math.unit(4, "meters"),
  39614. default: true
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(170, "cm"),
  39623. weight: math.unit(66, "kg"),
  39624. name: "Front",
  39625. image: {
  39626. source: "./media/characters/thux-ei/front.svg",
  39627. extra: 1109/1011,
  39628. bottom: 8/1117
  39629. }
  39630. },
  39631. },
  39632. [
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(170, "cm"),
  39636. default: true
  39637. },
  39638. ]
  39639. ))
  39640. characterMakers.push(() => makeCharacter(
  39641. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39642. {
  39643. front: {
  39644. height: math.unit(5, "feet"),
  39645. weight: math.unit(120, "lb"),
  39646. name: "Front",
  39647. image: {
  39648. source: "./media/characters/roxanne-voltaire/front.svg",
  39649. extra: 1901/1779,
  39650. bottom: 53/1954
  39651. }
  39652. },
  39653. },
  39654. [
  39655. {
  39656. name: "Normal",
  39657. height: math.unit(5, "feet"),
  39658. default: true
  39659. },
  39660. {
  39661. name: "Giant",
  39662. height: math.unit(50, "feet")
  39663. },
  39664. {
  39665. name: "Titan",
  39666. height: math.unit(500, "feet")
  39667. },
  39668. {
  39669. name: "Macro",
  39670. height: math.unit(5000, "feet")
  39671. },
  39672. {
  39673. name: "Megamacro",
  39674. height: math.unit(50000, "feet")
  39675. },
  39676. {
  39677. name: "Gigamacro",
  39678. height: math.unit(500000, "feet")
  39679. },
  39680. {
  39681. name: "Teramacro",
  39682. height: math.unit(5e6, "feet")
  39683. },
  39684. ]
  39685. ))
  39686. characterMakers.push(() => makeCharacter(
  39687. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39688. {
  39689. front: {
  39690. height: math.unit(6 + 2/12, "feet"),
  39691. name: "Front",
  39692. image: {
  39693. source: "./media/characters/squeaks/front.svg",
  39694. extra: 1823/1768,
  39695. bottom: 138/1961
  39696. }
  39697. },
  39698. },
  39699. [
  39700. {
  39701. name: "Micro",
  39702. height: math.unit(0.5, "inches")
  39703. },
  39704. {
  39705. name: "Normal",
  39706. height: math.unit(6 + 2/12, "feet"),
  39707. default: true
  39708. },
  39709. {
  39710. name: "Macro",
  39711. height: math.unit(600, "feet")
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39717. {
  39718. front: {
  39719. height: math.unit(1.72, "meters"),
  39720. name: "Front",
  39721. image: {
  39722. source: "./media/characters/archinger/front.svg",
  39723. extra: 1861/1675,
  39724. bottom: 125/1986
  39725. }
  39726. },
  39727. back: {
  39728. height: math.unit(1.72, "meters"),
  39729. name: "Back",
  39730. image: {
  39731. source: "./media/characters/archinger/back.svg",
  39732. extra: 1844/1701,
  39733. bottom: 104/1948
  39734. }
  39735. },
  39736. cock: {
  39737. height: math.unit(0.59, "feet"),
  39738. name: "Cock",
  39739. image: {
  39740. source: "./media/characters/archinger/cock.svg"
  39741. }
  39742. },
  39743. },
  39744. [
  39745. {
  39746. name: "Normal",
  39747. height: math.unit(1.72, "meters"),
  39748. default: true
  39749. },
  39750. {
  39751. name: "Macro",
  39752. height: math.unit(84, "meters")
  39753. },
  39754. {
  39755. name: "Macro+",
  39756. height: math.unit(112, "meters")
  39757. },
  39758. {
  39759. name: "Macro++",
  39760. height: math.unit(960, "meters")
  39761. },
  39762. {
  39763. name: "Macro+++",
  39764. height: math.unit(4, "km")
  39765. },
  39766. {
  39767. name: "Macro++++",
  39768. height: math.unit(48, "km")
  39769. },
  39770. {
  39771. name: "Macro+++++",
  39772. height: math.unit(4500, "km")
  39773. },
  39774. ]
  39775. ))
  39776. characterMakers.push(() => makeCharacter(
  39777. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39778. {
  39779. front: {
  39780. height: math.unit(5 + 5/12, "feet"),
  39781. name: "Front",
  39782. image: {
  39783. source: "./media/characters/alsnapz/front.svg",
  39784. extra: 1157/1065,
  39785. bottom: 42/1199
  39786. }
  39787. },
  39788. },
  39789. [
  39790. {
  39791. name: "Normal",
  39792. height: math.unit(5 + 5/12, "feet"),
  39793. default: true
  39794. },
  39795. ]
  39796. ))
  39797. characterMakers.push(() => makeCharacter(
  39798. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39799. {
  39800. side: {
  39801. height: math.unit(3.2, "earths"),
  39802. name: "Side",
  39803. image: {
  39804. source: "./media/characters/mag/side.svg",
  39805. extra: 1331/1008,
  39806. bottom: 52/1383
  39807. }
  39808. },
  39809. wing: {
  39810. height: math.unit(1.94, "earths"),
  39811. name: "Wing",
  39812. image: {
  39813. source: "./media/characters/mag/wing.svg"
  39814. }
  39815. },
  39816. dick: {
  39817. height: math.unit(1.8, "earths"),
  39818. name: "Dick",
  39819. image: {
  39820. source: "./media/characters/mag/dick.svg"
  39821. }
  39822. },
  39823. ass: {
  39824. height: math.unit(1.33, "earths"),
  39825. name: "Ass",
  39826. image: {
  39827. source: "./media/characters/mag/ass.svg"
  39828. }
  39829. },
  39830. head: {
  39831. height: math.unit(1.1, "earths"),
  39832. name: "Head",
  39833. image: {
  39834. source: "./media/characters/mag/head.svg"
  39835. }
  39836. },
  39837. maw: {
  39838. height: math.unit(1.62, "earths"),
  39839. name: "Maw",
  39840. image: {
  39841. source: "./media/characters/mag/maw.svg"
  39842. }
  39843. },
  39844. },
  39845. [
  39846. {
  39847. name: "Small",
  39848. height: math.unit(162, "feet")
  39849. },
  39850. {
  39851. name: "Normal",
  39852. height: math.unit(3.2, "earths"),
  39853. default: true
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39859. {
  39860. front: {
  39861. height: math.unit(512, "feet"),
  39862. weight: math.unit(63509, "tonnes"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/vorrel-harroc/front.svg",
  39866. extra: 1075/1063,
  39867. bottom: 62/1137
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Normal",
  39874. height: math.unit(10, "feet")
  39875. },
  39876. {
  39877. name: "Macro",
  39878. height: math.unit(512, "feet"),
  39879. default: true
  39880. },
  39881. {
  39882. name: "Megamacro",
  39883. height: math.unit(256, "miles")
  39884. },
  39885. {
  39886. name: "Gigamacro",
  39887. height: math.unit(4096, "miles")
  39888. },
  39889. ]
  39890. ))
  39891. characterMakers.push(() => makeCharacter(
  39892. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39893. {
  39894. side: {
  39895. height: math.unit(50, "feet"),
  39896. name: "Side",
  39897. image: {
  39898. source: "./media/characters/froimar/side.svg",
  39899. extra: 855/638,
  39900. bottom: 99/954
  39901. }
  39902. },
  39903. },
  39904. [
  39905. {
  39906. name: "Macro",
  39907. height: math.unit(50, "feet"),
  39908. default: true
  39909. },
  39910. ]
  39911. ))
  39912. characterMakers.push(() => makeCharacter(
  39913. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39914. {
  39915. front: {
  39916. height: math.unit(210, "miles"),
  39917. name: "Front",
  39918. image: {
  39919. source: "./media/characters/timothy/front.svg",
  39920. extra: 1007/943,
  39921. bottom: 62/1069
  39922. }
  39923. },
  39924. frontSkirt: {
  39925. height: math.unit(210, "miles"),
  39926. name: "Front (Skirt)",
  39927. image: {
  39928. source: "./media/characters/timothy/front-skirt.svg",
  39929. extra: 1007/943,
  39930. bottom: 62/1069
  39931. }
  39932. },
  39933. frontCoat: {
  39934. height: math.unit(210, "miles"),
  39935. name: "Front (Coat)",
  39936. image: {
  39937. source: "./media/characters/timothy/front-coat.svg",
  39938. extra: 1007/943,
  39939. bottom: 62/1069
  39940. }
  39941. },
  39942. },
  39943. [
  39944. {
  39945. name: "Macro",
  39946. height: math.unit(210, "miles"),
  39947. default: true
  39948. },
  39949. {
  39950. name: "Megamacro",
  39951. height: math.unit(210000, "miles")
  39952. },
  39953. ]
  39954. ))
  39955. characterMakers.push(() => makeCharacter(
  39956. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39957. {
  39958. front: {
  39959. height: math.unit(188, "feet"),
  39960. name: "Front",
  39961. image: {
  39962. source: "./media/characters/pyotr/front.svg",
  39963. extra: 1912/1826,
  39964. bottom: 18/1930
  39965. }
  39966. },
  39967. },
  39968. [
  39969. {
  39970. name: "Macro",
  39971. height: math.unit(188, "feet"),
  39972. default: true
  39973. },
  39974. {
  39975. name: "Megamacro",
  39976. height: math.unit(8, "miles")
  39977. },
  39978. ]
  39979. ))
  39980. characterMakers.push(() => makeCharacter(
  39981. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39982. {
  39983. side: {
  39984. height: math.unit(10, "feet"),
  39985. weight: math.unit(4500, "lb"),
  39986. name: "Side",
  39987. image: {
  39988. source: "./media/characters/ackart/side.svg",
  39989. extra: 1776/1668,
  39990. bottom: 116/1892
  39991. }
  39992. },
  39993. },
  39994. [
  39995. {
  39996. name: "Normal",
  39997. height: math.unit(10, "feet"),
  39998. default: true
  39999. },
  40000. ]
  40001. ))
  40002. characterMakers.push(() => makeCharacter(
  40003. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40004. {
  40005. side: {
  40006. height: math.unit(21, "feet"),
  40007. name: "Side",
  40008. image: {
  40009. source: "./media/characters/nolow/side.svg",
  40010. extra: 1484/1434,
  40011. bottom: 85/1569
  40012. }
  40013. },
  40014. sideErect: {
  40015. height: math.unit(21, "feet"),
  40016. name: "Side-erect",
  40017. image: {
  40018. source: "./media/characters/nolow/side-erect.svg",
  40019. extra: 1484/1434,
  40020. bottom: 85/1569
  40021. }
  40022. },
  40023. },
  40024. [
  40025. {
  40026. name: "Regular",
  40027. height: math.unit(12, "feet")
  40028. },
  40029. {
  40030. name: "Big Chee",
  40031. height: math.unit(21, "feet"),
  40032. default: true
  40033. },
  40034. ]
  40035. ))
  40036. characterMakers.push(() => makeCharacter(
  40037. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40038. {
  40039. front: {
  40040. height: math.unit(7, "feet"),
  40041. weight: math.unit(250, "lb"),
  40042. name: "Front",
  40043. image: {
  40044. source: "./media/characters/nines/front.svg",
  40045. extra: 1741/1607,
  40046. bottom: 41/1782
  40047. }
  40048. },
  40049. side: {
  40050. height: math.unit(7, "feet"),
  40051. weight: math.unit(250, "lb"),
  40052. name: "Side",
  40053. image: {
  40054. source: "./media/characters/nines/side.svg",
  40055. extra: 1854/1735,
  40056. bottom: 93/1947
  40057. }
  40058. },
  40059. back: {
  40060. height: math.unit(7, "feet"),
  40061. weight: math.unit(250, "lb"),
  40062. name: "Back",
  40063. image: {
  40064. source: "./media/characters/nines/back.svg",
  40065. extra: 1748/1615,
  40066. bottom: 20/1768
  40067. }
  40068. },
  40069. },
  40070. [
  40071. {
  40072. name: "Megamacro",
  40073. height: math.unit(99, "km"),
  40074. default: true
  40075. },
  40076. ]
  40077. ))
  40078. characterMakers.push(() => makeCharacter(
  40079. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40080. {
  40081. front: {
  40082. height: math.unit(5 + 10/12, "feet"),
  40083. weight: math.unit(210, "lb"),
  40084. name: "Front",
  40085. image: {
  40086. source: "./media/characters/zenith/front.svg",
  40087. extra: 1531/1452,
  40088. bottom: 198/1729
  40089. }
  40090. },
  40091. back: {
  40092. height: math.unit(5 + 10/12, "feet"),
  40093. weight: math.unit(210, "lb"),
  40094. name: "Back",
  40095. image: {
  40096. source: "./media/characters/zenith/back.svg",
  40097. extra: 1571/1487,
  40098. bottom: 75/1646
  40099. }
  40100. },
  40101. },
  40102. [
  40103. {
  40104. name: "Normal",
  40105. height: math.unit(5 + 10/12, "feet"),
  40106. default: true
  40107. }
  40108. ]
  40109. ))
  40110. characterMakers.push(() => makeCharacter(
  40111. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40112. {
  40113. front: {
  40114. height: math.unit(4, "feet"),
  40115. weight: math.unit(60, "lb"),
  40116. name: "Front",
  40117. image: {
  40118. source: "./media/characters/jasper/front.svg",
  40119. extra: 1450/1379,
  40120. bottom: 19/1469
  40121. }
  40122. },
  40123. },
  40124. [
  40125. {
  40126. name: "Normal",
  40127. height: math.unit(4, "feet"),
  40128. default: true
  40129. },
  40130. ]
  40131. ))
  40132. characterMakers.push(() => makeCharacter(
  40133. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40134. {
  40135. front: {
  40136. height: math.unit(6 + 5/12, "feet"),
  40137. weight: math.unit(290, "lb"),
  40138. name: "Front",
  40139. image: {
  40140. source: "./media/characters/tiberius-thyben/front.svg",
  40141. extra: 757/739,
  40142. bottom: 39/796
  40143. }
  40144. },
  40145. },
  40146. [
  40147. {
  40148. name: "Micro",
  40149. height: math.unit(1.5, "inches")
  40150. },
  40151. {
  40152. name: "Normal",
  40153. height: math.unit(6 + 5/12, "feet"),
  40154. default: true
  40155. },
  40156. {
  40157. name: "Macro",
  40158. height: math.unit(300, "feet")
  40159. },
  40160. ]
  40161. ))
  40162. characterMakers.push(() => makeCharacter(
  40163. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40164. {
  40165. front: {
  40166. height: math.unit(5 + 6/12, "feet"),
  40167. weight: math.unit(60, "kg"),
  40168. name: "Front",
  40169. image: {
  40170. source: "./media/characters/sabre/front.svg",
  40171. extra: 738/671,
  40172. bottom: 27/765
  40173. }
  40174. },
  40175. },
  40176. [
  40177. {
  40178. name: "Teeny",
  40179. height: math.unit(2, "inches")
  40180. },
  40181. {
  40182. name: "Smol",
  40183. height: math.unit(8, "inches")
  40184. },
  40185. {
  40186. name: "Normal",
  40187. height: math.unit(5 + 6/12, "feet"),
  40188. default: true
  40189. },
  40190. {
  40191. name: "Mini-Macro",
  40192. height: math.unit(15, "feet")
  40193. },
  40194. {
  40195. name: "Macro",
  40196. height: math.unit(50, "feet")
  40197. },
  40198. ]
  40199. ))
  40200. characterMakers.push(() => makeCharacter(
  40201. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40202. {
  40203. front: {
  40204. height: math.unit(6 + 4/12, "feet"),
  40205. weight: math.unit(170, "lb"),
  40206. name: "Front",
  40207. image: {
  40208. source: "./media/characters/charlie/front.svg",
  40209. extra: 1348/1228,
  40210. bottom: 15/1363
  40211. }
  40212. },
  40213. },
  40214. [
  40215. {
  40216. name: "Macro",
  40217. height: math.unit(1700, "meters"),
  40218. default: true
  40219. },
  40220. {
  40221. name: "MegaMacro",
  40222. height: math.unit(20400, "meters")
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(6 + 3/12, "feet"),
  40231. weight: math.unit(185, "lb"),
  40232. name: "Front",
  40233. image: {
  40234. source: "./media/characters/susan-grant/front.svg",
  40235. extra: 1351/1327,
  40236. bottom: 26/1377
  40237. }
  40238. },
  40239. },
  40240. [
  40241. {
  40242. name: "Normal",
  40243. height: math.unit(6 + 3/12, "feet"),
  40244. default: true
  40245. },
  40246. {
  40247. name: "Macro",
  40248. height: math.unit(225, "feet")
  40249. },
  40250. {
  40251. name: "Macro+",
  40252. height: math.unit(900, "feet")
  40253. },
  40254. {
  40255. name: "MegaMacro",
  40256. height: math.unit(14400, "feet")
  40257. },
  40258. ]
  40259. ))
  40260. characterMakers.push(() => makeCharacter(
  40261. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40262. {
  40263. front: {
  40264. height: math.unit(5 + 4/12, "feet"),
  40265. weight: math.unit(110, "lb"),
  40266. name: "Front",
  40267. image: {
  40268. source: "./media/characters/axel-isanov/front.svg",
  40269. extra: 1096/1065,
  40270. bottom: 13/1109
  40271. }
  40272. },
  40273. },
  40274. [
  40275. {
  40276. name: "Normal",
  40277. height: math.unit(5 + 4/12, "feet"),
  40278. default: true
  40279. },
  40280. ]
  40281. ))
  40282. characterMakers.push(() => makeCharacter(
  40283. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40284. {
  40285. front: {
  40286. height: math.unit(9, "feet"),
  40287. weight: math.unit(467, "lb"),
  40288. name: "Front",
  40289. image: {
  40290. source: "./media/characters/necahual/front.svg",
  40291. extra: 920/873,
  40292. bottom: 26/946
  40293. }
  40294. },
  40295. back: {
  40296. height: math.unit(9, "feet"),
  40297. weight: math.unit(467, "lb"),
  40298. name: "Back",
  40299. image: {
  40300. source: "./media/characters/necahual/back.svg",
  40301. extra: 930/884,
  40302. bottom: 16/946
  40303. }
  40304. },
  40305. frontUnderwear: {
  40306. height: math.unit(9, "feet"),
  40307. weight: math.unit(467, "lb"),
  40308. name: "Front (Underwear)",
  40309. image: {
  40310. source: "./media/characters/necahual/front-underwear.svg",
  40311. extra: 920/873,
  40312. bottom: 26/946
  40313. }
  40314. },
  40315. frontDressed: {
  40316. height: math.unit(9, "feet"),
  40317. weight: math.unit(467, "lb"),
  40318. name: "Front (Dressed)",
  40319. image: {
  40320. source: "./media/characters/necahual/front-dressed.svg",
  40321. extra: 920/873,
  40322. bottom: 26/946
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Comprsesed",
  40329. height: math.unit(9, "feet")
  40330. },
  40331. {
  40332. name: "Natural",
  40333. height: math.unit(15, "feet"),
  40334. default: true
  40335. },
  40336. {
  40337. name: "Boosted",
  40338. height: math.unit(50, "feet")
  40339. },
  40340. {
  40341. name: "Boosted+",
  40342. height: math.unit(150, "feet")
  40343. },
  40344. {
  40345. name: "Max",
  40346. height: math.unit(500, "feet")
  40347. },
  40348. ]
  40349. ))
  40350. characterMakers.push(() => makeCharacter(
  40351. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40352. {
  40353. front: {
  40354. height: math.unit(22 + 1/12, "feet"),
  40355. weight: math.unit(3200, "lb"),
  40356. name: "Front",
  40357. image: {
  40358. source: "./media/characters/theo-acacia/front.svg",
  40359. extra: 1796/1741,
  40360. bottom: 83/1879
  40361. }
  40362. },
  40363. frontUnderwear: {
  40364. height: math.unit(22 + 1/12, "feet"),
  40365. weight: math.unit(3200, "lb"),
  40366. name: "Front (Underwear)",
  40367. image: {
  40368. source: "./media/characters/theo-acacia/front-underwear.svg",
  40369. extra: 1796/1741,
  40370. bottom: 83/1879
  40371. }
  40372. },
  40373. frontNude: {
  40374. height: math.unit(22 + 1/12, "feet"),
  40375. weight: math.unit(3200, "lb"),
  40376. name: "Front (Nude)",
  40377. image: {
  40378. source: "./media/characters/theo-acacia/front-nude.svg",
  40379. extra: 1796/1741,
  40380. bottom: 83/1879
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Normal",
  40387. height: math.unit(22 + 1/12, "feet"),
  40388. default: true
  40389. },
  40390. ]
  40391. ))
  40392. characterMakers.push(() => makeCharacter(
  40393. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40394. {
  40395. front: {
  40396. height: math.unit(20, "feet"),
  40397. name: "Front",
  40398. image: {
  40399. source: "./media/characters/astra/front.svg",
  40400. extra: 1850/1714,
  40401. bottom: 106/1956
  40402. }
  40403. },
  40404. frontUndressed: {
  40405. height: math.unit(20, "feet"),
  40406. name: "Front (Undressed)",
  40407. image: {
  40408. source: "./media/characters/astra/front-undressed.svg",
  40409. extra: 1926/1749,
  40410. bottom: 0/1926
  40411. }
  40412. },
  40413. hand: {
  40414. height: math.unit(1.53, "feet"),
  40415. name: "Hand",
  40416. image: {
  40417. source: "./media/characters/astra/hand.svg"
  40418. }
  40419. },
  40420. paw: {
  40421. height: math.unit(1.53, "feet"),
  40422. name: "Paw",
  40423. image: {
  40424. source: "./media/characters/astra/paw.svg"
  40425. }
  40426. },
  40427. },
  40428. [
  40429. {
  40430. name: "Smallest",
  40431. height: math.unit(20, "feet")
  40432. },
  40433. {
  40434. name: "Normal",
  40435. height: math.unit(1e9, "miles"),
  40436. default: true
  40437. },
  40438. {
  40439. name: "Larger",
  40440. height: math.unit(5, "multiverses")
  40441. },
  40442. {
  40443. name: "Largest",
  40444. height: math.unit(1e9, "multiverses")
  40445. },
  40446. ]
  40447. ))
  40448. characterMakers.push(() => makeCharacter(
  40449. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40450. {
  40451. front: {
  40452. height: math.unit(8, "feet"),
  40453. name: "Front",
  40454. image: {
  40455. source: "./media/characters/breanna/front.svg",
  40456. extra: 1912/1632,
  40457. bottom: 33/1945
  40458. }
  40459. },
  40460. },
  40461. [
  40462. {
  40463. name: "Smallest",
  40464. height: math.unit(8, "feet")
  40465. },
  40466. {
  40467. name: "Normal",
  40468. height: math.unit(1, "mile"),
  40469. default: true
  40470. },
  40471. {
  40472. name: "Maximum",
  40473. height: math.unit(1500000000000, "lightyears")
  40474. },
  40475. ]
  40476. ))
  40477. characterMakers.push(() => makeCharacter(
  40478. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40479. {
  40480. front: {
  40481. height: math.unit(5 + 11/12, "feet"),
  40482. weight: math.unit(155, "lb"),
  40483. name: "Front",
  40484. image: {
  40485. source: "./media/characters/cai/front.svg",
  40486. extra: 1823/1702,
  40487. bottom: 32/1855
  40488. }
  40489. },
  40490. back: {
  40491. height: math.unit(5 + 11/12, "feet"),
  40492. weight: math.unit(155, "lb"),
  40493. name: "Back",
  40494. image: {
  40495. source: "./media/characters/cai/back.svg",
  40496. extra: 1809/1708,
  40497. bottom: 31/1840
  40498. }
  40499. },
  40500. },
  40501. [
  40502. {
  40503. name: "Normal",
  40504. height: math.unit(5 + 11/12, "feet"),
  40505. default: true
  40506. },
  40507. {
  40508. name: "Big",
  40509. height: math.unit(15, "feet")
  40510. },
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(200, "feet")
  40514. },
  40515. ]
  40516. ))
  40517. characterMakers.push(() => makeCharacter(
  40518. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40519. {
  40520. front: {
  40521. height: math.unit(5 + 6/12, "feet"),
  40522. weight: math.unit(160, "lb"),
  40523. name: "Front",
  40524. image: {
  40525. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40526. extra: 1227/1174,
  40527. bottom: 37/1264
  40528. }
  40529. },
  40530. },
  40531. [
  40532. {
  40533. name: "Macro",
  40534. height: math.unit(444, "meters"),
  40535. default: true
  40536. },
  40537. ]
  40538. ))
  40539. characterMakers.push(() => makeCharacter(
  40540. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40541. {
  40542. front: {
  40543. height: math.unit(18 + 7/12, "feet"),
  40544. name: "Front",
  40545. image: {
  40546. source: "./media/characters/rex/front.svg",
  40547. extra: 1941/1807,
  40548. bottom: 66/2007
  40549. }
  40550. },
  40551. back: {
  40552. height: math.unit(18 + 7/12, "feet"),
  40553. name: "Back",
  40554. image: {
  40555. source: "./media/characters/rex/back.svg",
  40556. extra: 1937/1822,
  40557. bottom: 42/1979
  40558. }
  40559. },
  40560. boot: {
  40561. height: math.unit(3.45, "feet"),
  40562. name: "Boot",
  40563. image: {
  40564. source: "./media/characters/rex/boot.svg"
  40565. }
  40566. },
  40567. paw: {
  40568. height: math.unit(4.17, "feet"),
  40569. name: "Paw",
  40570. image: {
  40571. source: "./media/characters/rex/paw.svg"
  40572. }
  40573. },
  40574. head: {
  40575. height: math.unit(6.728, "feet"),
  40576. name: "Head",
  40577. image: {
  40578. source: "./media/characters/rex/head.svg"
  40579. }
  40580. },
  40581. },
  40582. [
  40583. {
  40584. name: "Nano",
  40585. height: math.unit(18 + 7/12, "feet")
  40586. },
  40587. {
  40588. name: "Micro",
  40589. height: math.unit(1.5, "megameters")
  40590. },
  40591. {
  40592. name: "Normal",
  40593. height: math.unit(440, "megameters"),
  40594. default: true
  40595. },
  40596. {
  40597. name: "Macro",
  40598. height: math.unit(2.5, "gigameters")
  40599. },
  40600. {
  40601. name: "Gigamacro",
  40602. height: math.unit(2, "galaxies")
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40608. {
  40609. side: {
  40610. height: math.unit(32, "feet"),
  40611. weight: math.unit(250000, "lb"),
  40612. name: "Side",
  40613. image: {
  40614. source: "./media/characters/silverwing/side.svg",
  40615. extra: 1100/1019,
  40616. bottom: 204/1304
  40617. }
  40618. },
  40619. },
  40620. [
  40621. {
  40622. name: "Normal",
  40623. height: math.unit(32, "feet"),
  40624. default: true
  40625. },
  40626. ]
  40627. ))
  40628. characterMakers.push(() => makeCharacter(
  40629. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40630. {
  40631. front: {
  40632. height: math.unit(6 + 6/12, "feet"),
  40633. weight: math.unit(350, "lb"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/tristan-hawthorne/front.svg",
  40637. extra: 1159/1124,
  40638. bottom: 37/1196
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Normal",
  40645. height: math.unit(6 + 6/12, "feet"),
  40646. default: true
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40652. {
  40653. front: {
  40654. height: math.unit(5 + 11/12, "feet"),
  40655. weight: math.unit(190, "lb"),
  40656. name: "Front",
  40657. image: {
  40658. source: "./media/characters/mizu/front.svg",
  40659. extra: 1988/1788,
  40660. bottom: 14/2002
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Normal",
  40667. height: math.unit(5 + 11/12, "feet"),
  40668. default: true
  40669. },
  40670. ]
  40671. ))
  40672. characterMakers.push(() => makeCharacter(
  40673. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40674. {
  40675. front: {
  40676. height: math.unit(6, "feet"),
  40677. name: "Front",
  40678. image: {
  40679. source: "./media/characters/moonlight-rose-terra/front.svg",
  40680. extra: 1434/1252,
  40681. bottom: 48/1482
  40682. }
  40683. },
  40684. },
  40685. [
  40686. {
  40687. name: "TRAPPIST-1D",
  40688. height: math.unit(4992*2, "km")
  40689. },
  40690. {
  40691. name: "Earth",
  40692. height: math.unit(6367*2, "km"),
  40693. default: true
  40694. },
  40695. {
  40696. name: "Kepler-22b",
  40697. height: math.unit(15282*2, "km")
  40698. },
  40699. ]
  40700. ))
  40701. characterMakers.push(() => makeCharacter(
  40702. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40703. {
  40704. front: {
  40705. height: math.unit(6, "feet"),
  40706. name: "Front",
  40707. image: {
  40708. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40709. extra: 1851/1712,
  40710. bottom: 0/1851
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Enceladus",
  40717. height: math.unit(513*2, "km")
  40718. },
  40719. {
  40720. name: "Europe",
  40721. height: math.unit(1560*2, "km")
  40722. },
  40723. {
  40724. name: "Neptune",
  40725. height: math.unit(24622*2, "km"),
  40726. default: true
  40727. },
  40728. {
  40729. name: "CoRoT-9b",
  40730. height: math.unit(75067*2, "km")
  40731. },
  40732. ]
  40733. ))
  40734. characterMakers.push(() => makeCharacter(
  40735. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40736. {
  40737. front: {
  40738. height: math.unit(6, "feet"),
  40739. name: "Front",
  40740. image: {
  40741. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40742. extra: 1367/1286,
  40743. bottom: 55/1422
  40744. }
  40745. },
  40746. },
  40747. [
  40748. {
  40749. name: "Saturn",
  40750. height: math.unit(58232*2, "km")
  40751. },
  40752. {
  40753. name: "Jupiter",
  40754. height: math.unit(69911*2, "km"),
  40755. default: true
  40756. },
  40757. {
  40758. name: "HD 100546 b",
  40759. height: math.unit(482938, "km")
  40760. },
  40761. ]
  40762. ))
  40763. characterMakers.push(() => makeCharacter(
  40764. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40765. {
  40766. front: {
  40767. height: math.unit(1.7, "feet"),
  40768. weight: math.unit(50, "lb"),
  40769. name: "Front",
  40770. image: {
  40771. source: "./media/characters/dechroma/front.svg",
  40772. extra: 1095/859,
  40773. bottom: 64/1159
  40774. }
  40775. },
  40776. },
  40777. [
  40778. {
  40779. name: "Normal",
  40780. height: math.unit(1.7, "feet"),
  40781. default: true
  40782. },
  40783. ]
  40784. ))
  40785. characterMakers.push(() => makeCharacter(
  40786. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40787. {
  40788. side: {
  40789. height: math.unit(30, "feet"),
  40790. name: "Side",
  40791. image: {
  40792. source: "./media/characters/veluren-thanazel/side.svg",
  40793. extra: 1611/633,
  40794. bottom: 118/1729
  40795. }
  40796. },
  40797. front: {
  40798. height: math.unit(30, "feet"),
  40799. name: "Front",
  40800. image: {
  40801. source: "./media/characters/veluren-thanazel/front.svg",
  40802. extra: 1486/636,
  40803. bottom: 238/1724
  40804. }
  40805. },
  40806. head: {
  40807. height: math.unit(21.4, "feet"),
  40808. name: "Head",
  40809. image: {
  40810. source: "./media/characters/veluren-thanazel/head.svg"
  40811. }
  40812. },
  40813. genitals: {
  40814. height: math.unit(19.4, "feet"),
  40815. name: "Genitals",
  40816. image: {
  40817. source: "./media/characters/veluren-thanazel/genitals.svg"
  40818. }
  40819. },
  40820. },
  40821. [
  40822. {
  40823. name: "Social",
  40824. height: math.unit(6, "feet")
  40825. },
  40826. {
  40827. name: "Play",
  40828. height: math.unit(12, "feet")
  40829. },
  40830. {
  40831. name: "True",
  40832. height: math.unit(30, "feet"),
  40833. default: true
  40834. },
  40835. ]
  40836. ))
  40837. characterMakers.push(() => makeCharacter(
  40838. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40839. {
  40840. front: {
  40841. height: math.unit(7 + 6/12, "feet"),
  40842. weight: math.unit(500, "kg"),
  40843. name: "Front",
  40844. image: {
  40845. source: "./media/characters/arcturas/front.svg",
  40846. extra: 1700/1500,
  40847. bottom: 145/1845
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Normal",
  40854. height: math.unit(7 + 6/12, "feet"),
  40855. default: true
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40861. {
  40862. side: {
  40863. height: math.unit(6, "feet"),
  40864. weight: math.unit(2, "tons"),
  40865. name: "Side",
  40866. image: {
  40867. source: "./media/characters/vitaen/side.svg",
  40868. extra: 1157/617,
  40869. bottom: 122/1279
  40870. }
  40871. },
  40872. },
  40873. [
  40874. {
  40875. name: "Normal",
  40876. height: math.unit(6, "feet"),
  40877. default: true
  40878. },
  40879. ]
  40880. ))
  40881. characterMakers.push(() => makeCharacter(
  40882. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40883. {
  40884. front: {
  40885. height: math.unit(19, "feet"),
  40886. name: "Front",
  40887. image: {
  40888. source: "./media/characters/fia-dreamweaver/front.svg",
  40889. extra: 1630/1504,
  40890. bottom: 25/1655
  40891. }
  40892. },
  40893. },
  40894. [
  40895. {
  40896. name: "Normal",
  40897. height: math.unit(19, "feet"),
  40898. default: true
  40899. },
  40900. ]
  40901. ))
  40902. characterMakers.push(() => makeCharacter(
  40903. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40904. {
  40905. front: {
  40906. height: math.unit(5 + 4/12, "feet"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/artan/front.svg",
  40910. extra: 1618/1535,
  40911. bottom: 46/1664
  40912. }
  40913. },
  40914. back: {
  40915. height: math.unit(5 + 4/12, "feet"),
  40916. name: "Back",
  40917. image: {
  40918. source: "./media/characters/artan/back.svg",
  40919. extra: 1618/1543,
  40920. bottom: 31/1649
  40921. }
  40922. },
  40923. },
  40924. [
  40925. {
  40926. name: "Normal",
  40927. height: math.unit(5 + 4/12, "feet"),
  40928. default: true
  40929. },
  40930. ]
  40931. ))
  40932. characterMakers.push(() => makeCharacter(
  40933. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  40934. {
  40935. side: {
  40936. height: math.unit(182, "cm"),
  40937. weight: math.unit(1000, "lb"),
  40938. name: "Side",
  40939. image: {
  40940. source: "./media/characters/silver-dragon/side.svg",
  40941. extra: 710/287,
  40942. bottom: 88/798
  40943. }
  40944. },
  40945. },
  40946. [
  40947. {
  40948. name: "Normal",
  40949. height: math.unit(182, "cm"),
  40950. default: true
  40951. },
  40952. ]
  40953. ))
  40954. characterMakers.push(() => makeCharacter(
  40955. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  40956. {
  40957. side: {
  40958. height: math.unit(6 + 6/12, "feet"),
  40959. weight: math.unit(1.5, "tons"),
  40960. name: "Side",
  40961. image: {
  40962. source: "./media/characters/zephyr/side.svg",
  40963. extra: 1433/586,
  40964. bottom: 109/1542
  40965. }
  40966. },
  40967. },
  40968. [
  40969. {
  40970. name: "Normal",
  40971. height: math.unit(6 + 6/12, "feet"),
  40972. default: true
  40973. },
  40974. ]
  40975. ))
  40976. characterMakers.push(() => makeCharacter(
  40977. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  40978. {
  40979. side: {
  40980. height: math.unit(1, "feet"),
  40981. name: "Side",
  40982. image: {
  40983. source: "./media/characters/vixye/side.svg",
  40984. extra: 632/541,
  40985. bottom: 0/632
  40986. }
  40987. },
  40988. },
  40989. [
  40990. {
  40991. name: "Normal",
  40992. height: math.unit(1, "feet"),
  40993. default: true
  40994. },
  40995. {
  40996. name: "True",
  40997. height: math.unit(1e15, "multiverses")
  40998. },
  40999. ]
  41000. ))
  41001. characterMakers.push(() => makeCharacter(
  41002. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41003. {
  41004. front: {
  41005. height: math.unit(8 + 2/12, "feet"),
  41006. weight: math.unit(650, "lb"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41010. extra: 1174/1137,
  41011. bottom: 82/1256
  41012. }
  41013. },
  41014. back: {
  41015. height: math.unit(8 + 2/12, "feet"),
  41016. weight: math.unit(650, "lb"),
  41017. name: "Back",
  41018. image: {
  41019. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41020. extra: 1204/1157,
  41021. bottom: 46/1250
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Wildform",
  41028. height: math.unit(8 + 2/12, "feet"),
  41029. default: true
  41030. },
  41031. ]
  41032. ))
  41033. characterMakers.push(() => makeCharacter(
  41034. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41035. {
  41036. front: {
  41037. height: math.unit(18, "feet"),
  41038. name: "Front",
  41039. image: {
  41040. source: "./media/characters/cyphin/front.svg",
  41041. extra: 970/886,
  41042. bottom: 42/1012
  41043. }
  41044. },
  41045. back: {
  41046. height: math.unit(18, "feet"),
  41047. name: "Back",
  41048. image: {
  41049. source: "./media/characters/cyphin/back.svg",
  41050. extra: 1009/894,
  41051. bottom: 24/1033
  41052. }
  41053. },
  41054. head: {
  41055. height: math.unit(5.05, "feet"),
  41056. name: "Head",
  41057. image: {
  41058. source: "./media/characters/cyphin/head.svg"
  41059. }
  41060. },
  41061. tailbud: {
  41062. height: math.unit(5, "feet"),
  41063. name: "Tailbud",
  41064. image: {
  41065. source: "./media/characters/cyphin/tailbud.svg"
  41066. }
  41067. },
  41068. },
  41069. [
  41070. ]
  41071. ))
  41072. characterMakers.push(() => makeCharacter(
  41073. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41074. {
  41075. side: {
  41076. height: math.unit(10, "feet"),
  41077. weight: math.unit(6, "tons"),
  41078. name: "Side",
  41079. image: {
  41080. source: "./media/characters/raijin/side.svg",
  41081. extra: 1529/613,
  41082. bottom: 337/1866
  41083. }
  41084. },
  41085. },
  41086. [
  41087. {
  41088. name: "Normal",
  41089. height: math.unit(10, "feet"),
  41090. default: true
  41091. },
  41092. ]
  41093. ))
  41094. characterMakers.push(() => makeCharacter(
  41095. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41096. {
  41097. side: {
  41098. height: math.unit(9, "feet"),
  41099. name: "Side",
  41100. image: {
  41101. source: "./media/characters/nilghais/side.svg",
  41102. extra: 1047/744,
  41103. bottom: 91/1138
  41104. }
  41105. },
  41106. head: {
  41107. height: math.unit(3.14, "feet"),
  41108. name: "Head",
  41109. image: {
  41110. source: "./media/characters/nilghais/head.svg"
  41111. }
  41112. },
  41113. mouth: {
  41114. height: math.unit(4.6, "feet"),
  41115. name: "Mouth",
  41116. image: {
  41117. source: "./media/characters/nilghais/mouth.svg"
  41118. }
  41119. },
  41120. wings: {
  41121. height: math.unit(24, "feet"),
  41122. name: "Wings",
  41123. image: {
  41124. source: "./media/characters/nilghais/wings.svg"
  41125. }
  41126. },
  41127. ass: {
  41128. height: math.unit(6.12, "feet"),
  41129. name: "Ass",
  41130. image: {
  41131. source: "./media/characters/nilghais/ass.svg"
  41132. }
  41133. },
  41134. },
  41135. [
  41136. {
  41137. name: "Normal",
  41138. height: math.unit(9, "feet"),
  41139. default: true
  41140. },
  41141. ]
  41142. ))
  41143. characterMakers.push(() => makeCharacter(
  41144. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41145. {
  41146. regular: {
  41147. height: math.unit(16 + 2/12, "feet"),
  41148. weight: math.unit(2300, "lb"),
  41149. name: "Regular",
  41150. image: {
  41151. source: "./media/characters/zolgar/regular.svg",
  41152. extra: 1246/1004,
  41153. bottom: 124/1370
  41154. }
  41155. },
  41156. boxers: {
  41157. height: math.unit(16 + 2/12, "feet"),
  41158. weight: math.unit(2300, "lb"),
  41159. name: "Boxers",
  41160. image: {
  41161. source: "./media/characters/zolgar/boxers.svg",
  41162. extra: 1246/1004,
  41163. bottom: 124/1370
  41164. }
  41165. },
  41166. armored: {
  41167. height: math.unit(16 + 2/12, "feet"),
  41168. weight: math.unit(2300, "lb"),
  41169. name: "Armored",
  41170. image: {
  41171. source: "./media/characters/zolgar/armored.svg",
  41172. extra: 1246/1004,
  41173. bottom: 124/1370
  41174. }
  41175. },
  41176. goth: {
  41177. height: math.unit(16 + 2/12, "feet"),
  41178. weight: math.unit(2300, "lb"),
  41179. name: "Goth",
  41180. image: {
  41181. source: "./media/characters/zolgar/goth.svg",
  41182. extra: 1246/1004,
  41183. bottom: 124/1370
  41184. }
  41185. },
  41186. },
  41187. [
  41188. {
  41189. name: "Shrunken Down",
  41190. height: math.unit(9 + 2/12, "feet")
  41191. },
  41192. {
  41193. name: "Normal",
  41194. height: math.unit(16 + 2/12, "feet"),
  41195. default: true
  41196. },
  41197. ]
  41198. ))
  41199. characterMakers.push(() => makeCharacter(
  41200. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41201. {
  41202. front: {
  41203. height: math.unit(6, "feet"),
  41204. weight: math.unit(168, "lb"),
  41205. name: "Front",
  41206. image: {
  41207. source: "./media/characters/luca/front.svg",
  41208. extra: 841/667,
  41209. bottom: 102/943
  41210. }
  41211. },
  41212. },
  41213. [
  41214. {
  41215. name: "Normal",
  41216. height: math.unit(6, "feet"),
  41217. default: true
  41218. },
  41219. ]
  41220. ))
  41221. characterMakers.push(() => makeCharacter(
  41222. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41223. {
  41224. side: {
  41225. height: math.unit(7 + 3/12, "feet"),
  41226. weight: math.unit(312, "lb"),
  41227. name: "Side",
  41228. image: {
  41229. source: "./media/characters/zezo/side.svg",
  41230. extra: 1192/1067,
  41231. bottom: 63/1255
  41232. }
  41233. },
  41234. },
  41235. [
  41236. {
  41237. name: "Normal",
  41238. height: math.unit(7 + 3/12, "feet"),
  41239. default: true
  41240. },
  41241. ]
  41242. ))
  41243. characterMakers.push(() => makeCharacter(
  41244. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41245. {
  41246. front: {
  41247. height: math.unit(5 + 5/12, "feet"),
  41248. weight: math.unit(170, "lb"),
  41249. name: "Front",
  41250. image: {
  41251. source: "./media/characters/mayso/front.svg",
  41252. extra: 1215/1108,
  41253. bottom: 16/1231
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Normal",
  41260. height: math.unit(5 + 5/12, "feet"),
  41261. default: true
  41262. },
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41267. {
  41268. front: {
  41269. height: math.unit(4 + 3/12, "feet"),
  41270. weight: math.unit(80, "lb"),
  41271. name: "Front",
  41272. image: {
  41273. source: "./media/characters/hess/front.svg",
  41274. extra: 1200/1123,
  41275. bottom: 16/1216
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Normal",
  41282. height: math.unit(4 + 3/12, "feet"),
  41283. default: true
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41289. {
  41290. front: {
  41291. height: math.unit(1.9, "meters"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/ashgar/front.svg",
  41295. extra: 1177/1146,
  41296. bottom: 99/1276
  41297. }
  41298. },
  41299. back: {
  41300. height: math.unit(1.9, "meters"),
  41301. name: "Back",
  41302. image: {
  41303. source: "./media/characters/ashgar/back.svg",
  41304. extra: 1201/1183,
  41305. bottom: 53/1254
  41306. }
  41307. },
  41308. feral: {
  41309. height: math.unit(1.4, "meters"),
  41310. name: "Feral",
  41311. image: {
  41312. source: "./media/characters/ashgar/feral.svg",
  41313. extra: 370/345,
  41314. bottom: 45/415
  41315. }
  41316. },
  41317. },
  41318. [
  41319. {
  41320. name: "Normal",
  41321. height: math.unit(1.9, "meters"),
  41322. default: true
  41323. },
  41324. ]
  41325. ))
  41326. characterMakers.push(() => makeCharacter(
  41327. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41328. {
  41329. regular: {
  41330. height: math.unit(6, "feet"),
  41331. weight: math.unit(220, "lb"),
  41332. name: "Regular",
  41333. image: {
  41334. source: "./media/characters/phillip/regular.svg",
  41335. extra: 1373/1277,
  41336. bottom: 75/1448
  41337. }
  41338. },
  41339. dressed: {
  41340. height: math.unit(6, "feet"),
  41341. weight: math.unit(220, "lb"),
  41342. name: "Dressed",
  41343. image: {
  41344. source: "./media/characters/phillip/dressed.svg",
  41345. extra: 1373/1277,
  41346. bottom: 75/1448
  41347. }
  41348. },
  41349. paw: {
  41350. height: math.unit(1.44, "feet"),
  41351. name: "Paw",
  41352. image: {
  41353. source: "./media/characters/phillip/paw.svg"
  41354. }
  41355. },
  41356. },
  41357. [
  41358. {
  41359. name: "Normal",
  41360. height: math.unit(6, "feet"),
  41361. default: true
  41362. },
  41363. ]
  41364. ))
  41365. characterMakers.push(() => makeCharacter(
  41366. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41367. {
  41368. side: {
  41369. height: math.unit(42, "feet"),
  41370. name: "Side",
  41371. image: {
  41372. source: "./media/characters/uvula/side.svg",
  41373. extra: 683/586,
  41374. bottom: 60/743
  41375. }
  41376. },
  41377. front: {
  41378. height: math.unit(42, "feet"),
  41379. name: "Front",
  41380. image: {
  41381. source: "./media/characters/uvula/front.svg",
  41382. extra: 705/613,
  41383. bottom: 54/759
  41384. }
  41385. },
  41386. maw: {
  41387. height: math.unit(23.5, "feet"),
  41388. name: "Maw",
  41389. image: {
  41390. source: "./media/characters/uvula/maw.svg"
  41391. }
  41392. },
  41393. },
  41394. [
  41395. {
  41396. name: "Original Size",
  41397. height: math.unit(14, "inches")
  41398. },
  41399. {
  41400. name: "Human Size",
  41401. height: math.unit(6, "feet")
  41402. },
  41403. {
  41404. name: "Big",
  41405. height: math.unit(42, "feet"),
  41406. default: true
  41407. },
  41408. {
  41409. name: "Bigger",
  41410. height: math.unit(100, "feet")
  41411. },
  41412. ]
  41413. ))
  41414. //characters
  41415. function makeCharacters() {
  41416. const results = [];
  41417. characterMakers.forEach(character => {
  41418. results.push(character());
  41419. });
  41420. return results;
  41421. }