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

48458 строки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  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. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. }
  1900. //species
  1901. function getSpeciesInfo(speciesList) {
  1902. let result = new Set();
  1903. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1904. result.add(entry)
  1905. });
  1906. return Array.from(result);
  1907. };
  1908. function getSpeciesInfoHelper(species) {
  1909. if (!speciesData[species]) {
  1910. console.warn(species + " doesn't exist");
  1911. return [];
  1912. }
  1913. if (speciesData[species].parents) {
  1914. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1915. } else {
  1916. return [species];
  1917. }
  1918. }
  1919. characterMakers.push(() => makeCharacter(
  1920. {
  1921. name: "Fen",
  1922. species: ["crux"],
  1923. description: {
  1924. title: "Bio",
  1925. text: "Very furry. Sheds on everything."
  1926. },
  1927. tags: [
  1928. "anthro",
  1929. "goo"
  1930. ]
  1931. },
  1932. {
  1933. front: {
  1934. height: math.unit(12, "feet"),
  1935. weight: math.unit(2400, "lb"),
  1936. name: "Front",
  1937. image: {
  1938. source: "./media/characters/fen/front.svg",
  1939. extra: 1804/1562,
  1940. bottom: 205/2009
  1941. }
  1942. },
  1943. diving: {
  1944. height: math.unit(4.9, "meters"),
  1945. weight: math.unit(2400, "lb"),
  1946. name: "Diving",
  1947. image: {
  1948. source: "./media/characters/fen/diving.svg"
  1949. }
  1950. },
  1951. goo: {
  1952. height: math.unit(12, "feet"),
  1953. weight: math.unit(3600, "lb"),
  1954. volume: math.unit(1000, "liters"),
  1955. capacity: math.unit(6, "people"),
  1956. name: "Goo",
  1957. image: {
  1958. source: "./media/characters/fen/goo.svg",
  1959. extra: 1307/1071,
  1960. bottom: 134/1441
  1961. }
  1962. },
  1963. maw: {
  1964. height: math.unit(5.03, "feet"),
  1965. name: "Maw",
  1966. image: {
  1967. source: "./media/characters/fen/maw.svg"
  1968. }
  1969. },
  1970. gooCeiling: {
  1971. height: math.unit(6.6, "feet"),
  1972. weight: math.unit(3000, "lb"),
  1973. volume: math.unit(1000, "liters"),
  1974. capacity: math.unit(6, "people"),
  1975. name: "Goo (Ceiling)",
  1976. image: {
  1977. source: "./media/characters/fen/goo-ceiling.svg"
  1978. }
  1979. },
  1980. back: {
  1981. height: math.unit(12, "feet"),
  1982. weight: math.unit(2400, "lb"),
  1983. name: "Back",
  1984. image: {
  1985. source: "./media/characters/fen/back.svg",
  1986. },
  1987. info: {
  1988. description: {
  1989. mode: "append",
  1990. text: "\n\nHe is not currently looking at you."
  1991. }
  1992. }
  1993. },
  1994. full: {
  1995. height: math.unit(1.6, "meter"),
  1996. weight: math.unit(3200, "lb"),
  1997. name: "Full",
  1998. image: {
  1999. source: "./media/characters/fen/full.svg",
  2000. extra: 1133/859,
  2001. bottom: 145/1278
  2002. },
  2003. info: {
  2004. description: {
  2005. mode: "append",
  2006. text: "\n\nMunch."
  2007. }
  2008. }
  2009. },
  2010. gooLounging: {
  2011. height: math.unit(4.53, "feet"),
  2012. weight: math.unit(3000, "lb"),
  2013. capacity: math.unit(6, "people"),
  2014. name: "Goo (Lounging)",
  2015. image: {
  2016. source: "./media/characters/fen/goo-lounging.svg",
  2017. bottom: 116 / 613
  2018. }
  2019. },
  2020. lounging: {
  2021. height: math.unit(10.52, "feet"),
  2022. weight: math.unit(2400, "lb"),
  2023. name: "Lounging",
  2024. image: {
  2025. source: "./media/characters/fen/lounging.svg"
  2026. }
  2027. },
  2028. },
  2029. [
  2030. {
  2031. name: "Small",
  2032. height: math.unit(2.2428, "meter")
  2033. },
  2034. {
  2035. name: "Normal",
  2036. height: math.unit(12, "feet"),
  2037. default: true,
  2038. },
  2039. {
  2040. name: "Big",
  2041. height: math.unit(20, "feet")
  2042. },
  2043. {
  2044. name: "Minimacro",
  2045. height: math.unit(40, "feet"),
  2046. info: {
  2047. description: {
  2048. mode: "append",
  2049. text: "\n\nTOO DAMN BIG"
  2050. }
  2051. }
  2052. },
  2053. {
  2054. name: "Macro",
  2055. height: math.unit(100, "feet"),
  2056. info: {
  2057. description: {
  2058. mode: "append",
  2059. text: "\n\nTOO DAMN BIG"
  2060. }
  2061. }
  2062. },
  2063. {
  2064. name: "Megamacro",
  2065. height: math.unit(2, "miles")
  2066. },
  2067. {
  2068. name: "Gigamacro",
  2069. height: math.unit(10, "earths")
  2070. },
  2071. ]
  2072. ))
  2073. characterMakers.push(() => makeCharacter(
  2074. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2075. {
  2076. front: {
  2077. height: math.unit(183, "cm"),
  2078. weight: math.unit(80, "kg"),
  2079. name: "Front",
  2080. image: {
  2081. source: "./media/characters/sofia-fluttertail/front.svg",
  2082. bottom: 0.01,
  2083. extra: 2154 / 2081
  2084. }
  2085. },
  2086. frontAlt: {
  2087. height: math.unit(183, "cm"),
  2088. weight: math.unit(80, "kg"),
  2089. name: "Front (alt)",
  2090. image: {
  2091. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2092. }
  2093. },
  2094. back: {
  2095. height: math.unit(183, "cm"),
  2096. weight: math.unit(80, "kg"),
  2097. name: "Back",
  2098. image: {
  2099. source: "./media/characters/sofia-fluttertail/back.svg"
  2100. }
  2101. },
  2102. kneeling: {
  2103. height: math.unit(125, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Kneeling",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2108. extra: 1033 / 977,
  2109. bottom: 23.7 / 1057
  2110. }
  2111. },
  2112. maw: {
  2113. height: math.unit(183 / 5, "cm"),
  2114. name: "Maw",
  2115. image: {
  2116. source: "./media/characters/sofia-fluttertail/maw.svg"
  2117. }
  2118. },
  2119. mawcloseup: {
  2120. height: math.unit(183 / 5 * 0.41, "cm"),
  2121. name: "Maw (Closeup)",
  2122. image: {
  2123. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2124. }
  2125. },
  2126. paws: {
  2127. height: math.unit(1.17, "feet"),
  2128. name: "Paws",
  2129. image: {
  2130. source: "./media/characters/sofia-fluttertail/paws.svg",
  2131. extra: 851 / 851,
  2132. bottom: 17 / 868
  2133. }
  2134. },
  2135. },
  2136. [
  2137. {
  2138. name: "Normal",
  2139. height: math.unit(1.83, "meter")
  2140. },
  2141. {
  2142. name: "Size Thief",
  2143. height: math.unit(18, "feet")
  2144. },
  2145. {
  2146. name: "50 Foot Collie",
  2147. height: math.unit(50, "feet")
  2148. },
  2149. {
  2150. name: "Macro",
  2151. height: math.unit(96, "feet"),
  2152. default: true
  2153. },
  2154. {
  2155. name: "Megamerger",
  2156. height: math.unit(650, "feet")
  2157. },
  2158. ]
  2159. ))
  2160. characterMakers.push(() => makeCharacter(
  2161. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2162. {
  2163. front: {
  2164. height: math.unit(7, "feet"),
  2165. weight: math.unit(100, "kg"),
  2166. name: "Front",
  2167. image: {
  2168. source: "./media/characters/march/front.svg",
  2169. extra: 1992/1851,
  2170. bottom: 39/2031
  2171. }
  2172. },
  2173. foot: {
  2174. height: math.unit(0.9, "feet"),
  2175. name: "Foot",
  2176. image: {
  2177. source: "./media/characters/march/foot.svg"
  2178. }
  2179. },
  2180. },
  2181. [
  2182. {
  2183. name: "Normal",
  2184. height: math.unit(7.9, "feet")
  2185. },
  2186. {
  2187. name: "Macro",
  2188. height: math.unit(220, "meters")
  2189. },
  2190. {
  2191. name: "Megamacro",
  2192. height: math.unit(2.98, "km"),
  2193. default: true
  2194. },
  2195. {
  2196. name: "Gigamacro",
  2197. height: math.unit(15963, "km")
  2198. },
  2199. {
  2200. name: "Teramacro",
  2201. height: math.unit(2980000000, "km")
  2202. },
  2203. {
  2204. name: "Examacro",
  2205. height: math.unit(250, "parsecs")
  2206. },
  2207. ]
  2208. ))
  2209. characterMakers.push(() => makeCharacter(
  2210. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2211. {
  2212. front: {
  2213. height: math.unit(6, "feet"),
  2214. weight: math.unit(60, "kg"),
  2215. name: "Front",
  2216. image: {
  2217. source: "./media/characters/noir/front.svg",
  2218. extra: 1,
  2219. bottom: 0.032
  2220. }
  2221. },
  2222. },
  2223. [
  2224. {
  2225. name: "Normal",
  2226. height: math.unit(6.6, "feet")
  2227. },
  2228. {
  2229. name: "Macro",
  2230. height: math.unit(500, "feet")
  2231. },
  2232. {
  2233. name: "Megamacro",
  2234. height: math.unit(2.5, "km"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Gigamacro",
  2239. height: math.unit(22500, "km")
  2240. },
  2241. {
  2242. name: "Teramacro",
  2243. height: math.unit(2500000000, "km")
  2244. },
  2245. {
  2246. name: "Examacro",
  2247. height: math.unit(200, "parsecs")
  2248. },
  2249. ]
  2250. ))
  2251. characterMakers.push(() => makeCharacter(
  2252. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2253. {
  2254. front: {
  2255. height: math.unit(7, "feet"),
  2256. weight: math.unit(100, "kg"),
  2257. name: "Front",
  2258. image: {
  2259. source: "./media/characters/okuri/front.svg",
  2260. extra: 1,
  2261. bottom: 0.037
  2262. }
  2263. },
  2264. back: {
  2265. height: math.unit(7, "feet"),
  2266. weight: math.unit(100, "kg"),
  2267. name: "Back",
  2268. image: {
  2269. source: "./media/characters/okuri/back.svg",
  2270. extra: 1,
  2271. bottom: 0.007
  2272. }
  2273. },
  2274. },
  2275. [
  2276. {
  2277. name: "Megamacro",
  2278. height: math.unit(100, "miles"),
  2279. default: true
  2280. },
  2281. ]
  2282. ))
  2283. characterMakers.push(() => makeCharacter(
  2284. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2285. {
  2286. front: {
  2287. height: math.unit(7, "feet"),
  2288. weight: math.unit(100, "kg"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/manny/front.svg",
  2292. extra: 1,
  2293. bottom: 0.06
  2294. }
  2295. },
  2296. back: {
  2297. height: math.unit(7, "feet"),
  2298. weight: math.unit(100, "kg"),
  2299. name: "Back",
  2300. image: {
  2301. source: "./media/characters/manny/back.svg",
  2302. extra: 1,
  2303. bottom: 0.014
  2304. }
  2305. },
  2306. },
  2307. [
  2308. {
  2309. name: "Normal",
  2310. height: math.unit(7, "feet"),
  2311. },
  2312. {
  2313. name: "Macro",
  2314. height: math.unit(78, "feet"),
  2315. default: true
  2316. },
  2317. {
  2318. name: "Macro+",
  2319. height: math.unit(300, "meters")
  2320. },
  2321. {
  2322. name: "Macro++",
  2323. height: math.unit(2400, "meters")
  2324. },
  2325. {
  2326. name: "Megamacro",
  2327. height: math.unit(5167, "meters")
  2328. },
  2329. {
  2330. name: "Gigamacro",
  2331. height: math.unit(41769, "miles")
  2332. },
  2333. ]
  2334. ))
  2335. characterMakers.push(() => makeCharacter(
  2336. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2337. {
  2338. front: {
  2339. height: math.unit(7, "feet"),
  2340. weight: math.unit(100, "kg"),
  2341. name: "Front",
  2342. image: {
  2343. source: "./media/characters/adake/front-1.svg"
  2344. }
  2345. },
  2346. frontAlt: {
  2347. height: math.unit(7, "feet"),
  2348. weight: math.unit(100, "kg"),
  2349. name: "Front (Alt)",
  2350. image: {
  2351. source: "./media/characters/adake/front-2.svg",
  2352. extra: 1,
  2353. bottom: 0.01
  2354. }
  2355. },
  2356. back: {
  2357. height: math.unit(7, "feet"),
  2358. weight: math.unit(100, "kg"),
  2359. name: "Back",
  2360. image: {
  2361. source: "./media/characters/adake/back.svg",
  2362. }
  2363. },
  2364. kneel: {
  2365. height: math.unit(5.385, "feet"),
  2366. weight: math.unit(100, "kg"),
  2367. name: "Kneeling",
  2368. image: {
  2369. source: "./media/characters/adake/kneel.svg",
  2370. bottom: 0.052
  2371. }
  2372. },
  2373. },
  2374. [
  2375. {
  2376. name: "Normal",
  2377. height: math.unit(7, "feet"),
  2378. },
  2379. {
  2380. name: "Macro",
  2381. height: math.unit(78, "feet"),
  2382. default: true
  2383. },
  2384. {
  2385. name: "Macro+",
  2386. height: math.unit(300, "meters")
  2387. },
  2388. {
  2389. name: "Macro++",
  2390. height: math.unit(2400, "meters")
  2391. },
  2392. {
  2393. name: "Megamacro",
  2394. height: math.unit(5167, "meters")
  2395. },
  2396. {
  2397. name: "Gigamacro",
  2398. height: math.unit(41769, "miles")
  2399. },
  2400. ]
  2401. ))
  2402. characterMakers.push(() => makeCharacter(
  2403. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2404. {
  2405. front: {
  2406. height: math.unit(1.65, "meters"),
  2407. weight: math.unit(50, "kg"),
  2408. name: "Front",
  2409. image: {
  2410. source: "./media/characters/elijah/front.svg",
  2411. extra: 858 / 830,
  2412. bottom: 95.5 / 953.8559
  2413. }
  2414. },
  2415. back: {
  2416. height: math.unit(1.65, "meters"),
  2417. weight: math.unit(50, "kg"),
  2418. name: "Back",
  2419. image: {
  2420. source: "./media/characters/elijah/back.svg",
  2421. extra: 895 / 850,
  2422. bottom: 5.3 / 897.956
  2423. }
  2424. },
  2425. frontNsfw: {
  2426. height: math.unit(1.65, "meters"),
  2427. weight: math.unit(50, "kg"),
  2428. name: "Front (NSFW)",
  2429. image: {
  2430. source: "./media/characters/elijah/front-nsfw.svg",
  2431. extra: 858 / 830,
  2432. bottom: 95.5 / 953.8559
  2433. }
  2434. },
  2435. backNsfw: {
  2436. height: math.unit(1.65, "meters"),
  2437. weight: math.unit(50, "kg"),
  2438. name: "Back (NSFW)",
  2439. image: {
  2440. source: "./media/characters/elijah/back-nsfw.svg",
  2441. extra: 895 / 850,
  2442. bottom: 5.3 / 897.956
  2443. }
  2444. },
  2445. dick: {
  2446. height: math.unit(1, "feet"),
  2447. name: "Dick",
  2448. image: {
  2449. source: "./media/characters/elijah/dick.svg"
  2450. }
  2451. },
  2452. beakOpen: {
  2453. height: math.unit(1.25, "feet"),
  2454. name: "Beak (Open)",
  2455. image: {
  2456. source: "./media/characters/elijah/beak-open.svg"
  2457. }
  2458. },
  2459. beakShut: {
  2460. height: math.unit(1.25, "feet"),
  2461. name: "Beak (Shut)",
  2462. image: {
  2463. source: "./media/characters/elijah/beak-shut.svg"
  2464. }
  2465. },
  2466. footFlexing: {
  2467. height: math.unit(1.61, "feet"),
  2468. name: "Foot (Flexing)",
  2469. image: {
  2470. source: "./media/characters/elijah/foot-flexing.svg"
  2471. }
  2472. },
  2473. footStepping: {
  2474. height: math.unit(1.44, "feet"),
  2475. name: "Foot (Stepping)",
  2476. image: {
  2477. source: "./media/characters/elijah/foot-stepping.svg"
  2478. }
  2479. },
  2480. plantigradeLeg: {
  2481. height: math.unit(2.34, "feet"),
  2482. name: "Plantigrade Leg",
  2483. image: {
  2484. source: "./media/characters/elijah/plantigrade-leg.svg"
  2485. }
  2486. },
  2487. plantigradeFootLeft: {
  2488. height: math.unit(0.9, "feet"),
  2489. name: "Plantigrade Foot (Left)",
  2490. image: {
  2491. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2492. }
  2493. },
  2494. plantigradeFootRight: {
  2495. height: math.unit(0.9, "feet"),
  2496. name: "Plantigrade Foot (Right)",
  2497. image: {
  2498. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2499. }
  2500. },
  2501. },
  2502. [
  2503. {
  2504. name: "Normal",
  2505. height: math.unit(1.65, "meters")
  2506. },
  2507. {
  2508. name: "Macro",
  2509. height: math.unit(55, "meters"),
  2510. default: true
  2511. },
  2512. {
  2513. name: "Macro+",
  2514. height: math.unit(105, "meters")
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(7 + 2/12, "feet"),
  2523. weight: math.unit(320, "kg"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/rai/front.svg",
  2527. extra: 1802/1696,
  2528. bottom: 68/1870
  2529. }
  2530. },
  2531. frontDressed: {
  2532. height: math.unit(7 + 2/12, "feet"),
  2533. weight: math.unit(320, "kg"),
  2534. name: "Front (Dressed)",
  2535. image: {
  2536. source: "./media/characters/rai/front-dressed.svg",
  2537. extra: 1802/1696,
  2538. bottom: 68/1870
  2539. }
  2540. },
  2541. side: {
  2542. height: math.unit(7 + 2/12, "feet"),
  2543. weight: math.unit(320, "kg"),
  2544. name: "Side",
  2545. image: {
  2546. source: "./media/characters/rai/side.svg",
  2547. extra: 1789/1710,
  2548. bottom: 115/1904
  2549. }
  2550. },
  2551. back: {
  2552. height: math.unit(7 + 2/12, "feet"),
  2553. weight: math.unit(320, "kg"),
  2554. name: "Back",
  2555. image: {
  2556. source: "./media/characters/rai/back.svg",
  2557. extra: 1770/1707,
  2558. bottom: 28/1798
  2559. }
  2560. },
  2561. feral: {
  2562. height: math.unit(9.5, "feet"),
  2563. weight: math.unit(640, "kg"),
  2564. name: "Feral",
  2565. image: {
  2566. source: "./media/characters/rai/feral.svg",
  2567. extra: 945/553,
  2568. bottom: 176/1121
  2569. }
  2570. },
  2571. dragon: {
  2572. height: math.unit(23, "feet"),
  2573. weight: math.unit(50000, "lb"),
  2574. name: "Dragon",
  2575. image: {
  2576. source: "./media/characters/rai/dragon.svg",
  2577. extra: 2498 / 2030,
  2578. bottom: 85.2 / 2584
  2579. }
  2580. },
  2581. maw: {
  2582. height: math.unit(1.69, "feet"),
  2583. name: "Maw",
  2584. image: {
  2585. source: "./media/characters/rai/maw.svg"
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Normal",
  2592. height: math.unit(7 + 2/12, "feet")
  2593. },
  2594. {
  2595. name: "Big",
  2596. height: math.unit(11, "feet")
  2597. },
  2598. {
  2599. name: "Macro",
  2600. height: math.unit(302, "feet"),
  2601. default: true
  2602. },
  2603. ]
  2604. ))
  2605. characterMakers.push(() => makeCharacter(
  2606. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2607. {
  2608. frontDressed: {
  2609. height: math.unit(216, "feet"),
  2610. weight: math.unit(7000000, "lb"),
  2611. name: "Front (Dressed)",
  2612. image: {
  2613. source: "./media/characters/jazzy/front-dressed.svg",
  2614. extra: 2738 / 2651,
  2615. bottom: 41.8 / 2786
  2616. }
  2617. },
  2618. backDressed: {
  2619. height: math.unit(216, "feet"),
  2620. weight: math.unit(7000000, "lb"),
  2621. name: "Back (Dressed)",
  2622. image: {
  2623. source: "./media/characters/jazzy/back-dressed.svg",
  2624. extra: 2775 / 2673,
  2625. bottom: 36.8 / 2817
  2626. }
  2627. },
  2628. front: {
  2629. height: math.unit(216, "feet"),
  2630. weight: math.unit(7000000, "lb"),
  2631. name: "Front",
  2632. image: {
  2633. source: "./media/characters/jazzy/front.svg",
  2634. extra: 2738 / 2651,
  2635. bottom: 41.8 / 2786
  2636. }
  2637. },
  2638. back: {
  2639. height: math.unit(216, "feet"),
  2640. weight: math.unit(7000000, "lb"),
  2641. name: "Back",
  2642. image: {
  2643. source: "./media/characters/jazzy/back.svg",
  2644. extra: 2775 / 2673,
  2645. bottom: 36.8 / 2817
  2646. }
  2647. },
  2648. maw: {
  2649. height: math.unit(20, "feet"),
  2650. name: "Maw",
  2651. image: {
  2652. source: "./media/characters/jazzy/maw.svg"
  2653. }
  2654. },
  2655. paws: {
  2656. height: math.unit(27.5, "feet"),
  2657. name: "Paws",
  2658. image: {
  2659. source: "./media/characters/jazzy/paws.svg"
  2660. }
  2661. },
  2662. eye: {
  2663. height: math.unit(4.4, "feet"),
  2664. name: "Eye",
  2665. image: {
  2666. source: "./media/characters/jazzy/eye.svg"
  2667. }
  2668. },
  2669. droneOffense: {
  2670. height: math.unit(9.5, "inches"),
  2671. name: "Drone (Offense)",
  2672. image: {
  2673. source: "./media/characters/jazzy/drone-offense.svg"
  2674. }
  2675. },
  2676. droneRecon: {
  2677. height: math.unit(9.5, "inches"),
  2678. name: "Drone (Recon)",
  2679. image: {
  2680. source: "./media/characters/jazzy/drone-recon.svg"
  2681. }
  2682. },
  2683. droneDefense: {
  2684. height: math.unit(9.5, "inches"),
  2685. name: "Drone (Defense)",
  2686. image: {
  2687. source: "./media/characters/jazzy/drone-defense.svg"
  2688. }
  2689. },
  2690. },
  2691. [
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(216, "feet"),
  2695. default: true
  2696. },
  2697. ]
  2698. ))
  2699. characterMakers.push(() => makeCharacter(
  2700. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2701. {
  2702. front: {
  2703. height: math.unit(9 + 6/12, "feet"),
  2704. weight: math.unit(700, "lb"),
  2705. name: "Front",
  2706. image: {
  2707. source: "./media/characters/flamm/front.svg",
  2708. extra: 1751/1632,
  2709. bottom: 46/1797
  2710. }
  2711. },
  2712. buff: {
  2713. height: math.unit(9 + 6/12, "feet"),
  2714. weight: math.unit(950, "lb"),
  2715. name: "Buff",
  2716. image: {
  2717. source: "./media/characters/flamm/buff.svg",
  2718. extra: 3018/2874,
  2719. bottom: 221/3239
  2720. }
  2721. },
  2722. },
  2723. [
  2724. {
  2725. name: "Normal",
  2726. height: math.unit(9.5, "feet")
  2727. },
  2728. {
  2729. name: "Macro",
  2730. height: math.unit(200, "feet"),
  2731. default: true
  2732. },
  2733. ]
  2734. ))
  2735. characterMakers.push(() => makeCharacter(
  2736. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2737. {
  2738. front: {
  2739. height: math.unit(5 + 3/12, "feet"),
  2740. weight: math.unit(60, "kg"),
  2741. name: "Front",
  2742. image: {
  2743. source: "./media/characters/zephiro/front.svg",
  2744. extra: 2309 / 2162,
  2745. bottom: 0.069
  2746. }
  2747. },
  2748. side: {
  2749. height: math.unit(5 + 3/12, "feet"),
  2750. weight: math.unit(60, "kg"),
  2751. name: "Side",
  2752. image: {
  2753. source: "./media/characters/zephiro/side.svg",
  2754. extra: 2403 / 2279,
  2755. bottom: 0.015
  2756. }
  2757. },
  2758. back: {
  2759. height: math.unit(5 + 3/12, "feet"),
  2760. weight: math.unit(60, "kg"),
  2761. name: "Back",
  2762. image: {
  2763. source: "./media/characters/zephiro/back.svg",
  2764. extra: 2373 / 2244,
  2765. bottom: 0.013
  2766. }
  2767. },
  2768. hand: {
  2769. height: math.unit(0.68, "feet"),
  2770. name: "Hand",
  2771. image: {
  2772. source: "./media/characters/zephiro/hand.svg"
  2773. }
  2774. },
  2775. paw: {
  2776. height: math.unit(1, "feet"),
  2777. name: "Paw",
  2778. image: {
  2779. source: "./media/characters/zephiro/paw.svg"
  2780. }
  2781. },
  2782. beans: {
  2783. height: math.unit(0.93, "feet"),
  2784. name: "Beans",
  2785. image: {
  2786. source: "./media/characters/zephiro/beans.svg"
  2787. }
  2788. },
  2789. },
  2790. [
  2791. {
  2792. name: "Micro",
  2793. height: math.unit(3, "inches")
  2794. },
  2795. {
  2796. name: "Normal",
  2797. height: math.unit(5 + 3 / 12, "feet"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(118, "feet")
  2803. },
  2804. ]
  2805. ))
  2806. characterMakers.push(() => makeCharacter(
  2807. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2808. {
  2809. front: {
  2810. height: math.unit(5, "feet"),
  2811. weight: math.unit(90, "kg"),
  2812. name: "Front",
  2813. image: {
  2814. source: "./media/characters/fory/front.svg",
  2815. extra: 2862 / 2674,
  2816. bottom: 180 / 3043.8
  2817. }
  2818. },
  2819. back: {
  2820. height: math.unit(5, "feet"),
  2821. weight: math.unit(90, "kg"),
  2822. name: "Back",
  2823. image: {
  2824. source: "./media/characters/fory/back.svg",
  2825. extra: 2962 / 2791,
  2826. bottom: 106 / 3071.8
  2827. }
  2828. },
  2829. foot: {
  2830. height: math.unit(2.14, "feet"),
  2831. name: "Foot",
  2832. image: {
  2833. source: "./media/characters/fory/foot.svg"
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Normal",
  2840. height: math.unit(5, "feet")
  2841. },
  2842. {
  2843. name: "Macro",
  2844. height: math.unit(50, "feet"),
  2845. default: true
  2846. },
  2847. {
  2848. name: "Megamacro",
  2849. height: math.unit(10, "miles")
  2850. },
  2851. {
  2852. name: "Gigamacro",
  2853. height: math.unit(5, "earths")
  2854. },
  2855. ]
  2856. ))
  2857. characterMakers.push(() => makeCharacter(
  2858. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2859. {
  2860. front: {
  2861. height: math.unit(7, "feet"),
  2862. weight: math.unit(90, "kg"),
  2863. name: "Front",
  2864. image: {
  2865. source: "./media/characters/kurrikage/front.svg",
  2866. extra: 1845/1733,
  2867. bottom: 119/1964
  2868. }
  2869. },
  2870. back: {
  2871. height: math.unit(7, "feet"),
  2872. weight: math.unit(90, "kg"),
  2873. name: "Back",
  2874. image: {
  2875. source: "./media/characters/kurrikage/back.svg",
  2876. extra: 1790/1677,
  2877. bottom: 61/1851
  2878. }
  2879. },
  2880. dressed: {
  2881. height: math.unit(7, "feet"),
  2882. weight: math.unit(90, "kg"),
  2883. name: "Dressed",
  2884. image: {
  2885. source: "./media/characters/kurrikage/dressed.svg",
  2886. extra: 1845/1733,
  2887. bottom: 119/1964
  2888. }
  2889. },
  2890. foot: {
  2891. height: math.unit(1.5, "feet"),
  2892. name: "Foot",
  2893. image: {
  2894. source: "./media/characters/kurrikage/foot.svg"
  2895. }
  2896. },
  2897. staff: {
  2898. height: math.unit(6.7, "feet"),
  2899. name: "Staff",
  2900. image: {
  2901. source: "./media/characters/kurrikage/staff.svg"
  2902. }
  2903. },
  2904. peek: {
  2905. height: math.unit(1.05, "feet"),
  2906. name: "Peeking",
  2907. image: {
  2908. source: "./media/characters/kurrikage/peek.svg",
  2909. bottom: 0.08
  2910. }
  2911. },
  2912. },
  2913. [
  2914. {
  2915. name: "Normal",
  2916. height: math.unit(12, "feet"),
  2917. default: true
  2918. },
  2919. {
  2920. name: "Big",
  2921. height: math.unit(20, "feet")
  2922. },
  2923. {
  2924. name: "Macro",
  2925. height: math.unit(500, "feet")
  2926. },
  2927. {
  2928. name: "Megamacro",
  2929. height: math.unit(20, "miles")
  2930. },
  2931. ]
  2932. ))
  2933. characterMakers.push(() => makeCharacter(
  2934. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2935. {
  2936. front: {
  2937. height: math.unit(6, "feet"),
  2938. weight: math.unit(75, "kg"),
  2939. name: "Front",
  2940. image: {
  2941. source: "./media/characters/shingo/front.svg",
  2942. extra: 1900/1825,
  2943. bottom: 82/1982
  2944. }
  2945. },
  2946. side: {
  2947. height: math.unit(6, "feet"),
  2948. weight: math.unit(75, "kg"),
  2949. name: "Side",
  2950. image: {
  2951. source: "./media/characters/shingo/side.svg",
  2952. extra: 1930/1865,
  2953. bottom: 16/1946
  2954. }
  2955. },
  2956. back: {
  2957. height: math.unit(6, "feet"),
  2958. weight: math.unit(75, "kg"),
  2959. name: "Back",
  2960. image: {
  2961. source: "./media/characters/shingo/back.svg",
  2962. extra: 1922/1852,
  2963. bottom: 16/1938
  2964. }
  2965. },
  2966. frontDressed: {
  2967. height: math.unit(6, "feet"),
  2968. weight: math.unit(150, "lb"),
  2969. name: "Front-dressed",
  2970. image: {
  2971. source: "./media/characters/shingo/front-dressed.svg",
  2972. extra: 1900/1825,
  2973. bottom: 82/1982
  2974. }
  2975. },
  2976. paw: {
  2977. height: math.unit(1.29, "feet"),
  2978. name: "Paw",
  2979. image: {
  2980. source: "./media/characters/shingo/paw.svg"
  2981. }
  2982. },
  2983. hand: {
  2984. height: math.unit(1.07, "feet"),
  2985. name: "Hand",
  2986. image: {
  2987. source: "./media/characters/shingo/hand.svg"
  2988. }
  2989. },
  2990. frontAlt: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front (Alt)",
  2994. image: {
  2995. source: "./media/characters/shingo/front-alt.svg",
  2996. extra: 3511 / 3338,
  2997. bottom: 0.005
  2998. }
  2999. },
  3000. frontAlt2: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Front (Alt 2)",
  3004. image: {
  3005. source: "./media/characters/shingo/front-alt-2.svg",
  3006. extra: 706/681,
  3007. bottom: 11/717
  3008. }
  3009. },
  3010. pawAlt: {
  3011. height: math.unit(1, "feet"),
  3012. name: "Paw (Alt)",
  3013. image: {
  3014. source: "./media/characters/shingo/paw-alt.svg"
  3015. }
  3016. },
  3017. },
  3018. [
  3019. {
  3020. name: "Micro",
  3021. height: math.unit(4, "inches")
  3022. },
  3023. {
  3024. name: "Normal",
  3025. height: math.unit(6, "feet"),
  3026. default: true
  3027. },
  3028. {
  3029. name: "Macro",
  3030. height: math.unit(108, "feet")
  3031. },
  3032. {
  3033. name: "Macro+",
  3034. height: math.unit(1500, "feet")
  3035. },
  3036. ]
  3037. ))
  3038. characterMakers.push(() => makeCharacter(
  3039. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3040. {
  3041. side: {
  3042. height: math.unit(6, "feet"),
  3043. weight: math.unit(75, "kg"),
  3044. name: "Side",
  3045. image: {
  3046. source: "./media/characters/aigey/side.svg"
  3047. }
  3048. },
  3049. },
  3050. [
  3051. {
  3052. name: "Macro",
  3053. height: math.unit(200, "feet"),
  3054. default: true
  3055. },
  3056. {
  3057. name: "Megamacro",
  3058. height: math.unit(100, "miles")
  3059. },
  3060. ]
  3061. )
  3062. )
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3065. {
  3066. front: {
  3067. height: math.unit(5 + 5 / 12, "feet"),
  3068. weight: math.unit(75, "kg"),
  3069. name: "Front",
  3070. image: {
  3071. source: "./media/characters/natasha/front.svg",
  3072. extra: 859 / 824,
  3073. bottom: 23 / 879.6
  3074. }
  3075. },
  3076. frontNsfw: {
  3077. height: math.unit(5 + 5 / 12, "feet"),
  3078. weight: math.unit(75, "kg"),
  3079. name: "Front (NSFW)",
  3080. image: {
  3081. source: "./media/characters/natasha/front-nsfw.svg",
  3082. extra: 859 / 824,
  3083. bottom: 23 / 879.6
  3084. }
  3085. },
  3086. frontErect: {
  3087. height: math.unit(5 + 5 / 12, "feet"),
  3088. weight: math.unit(75, "kg"),
  3089. name: "Front (Erect)",
  3090. image: {
  3091. source: "./media/characters/natasha/front-erect.svg",
  3092. extra: 859 / 824,
  3093. bottom: 23 / 879.6
  3094. }
  3095. },
  3096. back: {
  3097. height: math.unit(5 + 5 / 12, "feet"),
  3098. weight: math.unit(75, "kg"),
  3099. name: "Back",
  3100. image: {
  3101. source: "./media/characters/natasha/back.svg",
  3102. extra: 887.9 / 852.6,
  3103. bottom: 9.7 / 896.4
  3104. }
  3105. },
  3106. backAlt: {
  3107. height: math.unit(5 + 5 / 12, "feet"),
  3108. weight: math.unit(75, "kg"),
  3109. name: "Back (Alt)",
  3110. image: {
  3111. source: "./media/characters/natasha/back-alt.svg",
  3112. extra: 1236.7 / 1192,
  3113. bottom: 22.3 / 1258.2
  3114. }
  3115. },
  3116. dick: {
  3117. height: math.unit(1.772, "feet"),
  3118. name: "Dick",
  3119. image: {
  3120. source: "./media/characters/natasha/dick.svg"
  3121. }
  3122. },
  3123. paw: {
  3124. height: math.unit(0.250, "meters"),
  3125. name: "Paw",
  3126. image: {
  3127. source: "./media/characters/natasha/paw.svg"
  3128. }
  3129. },
  3130. },
  3131. [
  3132. {
  3133. name: "Normal",
  3134. height: math.unit(5 + 5 / 12, "feet")
  3135. },
  3136. {
  3137. name: "Large",
  3138. height: math.unit(12, "feet")
  3139. },
  3140. {
  3141. name: "Macro",
  3142. height: math.unit(100, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Macro+",
  3147. height: math.unit(260, "feet")
  3148. },
  3149. {
  3150. name: "Macro++",
  3151. height: math.unit(1, "mile")
  3152. },
  3153. ]
  3154. ))
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3157. {
  3158. front: {
  3159. height: math.unit(6, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Front",
  3162. image: {
  3163. source: "./media/characters/malik/front.svg"
  3164. }
  3165. },
  3166. side: {
  3167. height: math.unit(6, "feet"),
  3168. weight: math.unit(75, "kg"),
  3169. name: "Side",
  3170. image: {
  3171. source: "./media/characters/malik/side.svg",
  3172. extra: 1.1539
  3173. }
  3174. },
  3175. back: {
  3176. height: math.unit(6, "feet"),
  3177. weight: math.unit(75, "kg"),
  3178. name: "Back",
  3179. image: {
  3180. source: "./media/characters/malik/back.svg"
  3181. }
  3182. },
  3183. },
  3184. [
  3185. {
  3186. name: "Macro",
  3187. height: math.unit(156, "feet"),
  3188. default: true
  3189. },
  3190. {
  3191. name: "Macro+",
  3192. height: math.unit(1188, "feet")
  3193. },
  3194. ]
  3195. ))
  3196. characterMakers.push(() => makeCharacter(
  3197. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3198. {
  3199. front: {
  3200. height: math.unit(6, "feet"),
  3201. weight: math.unit(75, "kg"),
  3202. name: "Front",
  3203. image: {
  3204. source: "./media/characters/sefer/front.svg",
  3205. extra: 848 / 659,
  3206. bottom: 28.3 / 876.442
  3207. }
  3208. },
  3209. back: {
  3210. height: math.unit(6, "feet"),
  3211. weight: math.unit(75, "kg"),
  3212. name: "Back",
  3213. image: {
  3214. source: "./media/characters/sefer/back.svg",
  3215. extra: 864 / 695,
  3216. bottom: 10 / 871
  3217. }
  3218. },
  3219. frontDressed: {
  3220. height: math.unit(6, "feet"),
  3221. weight: math.unit(75, "kg"),
  3222. name: "Front (Dressed)",
  3223. image: {
  3224. source: "./media/characters/sefer/front-dressed.svg",
  3225. extra: 839 / 653,
  3226. bottom: 37.6 / 878
  3227. }
  3228. },
  3229. },
  3230. [
  3231. {
  3232. name: "Normal",
  3233. height: math.unit(6, "feet"),
  3234. default: true
  3235. },
  3236. ]
  3237. ))
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3240. {
  3241. body: {
  3242. height: math.unit(2.2428, "meter"),
  3243. weight: math.unit(124.738, "kg"),
  3244. name: "Body",
  3245. image: {
  3246. extra: 1225 / 1050,
  3247. source: "./media/characters/north/front.svg"
  3248. }
  3249. }
  3250. },
  3251. [
  3252. {
  3253. name: "Micro",
  3254. height: math.unit(4, "inches")
  3255. },
  3256. {
  3257. name: "Macro",
  3258. height: math.unit(63, "meters")
  3259. },
  3260. {
  3261. name: "Megamacro",
  3262. height: math.unit(101, "miles"),
  3263. default: true
  3264. }
  3265. ]
  3266. ))
  3267. characterMakers.push(() => makeCharacter(
  3268. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3269. {
  3270. angled: {
  3271. height: math.unit(4, "meter"),
  3272. weight: math.unit(150, "kg"),
  3273. name: "Angled",
  3274. image: {
  3275. source: "./media/characters/talan/angled-sfw.svg",
  3276. bottom: 29 / 3734
  3277. }
  3278. },
  3279. angledNsfw: {
  3280. height: math.unit(4, "meter"),
  3281. weight: math.unit(150, "kg"),
  3282. name: "Angled (NSFW)",
  3283. image: {
  3284. source: "./media/characters/talan/angled-nsfw.svg",
  3285. bottom: 29 / 3734
  3286. }
  3287. },
  3288. frontNsfw: {
  3289. height: math.unit(4, "meter"),
  3290. weight: math.unit(150, "kg"),
  3291. name: "Front (NSFW)",
  3292. image: {
  3293. source: "./media/characters/talan/front-nsfw.svg",
  3294. bottom: 29 / 3734
  3295. }
  3296. },
  3297. sideNsfw: {
  3298. height: math.unit(4, "meter"),
  3299. weight: math.unit(150, "kg"),
  3300. name: "Side (NSFW)",
  3301. image: {
  3302. source: "./media/characters/talan/side-nsfw.svg",
  3303. bottom: 29 / 3734
  3304. }
  3305. },
  3306. back: {
  3307. height: math.unit(4, "meter"),
  3308. weight: math.unit(150, "kg"),
  3309. name: "Back",
  3310. image: {
  3311. source: "./media/characters/talan/back.svg"
  3312. }
  3313. },
  3314. dickBottom: {
  3315. height: math.unit(0.621, "meter"),
  3316. name: "Dick (Bottom)",
  3317. image: {
  3318. source: "./media/characters/talan/dick-bottom.svg"
  3319. }
  3320. },
  3321. dickTop: {
  3322. height: math.unit(0.621, "meter"),
  3323. name: "Dick (Top)",
  3324. image: {
  3325. source: "./media/characters/talan/dick-top.svg"
  3326. }
  3327. },
  3328. dickSide: {
  3329. height: math.unit(0.305, "meter"),
  3330. name: "Dick (Side)",
  3331. image: {
  3332. source: "./media/characters/talan/dick-side.svg"
  3333. }
  3334. },
  3335. dickFront: {
  3336. height: math.unit(0.305, "meter"),
  3337. name: "Dick (Front)",
  3338. image: {
  3339. source: "./media/characters/talan/dick-front.svg"
  3340. }
  3341. },
  3342. },
  3343. [
  3344. {
  3345. name: "Normal",
  3346. height: math.unit(4, "meters")
  3347. },
  3348. {
  3349. name: "Macro",
  3350. height: math.unit(100, "meters")
  3351. },
  3352. {
  3353. name: "Megamacro",
  3354. height: math.unit(2, "miles"),
  3355. default: true
  3356. },
  3357. {
  3358. name: "Gigamacro",
  3359. height: math.unit(5000, "miles")
  3360. },
  3361. {
  3362. name: "Teramacro",
  3363. height: math.unit(100, "parsecs")
  3364. }
  3365. ]
  3366. ))
  3367. characterMakers.push(() => makeCharacter(
  3368. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3369. {
  3370. front: {
  3371. height: math.unit(2, "meter"),
  3372. weight: math.unit(90, "kg"),
  3373. name: "Front",
  3374. image: {
  3375. source: "./media/characters/gael'rathus/front.svg"
  3376. }
  3377. },
  3378. frontAlt: {
  3379. height: math.unit(2, "meter"),
  3380. weight: math.unit(90, "kg"),
  3381. name: "Front (alt)",
  3382. image: {
  3383. source: "./media/characters/gael'rathus/front-alt.svg"
  3384. }
  3385. },
  3386. frontAlt2: {
  3387. height: math.unit(2, "meter"),
  3388. weight: math.unit(90, "kg"),
  3389. name: "Front (alt 2)",
  3390. image: {
  3391. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3392. }
  3393. }
  3394. },
  3395. [
  3396. {
  3397. name: "Normal",
  3398. height: math.unit(9, "feet"),
  3399. default: true
  3400. },
  3401. {
  3402. name: "Large",
  3403. height: math.unit(25, "feet")
  3404. },
  3405. {
  3406. name: "Macro",
  3407. height: math.unit(0.25, "miles")
  3408. },
  3409. {
  3410. name: "Megamacro",
  3411. height: math.unit(10, "miles")
  3412. }
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3417. {
  3418. side: {
  3419. height: math.unit(2, "meter"),
  3420. weight: math.unit(140, "kg"),
  3421. name: "Side",
  3422. image: {
  3423. source: "./media/characters/sosha/side.svg",
  3424. bottom: 0.042
  3425. }
  3426. },
  3427. },
  3428. [
  3429. {
  3430. name: "Normal",
  3431. height: math.unit(12, "feet"),
  3432. default: true
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3438. {
  3439. side: {
  3440. height: math.unit(5 + 5 / 12, "feet"),
  3441. weight: math.unit(170, "kg"),
  3442. name: "Side",
  3443. image: {
  3444. source: "./media/characters/runnola/side.svg",
  3445. extra: 741 / 448,
  3446. bottom: 0.05
  3447. }
  3448. },
  3449. },
  3450. [
  3451. {
  3452. name: "Small",
  3453. height: math.unit(3, "feet")
  3454. },
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(5 + 5 / 12, "feet"),
  3458. default: true
  3459. },
  3460. {
  3461. name: "Big",
  3462. height: math.unit(10, "feet")
  3463. },
  3464. ]
  3465. ))
  3466. characterMakers.push(() => makeCharacter(
  3467. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3468. {
  3469. front: {
  3470. height: math.unit(2, "meter"),
  3471. weight: math.unit(50, "kg"),
  3472. name: "Front",
  3473. image: {
  3474. source: "./media/characters/kurribird/front.svg",
  3475. bottom: 0.015
  3476. }
  3477. },
  3478. frontAlt: {
  3479. height: math.unit(1.5, "meter"),
  3480. weight: math.unit(50, "kg"),
  3481. name: "Front (Alt)",
  3482. image: {
  3483. source: "./media/characters/kurribird/front-alt.svg",
  3484. extra: 1.45
  3485. }
  3486. },
  3487. },
  3488. [
  3489. {
  3490. name: "Normal",
  3491. height: math.unit(7, "feet")
  3492. },
  3493. {
  3494. name: "Big",
  3495. height: math.unit(12, "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(1500, "feet")
  3501. },
  3502. {
  3503. name: "Megamacro",
  3504. height: math.unit(2, "miles")
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(2, "meter"),
  3513. weight: math.unit(80, "kg"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/elbial/front.svg",
  3517. extra: 1643 / 1556,
  3518. bottom: 60.2 / 1696
  3519. }
  3520. },
  3521. side: {
  3522. height: math.unit(2, "meter"),
  3523. weight: math.unit(80, "kg"),
  3524. name: "Side",
  3525. image: {
  3526. source: "./media/characters/elbial/side.svg",
  3527. extra: 1601/1528,
  3528. bottom: 97/1698
  3529. }
  3530. },
  3531. back: {
  3532. height: math.unit(2, "meter"),
  3533. weight: math.unit(80, "kg"),
  3534. name: "Back",
  3535. image: {
  3536. source: "./media/characters/elbial/back.svg",
  3537. extra: 1653/1569,
  3538. bottom: 20/1673
  3539. }
  3540. },
  3541. frontDressed: {
  3542. height: math.unit(2, "meter"),
  3543. weight: math.unit(80, "kg"),
  3544. name: "Front (Dressed)",
  3545. image: {
  3546. source: "./media/characters/elbial/front-dressed.svg",
  3547. extra: 1638/1569,
  3548. bottom: 70/1708
  3549. }
  3550. },
  3551. genitals: {
  3552. height: math.unit(2 / 3.367, "meter"),
  3553. name: "Genitals",
  3554. image: {
  3555. source: "./media/characters/elbial/genitals.svg"
  3556. }
  3557. },
  3558. },
  3559. [
  3560. {
  3561. name: "Large",
  3562. height: math.unit(100, "feet")
  3563. },
  3564. {
  3565. name: "Macro",
  3566. height: math.unit(500, "feet"),
  3567. default: true
  3568. },
  3569. {
  3570. name: "Megamacro",
  3571. height: math.unit(10, "miles")
  3572. },
  3573. {
  3574. name: "Gigamacro",
  3575. height: math.unit(25000, "miles")
  3576. },
  3577. {
  3578. name: "Full-Size",
  3579. height: math.unit(8000000, "gigaparsecs")
  3580. }
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(2, "meter"),
  3588. weight: math.unit(60, "kg"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/noah/front.svg"
  3592. }
  3593. },
  3594. talons: {
  3595. height: math.unit(0.315, "meter"),
  3596. name: "Talons",
  3597. image: {
  3598. source: "./media/characters/noah/talons.svg"
  3599. }
  3600. }
  3601. },
  3602. [
  3603. {
  3604. name: "Large",
  3605. height: math.unit(50, "feet")
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(750, "feet"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(50, "miles")
  3615. },
  3616. {
  3617. name: "Gigamacro",
  3618. height: math.unit(100000, "miles")
  3619. },
  3620. {
  3621. name: "Full-Size",
  3622. height: math.unit(3000000000, "miles")
  3623. }
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3628. {
  3629. front: {
  3630. height: math.unit(2, "meter"),
  3631. weight: math.unit(80, "kg"),
  3632. name: "Front",
  3633. image: {
  3634. source: "./media/characters/natalya/front.svg"
  3635. }
  3636. },
  3637. back: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(80, "kg"),
  3640. name: "Back",
  3641. image: {
  3642. source: "./media/characters/natalya/back.svg"
  3643. }
  3644. }
  3645. },
  3646. [
  3647. {
  3648. name: "Normal",
  3649. height: math.unit(150, "feet"),
  3650. default: true
  3651. },
  3652. {
  3653. name: "Megamacro",
  3654. height: math.unit(5, "miles")
  3655. },
  3656. {
  3657. name: "Full-Size",
  3658. height: math.unit(600, "kiloparsecs")
  3659. }
  3660. ]
  3661. ))
  3662. characterMakers.push(() => makeCharacter(
  3663. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3664. {
  3665. front: {
  3666. height: math.unit(2, "meter"),
  3667. weight: math.unit(50, "kg"),
  3668. name: "Front",
  3669. image: {
  3670. source: "./media/characters/erestrebah/front.svg",
  3671. extra: 1262/1162,
  3672. bottom: 96/1358
  3673. }
  3674. },
  3675. back: {
  3676. height: math.unit(2, "meter"),
  3677. weight: math.unit(50, "kg"),
  3678. name: "Back",
  3679. image: {
  3680. source: "./media/characters/erestrebah/back.svg",
  3681. extra: 1257/1139,
  3682. bottom: 13/1270
  3683. }
  3684. },
  3685. wing: {
  3686. height: math.unit(2, "meter"),
  3687. weight: math.unit(50, "kg"),
  3688. name: "Wing",
  3689. image: {
  3690. source: "./media/characters/erestrebah/wing.svg",
  3691. extra: 1262/1162,
  3692. bottom: 96/1358
  3693. }
  3694. },
  3695. mouth: {
  3696. height: math.unit(0.39, "feet"),
  3697. name: "Mouth",
  3698. image: {
  3699. source: "./media/characters/erestrebah/mouth.svg"
  3700. }
  3701. }
  3702. },
  3703. [
  3704. {
  3705. name: "Normal",
  3706. height: math.unit(10, "feet")
  3707. },
  3708. {
  3709. name: "Large",
  3710. height: math.unit(50, "feet"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Macro",
  3715. height: math.unit(300, "feet")
  3716. },
  3717. {
  3718. name: "Macro+",
  3719. height: math.unit(750, "feet")
  3720. },
  3721. {
  3722. name: "Megamacro",
  3723. height: math.unit(3, "miles")
  3724. }
  3725. ]
  3726. ))
  3727. characterMakers.push(() => makeCharacter(
  3728. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3729. {
  3730. front: {
  3731. height: math.unit(2, "meter"),
  3732. weight: math.unit(80, "kg"),
  3733. name: "Front",
  3734. image: {
  3735. source: "./media/characters/jennifer/front.svg",
  3736. bottom: 0.11,
  3737. extra: 1.16
  3738. }
  3739. },
  3740. frontAlt: {
  3741. height: math.unit(2, "meter"),
  3742. weight: math.unit(80, "kg"),
  3743. name: "Front (Alt)",
  3744. image: {
  3745. source: "./media/characters/jennifer/front-alt.svg"
  3746. }
  3747. }
  3748. },
  3749. [
  3750. {
  3751. name: "Canon Height",
  3752. height: math.unit(120, "feet"),
  3753. default: true
  3754. },
  3755. {
  3756. name: "Macro+",
  3757. height: math.unit(300, "feet")
  3758. },
  3759. {
  3760. name: "Megamacro",
  3761. height: math.unit(20000, "feet")
  3762. }
  3763. ]
  3764. ))
  3765. characterMakers.push(() => makeCharacter(
  3766. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3767. {
  3768. front: {
  3769. height: math.unit(2, "meter"),
  3770. weight: math.unit(50, "kg"),
  3771. name: "Front",
  3772. image: {
  3773. source: "./media/characters/kalista/front.svg",
  3774. extra: 1314/1145,
  3775. bottom: 101/1415
  3776. }
  3777. },
  3778. back: {
  3779. height: math.unit(2, "meter"),
  3780. weight: math.unit(50, "kg"),
  3781. name: "Back",
  3782. image: {
  3783. source: "./media/characters/kalista/back.svg",
  3784. extra: 1366 / 1156,
  3785. bottom: 33.9 / 1362.78
  3786. }
  3787. }
  3788. },
  3789. [
  3790. {
  3791. name: "Uncomfortably Small",
  3792. height: math.unit(10, "feet")
  3793. },
  3794. {
  3795. name: "Small",
  3796. height: math.unit(30, "feet")
  3797. },
  3798. {
  3799. name: "Macro",
  3800. height: math.unit(100, "feet"),
  3801. default: true
  3802. },
  3803. {
  3804. name: "Macro+",
  3805. height: math.unit(2000, "feet")
  3806. },
  3807. {
  3808. name: "True Form",
  3809. height: math.unit(8924, "miles")
  3810. }
  3811. ]
  3812. ))
  3813. characterMakers.push(() => makeCharacter(
  3814. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3815. {
  3816. front: {
  3817. height: math.unit(2, "meter"),
  3818. weight: math.unit(120, "kg"),
  3819. name: "Front",
  3820. image: {
  3821. source: "./media/characters/ggv/front.svg"
  3822. }
  3823. },
  3824. side: {
  3825. height: math.unit(2, "meter"),
  3826. weight: math.unit(120, "kg"),
  3827. name: "Side",
  3828. image: {
  3829. source: "./media/characters/ggv/side.svg"
  3830. }
  3831. }
  3832. },
  3833. [
  3834. {
  3835. name: "Extremely Puny",
  3836. height: math.unit(9 + 5 / 12, "feet")
  3837. },
  3838. {
  3839. name: "Horribly Small",
  3840. height: math.unit(47.7, "miles"),
  3841. default: true
  3842. },
  3843. {
  3844. name: "Reasonably Sized",
  3845. height: math.unit(25000, "parsecs")
  3846. },
  3847. {
  3848. name: "Slightly Uncompressed",
  3849. height: math.unit(7.77e31, "parsecs")
  3850. },
  3851. {
  3852. name: "Omniversal",
  3853. height: math.unit(1e300, "meters")
  3854. },
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(2, "meter"),
  3862. weight: math.unit(75, "lb"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/napalm/front.svg"
  3866. }
  3867. },
  3868. back: {
  3869. height: math.unit(2, "meter"),
  3870. weight: math.unit(75, "lb"),
  3871. name: "Back",
  3872. image: {
  3873. source: "./media/characters/napalm/back.svg"
  3874. }
  3875. }
  3876. },
  3877. [
  3878. {
  3879. name: "Standard",
  3880. height: math.unit(55, "feet"),
  3881. default: true
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(7 + 5 / 6, "feet"),
  3890. weight: math.unit(325, "lb"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/asana/front.svg",
  3894. extra: 1133 / 1060,
  3895. bottom: 15.2 / 1148.6
  3896. }
  3897. },
  3898. back: {
  3899. height: math.unit(7 + 5 / 6, "feet"),
  3900. weight: math.unit(325, "lb"),
  3901. name: "Back",
  3902. image: {
  3903. source: "./media/characters/asana/back.svg",
  3904. extra: 1114 / 1043,
  3905. bottom: 5 / 1120
  3906. }
  3907. },
  3908. dressedDark: {
  3909. height: math.unit(7 + 5 / 6, "feet"),
  3910. weight: math.unit(325, "lb"),
  3911. name: "Dressed (Dark)",
  3912. image: {
  3913. source: "./media/characters/asana/dressed-dark.svg",
  3914. extra: 1133 / 1060,
  3915. bottom: 15.2 / 1148.6
  3916. }
  3917. },
  3918. dressedLight: {
  3919. height: math.unit(7 + 5 / 6, "feet"),
  3920. weight: math.unit(325, "lb"),
  3921. name: "Dressed (Light)",
  3922. image: {
  3923. source: "./media/characters/asana/dressed-light.svg",
  3924. extra: 1133 / 1060,
  3925. bottom: 15.2 / 1148.6
  3926. }
  3927. },
  3928. },
  3929. [
  3930. {
  3931. name: "Standard",
  3932. height: math.unit(7 + 5 / 6, "feet"),
  3933. default: true
  3934. },
  3935. {
  3936. name: "Large",
  3937. height: math.unit(10, "meters")
  3938. },
  3939. {
  3940. name: "Macro",
  3941. height: math.unit(2500, "meters")
  3942. },
  3943. {
  3944. name: "Megamacro",
  3945. height: math.unit(5e6, "meters")
  3946. },
  3947. {
  3948. name: "Examacro",
  3949. height: math.unit(5e12, "lightyears")
  3950. },
  3951. {
  3952. name: "Max Size",
  3953. height: math.unit(1e31, "lightyears")
  3954. }
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3959. {
  3960. front: {
  3961. height: math.unit(2, "meter"),
  3962. weight: math.unit(60, "kg"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/ebony/front.svg",
  3966. bottom: 0.03,
  3967. extra: 1045 / 810 + 0.03
  3968. }
  3969. },
  3970. side: {
  3971. height: math.unit(2, "meter"),
  3972. weight: math.unit(60, "kg"),
  3973. name: "Side",
  3974. image: {
  3975. source: "./media/characters/ebony/side.svg",
  3976. bottom: 0.03,
  3977. extra: 1045 / 810 + 0.03
  3978. }
  3979. },
  3980. back: {
  3981. height: math.unit(2, "meter"),
  3982. weight: math.unit(60, "kg"),
  3983. name: "Back",
  3984. image: {
  3985. source: "./media/characters/ebony/back.svg",
  3986. bottom: 0.01,
  3987. extra: 1045 / 810 + 0.01
  3988. }
  3989. },
  3990. },
  3991. [
  3992. // TODO check why I did this lol
  3993. {
  3994. name: "Standard",
  3995. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3996. default: true
  3997. },
  3998. {
  3999. name: "Macro",
  4000. height: math.unit(200, "feet")
  4001. },
  4002. {
  4003. name: "Gigamacro",
  4004. height: math.unit(13000, "km")
  4005. }
  4006. ]
  4007. ))
  4008. characterMakers.push(() => makeCharacter(
  4009. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4010. {
  4011. front: {
  4012. height: math.unit(6, "feet"),
  4013. weight: math.unit(175, "lb"),
  4014. name: "Front",
  4015. image: {
  4016. source: "./media/characters/mountain/front.svg",
  4017. extra: 972 / 955,
  4018. bottom: 64 / 1036.6
  4019. }
  4020. },
  4021. back: {
  4022. height: math.unit(6, "feet"),
  4023. weight: math.unit(175, "lb"),
  4024. name: "Back",
  4025. image: {
  4026. source: "./media/characters/mountain/back.svg",
  4027. extra: 970 / 950,
  4028. bottom: 28.25 / 999
  4029. }
  4030. },
  4031. },
  4032. [
  4033. {
  4034. name: "Large",
  4035. height: math.unit(20, "meters")
  4036. },
  4037. {
  4038. name: "Macro",
  4039. height: math.unit(300, "meters")
  4040. },
  4041. {
  4042. name: "Gigamacro",
  4043. height: math.unit(10000, "km"),
  4044. default: true
  4045. },
  4046. {
  4047. name: "Examacro",
  4048. height: math.unit(10e9, "lightyears")
  4049. }
  4050. ]
  4051. ))
  4052. characterMakers.push(() => makeCharacter(
  4053. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4054. {
  4055. front: {
  4056. height: math.unit(8, "feet"),
  4057. weight: math.unit(500, "lb"),
  4058. name: "Front",
  4059. image: {
  4060. source: "./media/characters/rick/front.svg"
  4061. }
  4062. }
  4063. },
  4064. [
  4065. {
  4066. name: "Normal",
  4067. height: math.unit(8, "feet"),
  4068. default: true
  4069. },
  4070. {
  4071. name: "Macro",
  4072. height: math.unit(5, "km")
  4073. }
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4078. {
  4079. front: {
  4080. height: math.unit(8, "feet"),
  4081. weight: math.unit(120, "lb"),
  4082. name: "Front",
  4083. image: {
  4084. source: "./media/characters/ona/front.svg"
  4085. }
  4086. },
  4087. frontAlt: {
  4088. height: math.unit(8, "feet"),
  4089. weight: math.unit(120, "lb"),
  4090. name: "Front (Alt)",
  4091. image: {
  4092. source: "./media/characters/ona/front-alt.svg"
  4093. }
  4094. },
  4095. back: {
  4096. height: math.unit(8, "feet"),
  4097. weight: math.unit(120, "lb"),
  4098. name: "Back",
  4099. image: {
  4100. source: "./media/characters/ona/back.svg"
  4101. }
  4102. },
  4103. foot: {
  4104. height: math.unit(1.1, "feet"),
  4105. name: "Foot",
  4106. image: {
  4107. source: "./media/characters/ona/foot.svg"
  4108. }
  4109. }
  4110. },
  4111. [
  4112. {
  4113. name: "Megamacro",
  4114. height: math.unit(70, "km"),
  4115. default: true
  4116. },
  4117. {
  4118. name: "Gigamacro",
  4119. height: math.unit(681818, "miles")
  4120. },
  4121. {
  4122. name: "Examacro",
  4123. height: math.unit(3800000, "lightyears")
  4124. },
  4125. ]
  4126. ))
  4127. characterMakers.push(() => makeCharacter(
  4128. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4129. {
  4130. front: {
  4131. height: math.unit(12, "feet"),
  4132. weight: math.unit(3000, "lb"),
  4133. name: "Front",
  4134. image: {
  4135. source: "./media/characters/mech/front.svg",
  4136. extra: 2900 / 2770,
  4137. bottom: 110 / 3010
  4138. }
  4139. },
  4140. back: {
  4141. height: math.unit(12, "feet"),
  4142. weight: math.unit(3000, "lb"),
  4143. name: "Back",
  4144. image: {
  4145. source: "./media/characters/mech/back.svg",
  4146. extra: 3011 / 2890,
  4147. bottom: 94 / 3105
  4148. }
  4149. },
  4150. maw: {
  4151. height: math.unit(3.07, "feet"),
  4152. name: "Maw",
  4153. image: {
  4154. source: "./media/characters/mech/maw.svg"
  4155. }
  4156. },
  4157. head: {
  4158. height: math.unit(2.82, "feet"),
  4159. name: "Head",
  4160. image: {
  4161. source: "./media/characters/mech/head.svg"
  4162. }
  4163. },
  4164. dick: {
  4165. height: math.unit(1.43, "feet"),
  4166. name: "Dick",
  4167. image: {
  4168. source: "./media/characters/mech/dick.svg"
  4169. }
  4170. },
  4171. },
  4172. [
  4173. {
  4174. name: "Normal",
  4175. height: math.unit(12, "feet")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(300, "feet"),
  4180. default: true
  4181. },
  4182. {
  4183. name: "Macro+",
  4184. height: math.unit(1500, "feet")
  4185. },
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4190. {
  4191. front: {
  4192. height: math.unit(1.3, "meter"),
  4193. weight: math.unit(30, "kg"),
  4194. name: "Front",
  4195. image: {
  4196. source: "./media/characters/gregory/front.svg",
  4197. }
  4198. }
  4199. },
  4200. [
  4201. {
  4202. name: "Normal",
  4203. height: math.unit(1.3, "meter"),
  4204. default: true
  4205. },
  4206. {
  4207. name: "Macro",
  4208. height: math.unit(20, "meter")
  4209. }
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4214. {
  4215. front: {
  4216. height: math.unit(2.8, "meter"),
  4217. weight: math.unit(200, "kg"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/elory/front.svg",
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Normal",
  4227. height: math.unit(2.8, "meter"),
  4228. default: true
  4229. },
  4230. {
  4231. name: "Macro",
  4232. height: math.unit(38, "meter")
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4238. {
  4239. front: {
  4240. height: math.unit(470, "feet"),
  4241. weight: math.unit(924, "tons"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/angelpatamon/front.svg",
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Normal",
  4251. height: math.unit(470, "feet"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Deity Size I",
  4256. height: math.unit(28651.2, "km")
  4257. },
  4258. {
  4259. name: "Deity Size II",
  4260. height: math.unit(171907.2, "km")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4266. {
  4267. side: {
  4268. height: math.unit(7.2, "meter"),
  4269. weight: math.unit(8.2, "tons"),
  4270. name: "Side",
  4271. image: {
  4272. source: "./media/characters/cryae/side.svg",
  4273. extra: 3500 / 1500
  4274. }
  4275. }
  4276. },
  4277. [
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(7.2, "meter"),
  4281. default: true
  4282. }
  4283. ]
  4284. ))
  4285. characterMakers.push(() => makeCharacter(
  4286. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4287. {
  4288. front: {
  4289. height: math.unit(6, "feet"),
  4290. weight: math.unit(175, "lb"),
  4291. name: "Front",
  4292. image: {
  4293. source: "./media/characters/xera/front.svg",
  4294. extra: 2377 / 1972,
  4295. bottom: 75.5 / 2452
  4296. }
  4297. },
  4298. side: {
  4299. height: math.unit(6, "feet"),
  4300. weight: math.unit(175, "lb"),
  4301. name: "Side",
  4302. image: {
  4303. source: "./media/characters/xera/side.svg",
  4304. extra: 2345 / 2019,
  4305. bottom: 39.7 / 2384
  4306. }
  4307. },
  4308. back: {
  4309. height: math.unit(6, "feet"),
  4310. weight: math.unit(175, "lb"),
  4311. name: "Back",
  4312. image: {
  4313. source: "./media/characters/xera/back.svg",
  4314. extra: 2095 / 1984,
  4315. bottom: 67 / 2166
  4316. }
  4317. },
  4318. },
  4319. [
  4320. {
  4321. name: "Small",
  4322. height: math.unit(10, "feet")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(500, "meters"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Macro+",
  4331. height: math.unit(10, "km")
  4332. },
  4333. {
  4334. name: "Gigamacro",
  4335. height: math.unit(25000, "km")
  4336. },
  4337. {
  4338. name: "Teramacro",
  4339. height: math.unit(3e6, "km")
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4345. {
  4346. front: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(175, "lb"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/nebula/front.svg",
  4352. extra: 2566 / 2362,
  4353. bottom: 81 / 2644
  4354. }
  4355. }
  4356. },
  4357. [
  4358. {
  4359. name: "Small",
  4360. height: math.unit(4.5, "meters")
  4361. },
  4362. {
  4363. name: "Macro",
  4364. height: math.unit(1500, "meters"),
  4365. default: true
  4366. },
  4367. {
  4368. name: "Megamacro",
  4369. height: math.unit(150, "km")
  4370. },
  4371. {
  4372. name: "Gigamacro",
  4373. height: math.unit(27000, "km")
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4379. {
  4380. front: {
  4381. height: math.unit(6, "feet"),
  4382. weight: math.unit(225, "lb"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/abysgar/front.svg"
  4386. }
  4387. }
  4388. },
  4389. [
  4390. {
  4391. name: "Small",
  4392. height: math.unit(4.5, "meters")
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(1250, "meters"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(125, "km")
  4402. },
  4403. {
  4404. name: "Gigamacro",
  4405. height: math.unit(26000, "km")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(6, "feet"),
  4414. weight: math.unit(180, "lb"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/yakuz/front.svg"
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Small",
  4424. height: math.unit(5, "meters")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(1500, "meters"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Megamacro",
  4433. height: math.unit(200, "km")
  4434. },
  4435. {
  4436. name: "Gigamacro",
  4437. height: math.unit(100000, "km")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4443. {
  4444. front: {
  4445. height: math.unit(6, "feet"),
  4446. weight: math.unit(175, "lb"),
  4447. name: "Front",
  4448. image: {
  4449. source: "./media/characters/mirova/front.svg",
  4450. extra: 3334 / 3071,
  4451. bottom: 42 / 3375.6
  4452. }
  4453. }
  4454. },
  4455. [
  4456. {
  4457. name: "Small",
  4458. height: math.unit(5, "meters")
  4459. },
  4460. {
  4461. name: "Macro",
  4462. height: math.unit(900, "meters"),
  4463. default: true
  4464. },
  4465. {
  4466. name: "Megamacro",
  4467. height: math.unit(135, "km")
  4468. },
  4469. {
  4470. name: "Gigamacro",
  4471. height: math.unit(20000, "km")
  4472. }
  4473. ]
  4474. ))
  4475. characterMakers.push(() => makeCharacter(
  4476. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4477. {
  4478. side: {
  4479. height: math.unit(28.35, "feet"),
  4480. weight: math.unit(99.75, "tons"),
  4481. name: "Side",
  4482. image: {
  4483. source: "./media/characters/asana-mech/side.svg",
  4484. extra: 923 / 699,
  4485. bottom: 50 / 975
  4486. }
  4487. },
  4488. chaingun: {
  4489. height: math.unit(7, "feet"),
  4490. weight: math.unit(2400, "lb"),
  4491. name: "Chaingun",
  4492. image: {
  4493. source: "./media/characters/asana-mech/chaingun.svg"
  4494. }
  4495. },
  4496. laser: {
  4497. height: math.unit(7.12, "feet"),
  4498. weight: math.unit(2000, "lb"),
  4499. name: "Laser",
  4500. image: {
  4501. source: "./media/characters/asana-mech/laser.svg"
  4502. }
  4503. },
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(28.35, "feet"),
  4509. default: true
  4510. },
  4511. {
  4512. name: "Macro",
  4513. height: math.unit(2500, "feet")
  4514. },
  4515. {
  4516. name: "Megamacro",
  4517. height: math.unit(25, "miles")
  4518. },
  4519. {
  4520. name: "Examacro",
  4521. height: math.unit(6e8, "lightyears")
  4522. },
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4527. {
  4528. front: {
  4529. height: math.unit(5, "meters"),
  4530. weight: math.unit(1000, "kg"),
  4531. name: "Front",
  4532. image: {
  4533. source: "./media/characters/asche/front.svg",
  4534. extra: 1258 / 1190,
  4535. bottom: 47 / 1305
  4536. }
  4537. },
  4538. frontUnderwear: {
  4539. height: math.unit(5, "meters"),
  4540. weight: math.unit(1000, "kg"),
  4541. name: "Front (Underwear)",
  4542. image: {
  4543. source: "./media/characters/asche/front-underwear.svg",
  4544. extra: 1258 / 1190,
  4545. bottom: 47 / 1305
  4546. }
  4547. },
  4548. frontDressed: {
  4549. height: math.unit(5, "meters"),
  4550. weight: math.unit(1000, "kg"),
  4551. name: "Front (Dressed)",
  4552. image: {
  4553. source: "./media/characters/asche/front-dressed.svg",
  4554. extra: 1258 / 1190,
  4555. bottom: 47 / 1305
  4556. }
  4557. },
  4558. frontArmor: {
  4559. height: math.unit(5, "meters"),
  4560. weight: math.unit(1000, "kg"),
  4561. name: "Front (Armored)",
  4562. image: {
  4563. source: "./media/characters/asche/front-armored.svg",
  4564. extra: 1374 / 1308,
  4565. bottom: 23 / 1397
  4566. }
  4567. },
  4568. mp724: {
  4569. height: math.unit(0.96, "meters"),
  4570. weight: math.unit(38, "kg"),
  4571. name: "H&K MP724",
  4572. image: {
  4573. source: "./media/characters/asche/h&k-mp724.svg"
  4574. }
  4575. },
  4576. side: {
  4577. height: math.unit(5, "meters"),
  4578. weight: math.unit(1000, "kg"),
  4579. name: "Side",
  4580. image: {
  4581. source: "./media/characters/asche/side.svg",
  4582. extra: 1717 / 1609,
  4583. bottom: 0.005
  4584. }
  4585. },
  4586. back: {
  4587. height: math.unit(5, "meters"),
  4588. weight: math.unit(1000, "kg"),
  4589. name: "Back",
  4590. image: {
  4591. source: "./media/characters/asche/back.svg",
  4592. extra: 1570 / 1501
  4593. }
  4594. },
  4595. },
  4596. [
  4597. {
  4598. name: "DEFCON 5",
  4599. height: math.unit(5, "meters")
  4600. },
  4601. {
  4602. name: "DEFCON 4",
  4603. height: math.unit(500, "meters"),
  4604. default: true
  4605. },
  4606. {
  4607. name: "DEFCON 3",
  4608. height: math.unit(5, "km")
  4609. },
  4610. {
  4611. name: "DEFCON 2",
  4612. height: math.unit(500, "km")
  4613. },
  4614. {
  4615. name: "DEFCON 1",
  4616. height: math.unit(500000, "km")
  4617. },
  4618. {
  4619. name: "DEFCON 0",
  4620. height: math.unit(3, "gigaparsecs")
  4621. },
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4626. {
  4627. front: {
  4628. height: math.unit(2, "meters"),
  4629. weight: math.unit(76, "kg"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/gale/front.svg"
  4633. }
  4634. },
  4635. frontAlt1: {
  4636. height: math.unit(2, "meters"),
  4637. weight: math.unit(76, "kg"),
  4638. name: "Front (Alt 1)",
  4639. image: {
  4640. source: "./media/characters/gale/front-alt-1.svg"
  4641. }
  4642. },
  4643. frontAlt2: {
  4644. height: math.unit(2, "meters"),
  4645. weight: math.unit(76, "kg"),
  4646. name: "Front (Alt 2)",
  4647. image: {
  4648. source: "./media/characters/gale/front-alt-2.svg"
  4649. }
  4650. },
  4651. },
  4652. [
  4653. {
  4654. name: "Normal",
  4655. height: math.unit(7, "feet")
  4656. },
  4657. {
  4658. name: "Macro",
  4659. height: math.unit(150, "feet"),
  4660. default: true
  4661. },
  4662. {
  4663. name: "Macro+",
  4664. height: math.unit(300, "feet")
  4665. },
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(5 + 10/12, "feet"),
  4673. weight: math.unit(67, "kg"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/draylen/front.svg",
  4677. extra: 832/777,
  4678. bottom: 85/917
  4679. }
  4680. }
  4681. },
  4682. [
  4683. {
  4684. name: "Normal",
  4685. height: math.unit(5 + 10/12, "feet")
  4686. },
  4687. {
  4688. name: "Macro",
  4689. height: math.unit(150, "feet"),
  4690. default: true
  4691. }
  4692. ]
  4693. ))
  4694. characterMakers.push(() => makeCharacter(
  4695. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4696. {
  4697. front: {
  4698. height: math.unit(7 + 9 / 12, "feet"),
  4699. weight: math.unit(379, "lbs"),
  4700. name: "Front",
  4701. image: {
  4702. source: "./media/characters/chez/front.svg"
  4703. }
  4704. },
  4705. side: {
  4706. height: math.unit(7 + 9 / 12, "feet"),
  4707. weight: math.unit(379, "lbs"),
  4708. name: "Side",
  4709. image: {
  4710. source: "./media/characters/chez/side.svg"
  4711. }
  4712. }
  4713. },
  4714. [
  4715. {
  4716. name: "Normal",
  4717. height: math.unit(7 + 9 / 12, "feet"),
  4718. default: true
  4719. },
  4720. {
  4721. name: "God King",
  4722. height: math.unit(9750000, "meters")
  4723. }
  4724. ]
  4725. ))
  4726. characterMakers.push(() => makeCharacter(
  4727. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4728. {
  4729. front: {
  4730. height: math.unit(6, "feet"),
  4731. weight: math.unit(275, "lbs"),
  4732. name: "Front",
  4733. image: {
  4734. source: "./media/characters/kaylum/front.svg",
  4735. bottom: 0.01,
  4736. extra: 1166 / 1031
  4737. }
  4738. },
  4739. frontWingless: {
  4740. height: math.unit(6, "feet"),
  4741. weight: math.unit(275, "lbs"),
  4742. name: "Front (Wingless)",
  4743. image: {
  4744. source: "./media/characters/kaylum/front-wingless.svg",
  4745. bottom: 0.01,
  4746. extra: 1117 / 1031
  4747. }
  4748. }
  4749. },
  4750. [
  4751. {
  4752. name: "Normal",
  4753. height: math.unit(3.05, "meters")
  4754. },
  4755. {
  4756. name: "Master",
  4757. height: math.unit(5.5, "meters")
  4758. },
  4759. {
  4760. name: "Rampage",
  4761. height: math.unit(19, "meters")
  4762. },
  4763. {
  4764. name: "Macro Lite",
  4765. height: math.unit(37, "meters")
  4766. },
  4767. {
  4768. name: "Hyper Predator",
  4769. height: math.unit(61, "meters")
  4770. },
  4771. {
  4772. name: "Macro",
  4773. height: math.unit(138, "meters"),
  4774. default: true
  4775. }
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4780. {
  4781. front: {
  4782. height: math.unit(6, "feet"),
  4783. weight: math.unit(150, "lbs"),
  4784. name: "Front",
  4785. image: {
  4786. source: "./media/characters/geta/front.svg"
  4787. }
  4788. }
  4789. },
  4790. [
  4791. {
  4792. name: "Micro",
  4793. height: math.unit(3, "inches"),
  4794. default: true
  4795. },
  4796. {
  4797. name: "Normal",
  4798. height: math.unit(5 + 5 / 12, "feet")
  4799. }
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4804. {
  4805. front: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(300, "lbs"),
  4808. name: "Front",
  4809. image: {
  4810. source: "./media/characters/tyrnn/front.svg"
  4811. }
  4812. }
  4813. },
  4814. [
  4815. {
  4816. name: "Main Height",
  4817. height: math.unit(355, "feet"),
  4818. default: true
  4819. },
  4820. {
  4821. name: "Fave. Height",
  4822. height: math.unit(2400, "feet")
  4823. }
  4824. ]
  4825. ))
  4826. characterMakers.push(() => makeCharacter(
  4827. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4828. {
  4829. front: {
  4830. height: math.unit(6, "feet"),
  4831. weight: math.unit(300, "lbs"),
  4832. name: "Front",
  4833. image: {
  4834. source: "./media/characters/appledectomy/front.svg"
  4835. }
  4836. }
  4837. },
  4838. [
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(2500, "feet")
  4842. },
  4843. {
  4844. name: "Megamacro",
  4845. height: math.unit(50, "miles"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Gigamacro",
  4850. height: math.unit(5000, "miles")
  4851. },
  4852. {
  4853. name: "Teramacro",
  4854. height: math.unit(250000, "miles")
  4855. },
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4860. {
  4861. front: {
  4862. height: math.unit(6, "feet"),
  4863. weight: math.unit(200, "lbs"),
  4864. name: "Front",
  4865. image: {
  4866. source: "./media/characters/vulpes/front.svg",
  4867. extra: 573 / 543,
  4868. bottom: 0.033
  4869. }
  4870. },
  4871. side: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(200, "lbs"),
  4874. name: "Side",
  4875. image: {
  4876. source: "./media/characters/vulpes/side.svg",
  4877. extra: 577 / 549,
  4878. bottom: 11 / 588
  4879. }
  4880. },
  4881. back: {
  4882. height: math.unit(6, "feet"),
  4883. weight: math.unit(200, "lbs"),
  4884. name: "Back",
  4885. image: {
  4886. source: "./media/characters/vulpes/back.svg",
  4887. extra: 573 / 549,
  4888. bottom: 20 / 593
  4889. }
  4890. },
  4891. feet: {
  4892. height: math.unit(1.276, "feet"),
  4893. name: "Feet",
  4894. image: {
  4895. source: "./media/characters/vulpes/feet.svg"
  4896. }
  4897. },
  4898. maw: {
  4899. height: math.unit(1.18, "feet"),
  4900. name: "Maw",
  4901. image: {
  4902. source: "./media/characters/vulpes/maw.svg"
  4903. }
  4904. },
  4905. },
  4906. [
  4907. {
  4908. name: "Micro",
  4909. height: math.unit(2, "inches")
  4910. },
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(6.3, "feet")
  4914. },
  4915. {
  4916. name: "Macro",
  4917. height: math.unit(850, "feet")
  4918. },
  4919. {
  4920. name: "Megamacro",
  4921. height: math.unit(7500, "feet"),
  4922. default: true
  4923. },
  4924. {
  4925. name: "Gigamacro",
  4926. height: math.unit(570000, "miles")
  4927. }
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4932. {
  4933. front: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(210, "lbs"),
  4936. name: "Front",
  4937. image: {
  4938. source: "./media/characters/rain-fallen/front.svg"
  4939. }
  4940. },
  4941. side: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(210, "lbs"),
  4944. name: "Side",
  4945. image: {
  4946. source: "./media/characters/rain-fallen/side.svg"
  4947. }
  4948. },
  4949. back: {
  4950. height: math.unit(6, "feet"),
  4951. weight: math.unit(210, "lbs"),
  4952. name: "Back",
  4953. image: {
  4954. source: "./media/characters/rain-fallen/back.svg"
  4955. }
  4956. },
  4957. feral: {
  4958. height: math.unit(9, "feet"),
  4959. weight: math.unit(700, "lbs"),
  4960. name: "Feral",
  4961. image: {
  4962. source: "./media/characters/rain-fallen/feral.svg"
  4963. }
  4964. },
  4965. },
  4966. [
  4967. {
  4968. name: "Meddling with Mortals",
  4969. height: math.unit(8 + 8/12, "feet")
  4970. },
  4971. {
  4972. name: "Normal",
  4973. height: math.unit(5, "meter")
  4974. },
  4975. {
  4976. name: "Macro",
  4977. height: math.unit(150, "meter"),
  4978. default: true
  4979. },
  4980. {
  4981. name: "Megamacro",
  4982. height: math.unit(278e6, "meter")
  4983. },
  4984. {
  4985. name: "Gigamacro",
  4986. height: math.unit(2e9, "meter")
  4987. },
  4988. {
  4989. name: "Teramacro",
  4990. height: math.unit(8e12, "meter")
  4991. },
  4992. {
  4993. name: "Devourer",
  4994. height: math.unit(14, "zettameters")
  4995. },
  4996. {
  4997. name: "Scarlet King",
  4998. height: math.unit(18, "yottameters")
  4999. },
  5000. {
  5001. name: "Void",
  5002. height: math.unit(1e88, "yottameters")
  5003. }
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5008. {
  5009. standing: {
  5010. height: math.unit(6, "feet"),
  5011. weight: math.unit(180, "lbs"),
  5012. name: "Standing",
  5013. image: {
  5014. source: "./media/characters/zaakira/standing.svg",
  5015. extra: 1599/1504,
  5016. bottom: 39/1638
  5017. }
  5018. },
  5019. laying: {
  5020. height: math.unit(3, "feet"),
  5021. weight: math.unit(180, "lbs"),
  5022. name: "Laying",
  5023. image: {
  5024. source: "./media/characters/zaakira/laying.svg"
  5025. }
  5026. },
  5027. },
  5028. [
  5029. {
  5030. name: "Normal",
  5031. height: math.unit(12, "feet")
  5032. },
  5033. {
  5034. name: "Macro",
  5035. height: math.unit(279, "feet"),
  5036. default: true
  5037. }
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5042. {
  5043. femSfw: {
  5044. height: math.unit(8, "feet"),
  5045. weight: math.unit(350, "lb"),
  5046. name: "Fem",
  5047. image: {
  5048. source: "./media/characters/sigvald/fem-sfw.svg",
  5049. extra: 182 / 164,
  5050. bottom: 8.7 / 190.5
  5051. }
  5052. },
  5053. femNsfw: {
  5054. height: math.unit(8, "feet"),
  5055. weight: math.unit(350, "lb"),
  5056. name: "Fem (NSFW)",
  5057. image: {
  5058. source: "./media/characters/sigvald/fem-nsfw.svg",
  5059. extra: 182 / 164,
  5060. bottom: 8.7 / 190.5
  5061. }
  5062. },
  5063. maleNsfw: {
  5064. height: math.unit(8, "feet"),
  5065. weight: math.unit(350, "lb"),
  5066. name: "Male (NSFW)",
  5067. image: {
  5068. source: "./media/characters/sigvald/male-nsfw.svg",
  5069. extra: 182 / 164,
  5070. bottom: 8.7 / 190.5
  5071. }
  5072. },
  5073. hermNsfw: {
  5074. height: math.unit(8, "feet"),
  5075. weight: math.unit(350, "lb"),
  5076. name: "Herm (NSFW)",
  5077. image: {
  5078. source: "./media/characters/sigvald/herm-nsfw.svg",
  5079. extra: 182 / 164,
  5080. bottom: 8.7 / 190.5
  5081. }
  5082. },
  5083. dick: {
  5084. height: math.unit(2.36, "feet"),
  5085. name: "Dick",
  5086. image: {
  5087. source: "./media/characters/sigvald/dick.svg"
  5088. }
  5089. },
  5090. eye: {
  5091. height: math.unit(0.31, "feet"),
  5092. name: "Eye",
  5093. image: {
  5094. source: "./media/characters/sigvald/eye.svg"
  5095. }
  5096. },
  5097. mouth: {
  5098. height: math.unit(0.92, "feet"),
  5099. name: "Mouth",
  5100. image: {
  5101. source: "./media/characters/sigvald/mouth.svg"
  5102. }
  5103. },
  5104. paws: {
  5105. height: math.unit(2.2, "feet"),
  5106. name: "Paws",
  5107. image: {
  5108. source: "./media/characters/sigvald/paws.svg"
  5109. }
  5110. }
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(8, "feet")
  5116. },
  5117. {
  5118. name: "Large",
  5119. height: math.unit(12, "feet")
  5120. },
  5121. {
  5122. name: "Larger",
  5123. height: math.unit(20, "feet")
  5124. },
  5125. {
  5126. name: "Macro",
  5127. height: math.unit(150, "feet")
  5128. },
  5129. {
  5130. name: "Macro+",
  5131. height: math.unit(200, "feet"),
  5132. default: true
  5133. },
  5134. ]
  5135. ))
  5136. characterMakers.push(() => makeCharacter(
  5137. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5138. {
  5139. side: {
  5140. height: math.unit(12, "feet"),
  5141. weight: math.unit(2000, "kg"),
  5142. name: "Side",
  5143. image: {
  5144. source: "./media/characters/scott/side.svg",
  5145. extra: 754 / 724,
  5146. bottom: 0.069
  5147. }
  5148. },
  5149. upright: {
  5150. height: math.unit(12, "feet"),
  5151. weight: math.unit(2000, "kg"),
  5152. name: "Upright",
  5153. image: {
  5154. source: "./media/characters/scott/upright.svg",
  5155. extra: 3881 / 3722,
  5156. bottom: 0.05
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(12, "feet"),
  5164. default: true
  5165. },
  5166. ]
  5167. ))
  5168. characterMakers.push(() => makeCharacter(
  5169. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5170. {
  5171. side: {
  5172. height: math.unit(8, "meters"),
  5173. weight: math.unit(84755, "lbs"),
  5174. name: "Side",
  5175. image: {
  5176. source: "./media/characters/tobias/side.svg",
  5177. extra: 1474 / 1096,
  5178. bottom: 38.9 / 1513.1235
  5179. }
  5180. },
  5181. },
  5182. [
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(8, "meters"),
  5186. default: true
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5192. {
  5193. front: {
  5194. height: math.unit(5.5, "feet"),
  5195. weight: math.unit(400, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/kieran/front.svg",
  5199. extra: 2694 / 2364,
  5200. bottom: 217 / 2908
  5201. }
  5202. },
  5203. side: {
  5204. height: math.unit(5.5, "feet"),
  5205. weight: math.unit(400, "lbs"),
  5206. name: "Side",
  5207. image: {
  5208. source: "./media/characters/kieran/side.svg",
  5209. extra: 875 / 777,
  5210. bottom: 84.6 / 959
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(5.5, "feet"),
  5218. default: true
  5219. },
  5220. ]
  5221. ))
  5222. characterMakers.push(() => makeCharacter(
  5223. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5224. {
  5225. side: {
  5226. height: math.unit(2, "meters"),
  5227. weight: math.unit(70, "kg"),
  5228. name: "Side",
  5229. image: {
  5230. source: "./media/characters/sanya/side.svg",
  5231. bottom: 0.02,
  5232. extra: 1.02
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Small",
  5239. height: math.unit(2, "meters")
  5240. },
  5241. {
  5242. name: "Normal",
  5243. height: math.unit(3, "meters")
  5244. },
  5245. {
  5246. name: "Macro",
  5247. height: math.unit(16, "meters"),
  5248. default: true
  5249. },
  5250. ]
  5251. ))
  5252. characterMakers.push(() => makeCharacter(
  5253. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5254. {
  5255. front: {
  5256. height: math.unit(2, "meters"),
  5257. weight: math.unit(120, "kg"),
  5258. name: "Front",
  5259. image: {
  5260. source: "./media/characters/miranda/front.svg",
  5261. extra: 195 / 185,
  5262. bottom: 10.9 / 206.5
  5263. }
  5264. },
  5265. back: {
  5266. height: math.unit(2, "meters"),
  5267. weight: math.unit(120, "kg"),
  5268. name: "Back",
  5269. image: {
  5270. source: "./media/characters/miranda/back.svg",
  5271. extra: 201 / 193,
  5272. bottom: 2.3 / 203.7
  5273. }
  5274. },
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(10, "feet"),
  5280. default: true
  5281. }
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "James", species: ["deer"], tags: ["anthro"] },
  5286. {
  5287. side: {
  5288. height: math.unit(2, "meters"),
  5289. weight: math.unit(100, "kg"),
  5290. name: "Front",
  5291. image: {
  5292. source: "./media/characters/james/front.svg",
  5293. extra: 10 / 8.5
  5294. }
  5295. },
  5296. },
  5297. [
  5298. {
  5299. name: "Normal",
  5300. height: math.unit(8.5, "feet"),
  5301. default: true
  5302. }
  5303. ]
  5304. ))
  5305. characterMakers.push(() => makeCharacter(
  5306. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5307. {
  5308. side: {
  5309. height: math.unit(9.5, "feet"),
  5310. weight: math.unit(2500, "lbs"),
  5311. name: "Side",
  5312. image: {
  5313. source: "./media/characters/heather/side.svg"
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Normal",
  5320. height: math.unit(9.5, "feet"),
  5321. default: true
  5322. }
  5323. ]
  5324. ))
  5325. characterMakers.push(() => makeCharacter(
  5326. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5327. {
  5328. side: {
  5329. height: math.unit(6.5, "feet"),
  5330. weight: math.unit(400, "lbs"),
  5331. name: "Side",
  5332. image: {
  5333. source: "./media/characters/lukas/side.svg",
  5334. extra: 7.25 / 6.5
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(6.5, "feet"),
  5342. default: true
  5343. }
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5348. {
  5349. side: {
  5350. height: math.unit(5, "feet"),
  5351. weight: math.unit(3000, "lbs"),
  5352. name: "Side",
  5353. image: {
  5354. source: "./media/characters/louise/side.svg"
  5355. }
  5356. },
  5357. },
  5358. [
  5359. {
  5360. name: "Normal",
  5361. height: math.unit(5, "feet"),
  5362. default: true
  5363. }
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5368. {
  5369. side: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(150, "lbs"),
  5372. name: "Side",
  5373. image: {
  5374. source: "./media/characters/ramona/side.svg",
  5375. extra: 871/854,
  5376. bottom: 41/912
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Normal",
  5383. height: math.unit(5.3, "meters"),
  5384. default: true
  5385. },
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(20, "stories")
  5389. },
  5390. {
  5391. name: "Macro+",
  5392. height: math.unit(50, "stories")
  5393. },
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5398. {
  5399. standing: {
  5400. height: math.unit(5.75, "feet"),
  5401. weight: math.unit(160, "lbs"),
  5402. name: "Standing",
  5403. image: {
  5404. source: "./media/characters/deerpuff/standing.svg",
  5405. extra: 682 / 624
  5406. }
  5407. },
  5408. sitting: {
  5409. height: math.unit(5.75 / 1.79, "feet"),
  5410. weight: math.unit(160, "lbs"),
  5411. name: "Sitting",
  5412. image: {
  5413. source: "./media/characters/deerpuff/sitting.svg",
  5414. bottom: 44 / 400,
  5415. extra: 1
  5416. }
  5417. },
  5418. taurLaying: {
  5419. height: math.unit(6, "feet"),
  5420. weight: math.unit(400, "lbs"),
  5421. name: "Taur (Laying)",
  5422. image: {
  5423. source: "./media/characters/deerpuff/taur-laying.svg"
  5424. }
  5425. },
  5426. },
  5427. [
  5428. {
  5429. name: "Puffball",
  5430. height: math.unit(6, "inches")
  5431. },
  5432. {
  5433. name: "Normalpuff",
  5434. height: math.unit(5.75, "feet")
  5435. },
  5436. {
  5437. name: "Macropuff",
  5438. height: math.unit(1500, "feet"),
  5439. default: true
  5440. },
  5441. {
  5442. name: "Megapuff",
  5443. height: math.unit(500, "miles")
  5444. },
  5445. {
  5446. name: "Gigapuff",
  5447. height: math.unit(250000, "miles")
  5448. },
  5449. {
  5450. name: "Omegapuff",
  5451. height: math.unit(1000, "lightyears")
  5452. },
  5453. ]
  5454. ))
  5455. characterMakers.push(() => makeCharacter(
  5456. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5457. {
  5458. stomping: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(170, "lbs"),
  5461. name: "Stomping",
  5462. image: {
  5463. source: "./media/characters/vivian/stomping.svg"
  5464. }
  5465. },
  5466. sitting: {
  5467. height: math.unit(6 / 1.75, "feet"),
  5468. weight: math.unit(170, "lbs"),
  5469. name: "Sitting",
  5470. image: {
  5471. source: "./media/characters/vivian/sitting.svg",
  5472. bottom: 1 / 6.4,
  5473. extra: 1,
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Normal",
  5480. height: math.unit(7, "feet"),
  5481. default: true
  5482. },
  5483. {
  5484. name: "Macro",
  5485. height: math.unit(10, "stories")
  5486. },
  5487. {
  5488. name: "Macro+",
  5489. height: math.unit(30, "stories")
  5490. },
  5491. {
  5492. name: "Megamacro",
  5493. height: math.unit(10, "miles")
  5494. },
  5495. {
  5496. name: "Megamacro+",
  5497. height: math.unit(2750000, "meters")
  5498. },
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5503. {
  5504. front: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(160, "lbs"),
  5507. name: "Front",
  5508. image: {
  5509. source: "./media/characters/prince/front.svg",
  5510. extra: 3400 / 3000
  5511. }
  5512. },
  5513. jumping: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(160, "lbs"),
  5516. name: "Jumping",
  5517. image: {
  5518. source: "./media/characters/prince/jump.svg",
  5519. extra: 2555 / 2134
  5520. }
  5521. },
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(7.75, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Not cute",
  5531. height: math.unit(17, "feet")
  5532. },
  5533. {
  5534. name: "I said NOT",
  5535. height: math.unit(91, "feet")
  5536. },
  5537. {
  5538. name: "Please stop",
  5539. height: math.unit(560, "feet")
  5540. },
  5541. {
  5542. name: "What have you done",
  5543. height: math.unit(2200, "feet")
  5544. },
  5545. {
  5546. name: "Deer God",
  5547. height: math.unit(3.6, "miles")
  5548. },
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5553. {
  5554. standing: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(300, "lbs"),
  5557. name: "Standing",
  5558. image: {
  5559. source: "./media/characters/psymon/standing.svg",
  5560. extra: 1888 / 1810,
  5561. bottom: 0.05
  5562. }
  5563. },
  5564. slithering: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(300, "lbs"),
  5567. name: "Slithering",
  5568. image: {
  5569. source: "./media/characters/psymon/slithering.svg",
  5570. extra: 1330 / 1224
  5571. }
  5572. },
  5573. slitheringAlt: {
  5574. height: math.unit(6, "feet"),
  5575. weight: math.unit(300, "lbs"),
  5576. name: "Slithering (Alt)",
  5577. image: {
  5578. source: "./media/characters/psymon/slithering-alt.svg",
  5579. extra: 1330 / 1224
  5580. }
  5581. },
  5582. },
  5583. [
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(11.25, "feet"),
  5587. default: true
  5588. },
  5589. {
  5590. name: "Large",
  5591. height: math.unit(27, "feet")
  5592. },
  5593. {
  5594. name: "Giant",
  5595. height: math.unit(87, "feet")
  5596. },
  5597. {
  5598. name: "Macro",
  5599. height: math.unit(365, "feet")
  5600. },
  5601. {
  5602. name: "Megamacro",
  5603. height: math.unit(3, "miles")
  5604. },
  5605. {
  5606. name: "World Serpent",
  5607. height: math.unit(8000, "miles")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5613. {
  5614. front: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Front",
  5618. image: {
  5619. source: "./media/characters/daimos/front.svg",
  5620. extra: 4160 / 3897,
  5621. bottom: 0.021
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(8, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Big Dog",
  5633. height: math.unit(22, "feet")
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(127, "feet")
  5638. },
  5639. {
  5640. name: "Megamacro",
  5641. height: math.unit(3600, "feet")
  5642. },
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5647. {
  5648. side: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(180, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/blake/side.svg",
  5654. extra: 1212 / 1120,
  5655. bottom: 0.05
  5656. }
  5657. },
  5658. crouched: {
  5659. height: math.unit(6 * 0.57, "feet"),
  5660. weight: math.unit(180, "lbs"),
  5661. name: "Crouched",
  5662. image: {
  5663. source: "./media/characters/blake/crouched.svg",
  5664. extra: 840 / 587,
  5665. bottom: 0.04
  5666. }
  5667. },
  5668. bent: {
  5669. height: math.unit(6 * 0.75, "feet"),
  5670. weight: math.unit(180, "lbs"),
  5671. name: "Bent",
  5672. image: {
  5673. source: "./media/characters/blake/bent.svg",
  5674. extra: 592 / 544,
  5675. bottom: 0.035
  5676. }
  5677. },
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(8 + 1 / 6, "feet"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Big Backside",
  5687. height: math.unit(37, "feet")
  5688. },
  5689. {
  5690. name: "Subway Shredder",
  5691. height: math.unit(72, "feet")
  5692. },
  5693. {
  5694. name: "City Carver",
  5695. height: math.unit(1675, "feet")
  5696. },
  5697. {
  5698. name: "Tectonic Tweaker",
  5699. height: math.unit(2300, "miles")
  5700. },
  5701. ]
  5702. ))
  5703. characterMakers.push(() => makeCharacter(
  5704. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5705. {
  5706. front: {
  5707. height: math.unit(6, "feet"),
  5708. weight: math.unit(180, "lbs"),
  5709. name: "Front",
  5710. image: {
  5711. source: "./media/characters/guisetto/front.svg",
  5712. extra: 856 / 817,
  5713. bottom: 0.06
  5714. }
  5715. },
  5716. airborne: {
  5717. height: math.unit(6, "feet"),
  5718. weight: math.unit(180, "lbs"),
  5719. name: "Airborne",
  5720. image: {
  5721. source: "./media/characters/guisetto/airborne.svg",
  5722. extra: 584 / 525
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(10 + 11 / 12, "feet"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Large",
  5734. height: math.unit(35, "feet")
  5735. },
  5736. {
  5737. name: "Macro",
  5738. height: math.unit(475, "feet")
  5739. },
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5744. {
  5745. front: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(180, "lbs"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/luxor/front.svg",
  5751. extra: 2940 / 2152
  5752. }
  5753. },
  5754. back: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(180, "lbs"),
  5757. name: "Back",
  5758. image: {
  5759. source: "./media/characters/luxor/back.svg",
  5760. extra: 1083 / 960
  5761. }
  5762. },
  5763. },
  5764. [
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(5 + 5 / 6, "feet"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Lamp",
  5772. height: math.unit(50, "feet")
  5773. },
  5774. {
  5775. name: "Lämp",
  5776. height: math.unit(300, "feet")
  5777. },
  5778. {
  5779. name: "The sun is a lamp",
  5780. height: math.unit(250000, "miles")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5786. {
  5787. front: {
  5788. height: math.unit(6, "feet"),
  5789. weight: math.unit(50, "lbs"),
  5790. name: "Front",
  5791. image: {
  5792. source: "./media/characters/huoyan/front.svg"
  5793. }
  5794. },
  5795. side: {
  5796. height: math.unit(6, "feet"),
  5797. weight: math.unit(180, "lbs"),
  5798. name: "Side",
  5799. image: {
  5800. source: "./media/characters/huoyan/side.svg"
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Chef",
  5807. height: math.unit(9, "feet")
  5808. },
  5809. {
  5810. name: "Normal",
  5811. height: math.unit(65, "feet"),
  5812. default: true
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(780, "feet")
  5817. },
  5818. {
  5819. name: "Flaming Mountain",
  5820. height: math.unit(4.8, "miles")
  5821. },
  5822. {
  5823. name: "Celestial",
  5824. height: math.unit(765000, "miles")
  5825. },
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5830. {
  5831. front: {
  5832. height: math.unit(5 + 3 / 4, "feet"),
  5833. weight: math.unit(120, "lbs"),
  5834. name: "Front",
  5835. image: {
  5836. source: "./media/characters/tails/front.svg"
  5837. }
  5838. }
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(5 + 3 / 4, "feet"),
  5844. default: true
  5845. }
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5850. {
  5851. front: {
  5852. height: math.unit(4, "feet"),
  5853. weight: math.unit(50, "lbs"),
  5854. name: "Front",
  5855. image: {
  5856. source: "./media/characters/rainy/front.svg"
  5857. }
  5858. }
  5859. },
  5860. [
  5861. {
  5862. name: "Macro",
  5863. height: math.unit(800, "feet"),
  5864. default: true
  5865. }
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(150, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/rainier/front.svg"
  5877. }
  5878. }
  5879. },
  5880. [
  5881. {
  5882. name: "Micro",
  5883. height: math.unit(2, "mm"),
  5884. default: true
  5885. }
  5886. ]
  5887. ))
  5888. characterMakers.push(() => makeCharacter(
  5889. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5890. {
  5891. front: {
  5892. height: math.unit(8 + 4/12, "feet"),
  5893. name: "Front",
  5894. image: {
  5895. source: "./media/characters/andy-renard/front.svg",
  5896. extra: 1839/1726,
  5897. bottom: 134/1973
  5898. }
  5899. },
  5900. back: {
  5901. height: math.unit(8 + 4/12, "feet"),
  5902. name: "Back",
  5903. image: {
  5904. source: "./media/characters/andy-renard/back.svg",
  5905. extra: 1838/1710,
  5906. bottom: 105/1943
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Tall",
  5913. height: math.unit(8 + 4/12, "feet")
  5914. },
  5915. {
  5916. name: "Mini Macro",
  5917. height: math.unit(15, "feet"),
  5918. default: true
  5919. },
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(100, "feet")
  5923. },
  5924. {
  5925. name: "Mega Macro",
  5926. height: math.unit(1000, "feet")
  5927. },
  5928. {
  5929. name: "Giga Macro",
  5930. height: math.unit(10, "miles")
  5931. },
  5932. {
  5933. name: "God Macro",
  5934. height: math.unit(1, "multiverse")
  5935. },
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5940. {
  5941. front: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(210, "lbs"),
  5944. name: "Front",
  5945. image: {
  5946. source: "./media/characters/cimmaron/front-sfw.svg",
  5947. extra: 701 / 676,
  5948. bottom: 0.046
  5949. }
  5950. },
  5951. back: {
  5952. height: math.unit(6, "feet"),
  5953. weight: math.unit(210, "lbs"),
  5954. name: "Back",
  5955. image: {
  5956. source: "./media/characters/cimmaron/back-sfw.svg",
  5957. extra: 701 / 676,
  5958. bottom: 0.046
  5959. }
  5960. },
  5961. frontNsfw: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(210, "lbs"),
  5964. name: "Front (NSFW)",
  5965. image: {
  5966. source: "./media/characters/cimmaron/front-nsfw.svg",
  5967. extra: 701 / 676,
  5968. bottom: 0.046
  5969. }
  5970. },
  5971. backNsfw: {
  5972. height: math.unit(6, "feet"),
  5973. weight: math.unit(210, "lbs"),
  5974. name: "Back (NSFW)",
  5975. image: {
  5976. source: "./media/characters/cimmaron/back-nsfw.svg",
  5977. extra: 701 / 676,
  5978. bottom: 0.046
  5979. }
  5980. },
  5981. dick: {
  5982. height: math.unit(1.714, "feet"),
  5983. name: "Dick",
  5984. image: {
  5985. source: "./media/characters/cimmaron/dick.svg"
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(6, "feet"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Macro Mayor",
  5997. height: math.unit(350, "meters")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(200, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/akari/front.svg",
  6010. extra: 962 / 901,
  6011. bottom: 0.04
  6012. }
  6013. }
  6014. },
  6015. [
  6016. {
  6017. name: "Micro",
  6018. height: math.unit(5, "inches"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Normal",
  6023. height: math.unit(7, "feet")
  6024. },
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6029. {
  6030. front: {
  6031. height: math.unit(6, "feet"),
  6032. weight: math.unit(140, "lbs"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/cynosura/front.svg",
  6036. extra: 896 / 847
  6037. }
  6038. },
  6039. back: {
  6040. height: math.unit(6, "feet"),
  6041. weight: math.unit(140, "lbs"),
  6042. name: "Back",
  6043. image: {
  6044. source: "./media/characters/cynosura/back.svg",
  6045. extra: 1365 / 1250
  6046. }
  6047. },
  6048. },
  6049. [
  6050. {
  6051. name: "Micro",
  6052. height: math.unit(4, "inches")
  6053. },
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(5.75, "feet"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Tall",
  6061. height: math.unit(10, "feet")
  6062. },
  6063. {
  6064. name: "Big",
  6065. height: math.unit(20, "feet")
  6066. },
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(50, "feet")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(13 + 2/12, "feet"),
  6078. weight: math.unit(800, "kg"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/gin/front.svg",
  6082. extra: 1312/1191,
  6083. bottom: 45/1357
  6084. }
  6085. },
  6086. mouth: {
  6087. height: math.unit(2.39 * 1.8, "feet"),
  6088. name: "Mouth",
  6089. image: {
  6090. source: "./media/characters/gin/mouth.svg"
  6091. }
  6092. },
  6093. hand: {
  6094. height: math.unit(1.57 * 2.19, "feet"),
  6095. name: "Hand",
  6096. image: {
  6097. source: "./media/characters/gin/hand.svg"
  6098. }
  6099. },
  6100. foot: {
  6101. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6102. name: "Foot",
  6103. image: {
  6104. source: "./media/characters/gin/foot.svg"
  6105. }
  6106. },
  6107. sole: {
  6108. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6109. name: "Sole",
  6110. image: {
  6111. source: "./media/characters/gin/sole.svg"
  6112. }
  6113. },
  6114. },
  6115. [
  6116. {
  6117. name: "Very Small",
  6118. height: math.unit(13 + 2 / 12, "feet")
  6119. },
  6120. {
  6121. name: "Micro",
  6122. height: math.unit(600, "miles")
  6123. },
  6124. {
  6125. name: "Regular",
  6126. height: math.unit(20, "earths"),
  6127. default: true
  6128. },
  6129. {
  6130. name: "Macro",
  6131. height: math.unit(2.2, "solarradii")
  6132. },
  6133. {
  6134. name: "Teramacro",
  6135. height: math.unit(1.2, "galaxies")
  6136. },
  6137. {
  6138. name: "Omegamacro",
  6139. height: math.unit(200, "universes")
  6140. },
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6145. {
  6146. front: {
  6147. height: math.unit(6 + 1 / 6, "feet"),
  6148. weight: math.unit(178, "lbs"),
  6149. name: "Front",
  6150. image: {
  6151. source: "./media/characters/guy/front.svg"
  6152. }
  6153. }
  6154. },
  6155. [
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(6 + 1 / 6, "feet"),
  6159. default: true
  6160. },
  6161. {
  6162. name: "Large",
  6163. height: math.unit(25 + 7 / 12, "feet")
  6164. },
  6165. {
  6166. name: "Macro",
  6167. height: math.unit(60 + 9 / 12, "feet")
  6168. },
  6169. {
  6170. name: "Macro+",
  6171. height: math.unit(246, "feet")
  6172. },
  6173. {
  6174. name: "Macro++",
  6175. height: math.unit(878, "feet")
  6176. }
  6177. ]
  6178. ))
  6179. characterMakers.push(() => makeCharacter(
  6180. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6181. {
  6182. front: {
  6183. height: math.unit(9, "feet"),
  6184. weight: math.unit(800, "lbs"),
  6185. name: "Front",
  6186. image: {
  6187. source: "./media/characters/tiberius/front.svg",
  6188. extra: 2295 / 2071
  6189. }
  6190. },
  6191. back: {
  6192. height: math.unit(9, "feet"),
  6193. weight: math.unit(800, "lbs"),
  6194. name: "Back",
  6195. image: {
  6196. source: "./media/characters/tiberius/back.svg",
  6197. extra: 2373 / 2160
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(9, "feet"),
  6205. default: true
  6206. }
  6207. ]
  6208. ))
  6209. characterMakers.push(() => makeCharacter(
  6210. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6211. {
  6212. front: {
  6213. height: math.unit(6, "feet"),
  6214. weight: math.unit(600, "lbs"),
  6215. name: "Front",
  6216. image: {
  6217. source: "./media/characters/surgo/front.svg",
  6218. extra: 3591 / 2227
  6219. }
  6220. },
  6221. back: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(600, "lbs"),
  6224. name: "Back",
  6225. image: {
  6226. source: "./media/characters/surgo/back.svg",
  6227. extra: 3557 / 2228
  6228. }
  6229. },
  6230. laying: {
  6231. height: math.unit(6 * 0.85, "feet"),
  6232. weight: math.unit(600, "lbs"),
  6233. name: "Laying",
  6234. image: {
  6235. source: "./media/characters/surgo/laying.svg"
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(6, "feet"),
  6243. default: true
  6244. }
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6249. {
  6250. side: {
  6251. height: math.unit(6, "feet"),
  6252. weight: math.unit(150, "lbs"),
  6253. name: "Side",
  6254. image: {
  6255. source: "./media/characters/cibus/side.svg",
  6256. extra: 800 / 400
  6257. }
  6258. },
  6259. },
  6260. [
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(6, "feet"),
  6264. default: true
  6265. }
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(240, "lbs"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/nibbles/front.svg"
  6277. }
  6278. },
  6279. side: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(240, "lbs"),
  6282. name: "Side",
  6283. image: {
  6284. source: "./media/characters/nibbles/side.svg"
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(9, "feet"),
  6292. default: true
  6293. }
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6298. {
  6299. side: {
  6300. height: math.unit(5 + 1 / 6, "feet"),
  6301. weight: math.unit(130, "lbs"),
  6302. name: "Side",
  6303. image: {
  6304. source: "./media/characters/rikky/side.svg",
  6305. extra: 851 / 801
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Normal",
  6312. height: math.unit(5 + 1 / 6, "feet")
  6313. },
  6314. {
  6315. name: "Macro",
  6316. height: math.unit(152, "feet"),
  6317. default: true
  6318. },
  6319. {
  6320. name: "Megamacro",
  6321. height: math.unit(7, "miles")
  6322. }
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6327. {
  6328. side: {
  6329. height: math.unit(370, "cm"),
  6330. weight: math.unit(350, "lbs"),
  6331. name: "Side",
  6332. image: {
  6333. source: "./media/characters/malfressa/side.svg"
  6334. }
  6335. },
  6336. walking: {
  6337. height: math.unit(370, "cm"),
  6338. weight: math.unit(350, "lbs"),
  6339. name: "Walking",
  6340. image: {
  6341. source: "./media/characters/malfressa/walking.svg"
  6342. }
  6343. },
  6344. feral: {
  6345. height: math.unit(2500, "cm"),
  6346. weight: math.unit(100000, "lbs"),
  6347. name: "Feral",
  6348. image: {
  6349. source: "./media/characters/malfressa/feral.svg",
  6350. extra: 2108 / 837,
  6351. bottom: 0.02
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(370, "cm")
  6359. },
  6360. {
  6361. name: "Macro",
  6362. height: math.unit(300, "meters"),
  6363. default: true
  6364. }
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6369. {
  6370. front: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(60, "kg"),
  6373. name: "Front",
  6374. image: {
  6375. source: "./media/characters/jaro/front.svg",
  6376. extra: 845/817,
  6377. bottom: 45/890
  6378. }
  6379. },
  6380. back: {
  6381. height: math.unit(6, "feet"),
  6382. weight: math.unit(60, "kg"),
  6383. name: "Back",
  6384. image: {
  6385. source: "./media/characters/jaro/back.svg",
  6386. extra: 847/817,
  6387. bottom: 34/881
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Micro",
  6394. height: math.unit(7, "inches")
  6395. },
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(5.5, "feet"),
  6399. default: true
  6400. },
  6401. {
  6402. name: "Minimacro",
  6403. height: math.unit(20, "feet")
  6404. },
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(200, "meters")
  6408. }
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6413. {
  6414. front: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(195, "lb"),
  6417. name: "Front",
  6418. image: {
  6419. source: "./media/characters/rogue/front.svg"
  6420. }
  6421. },
  6422. },
  6423. [
  6424. {
  6425. name: "Macro",
  6426. height: math.unit(90, "feet"),
  6427. default: true
  6428. },
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6433. {
  6434. front: {
  6435. height: math.unit(5 + 8 / 12, "feet"),
  6436. weight: math.unit(140, "lb"),
  6437. name: "Front",
  6438. image: {
  6439. source: "./media/characters/piper/front.svg",
  6440. extra: 3948/3655,
  6441. bottom: 0/3948
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(2, "inches")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5 + 8 / 12, "feet")
  6453. },
  6454. {
  6455. name: "Macro",
  6456. height: math.unit(250, "feet"),
  6457. default: true
  6458. },
  6459. {
  6460. name: "Megamacro",
  6461. height: math.unit(7, "miles")
  6462. },
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(220, "lb"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/gemini/front.svg"
  6474. }
  6475. },
  6476. back: {
  6477. height: math.unit(6, "feet"),
  6478. weight: math.unit(220, "lb"),
  6479. name: "Back",
  6480. image: {
  6481. source: "./media/characters/gemini/back.svg"
  6482. }
  6483. },
  6484. kneeling: {
  6485. height: math.unit(6 / 1.5, "feet"),
  6486. weight: math.unit(220, "lb"),
  6487. name: "Kneeling",
  6488. image: {
  6489. source: "./media/characters/gemini/kneeling.svg",
  6490. bottom: 0.02
  6491. }
  6492. },
  6493. },
  6494. [
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(300, "meters"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Megamacro",
  6502. height: math.unit(6900, "meters")
  6503. },
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6508. {
  6509. anthro: {
  6510. height: math.unit(2.35, "meters"),
  6511. weight: math.unit(73, "kg"),
  6512. name: "Anthro",
  6513. image: {
  6514. source: "./media/characters/alicia/anthro.svg",
  6515. extra: 2571 / 2385,
  6516. bottom: 75 / 2648
  6517. }
  6518. },
  6519. paw: {
  6520. height: math.unit(1.32, "feet"),
  6521. name: "Paw",
  6522. image: {
  6523. source: "./media/characters/alicia/paw.svg"
  6524. }
  6525. },
  6526. feral: {
  6527. height: math.unit(1.69, "meters"),
  6528. weight: math.unit(73, "kg"),
  6529. name: "Feral",
  6530. image: {
  6531. source: "./media/characters/alicia/feral.svg",
  6532. extra: 2123 / 1715,
  6533. bottom: 222 / 2349
  6534. }
  6535. },
  6536. },
  6537. [
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(2.35, "meters")
  6541. },
  6542. {
  6543. name: "Macro",
  6544. height: math.unit(60, "meters"),
  6545. default: true
  6546. },
  6547. {
  6548. name: "Megamacro",
  6549. height: math.unit(10000, "kilometers")
  6550. },
  6551. ]
  6552. ))
  6553. characterMakers.push(() => makeCharacter(
  6554. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6555. {
  6556. front: {
  6557. height: math.unit(7, "feet"),
  6558. weight: math.unit(250, "lbs"),
  6559. name: "Front",
  6560. image: {
  6561. source: "./media/characters/archy/front.svg"
  6562. }
  6563. }
  6564. },
  6565. [
  6566. {
  6567. name: "Micro",
  6568. height: math.unit(1, "inch")
  6569. },
  6570. {
  6571. name: "Shorty",
  6572. height: math.unit(5, "feet")
  6573. },
  6574. {
  6575. name: "Normal",
  6576. height: math.unit(7, "feet")
  6577. },
  6578. {
  6579. name: "Macro",
  6580. height: math.unit(600, "meters"),
  6581. default: true
  6582. },
  6583. {
  6584. name: "Megamacro",
  6585. height: math.unit(1, "mile")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6591. {
  6592. front: {
  6593. height: math.unit(1.65, "meters"),
  6594. weight: math.unit(74, "kg"),
  6595. name: "Front",
  6596. image: {
  6597. source: "./media/characters/berri/front.svg",
  6598. extra: 857 / 837,
  6599. bottom: 18 / 877
  6600. }
  6601. },
  6602. bum: {
  6603. height: math.unit(1.46, "feet"),
  6604. name: "Bum",
  6605. image: {
  6606. source: "./media/characters/berri/bum.svg"
  6607. }
  6608. },
  6609. mouth: {
  6610. height: math.unit(0.44, "feet"),
  6611. name: "Mouth",
  6612. image: {
  6613. source: "./media/characters/berri/mouth.svg"
  6614. }
  6615. },
  6616. paw: {
  6617. height: math.unit(0.826, "feet"),
  6618. name: "Paw",
  6619. image: {
  6620. source: "./media/characters/berri/paw.svg"
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(1.65, "meters")
  6628. },
  6629. {
  6630. name: "Macro",
  6631. height: math.unit(60, "m"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Megamacro",
  6636. height: math.unit(9.213, "km")
  6637. },
  6638. {
  6639. name: "Planet Eater",
  6640. height: math.unit(489, "megameters")
  6641. },
  6642. {
  6643. name: "Teramacro",
  6644. height: math.unit(2471635000000, "meters")
  6645. },
  6646. {
  6647. name: "Examacro",
  6648. height: math.unit(8.0624e+26, "meters")
  6649. }
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(1.72, "meters"),
  6657. weight: math.unit(68, "kg"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/lexi/front.svg"
  6661. }
  6662. }
  6663. },
  6664. [
  6665. {
  6666. name: "Very Smol",
  6667. height: math.unit(10, "mm")
  6668. },
  6669. {
  6670. name: "Micro",
  6671. height: math.unit(6.8, "cm"),
  6672. default: true
  6673. },
  6674. {
  6675. name: "Normal",
  6676. height: math.unit(1.72, "m")
  6677. }
  6678. ]
  6679. ))
  6680. characterMakers.push(() => makeCharacter(
  6681. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6682. {
  6683. front: {
  6684. height: math.unit(1.69, "meters"),
  6685. weight: math.unit(68, "kg"),
  6686. name: "Front",
  6687. image: {
  6688. source: "./media/characters/martin/front.svg",
  6689. extra: 596 / 581
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Micro",
  6696. height: math.unit(6.85, "cm"),
  6697. default: true
  6698. },
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(1.69, "m")
  6702. }
  6703. ]
  6704. ))
  6705. characterMakers.push(() => makeCharacter(
  6706. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6707. {
  6708. front: {
  6709. height: math.unit(1.69, "meters"),
  6710. weight: math.unit(68, "kg"),
  6711. name: "Front",
  6712. image: {
  6713. source: "./media/characters/juno/front.svg"
  6714. }
  6715. }
  6716. },
  6717. [
  6718. {
  6719. name: "Micro",
  6720. height: math.unit(7, "cm")
  6721. },
  6722. {
  6723. name: "Normal",
  6724. height: math.unit(1.89, "m")
  6725. },
  6726. {
  6727. name: "Macro",
  6728. height: math.unit(353, "meters"),
  6729. default: true
  6730. }
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6735. {
  6736. front: {
  6737. height: math.unit(1.93, "meters"),
  6738. weight: math.unit(83, "kg"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/samantha/front.svg"
  6742. }
  6743. },
  6744. frontClothed: {
  6745. height: math.unit(1.93, "meters"),
  6746. weight: math.unit(83, "kg"),
  6747. name: "Front (Clothed)",
  6748. image: {
  6749. source: "./media/characters/samantha/front-clothed.svg"
  6750. }
  6751. },
  6752. back: {
  6753. height: math.unit(1.93, "meters"),
  6754. weight: math.unit(83, "kg"),
  6755. name: "Back",
  6756. image: {
  6757. source: "./media/characters/samantha/back.svg"
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(1.93, "m")
  6765. },
  6766. {
  6767. name: "Macro",
  6768. height: math.unit(74, "meters"),
  6769. default: true
  6770. },
  6771. {
  6772. name: "Macro+",
  6773. height: math.unit(223, "meters"),
  6774. },
  6775. {
  6776. name: "Megamacro",
  6777. height: math.unit(8381, "meters"),
  6778. },
  6779. {
  6780. name: "Megamacro+",
  6781. height: math.unit(12000, "kilometers")
  6782. },
  6783. ]
  6784. ))
  6785. characterMakers.push(() => makeCharacter(
  6786. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6787. {
  6788. front: {
  6789. height: math.unit(1.92, "meters"),
  6790. weight: math.unit(80, "kg"),
  6791. name: "Front",
  6792. image: {
  6793. source: "./media/characters/dr-clay/front.svg"
  6794. }
  6795. },
  6796. frontClothed: {
  6797. height: math.unit(1.92, "meters"),
  6798. weight: math.unit(80, "kg"),
  6799. name: "Front (Clothed)",
  6800. image: {
  6801. source: "./media/characters/dr-clay/front-clothed.svg"
  6802. }
  6803. }
  6804. },
  6805. [
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(1.92, "m")
  6809. },
  6810. {
  6811. name: "Macro",
  6812. height: math.unit(214, "meters"),
  6813. default: true
  6814. },
  6815. {
  6816. name: "Macro+",
  6817. height: math.unit(12.237, "meters"),
  6818. },
  6819. {
  6820. name: "Megamacro",
  6821. height: math.unit(557, "megameters"),
  6822. },
  6823. {
  6824. name: "Unimaginable",
  6825. height: math.unit(120e9, "lightyears")
  6826. },
  6827. ]
  6828. ))
  6829. characterMakers.push(() => makeCharacter(
  6830. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6831. {
  6832. front: {
  6833. height: math.unit(2, "meters"),
  6834. weight: math.unit(80, "kg"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6838. }
  6839. }
  6840. },
  6841. [
  6842. {
  6843. name: "Teramacro",
  6844. height: math.unit(500000, "lightyears"),
  6845. default: true
  6846. },
  6847. ]
  6848. ))
  6849. characterMakers.push(() => makeCharacter(
  6850. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6851. {
  6852. crux: {
  6853. height: math.unit(2, "meters"),
  6854. weight: math.unit(150, "kg"),
  6855. name: "Crux",
  6856. image: {
  6857. source: "./media/characters/vemus/crux.svg",
  6858. extra: 1074/936,
  6859. bottom: 23/1097
  6860. }
  6861. },
  6862. skunkTanuki: {
  6863. height: math.unit(2, "meters"),
  6864. weight: math.unit(150, "kg"),
  6865. name: "Skunk-Tanuki",
  6866. image: {
  6867. source: "./media/characters/vemus/skunk-tanuki.svg",
  6868. extra: 926/893,
  6869. bottom: 20/946
  6870. }
  6871. },
  6872. },
  6873. [
  6874. {
  6875. name: "Normal",
  6876. height: math.unit(3.75, "meters"),
  6877. default: true
  6878. },
  6879. {
  6880. name: "Big",
  6881. height: math.unit(8, "meters")
  6882. },
  6883. {
  6884. name: "Macro",
  6885. height: math.unit(100, "meters")
  6886. },
  6887. {
  6888. name: "Macro+",
  6889. height: math.unit(1500, "meters")
  6890. },
  6891. {
  6892. name: "Stellar",
  6893. height: math.unit(14e8, "meters")
  6894. },
  6895. ]
  6896. ))
  6897. characterMakers.push(() => makeCharacter(
  6898. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6899. {
  6900. front: {
  6901. height: math.unit(2, "meters"),
  6902. weight: math.unit(70, "kg"),
  6903. name: "Front",
  6904. image: {
  6905. source: "./media/characters/beherit/front.svg",
  6906. extra: 1234/1109,
  6907. bottom: 55/1289
  6908. }
  6909. }
  6910. },
  6911. [
  6912. {
  6913. name: "Normal",
  6914. height: math.unit(6, "feet")
  6915. },
  6916. {
  6917. name: "Lorg",
  6918. height: math.unit(25, "feet"),
  6919. default: true
  6920. },
  6921. {
  6922. name: "Lorger",
  6923. height: math.unit(75, "feet")
  6924. },
  6925. {
  6926. name: "Macro",
  6927. height: math.unit(200, "meters")
  6928. },
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(2, "meters"),
  6936. weight: math.unit(150, "kg"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/everett/front.svg",
  6940. extra: 1017/866,
  6941. bottom: 86/1103
  6942. }
  6943. },
  6944. paw: {
  6945. height: math.unit(2 / 3.6, "meters"),
  6946. name: "Paw",
  6947. image: {
  6948. source: "./media/characters/everett/paw.svg"
  6949. }
  6950. },
  6951. },
  6952. [
  6953. {
  6954. name: "Normal",
  6955. height: math.unit(15, "feet"),
  6956. default: true
  6957. },
  6958. {
  6959. name: "Lorg",
  6960. height: math.unit(70, "feet"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Lorger",
  6965. height: math.unit(250, "feet")
  6966. },
  6967. {
  6968. name: "Macro",
  6969. height: math.unit(500, "meters")
  6970. },
  6971. ]
  6972. ))
  6973. characterMakers.push(() => makeCharacter(
  6974. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6975. {
  6976. front: {
  6977. height: math.unit(2, "meters"),
  6978. weight: math.unit(86, "kg"),
  6979. name: "Front",
  6980. image: {
  6981. source: "./media/characters/rose/front.svg",
  6982. extra: 1785/1636,
  6983. bottom: 30/1815
  6984. }
  6985. },
  6986. frontSporty: {
  6987. height: math.unit(2, "meters"),
  6988. weight: math.unit(86, "kg"),
  6989. name: "Front (Sporty)",
  6990. image: {
  6991. source: "./media/characters/rose/front-sporty.svg",
  6992. extra: 350/335,
  6993. bottom: 10/360
  6994. }
  6995. },
  6996. frontAlt: {
  6997. height: math.unit(1.6, "meters"),
  6998. weight: math.unit(86, "kg"),
  6999. name: "Front (Alt)",
  7000. image: {
  7001. source: "./media/characters/rose/front-alt.svg",
  7002. extra: 299/283,
  7003. bottom: 3/302
  7004. }
  7005. },
  7006. plush: {
  7007. height: math.unit(2, "meters"),
  7008. weight: math.unit(86/3, "kg"),
  7009. name: "Plush",
  7010. image: {
  7011. source: "./media/characters/rose/plush.svg",
  7012. extra: 361/337,
  7013. bottom: 11/372
  7014. }
  7015. },
  7016. },
  7017. [
  7018. {
  7019. name: "True Micro",
  7020. height: math.unit(9, "cm")
  7021. },
  7022. {
  7023. name: "Micro",
  7024. height: math.unit(16, "cm")
  7025. },
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(1.85, "meters"),
  7029. default: true
  7030. },
  7031. {
  7032. name: "Mini-Macro",
  7033. height: math.unit(5, "meters")
  7034. },
  7035. {
  7036. name: "Macro",
  7037. height: math.unit(15, "meters")
  7038. },
  7039. {
  7040. name: "True Macro",
  7041. height: math.unit(40, "meters")
  7042. },
  7043. {
  7044. name: "City Scale",
  7045. height: math.unit(1, "km")
  7046. },
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(2, "meters"),
  7054. weight: math.unit(350, "lbs"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/regal/front.svg"
  7058. }
  7059. },
  7060. back: {
  7061. height: math.unit(2, "meters"),
  7062. weight: math.unit(350, "lbs"),
  7063. name: "Back",
  7064. image: {
  7065. source: "./media/characters/regal/back.svg"
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Macro",
  7072. height: math.unit(350, "feet"),
  7073. default: true
  7074. }
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(4 + 11 / 12, "feet"),
  7082. weight: math.unit(100, "lbs"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/opal/front.svg"
  7086. }
  7087. },
  7088. frontAlt: {
  7089. height: math.unit(4 + 11 / 12, "feet"),
  7090. weight: math.unit(100, "lbs"),
  7091. name: "Front (Alt)",
  7092. image: {
  7093. source: "./media/characters/opal/front-alt.svg"
  7094. }
  7095. },
  7096. },
  7097. [
  7098. {
  7099. name: "Small",
  7100. height: math.unit(4 + 11 / 12, "feet")
  7101. },
  7102. {
  7103. name: "Normal",
  7104. height: math.unit(20, "feet"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Macro",
  7109. height: math.unit(120, "feet")
  7110. },
  7111. {
  7112. name: "Megamacro",
  7113. height: math.unit(80, "miles")
  7114. },
  7115. {
  7116. name: "True Size",
  7117. height: math.unit(100000, "lightyears")
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(200, "lbs"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/vector-wuff/front.svg"
  7130. }
  7131. }
  7132. },
  7133. [
  7134. {
  7135. name: "Normal",
  7136. height: math.unit(2.8, "meters")
  7137. },
  7138. {
  7139. name: "Macro",
  7140. height: math.unit(450, "meters"),
  7141. default: true
  7142. },
  7143. {
  7144. name: "Megamacro",
  7145. height: math.unit(15, "kilometers")
  7146. }
  7147. ]
  7148. ))
  7149. characterMakers.push(() => makeCharacter(
  7150. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7151. {
  7152. front: {
  7153. height: math.unit(6, "feet"),
  7154. weight: math.unit(256, "lbs"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/dannik/front.svg"
  7158. }
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Macro",
  7164. height: math.unit(69.57, "meters"),
  7165. default: true
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(6, "feet"),
  7174. weight: math.unit(120, "lbs"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/azura-saharah/front.svg"
  7178. }
  7179. },
  7180. back: {
  7181. height: math.unit(6, "feet"),
  7182. weight: math.unit(120, "lbs"),
  7183. name: "Back",
  7184. image: {
  7185. source: "./media/characters/azura-saharah/back.svg"
  7186. }
  7187. },
  7188. },
  7189. [
  7190. {
  7191. name: "Macro",
  7192. height: math.unit(100, "feet"),
  7193. default: true
  7194. },
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7199. {
  7200. side: {
  7201. height: math.unit(5 + 4 / 12, "feet"),
  7202. weight: math.unit(163, "lbs"),
  7203. name: "Side",
  7204. image: {
  7205. source: "./media/characters/kennedy/side.svg"
  7206. }
  7207. }
  7208. },
  7209. [
  7210. {
  7211. name: "Standard Doggo",
  7212. height: math.unit(5 + 4 / 12, "feet")
  7213. },
  7214. {
  7215. name: "Big Doggo",
  7216. height: math.unit(25 + 3 / 12, "feet"),
  7217. default: true
  7218. },
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7223. {
  7224. front: {
  7225. height: math.unit(5 + 5/12, "feet"),
  7226. weight: math.unit(100, "lbs"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/odios-de-lunar/front.svg",
  7230. extra: 1468/1323,
  7231. bottom: 22/1490
  7232. }
  7233. }
  7234. },
  7235. [
  7236. {
  7237. name: "Micro",
  7238. height: math.unit(3, "inches")
  7239. },
  7240. {
  7241. name: "Normal",
  7242. height: math.unit(5.5, "feet"),
  7243. default: true
  7244. },
  7245. {
  7246. name: "Macro",
  7247. height: math.unit(100, "feet")
  7248. },
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7253. {
  7254. back: {
  7255. height: math.unit(6, "feet"),
  7256. weight: math.unit(220, "lbs"),
  7257. name: "Back",
  7258. image: {
  7259. source: "./media/characters/mandake/back.svg"
  7260. }
  7261. }
  7262. },
  7263. [
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(7, "feet"),
  7267. default: true
  7268. },
  7269. {
  7270. name: "Macro",
  7271. height: math.unit(78, "feet")
  7272. },
  7273. {
  7274. name: "Macro+",
  7275. height: math.unit(300, "meters")
  7276. },
  7277. {
  7278. name: "Macro++",
  7279. height: math.unit(2400, "feet")
  7280. },
  7281. {
  7282. name: "Megamacro",
  7283. height: math.unit(5167, "meters")
  7284. },
  7285. {
  7286. name: "Gigamacro",
  7287. height: math.unit(41769, "miles")
  7288. },
  7289. ]
  7290. ))
  7291. characterMakers.push(() => makeCharacter(
  7292. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7293. {
  7294. front: {
  7295. height: math.unit(6, "feet"),
  7296. weight: math.unit(120, "lbs"),
  7297. name: "Front",
  7298. image: {
  7299. source: "./media/characters/yozey/front.svg"
  7300. }
  7301. },
  7302. frontAlt: {
  7303. height: math.unit(6, "feet"),
  7304. weight: math.unit(120, "lbs"),
  7305. name: "Front (Alt)",
  7306. image: {
  7307. source: "./media/characters/yozey/front-alt.svg"
  7308. }
  7309. },
  7310. side: {
  7311. height: math.unit(6, "feet"),
  7312. weight: math.unit(120, "lbs"),
  7313. name: "Side",
  7314. image: {
  7315. source: "./media/characters/yozey/side.svg"
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Micro",
  7322. height: math.unit(3, "inches"),
  7323. default: true
  7324. },
  7325. {
  7326. name: "Normal",
  7327. height: math.unit(6, "feet")
  7328. }
  7329. ]
  7330. ))
  7331. characterMakers.push(() => makeCharacter(
  7332. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7333. {
  7334. front: {
  7335. height: math.unit(6, "feet"),
  7336. weight: math.unit(103, "lbs"),
  7337. name: "Front",
  7338. image: {
  7339. source: "./media/characters/valeska-voss/front.svg"
  7340. }
  7341. }
  7342. },
  7343. [
  7344. {
  7345. name: "Mini-Sized Sub",
  7346. height: math.unit(3.1, "inches")
  7347. },
  7348. {
  7349. name: "Mid-Sized Sub",
  7350. height: math.unit(6.2, "inches")
  7351. },
  7352. {
  7353. name: "Full-Sized Sub",
  7354. height: math.unit(9.3, "inches")
  7355. },
  7356. {
  7357. name: "Normal",
  7358. height: math.unit(5 + 2 / 12, "foot"),
  7359. default: true
  7360. },
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7365. {
  7366. front: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(160, "lbs"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/gene-zeta/front.svg",
  7372. extra: 3006 / 2826,
  7373. bottom: 182 / 3188
  7374. }
  7375. }
  7376. },
  7377. [
  7378. {
  7379. name: "Micro",
  7380. height: math.unit(6, "inches")
  7381. },
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(5 + 11 / 12, "foot"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(140, "feet")
  7390. },
  7391. {
  7392. name: "Supercharged",
  7393. height: math.unit(2500, "feet")
  7394. },
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7399. {
  7400. front: {
  7401. height: math.unit(6, "feet"),
  7402. weight: math.unit(350, "lbs"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/razinox/front.svg",
  7406. extra: 1686 / 1548,
  7407. bottom: 28.2 / 1868
  7408. }
  7409. },
  7410. back: {
  7411. height: math.unit(6, "feet"),
  7412. weight: math.unit(350, "lbs"),
  7413. name: "Back",
  7414. image: {
  7415. source: "./media/characters/razinox/back.svg",
  7416. extra: 1660 / 1590,
  7417. bottom: 15 / 1665
  7418. }
  7419. },
  7420. },
  7421. [
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(10 + 8 / 12, "foot")
  7425. },
  7426. {
  7427. name: "Minimacro",
  7428. height: math.unit(15, "foot")
  7429. },
  7430. {
  7431. name: "Macro",
  7432. height: math.unit(60, "foot"),
  7433. default: true
  7434. },
  7435. {
  7436. name: "Megamacro",
  7437. height: math.unit(5, "miles")
  7438. },
  7439. {
  7440. name: "Gigamacro",
  7441. height: math.unit(6000, "miles")
  7442. },
  7443. ]
  7444. ))
  7445. characterMakers.push(() => makeCharacter(
  7446. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7447. {
  7448. front: {
  7449. height: math.unit(6, "feet"),
  7450. weight: math.unit(150, "lbs"),
  7451. name: "Front",
  7452. image: {
  7453. source: "./media/characters/cobalt/front.svg"
  7454. }
  7455. }
  7456. },
  7457. [
  7458. {
  7459. name: "Normal",
  7460. height: math.unit(8 + 1 / 12, "foot")
  7461. },
  7462. {
  7463. name: "Macro",
  7464. height: math.unit(111, "foot"),
  7465. default: true
  7466. },
  7467. {
  7468. name: "Supracosmic",
  7469. height: math.unit(1e42, "feet")
  7470. },
  7471. ]
  7472. ))
  7473. characterMakers.push(() => makeCharacter(
  7474. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7475. {
  7476. front: {
  7477. height: math.unit(6, "feet"),
  7478. weight: math.unit(140, "lbs"),
  7479. name: "Front",
  7480. image: {
  7481. source: "./media/characters/amanda/front.svg"
  7482. }
  7483. }
  7484. },
  7485. [
  7486. {
  7487. name: "Micro",
  7488. height: math.unit(5, "inches"),
  7489. default: true
  7490. },
  7491. ]
  7492. ))
  7493. characterMakers.push(() => makeCharacter(
  7494. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7495. {
  7496. front: {
  7497. height: math.unit(2.75, "meters"),
  7498. weight: math.unit(1200, "lb"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/teal/front.svg",
  7502. extra: 2463 / 2320,
  7503. bottom: 166 / 2629
  7504. }
  7505. },
  7506. back: {
  7507. height: math.unit(2.75, "meters"),
  7508. weight: math.unit(1200, "lb"),
  7509. name: "Back",
  7510. image: {
  7511. source: "./media/characters/teal/back.svg",
  7512. extra: 2580 / 2489,
  7513. bottom: 151 / 2731
  7514. }
  7515. },
  7516. sitting: {
  7517. height: math.unit(1.9, "meters"),
  7518. weight: math.unit(1200, "lb"),
  7519. name: "Sitting",
  7520. image: {
  7521. source: "./media/characters/teal/sitting.svg",
  7522. extra: 623 / 590,
  7523. bottom: 121 / 744
  7524. }
  7525. },
  7526. standing: {
  7527. height: math.unit(2.75, "meters"),
  7528. weight: math.unit(1200, "lb"),
  7529. name: "Standing",
  7530. image: {
  7531. source: "./media/characters/teal/standing.svg",
  7532. extra: 923 / 893,
  7533. bottom: 60 / 983
  7534. }
  7535. },
  7536. stretching: {
  7537. height: math.unit(3.65, "meters"),
  7538. weight: math.unit(1200, "lb"),
  7539. name: "Stretching",
  7540. image: {
  7541. source: "./media/characters/teal/stretching.svg",
  7542. extra: 1276 / 1244,
  7543. bottom: 0 / 1276
  7544. }
  7545. },
  7546. legged: {
  7547. height: math.unit(1.3, "meters"),
  7548. weight: math.unit(100, "lb"),
  7549. name: "Legged",
  7550. image: {
  7551. source: "./media/characters/teal/legged.svg",
  7552. extra: 462 / 437,
  7553. bottom: 24 / 486
  7554. }
  7555. },
  7556. naga: {
  7557. height: math.unit(5.4, "meters"),
  7558. weight: math.unit(4000, "lb"),
  7559. name: "Naga",
  7560. image: {
  7561. source: "./media/characters/teal/naga.svg",
  7562. extra: 1902 / 1858,
  7563. bottom: 0 / 1902
  7564. }
  7565. },
  7566. hand: {
  7567. height: math.unit(0.52, "meters"),
  7568. name: "Hand",
  7569. image: {
  7570. source: "./media/characters/teal/hand.svg"
  7571. }
  7572. },
  7573. maw: {
  7574. height: math.unit(0.43, "meters"),
  7575. name: "Maw",
  7576. image: {
  7577. source: "./media/characters/teal/maw.svg"
  7578. }
  7579. },
  7580. slit: {
  7581. height: math.unit(0.25, "meters"),
  7582. name: "Slit",
  7583. image: {
  7584. source: "./media/characters/teal/slit.svg"
  7585. }
  7586. },
  7587. },
  7588. [
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(2.75, "meters"),
  7592. default: true
  7593. },
  7594. {
  7595. name: "Macro",
  7596. height: math.unit(300, "feet")
  7597. },
  7598. {
  7599. name: "Macro+",
  7600. height: math.unit(2000, "feet")
  7601. },
  7602. ]
  7603. ))
  7604. characterMakers.push(() => makeCharacter(
  7605. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7606. {
  7607. frontCat: {
  7608. height: math.unit(6, "feet"),
  7609. weight: math.unit(180, "lbs"),
  7610. name: "Front (Cat)",
  7611. image: {
  7612. source: "./media/characters/ravin-amulet/front-cat.svg"
  7613. }
  7614. },
  7615. frontCatAlt: {
  7616. height: math.unit(6, "feet"),
  7617. weight: math.unit(180, "lbs"),
  7618. name: "Front (Alt, Cat)",
  7619. image: {
  7620. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7621. }
  7622. },
  7623. frontWerewolf: {
  7624. height: math.unit(6 * 1.2, "feet"),
  7625. weight: math.unit(225, "lbs"),
  7626. name: "Front (Werewolf)",
  7627. image: {
  7628. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7629. }
  7630. },
  7631. backWerewolf: {
  7632. height: math.unit(6 * 1.2, "feet"),
  7633. weight: math.unit(225, "lbs"),
  7634. name: "Back (Werewolf)",
  7635. image: {
  7636. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7637. }
  7638. },
  7639. },
  7640. [
  7641. {
  7642. name: "Nano",
  7643. height: math.unit(1, "micrometer")
  7644. },
  7645. {
  7646. name: "Micro",
  7647. height: math.unit(1, "inch")
  7648. },
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(6, "feet"),
  7652. default: true
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(60, "feet")
  7657. }
  7658. ]
  7659. ))
  7660. characterMakers.push(() => makeCharacter(
  7661. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7662. {
  7663. front: {
  7664. height: math.unit(6, "feet"),
  7665. weight: math.unit(165, "lbs"),
  7666. name: "Front",
  7667. image: {
  7668. source: "./media/characters/fluoresce/front.svg"
  7669. }
  7670. }
  7671. },
  7672. [
  7673. {
  7674. name: "Micro",
  7675. height: math.unit(6, "cm")
  7676. },
  7677. {
  7678. name: "Normal",
  7679. height: math.unit(5 + 7 / 12, "feet"),
  7680. default: true
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(56, "feet")
  7685. },
  7686. {
  7687. name: "Megamacro",
  7688. height: math.unit(1.9, "miles")
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7694. {
  7695. front: {
  7696. height: math.unit(9 + 6 / 12, "feet"),
  7697. weight: math.unit(523, "lbs"),
  7698. name: "Side",
  7699. image: {
  7700. source: "./media/characters/aurora/side.svg"
  7701. }
  7702. }
  7703. },
  7704. [
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(9 + 6 / 12, "feet")
  7708. },
  7709. {
  7710. name: "Macro",
  7711. height: math.unit(96, "feet"),
  7712. default: true
  7713. },
  7714. {
  7715. name: "Macro+",
  7716. height: math.unit(243, "feet")
  7717. },
  7718. ]
  7719. ))
  7720. characterMakers.push(() => makeCharacter(
  7721. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7722. {
  7723. front: {
  7724. height: math.unit(194, "cm"),
  7725. weight: math.unit(90, "kg"),
  7726. name: "Front",
  7727. image: {
  7728. source: "./media/characters/ranek/front.svg"
  7729. }
  7730. },
  7731. side: {
  7732. height: math.unit(194, "cm"),
  7733. weight: math.unit(90, "kg"),
  7734. name: "Side",
  7735. image: {
  7736. source: "./media/characters/ranek/side.svg"
  7737. }
  7738. },
  7739. back: {
  7740. height: math.unit(194, "cm"),
  7741. weight: math.unit(90, "kg"),
  7742. name: "Back",
  7743. image: {
  7744. source: "./media/characters/ranek/back.svg"
  7745. }
  7746. },
  7747. feral: {
  7748. height: math.unit(30, "cm"),
  7749. weight: math.unit(1.6, "lbs"),
  7750. name: "Feral",
  7751. image: {
  7752. source: "./media/characters/ranek/feral.svg"
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(194, "cm"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(100, "meters")
  7765. },
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(5 + 6 / 12, "feet"),
  7773. weight: math.unit(153, "lbs"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/andrew-cooper/front.svg"
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Nano",
  7783. height: math.unit(1, "mm")
  7784. },
  7785. {
  7786. name: "Micro",
  7787. height: math.unit(2, "inches")
  7788. },
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(5 + 6 / 12, "feet"),
  7792. default: true
  7793. }
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(180, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/akane-sato/front.svg",
  7805. extra: 1219 / 1140
  7806. }
  7807. },
  7808. back: {
  7809. height: math.unit(6, "feet"),
  7810. weight: math.unit(180, "lbs"),
  7811. name: "Back",
  7812. image: {
  7813. source: "./media/characters/akane-sato/back.svg",
  7814. extra: 1219 / 1170
  7815. }
  7816. },
  7817. },
  7818. [
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(2.5, "meters")
  7822. },
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(250, "meters"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Megamacro",
  7830. height: math.unit(25, "km")
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(6, "feet"),
  7839. weight: math.unit(65, "kg"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/rook/front.svg",
  7843. extra: 960 / 950
  7844. }
  7845. }
  7846. },
  7847. [
  7848. {
  7849. name: "Normal",
  7850. height: math.unit(8.8, "feet")
  7851. },
  7852. {
  7853. name: "Macro",
  7854. height: math.unit(88, "feet"),
  7855. default: true
  7856. },
  7857. {
  7858. name: "Megamacro",
  7859. height: math.unit(8, "miles")
  7860. },
  7861. ]
  7862. ))
  7863. characterMakers.push(() => makeCharacter(
  7864. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7865. {
  7866. front: {
  7867. height: math.unit(12 + 2 / 12, "feet"),
  7868. weight: math.unit(808, "lbs"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/prodigy/front.svg"
  7872. }
  7873. }
  7874. },
  7875. [
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(12 + 2 / 12, "feet"),
  7879. default: true
  7880. },
  7881. {
  7882. name: "Macro",
  7883. height: math.unit(143, "feet")
  7884. },
  7885. {
  7886. name: "Macro+",
  7887. height: math.unit(400, "feet")
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(225, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/daniel/front.svg"
  7900. }
  7901. },
  7902. leaning: {
  7903. height: math.unit(6, "feet"),
  7904. weight: math.unit(225, "lbs"),
  7905. name: "Leaning",
  7906. image: {
  7907. source: "./media/characters/daniel/leaning.svg"
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(1000, "feet"),
  7915. default: true
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7921. {
  7922. front: {
  7923. height: math.unit(6, "feet"),
  7924. weight: math.unit(88, "lbs"),
  7925. name: "Front",
  7926. image: {
  7927. source: "./media/characters/chiros/front.svg",
  7928. extra: 306 / 226
  7929. }
  7930. },
  7931. side: {
  7932. height: math.unit(6, "feet"),
  7933. weight: math.unit(88, "lbs"),
  7934. name: "Side",
  7935. image: {
  7936. source: "./media/characters/chiros/side.svg",
  7937. extra: 306 / 226
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(6, "cm"),
  7945. default: true
  7946. },
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7951. {
  7952. front: {
  7953. height: math.unit(6, "feet"),
  7954. weight: math.unit(100, "lbs"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/selka/front.svg",
  7958. extra: 947 / 887
  7959. }
  7960. }
  7961. },
  7962. [
  7963. {
  7964. name: "Normal",
  7965. height: math.unit(5, "cm"),
  7966. default: true
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(8 + 3 / 12, "feet"),
  7975. weight: math.unit(424, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/verin/front.svg",
  7979. extra: 1845 / 1550
  7980. }
  7981. },
  7982. frontArmored: {
  7983. height: math.unit(8 + 3 / 12, "feet"),
  7984. weight: math.unit(424, "lbs"),
  7985. name: "Front (Armored)",
  7986. image: {
  7987. source: "./media/characters/verin/front-armor.svg",
  7988. extra: 1845 / 1550,
  7989. bottom: 0.01
  7990. }
  7991. },
  7992. back: {
  7993. height: math.unit(8 + 3 / 12, "feet"),
  7994. weight: math.unit(424, "lbs"),
  7995. name: "Back",
  7996. image: {
  7997. source: "./media/characters/verin/back.svg",
  7998. bottom: 0.1,
  7999. extra: 1
  8000. }
  8001. },
  8002. foot: {
  8003. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8004. name: "Foot",
  8005. image: {
  8006. source: "./media/characters/verin/foot.svg"
  8007. }
  8008. },
  8009. },
  8010. [
  8011. {
  8012. name: "Normal",
  8013. height: math.unit(8 + 3 / 12, "feet")
  8014. },
  8015. {
  8016. name: "Minimacro",
  8017. height: math.unit(21, "feet"),
  8018. default: true
  8019. },
  8020. {
  8021. name: "Macro",
  8022. height: math.unit(626, "feet")
  8023. },
  8024. ]
  8025. ))
  8026. characterMakers.push(() => makeCharacter(
  8027. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8028. {
  8029. front: {
  8030. height: math.unit(2.718, "meters"),
  8031. weight: math.unit(150, "lbs"),
  8032. name: "Front",
  8033. image: {
  8034. source: "./media/characters/sovrim-terraquian/front.svg",
  8035. extra: 1752/1689,
  8036. bottom: 36/1788
  8037. }
  8038. },
  8039. back: {
  8040. height: math.unit(2.718, "meters"),
  8041. weight: math.unit(150, "lbs"),
  8042. name: "Back",
  8043. image: {
  8044. source: "./media/characters/sovrim-terraquian/back.svg",
  8045. extra: 1698/1657,
  8046. bottom: 58/1756
  8047. }
  8048. },
  8049. tongue: {
  8050. height: math.unit(2.865, "feet"),
  8051. name: "Tongue",
  8052. image: {
  8053. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8054. }
  8055. },
  8056. hand: {
  8057. height: math.unit(1.61, "feet"),
  8058. name: "Hand",
  8059. image: {
  8060. source: "./media/characters/sovrim-terraquian/hand.svg"
  8061. }
  8062. },
  8063. foot: {
  8064. height: math.unit(1.05, "feet"),
  8065. name: "Foot",
  8066. image: {
  8067. source: "./media/characters/sovrim-terraquian/foot.svg"
  8068. }
  8069. },
  8070. footAlt: {
  8071. height: math.unit(0.88, "feet"),
  8072. name: "Foot (Alt)",
  8073. image: {
  8074. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8075. }
  8076. },
  8077. },
  8078. [
  8079. {
  8080. name: "Micro",
  8081. height: math.unit(2, "inches")
  8082. },
  8083. {
  8084. name: "Small",
  8085. height: math.unit(1, "meter")
  8086. },
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(Math.E, "meters"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(20, "meters")
  8095. },
  8096. {
  8097. name: "Macro+",
  8098. height: math.unit(400, "meters")
  8099. },
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(7, "feet"),
  8107. weight: math.unit(489, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/reece-silvermane/front.svg",
  8111. bottom: 0.02,
  8112. extra: 1
  8113. }
  8114. },
  8115. },
  8116. [
  8117. {
  8118. name: "Macro",
  8119. height: math.unit(1.5, "miles"),
  8120. default: true
  8121. },
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(78, "kg"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/kane/front.svg",
  8133. extra: 978 / 899
  8134. }
  8135. },
  8136. },
  8137. [
  8138. {
  8139. name: "Normal",
  8140. height: math.unit(2.1, "m"),
  8141. },
  8142. {
  8143. name: "Macro",
  8144. height: math.unit(1, "km"),
  8145. default: true
  8146. },
  8147. ]
  8148. ))
  8149. characterMakers.push(() => makeCharacter(
  8150. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8151. {
  8152. front: {
  8153. height: math.unit(6, "feet"),
  8154. weight: math.unit(200, "kg"),
  8155. name: "Front",
  8156. image: {
  8157. source: "./media/characters/tegon/front.svg",
  8158. bottom: 0.01,
  8159. extra: 1
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(1, "inch")
  8167. },
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(6 + 3 / 12, "feet"),
  8171. default: true
  8172. },
  8173. {
  8174. name: "Macro",
  8175. height: math.unit(300, "feet")
  8176. },
  8177. {
  8178. name: "Megamacro",
  8179. height: math.unit(69, "miles")
  8180. },
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8185. {
  8186. side: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(2304, "lbs"),
  8189. name: "Side",
  8190. image: {
  8191. source: "./media/characters/arcturax/side.svg",
  8192. extra: 790 / 376,
  8193. bottom: 0.01
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Micro",
  8200. height: math.unit(2, "inch")
  8201. },
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(6, "feet")
  8205. },
  8206. {
  8207. name: "Macro",
  8208. height: math.unit(39, "feet"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Megamacro",
  8213. height: math.unit(7, "miles")
  8214. },
  8215. ]
  8216. ))
  8217. characterMakers.push(() => makeCharacter(
  8218. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8219. {
  8220. front: {
  8221. height: math.unit(6, "feet"),
  8222. weight: math.unit(50, "lbs"),
  8223. name: "Front",
  8224. image: {
  8225. source: "./media/characters/sentri/front.svg",
  8226. extra: 1750 / 1570,
  8227. bottom: 0.025
  8228. }
  8229. },
  8230. frontAlt: {
  8231. height: math.unit(6, "feet"),
  8232. weight: math.unit(50, "lbs"),
  8233. name: "Front (Alt)",
  8234. image: {
  8235. source: "./media/characters/sentri/front-alt.svg",
  8236. extra: 1750 / 1570,
  8237. bottom: 0.025
  8238. }
  8239. },
  8240. },
  8241. [
  8242. {
  8243. name: "Normal",
  8244. height: math.unit(15, "feet"),
  8245. default: true
  8246. },
  8247. {
  8248. name: "Macro",
  8249. height: math.unit(2500, "feet")
  8250. }
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(5 + 8 / 12, "feet"),
  8258. weight: math.unit(130, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/corvin/front.svg",
  8262. extra: 1803 / 1629
  8263. }
  8264. },
  8265. frontShirt: {
  8266. height: math.unit(5 + 8 / 12, "feet"),
  8267. weight: math.unit(130, "lbs"),
  8268. name: "Front (Shirt)",
  8269. image: {
  8270. source: "./media/characters/corvin/front-shirt.svg",
  8271. extra: 1803 / 1629
  8272. }
  8273. },
  8274. frontPoncho: {
  8275. height: math.unit(5 + 8 / 12, "feet"),
  8276. weight: math.unit(130, "lbs"),
  8277. name: "Front (Poncho)",
  8278. image: {
  8279. source: "./media/characters/corvin/front-poncho.svg",
  8280. extra: 1803 / 1629
  8281. }
  8282. },
  8283. side: {
  8284. height: math.unit(5 + 8 / 12, "feet"),
  8285. weight: math.unit(130, "lbs"),
  8286. name: "Side",
  8287. image: {
  8288. source: "./media/characters/corvin/side.svg",
  8289. extra: 1012 / 945
  8290. }
  8291. },
  8292. back: {
  8293. height: math.unit(5 + 8 / 12, "feet"),
  8294. weight: math.unit(130, "lbs"),
  8295. name: "Back",
  8296. image: {
  8297. source: "./media/characters/corvin/back.svg",
  8298. extra: 1803 / 1629
  8299. }
  8300. },
  8301. },
  8302. [
  8303. {
  8304. name: "Micro",
  8305. height: math.unit(3, "inches")
  8306. },
  8307. {
  8308. name: "Normal",
  8309. height: math.unit(5 + 8 / 12, "feet")
  8310. },
  8311. {
  8312. name: "Macro",
  8313. height: math.unit(300, "feet"),
  8314. default: true
  8315. },
  8316. {
  8317. name: "Megamacro",
  8318. height: math.unit(500, "miles")
  8319. }
  8320. ]
  8321. ))
  8322. characterMakers.push(() => makeCharacter(
  8323. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8324. {
  8325. front: {
  8326. height: math.unit(6, "feet"),
  8327. weight: math.unit(135, "lbs"),
  8328. name: "Front",
  8329. image: {
  8330. source: "./media/characters/q/front.svg",
  8331. extra: 854 / 752,
  8332. bottom: 0.005
  8333. }
  8334. },
  8335. back: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(130, "lbs"),
  8338. name: "Back",
  8339. image: {
  8340. source: "./media/characters/q/back.svg",
  8341. extra: 854 / 752
  8342. }
  8343. },
  8344. },
  8345. [
  8346. {
  8347. name: "Macro",
  8348. height: math.unit(90, "feet"),
  8349. default: true
  8350. },
  8351. {
  8352. name: "Extra Macro",
  8353. height: math.unit(300, "feet"),
  8354. },
  8355. {
  8356. name: "BIG WALF",
  8357. height: math.unit(750, "feet"),
  8358. },
  8359. ]
  8360. ))
  8361. characterMakers.push(() => makeCharacter(
  8362. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8363. {
  8364. front: {
  8365. height: math.unit(6, "feet"),
  8366. weight: math.unit(150, "lbs"),
  8367. name: "Front",
  8368. image: {
  8369. source: "./media/characters/carley/front.svg",
  8370. extra: 3927 / 3540,
  8371. bottom: 29.2 / 735
  8372. }
  8373. }
  8374. },
  8375. [
  8376. {
  8377. name: "Normal",
  8378. height: math.unit(6 + 3 / 12, "feet")
  8379. },
  8380. {
  8381. name: "Macro",
  8382. height: math.unit(185, "feet"),
  8383. default: true
  8384. },
  8385. {
  8386. name: "Megamacro",
  8387. height: math.unit(8, "miles"),
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(3, "feet"),
  8396. weight: math.unit(28, "lbs"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/citrine/front.svg"
  8400. }
  8401. }
  8402. },
  8403. [
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(3, "feet"),
  8407. default: true
  8408. }
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8413. {
  8414. front: {
  8415. height: math.unit(14, "feet"),
  8416. weight: math.unit(1450, "kg"),
  8417. capacity: math.unit(15, "people"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/aura-starwind/front.svg",
  8421. extra: 1440/1327,
  8422. bottom: 11/1451
  8423. }
  8424. },
  8425. side: {
  8426. height: math.unit(14, "feet"),
  8427. weight: math.unit(1450, "kg"),
  8428. capacity: math.unit(15, "people"),
  8429. name: "Side",
  8430. image: {
  8431. source: "./media/characters/aura-starwind/side.svg",
  8432. extra: 1654 / 1497
  8433. }
  8434. },
  8435. taur: {
  8436. height: math.unit(18, "feet"),
  8437. weight: math.unit(5500, "kg"),
  8438. capacity: math.unit(50, "people"),
  8439. name: "Taur",
  8440. image: {
  8441. source: "./media/characters/aura-starwind/taur.svg",
  8442. extra: 1760 / 1650
  8443. }
  8444. },
  8445. feral: {
  8446. height: math.unit(46, "feet"),
  8447. weight: math.unit(25000, "kg"),
  8448. capacity: math.unit(120, "people"),
  8449. name: "Feral",
  8450. image: {
  8451. source: "./media/characters/aura-starwind/feral.svg"
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(14, "feet"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(50, "meters")
  8464. },
  8465. {
  8466. name: "Megamacro",
  8467. height: math.unit(5000, "meters")
  8468. },
  8469. {
  8470. name: "Gigamacro",
  8471. height: math.unit(100000, "kilometers")
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(2 + 7 / 12, "feet"),
  8480. weight: math.unit(32, "lbs"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/rivet/front.svg",
  8484. extra: 1716 / 1658,
  8485. bottom: 0.03
  8486. }
  8487. },
  8488. foot: {
  8489. height: math.unit(0.551, "feet"),
  8490. name: "Rivet's Foot",
  8491. image: {
  8492. source: "./media/characters/rivet/foot.svg"
  8493. },
  8494. rename: true
  8495. }
  8496. },
  8497. [
  8498. {
  8499. name: "Micro",
  8500. height: math.unit(1.5, "inches"),
  8501. },
  8502. {
  8503. name: "Normal",
  8504. height: math.unit(2 + 7 / 12, "feet"),
  8505. default: true
  8506. },
  8507. {
  8508. name: "Macro",
  8509. height: math.unit(85, "feet")
  8510. },
  8511. {
  8512. name: "Megamacro",
  8513. height: math.unit(2.2, "km")
  8514. }
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(5 + 9 / 12, "feet"),
  8522. weight: math.unit(150, "lbs"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/coffee/front.svg",
  8526. extra: 3666 / 3032,
  8527. bottom: 0.04
  8528. }
  8529. },
  8530. foot: {
  8531. height: math.unit(1.29, "feet"),
  8532. name: "Foot",
  8533. image: {
  8534. source: "./media/characters/coffee/foot.svg"
  8535. }
  8536. },
  8537. },
  8538. [
  8539. {
  8540. name: "Micro",
  8541. height: math.unit(2, "inches"),
  8542. },
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(5 + 9 / 12, "feet"),
  8546. default: true
  8547. },
  8548. {
  8549. name: "Macro",
  8550. height: math.unit(800, "feet")
  8551. },
  8552. {
  8553. name: "Megamacro",
  8554. height: math.unit(25, "miles")
  8555. }
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(6, "feet"),
  8563. weight: math.unit(200, "lbs"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/chari-gal/front.svg",
  8567. extra: 1568 / 1385,
  8568. bottom: 0.047
  8569. }
  8570. },
  8571. gigantamax: {
  8572. height: math.unit(6 * 16, "feet"),
  8573. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8574. name: "Gigantamax",
  8575. image: {
  8576. source: "./media/characters/chari-gal/gigantamax.svg",
  8577. extra: 1124 / 888,
  8578. bottom: 0.03
  8579. }
  8580. },
  8581. },
  8582. [
  8583. {
  8584. name: "Normal",
  8585. height: math.unit(5 + 7 / 12, "feet")
  8586. },
  8587. {
  8588. name: "Macro",
  8589. height: math.unit(200, "feet"),
  8590. default: true
  8591. }
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(6, "feet"),
  8599. weight: math.unit(150, "lbs"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/nova/front.svg",
  8603. extra: 5000 / 4722,
  8604. bottom: 0.02
  8605. }
  8606. }
  8607. },
  8608. [
  8609. {
  8610. name: "Micro-",
  8611. height: math.unit(0.8, "inches")
  8612. },
  8613. {
  8614. name: "Micro",
  8615. height: math.unit(2, "inches"),
  8616. default: true
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8622. {
  8623. front: {
  8624. height: math.unit(3 + 1 / 12, "feet"),
  8625. weight: math.unit(21.7, "lbs"),
  8626. name: "Front",
  8627. image: {
  8628. source: "./media/characters/argent/front.svg",
  8629. extra: 1471 / 1331,
  8630. bottom: 100.8 / 1575.5
  8631. }
  8632. }
  8633. },
  8634. [
  8635. {
  8636. name: "Micro",
  8637. height: math.unit(2, "inches")
  8638. },
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(3 + 1 / 12, "feet"),
  8642. default: true
  8643. },
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(120, "feet")
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8652. {
  8653. lamp: {
  8654. height: math.unit(7 * 1559 / 989, "feet"),
  8655. name: "Magic Lamp",
  8656. image: {
  8657. source: "./media/characters/mira-al-cul/lamp.svg",
  8658. extra: 1617 / 1559
  8659. }
  8660. },
  8661. front: {
  8662. height: math.unit(7, "feet"),
  8663. name: "Front",
  8664. image: {
  8665. source: "./media/characters/mira-al-cul/front.svg",
  8666. extra: 1044 / 990
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Heavily Restricted",
  8673. height: math.unit(7 * 1559 / 989, "feet")
  8674. },
  8675. {
  8676. name: "Freshly Freed",
  8677. height: math.unit(50 * 1559 / 989, "feet")
  8678. },
  8679. {
  8680. name: "World Encompassing",
  8681. height: math.unit(10000 * 1559 / 989, "miles")
  8682. },
  8683. {
  8684. name: "Galactic",
  8685. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8686. },
  8687. {
  8688. name: "Palmed Universe",
  8689. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Multiversal Matriarch",
  8694. height: math.unit(8.87e10, "yottameters")
  8695. },
  8696. {
  8697. name: "Void Mother",
  8698. height: math.unit(3.14e110, "yottaparsecs")
  8699. },
  8700. {
  8701. name: "Toying with Transcendence",
  8702. height: math.unit(1e307, "meters")
  8703. },
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8708. {
  8709. front: {
  8710. height: math.unit(17 + 1 / 12, "feet"),
  8711. weight: math.unit(476.2 * 5, "lbs"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/kuro-shi-uchū/front.svg",
  8715. extra: 2329 / 1835,
  8716. bottom: 0.02
  8717. }
  8718. },
  8719. },
  8720. [
  8721. {
  8722. name: "Micro",
  8723. height: math.unit(2, "inches")
  8724. },
  8725. {
  8726. name: "Normal",
  8727. height: math.unit(12, "meters")
  8728. },
  8729. {
  8730. name: "Planetary",
  8731. height: math.unit(0.00929, "AU"),
  8732. default: true
  8733. },
  8734. {
  8735. name: "Universal",
  8736. height: math.unit(20, "gigaparsecs")
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8742. {
  8743. front: {
  8744. height: math.unit(5 + 2 / 12, "feet"),
  8745. weight: math.unit(120, "lbs"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/katherine/front.svg",
  8749. extra: 2075 / 1969
  8750. }
  8751. },
  8752. dress: {
  8753. height: math.unit(5 + 2 / 12, "feet"),
  8754. weight: math.unit(120, "lbs"),
  8755. name: "Dress",
  8756. image: {
  8757. source: "./media/characters/katherine/dress.svg",
  8758. extra: 2258 / 2064
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Micro",
  8765. height: math.unit(1, "inches"),
  8766. default: true
  8767. },
  8768. {
  8769. name: "Normal",
  8770. height: math.unit(5 + 2 / 12, "feet")
  8771. },
  8772. {
  8773. name: "Macro",
  8774. height: math.unit(100, "meters")
  8775. },
  8776. {
  8777. name: "Megamacro",
  8778. height: math.unit(80, "miles")
  8779. },
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8784. {
  8785. front: {
  8786. height: math.unit(7 + 8 / 12, "feet"),
  8787. weight: math.unit(250, "lbs"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/yevis/front.svg",
  8791. extra: 1938 / 1755
  8792. }
  8793. }
  8794. },
  8795. [
  8796. {
  8797. name: "Mortal",
  8798. height: math.unit(7 + 8 / 12, "feet")
  8799. },
  8800. {
  8801. name: "Battle",
  8802. height: math.unit(25 + 11 / 12, "feet")
  8803. },
  8804. {
  8805. name: "Wrath",
  8806. height: math.unit(1654 + 11 / 12, "feet")
  8807. },
  8808. {
  8809. name: "Planet Destroyer",
  8810. height: math.unit(12000, "miles")
  8811. },
  8812. {
  8813. name: "Galaxy Conqueror",
  8814. height: math.unit(1.45, "zettameters"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Universal War",
  8819. height: math.unit(184, "gigaparsecs")
  8820. },
  8821. {
  8822. name: "Eternity War",
  8823. height: math.unit(1.98e55, "yottaparsecs")
  8824. },
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8829. {
  8830. front: {
  8831. height: math.unit(5 + 8 / 12, "feet"),
  8832. weight: math.unit(63, "kg"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/xavier/front.svg",
  8836. extra: 944 / 883
  8837. }
  8838. },
  8839. frontStretch: {
  8840. height: math.unit(5 + 8 / 12, "feet"),
  8841. weight: math.unit(63, "kg"),
  8842. name: "Stretching",
  8843. image: {
  8844. source: "./media/characters/xavier/front-stretch.svg",
  8845. extra: 962 / 820
  8846. }
  8847. },
  8848. },
  8849. [
  8850. {
  8851. name: "Normal",
  8852. height: math.unit(5 + 8 / 12, "feet")
  8853. },
  8854. {
  8855. name: "Macro",
  8856. height: math.unit(100, "meters"),
  8857. default: true
  8858. },
  8859. {
  8860. name: "McLargeHuge",
  8861. height: math.unit(10, "miles")
  8862. },
  8863. ]
  8864. ))
  8865. characterMakers.push(() => makeCharacter(
  8866. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8867. {
  8868. front: {
  8869. height: math.unit(5 + 5 / 12, "feet"),
  8870. weight: math.unit(150, "lb"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/joshii/front.svg",
  8874. extra: 765 / 653,
  8875. bottom: 51 / 816
  8876. }
  8877. },
  8878. foot: {
  8879. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8880. name: "Foot",
  8881. image: {
  8882. source: "./media/characters/joshii/foot.svg"
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(2, "inches"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(5 + 5 / 12, "feet")
  8895. },
  8896. {
  8897. name: "Macro",
  8898. height: math.unit(785, "feet")
  8899. },
  8900. {
  8901. name: "Megamacro",
  8902. height: math.unit(24.5, "miles")
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(150, "lb"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/goddess-elizabeth/front.svg",
  8915. extra: 1800 / 1525,
  8916. bottom: 0.005
  8917. }
  8918. },
  8919. foot: {
  8920. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8921. name: "Foot",
  8922. image: {
  8923. source: "./media/characters/goddess-elizabeth/foot.svg"
  8924. }
  8925. },
  8926. mouth: {
  8927. height: math.unit(6, "feet"),
  8928. name: "Mouth",
  8929. image: {
  8930. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(12, "feet")
  8938. },
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(80, "miles"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(15000, "parsecs")
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(5 + 9 / 12, "feet"),
  8955. weight: math.unit(144, "lb"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/kara/front.svg"
  8959. }
  8960. },
  8961. feet: {
  8962. height: math.unit(6 / 6.765, "feet"),
  8963. name: "Kara's Feet",
  8964. rename: true,
  8965. image: {
  8966. source: "./media/characters/kara/feet.svg"
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(5 + 9 / 12, "feet")
  8974. },
  8975. {
  8976. name: "Macro",
  8977. height: math.unit(174, "feet"),
  8978. default: true
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8984. {
  8985. front: {
  8986. height: math.unit(18, "feet"),
  8987. weight: math.unit(4050, "lb"),
  8988. name: "Front",
  8989. image: {
  8990. source: "./media/characters/tyrone/front.svg",
  8991. extra: 2405 / 2270,
  8992. bottom: 182 / 2587
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(18, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Macro",
  9004. height: math.unit(300, "feet")
  9005. },
  9006. {
  9007. name: "Megamacro",
  9008. height: math.unit(15, "km")
  9009. },
  9010. {
  9011. name: "Gigamacro",
  9012. height: math.unit(500, "km")
  9013. },
  9014. {
  9015. name: "Teramacro",
  9016. height: math.unit(0.5, "gigameters")
  9017. },
  9018. {
  9019. name: "Omnimacro",
  9020. height: math.unit(1e252, "yottauniverse")
  9021. },
  9022. ]
  9023. ))
  9024. characterMakers.push(() => makeCharacter(
  9025. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9026. {
  9027. front: {
  9028. height: math.unit(7 + 8 / 12, "feet"),
  9029. weight: math.unit(120, "lb"),
  9030. name: "Front",
  9031. image: {
  9032. source: "./media/characters/danny/front.svg",
  9033. extra: 1490 / 1350
  9034. }
  9035. },
  9036. back: {
  9037. height: math.unit(7 + 8 / 12, "feet"),
  9038. weight: math.unit(120, "lb"),
  9039. name: "Back",
  9040. image: {
  9041. source: "./media/characters/danny/back.svg",
  9042. extra: 1490 / 1350
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(7 + 8 / 12, "feet"),
  9050. default: true
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(3.5, "inches"),
  9059. weight: math.unit(19, "grams"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/mallow/front.svg",
  9063. extra: 471 / 431
  9064. }
  9065. },
  9066. back: {
  9067. height: math.unit(3.5, "inches"),
  9068. weight: math.unit(19, "grams"),
  9069. name: "Back",
  9070. image: {
  9071. source: "./media/characters/mallow/back.svg",
  9072. extra: 471 / 431
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(3.5, "inches"),
  9080. default: true
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(9, "feet"),
  9089. weight: math.unit(230, "kg"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/starry-aqua/front.svg"
  9093. }
  9094. },
  9095. back: {
  9096. height: math.unit(9, "feet"),
  9097. weight: math.unit(230, "kg"),
  9098. name: "Back",
  9099. image: {
  9100. source: "./media/characters/starry-aqua/back.svg"
  9101. }
  9102. },
  9103. hand: {
  9104. height: math.unit(9 * 0.1168, "feet"),
  9105. name: "Hand",
  9106. image: {
  9107. source: "./media/characters/starry-aqua/hand.svg"
  9108. }
  9109. },
  9110. foot: {
  9111. height: math.unit(9 * 0.18, "feet"),
  9112. name: "Foot",
  9113. image: {
  9114. source: "./media/characters/starry-aqua/foot.svg"
  9115. }
  9116. }
  9117. },
  9118. [
  9119. {
  9120. name: "Micro",
  9121. height: math.unit(3, "inches")
  9122. },
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(9, "feet")
  9126. },
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(300, "feet"),
  9130. default: true
  9131. },
  9132. {
  9133. name: "Megamacro",
  9134. height: math.unit(3200, "feet")
  9135. }
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9140. {
  9141. front: {
  9142. height: math.unit(15, "feet"),
  9143. weight: math.unit(5026, "lb"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/luka-towers/front.svg",
  9147. extra: 1269/1133,
  9148. bottom: 51/1320
  9149. }
  9150. },
  9151. },
  9152. [
  9153. {
  9154. name: "Normal",
  9155. height: math.unit(15, "feet"),
  9156. default: true
  9157. },
  9158. {
  9159. name: "Minimacro",
  9160. height: math.unit(25, "feet")
  9161. },
  9162. {
  9163. name: "Macro",
  9164. height: math.unit(320, "feet")
  9165. },
  9166. {
  9167. name: "Megamacro",
  9168. height: math.unit(35000, "feet")
  9169. },
  9170. {
  9171. name: "Gigamacro",
  9172. height: math.unit(4000, "miles")
  9173. },
  9174. {
  9175. name: "Teramacro",
  9176. height: math.unit(15000, "miles")
  9177. },
  9178. ]
  9179. ))
  9180. characterMakers.push(() => makeCharacter(
  9181. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9182. {
  9183. front: {
  9184. height: math.unit(6, "feet"),
  9185. weight: math.unit(150, "lb"),
  9186. name: "Front",
  9187. image: {
  9188. source: "./media/characters/natalie-nightring/front.svg",
  9189. extra: 1,
  9190. bottom: 0.06
  9191. }
  9192. },
  9193. },
  9194. [
  9195. {
  9196. name: "Uh Oh",
  9197. height: math.unit(0.1, "mm")
  9198. },
  9199. {
  9200. name: "Small",
  9201. height: math.unit(3, "inches")
  9202. },
  9203. {
  9204. name: "Human Scale",
  9205. height: math.unit(6, "feet")
  9206. },
  9207. {
  9208. name: "Librarian",
  9209. height: math.unit(50, "feet"),
  9210. default: true
  9211. },
  9212. {
  9213. name: "Immense",
  9214. height: math.unit(200, "miles")
  9215. },
  9216. ]
  9217. ))
  9218. characterMakers.push(() => makeCharacter(
  9219. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9220. {
  9221. front: {
  9222. height: math.unit(6, "feet"),
  9223. weight: math.unit(180, "lbs"),
  9224. name: "Front",
  9225. image: {
  9226. source: "./media/characters/danni-rosie/front.svg",
  9227. extra: 1260 / 1128,
  9228. bottom: 0.022
  9229. }
  9230. },
  9231. },
  9232. [
  9233. {
  9234. name: "Micro",
  9235. height: math.unit(2, "inches"),
  9236. default: true
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9242. {
  9243. front: {
  9244. height: math.unit(5 + 9 / 12, "feet"),
  9245. weight: math.unit(220, "lb"),
  9246. name: "Front",
  9247. image: {
  9248. source: "./media/characters/samantha-kruse/front.svg",
  9249. extra: (985 / 935),
  9250. bottom: 0.03
  9251. }
  9252. },
  9253. frontUndressed: {
  9254. height: math.unit(5 + 9 / 12, "feet"),
  9255. weight: math.unit(220, "lb"),
  9256. name: "Front (Undressed)",
  9257. image: {
  9258. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9259. extra: (973 / 923),
  9260. bottom: 0.025
  9261. }
  9262. },
  9263. fat: {
  9264. height: math.unit(5 + 9 / 12, "feet"),
  9265. weight: math.unit(900, "lb"),
  9266. name: "Front (Fat)",
  9267. image: {
  9268. source: "./media/characters/samantha-kruse/fat.svg",
  9269. extra: 2688 / 2561
  9270. }
  9271. },
  9272. },
  9273. [
  9274. {
  9275. name: "Normal",
  9276. height: math.unit(5 + 9 / 12, "feet"),
  9277. default: true
  9278. }
  9279. ]
  9280. ))
  9281. characterMakers.push(() => makeCharacter(
  9282. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9283. {
  9284. back: {
  9285. height: math.unit(5 + 4 / 12, "feet"),
  9286. weight: math.unit(4963, "lb"),
  9287. name: "Back",
  9288. image: {
  9289. source: "./media/characters/amelia-rosie/back.svg",
  9290. extra: 1113 / 963,
  9291. bottom: 0.01
  9292. }
  9293. },
  9294. },
  9295. [
  9296. {
  9297. name: "Level 0",
  9298. height: math.unit(5 + 4 / 12, "feet")
  9299. },
  9300. {
  9301. name: "Level 1",
  9302. height: math.unit(164597, "feet"),
  9303. default: true
  9304. },
  9305. {
  9306. name: "Level 2",
  9307. height: math.unit(956243, "miles")
  9308. },
  9309. {
  9310. name: "Level 3",
  9311. height: math.unit(29421709423, "miles")
  9312. },
  9313. {
  9314. name: "Level 4",
  9315. height: math.unit(154, "lightyears")
  9316. },
  9317. {
  9318. name: "Level 5",
  9319. height: math.unit(4738272, "lightyears")
  9320. },
  9321. {
  9322. name: "Level 6",
  9323. height: math.unit(145787152896, "lightyears")
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(5 + 11 / 12, "feet"),
  9332. weight: math.unit(65, "kg"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/rook-kitara/front.svg",
  9336. extra: 1347 / 1274,
  9337. bottom: 0.005
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Totally Unfair",
  9344. height: math.unit(1.8, "mm")
  9345. },
  9346. {
  9347. name: "Lap Rookie",
  9348. height: math.unit(1.4, "feet")
  9349. },
  9350. {
  9351. name: "Normal",
  9352. height: math.unit(5 + 11 / 12, "feet"),
  9353. default: true
  9354. },
  9355. {
  9356. name: "How Did This Happen",
  9357. height: math.unit(80, "miles")
  9358. }
  9359. ]
  9360. ))
  9361. characterMakers.push(() => makeCharacter(
  9362. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9363. {
  9364. front: {
  9365. height: math.unit(7, "feet"),
  9366. weight: math.unit(300, "lb"),
  9367. name: "Front",
  9368. image: {
  9369. source: "./media/characters/pisces/front.svg",
  9370. extra: 2255 / 2115,
  9371. bottom: 0.03
  9372. }
  9373. },
  9374. back: {
  9375. height: math.unit(7, "feet"),
  9376. weight: math.unit(300, "lb"),
  9377. name: "Back",
  9378. image: {
  9379. source: "./media/characters/pisces/back.svg",
  9380. extra: 2146 / 2055,
  9381. bottom: 0.04
  9382. }
  9383. },
  9384. },
  9385. [
  9386. {
  9387. name: "Normal",
  9388. height: math.unit(7, "feet"),
  9389. default: true
  9390. },
  9391. {
  9392. name: "Swimming Pool",
  9393. height: math.unit(12.2, "meters")
  9394. },
  9395. {
  9396. name: "Olympic Swimming Pool",
  9397. height: math.unit(56.3, "meters")
  9398. },
  9399. {
  9400. name: "Lake Superior",
  9401. height: math.unit(93900, "meters")
  9402. },
  9403. {
  9404. name: "Mediterranean Sea",
  9405. height: math.unit(644457, "meters")
  9406. },
  9407. {
  9408. name: "World's Oceans",
  9409. height: math.unit(4567491, "meters")
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(2.3, "meters"),
  9418. weight: math.unit(120, "kg"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/zelas/front.svg"
  9422. }
  9423. },
  9424. side: {
  9425. height: math.unit(2.3, "meters"),
  9426. weight: math.unit(120, "kg"),
  9427. name: "Side",
  9428. image: {
  9429. source: "./media/characters/zelas/side.svg"
  9430. }
  9431. },
  9432. back: {
  9433. height: math.unit(2.3, "meters"),
  9434. weight: math.unit(120, "kg"),
  9435. name: "Back",
  9436. image: {
  9437. source: "./media/characters/zelas/back.svg"
  9438. }
  9439. },
  9440. foot: {
  9441. height: math.unit(1.116, "feet"),
  9442. name: "Foot",
  9443. image: {
  9444. source: "./media/characters/zelas/foot.svg"
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Normal",
  9451. height: math.unit(2.3, "meters")
  9452. },
  9453. {
  9454. name: "Macro",
  9455. height: math.unit(30, "meters"),
  9456. default: true
  9457. },
  9458. ]
  9459. ))
  9460. characterMakers.push(() => makeCharacter(
  9461. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9462. {
  9463. front: {
  9464. height: math.unit(1, "inch"),
  9465. weight: math.unit(0.21, "grams"),
  9466. name: "Front",
  9467. image: {
  9468. source: "./media/characters/talbot/front.svg",
  9469. extra: 594 / 544
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Micro",
  9476. height: math.unit(1, "inch"),
  9477. default: true
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9483. {
  9484. front: {
  9485. height: math.unit(3 + 3 / 12, "feet"),
  9486. weight: math.unit(51.8, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/fliss/front.svg",
  9490. extra: 840 / 640
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Teeny Tiny",
  9497. height: math.unit(1, "mm")
  9498. },
  9499. {
  9500. name: "Small",
  9501. height: math.unit(1, "inch"),
  9502. default: true
  9503. },
  9504. {
  9505. name: "Standard Sylveon",
  9506. height: math.unit(3 + 3 / 12, "feet")
  9507. },
  9508. {
  9509. name: "Large Nuisance",
  9510. height: math.unit(33, "feet")
  9511. },
  9512. {
  9513. name: "City Filler",
  9514. height: math.unit(3000, "feet")
  9515. },
  9516. {
  9517. name: "New Horizon",
  9518. height: math.unit(6000, "miles")
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(5, "cm"),
  9527. weight: math.unit(1.94, "g"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/fleta/front.svg",
  9531. extra: 835 / 803
  9532. }
  9533. },
  9534. back: {
  9535. height: math.unit(5, "cm"),
  9536. weight: math.unit(1.94, "g"),
  9537. name: "Back",
  9538. image: {
  9539. source: "./media/characters/fleta/back.svg",
  9540. extra: 835 / 803
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Micro",
  9547. height: math.unit(5, "cm"),
  9548. default: true
  9549. },
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9554. {
  9555. front: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(225, "lb"),
  9558. name: "Front",
  9559. image: {
  9560. source: "./media/characters/dominic/front.svg",
  9561. extra: 1770 / 1620,
  9562. bottom: 0.025
  9563. }
  9564. },
  9565. back: {
  9566. height: math.unit(6, "feet"),
  9567. weight: math.unit(225, "lb"),
  9568. name: "Back",
  9569. image: {
  9570. source: "./media/characters/dominic/back.svg",
  9571. extra: 1745 / 1620,
  9572. bottom: 0.065
  9573. }
  9574. },
  9575. },
  9576. [
  9577. {
  9578. name: "Nano",
  9579. height: math.unit(0.1, "mm")
  9580. },
  9581. {
  9582. name: "Micro-",
  9583. height: math.unit(1, "mm")
  9584. },
  9585. {
  9586. name: "Micro",
  9587. height: math.unit(4, "inches")
  9588. },
  9589. {
  9590. name: "Normal",
  9591. height: math.unit(6 + 4 / 12, "feet"),
  9592. default: true
  9593. },
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(115, "feet")
  9597. },
  9598. {
  9599. name: "Macro+",
  9600. height: math.unit(955, "feet")
  9601. },
  9602. {
  9603. name: "Megamacro",
  9604. height: math.unit(8990, "feet")
  9605. },
  9606. {
  9607. name: "Gigmacro",
  9608. height: math.unit(9310, "miles")
  9609. },
  9610. {
  9611. name: "Teramacro",
  9612. height: math.unit(1567005010, "miles")
  9613. },
  9614. {
  9615. name: "Examacro",
  9616. height: math.unit(1425, "parsecs")
  9617. },
  9618. ]
  9619. ))
  9620. characterMakers.push(() => makeCharacter(
  9621. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9622. {
  9623. front: {
  9624. height: math.unit(400, "feet"),
  9625. weight: math.unit(44444444, "lb"),
  9626. name: "Front",
  9627. image: {
  9628. source: "./media/characters/major-colonel/front.svg"
  9629. }
  9630. },
  9631. back: {
  9632. height: math.unit(400, "feet"),
  9633. weight: math.unit(44444444, "lb"),
  9634. name: "Back",
  9635. image: {
  9636. source: "./media/characters/major-colonel/back.svg"
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Macro",
  9643. height: math.unit(400, "feet"),
  9644. default: true
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9650. {
  9651. catFront: {
  9652. height: math.unit(6, "feet"),
  9653. weight: math.unit(120, "lb"),
  9654. name: "Front (Cat Side)",
  9655. image: {
  9656. source: "./media/characters/axel-lycan/cat-front.svg",
  9657. extra: 430 / 402,
  9658. bottom: 43 / 472.35
  9659. }
  9660. },
  9661. catBack: {
  9662. height: math.unit(6, "feet"),
  9663. weight: math.unit(120, "lb"),
  9664. name: "Back (Cat Side)",
  9665. image: {
  9666. source: "./media/characters/axel-lycan/cat-back.svg",
  9667. extra: 447 / 419,
  9668. bottom: 23.3 / 469
  9669. }
  9670. },
  9671. wolfFront: {
  9672. height: math.unit(6, "feet"),
  9673. weight: math.unit(120, "lb"),
  9674. name: "Front (Wolf Side)",
  9675. image: {
  9676. source: "./media/characters/axel-lycan/wolf-front.svg",
  9677. extra: 485 / 456,
  9678. bottom: 19 / 504
  9679. }
  9680. },
  9681. wolfBack: {
  9682. height: math.unit(6, "feet"),
  9683. weight: math.unit(120, "lb"),
  9684. name: "Back (Wolf Side)",
  9685. image: {
  9686. source: "./media/characters/axel-lycan/wolf-back.svg",
  9687. extra: 475 / 438,
  9688. bottom: 39.2 / 514
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Macro",
  9695. height: math.unit(1, "km"),
  9696. default: true
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9702. {
  9703. front: {
  9704. height: math.unit(5 + 9 / 12, "feet"),
  9705. weight: math.unit(175, "lb"),
  9706. name: "Front",
  9707. image: {
  9708. source: "./media/characters/vanrel-hyena/front.svg",
  9709. extra: 1086 / 1010,
  9710. bottom: 0.04
  9711. }
  9712. },
  9713. },
  9714. [
  9715. {
  9716. name: "Normal",
  9717. height: math.unit(5 + 9 / 12, "feet"),
  9718. default: true
  9719. },
  9720. ]
  9721. ))
  9722. characterMakers.push(() => makeCharacter(
  9723. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9724. {
  9725. front: {
  9726. height: math.unit(6, "feet"),
  9727. weight: math.unit(103, "lb"),
  9728. name: "Front",
  9729. image: {
  9730. source: "./media/characters/abbott-absol/front.svg",
  9731. extra: 2010 / 1842
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Megamicro",
  9738. height: math.unit(0.1, "mm")
  9739. },
  9740. {
  9741. name: "Micro",
  9742. height: math.unit(1, "inch")
  9743. },
  9744. {
  9745. name: "Normal",
  9746. height: math.unit(6, "feet"),
  9747. default: true
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9753. {
  9754. front: {
  9755. height: math.unit(6, "feet"),
  9756. weight: math.unit(264, "lb"),
  9757. name: "Front",
  9758. image: {
  9759. source: "./media/characters/hector/front.svg",
  9760. extra: 2280 / 2130,
  9761. bottom: 0.07
  9762. }
  9763. },
  9764. },
  9765. [
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(12.25, "foot"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(160, "feet")
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(150, "lb"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/sal/front.svg",
  9786. extra: 1846 / 1699,
  9787. bottom: 0.04
  9788. }
  9789. },
  9790. },
  9791. [
  9792. {
  9793. name: "Megamacro",
  9794. height: math.unit(10, "miles"),
  9795. default: true
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9801. {
  9802. front: {
  9803. height: math.unit(3, "meters"),
  9804. weight: math.unit(450, "kg"),
  9805. name: "front",
  9806. image: {
  9807. source: "./media/characters/ranger/front.svg",
  9808. extra: 2401 / 2243,
  9809. bottom: 0.05
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(3, "meters"),
  9817. default: true
  9818. },
  9819. ]
  9820. ))
  9821. characterMakers.push(() => makeCharacter(
  9822. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9823. {
  9824. front: {
  9825. height: math.unit(14, "feet"),
  9826. weight: math.unit(800, "kg"),
  9827. name: "Front",
  9828. image: {
  9829. source: "./media/characters/theresa/front.svg",
  9830. extra: 3575 / 3346,
  9831. bottom: 0.03
  9832. }
  9833. },
  9834. },
  9835. [
  9836. {
  9837. name: "Normal",
  9838. height: math.unit(14, "feet"),
  9839. default: true
  9840. },
  9841. ]
  9842. ))
  9843. characterMakers.push(() => makeCharacter(
  9844. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9845. {
  9846. front: {
  9847. height: math.unit(6, "feet"),
  9848. weight: math.unit(3, "kg"),
  9849. name: "Front",
  9850. image: {
  9851. source: "./media/characters/ine/front.svg",
  9852. extra: 678 / 539,
  9853. bottom: 0.023
  9854. }
  9855. },
  9856. },
  9857. [
  9858. {
  9859. name: "Normal",
  9860. height: math.unit(2.265, "feet"),
  9861. default: true
  9862. },
  9863. ]
  9864. ))
  9865. characterMakers.push(() => makeCharacter(
  9866. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9867. {
  9868. front: {
  9869. height: math.unit(5, "feet"),
  9870. weight: math.unit(30, "kg"),
  9871. name: "Front",
  9872. image: {
  9873. source: "./media/characters/vial/front.svg",
  9874. extra: 1365 / 1277,
  9875. bottom: 0.04
  9876. }
  9877. },
  9878. },
  9879. [
  9880. {
  9881. name: "Normal",
  9882. height: math.unit(5, "feet"),
  9883. default: true
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9889. {
  9890. side: {
  9891. height: math.unit(3.4, "meters"),
  9892. weight: math.unit(1000, "lb"),
  9893. name: "Side",
  9894. image: {
  9895. source: "./media/characters/rovoska/side.svg",
  9896. extra: 4403 / 1515
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Normal",
  9903. height: math.unit(3.4, "meters"),
  9904. default: true
  9905. },
  9906. ]
  9907. ))
  9908. characterMakers.push(() => makeCharacter(
  9909. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9910. {
  9911. front: {
  9912. height: math.unit(8, "feet"),
  9913. weight: math.unit(315, "lb"),
  9914. name: "Front",
  9915. image: {
  9916. source: "./media/characters/gunner-rotthbauer/front.svg"
  9917. }
  9918. },
  9919. back: {
  9920. height: math.unit(8, "feet"),
  9921. weight: math.unit(315, "lb"),
  9922. name: "Back",
  9923. image: {
  9924. source: "./media/characters/gunner-rotthbauer/back.svg"
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Micro",
  9931. height: math.unit(3.5, "inches")
  9932. },
  9933. {
  9934. name: "Normal",
  9935. height: math.unit(8, "feet"),
  9936. default: true
  9937. },
  9938. {
  9939. name: "Macro",
  9940. height: math.unit(250, "feet")
  9941. },
  9942. {
  9943. name: "Megamacro",
  9944. height: math.unit(1, "AU")
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9950. {
  9951. front: {
  9952. height: math.unit(5 + 5 / 12, "feet"),
  9953. weight: math.unit(140, "lb"),
  9954. name: "Front",
  9955. image: {
  9956. source: "./media/characters/allatia/front.svg",
  9957. extra: 1227 / 1180,
  9958. bottom: 0.027
  9959. }
  9960. },
  9961. },
  9962. [
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(5 + 5 / 12, "feet")
  9966. },
  9967. {
  9968. name: "Macro",
  9969. height: math.unit(250, "feet"),
  9970. default: true
  9971. },
  9972. {
  9973. name: "Megamacro",
  9974. height: math.unit(8, "miles")
  9975. }
  9976. ]
  9977. ))
  9978. characterMakers.push(() => makeCharacter(
  9979. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9980. {
  9981. front: {
  9982. height: math.unit(6, "feet"),
  9983. weight: math.unit(120, "lb"),
  9984. name: "Front",
  9985. image: {
  9986. source: "./media/characters/tene/front.svg",
  9987. extra: 1728 / 1578,
  9988. bottom: 0.022
  9989. }
  9990. },
  9991. stomping: {
  9992. height: math.unit(2.025, "meters"),
  9993. weight: math.unit(120, "lb"),
  9994. name: "Stomping",
  9995. image: {
  9996. source: "./media/characters/tene/stomping.svg",
  9997. extra: 938 / 873,
  9998. bottom: 0.01
  9999. }
  10000. },
  10001. sitting: {
  10002. height: math.unit(1, "meter"),
  10003. weight: math.unit(120, "lb"),
  10004. name: "Sitting",
  10005. image: {
  10006. source: "./media/characters/tene/sitting.svg",
  10007. extra: 437 / 415,
  10008. bottom: 0.1
  10009. }
  10010. },
  10011. feral: {
  10012. height: math.unit(3.9, "feet"),
  10013. weight: math.unit(250, "lb"),
  10014. name: "Feral",
  10015. image: {
  10016. source: "./media/characters/tene/feral.svg",
  10017. extra: 717 / 458,
  10018. bottom: 0.179
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(6, "feet")
  10026. },
  10027. {
  10028. name: "Macro",
  10029. height: math.unit(300, "feet"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(5, "miles")
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10040. {
  10041. side: {
  10042. height: math.unit(6, "feet"),
  10043. name: "Side",
  10044. image: {
  10045. source: "./media/characters/evander/side.svg",
  10046. extra: 877 / 477
  10047. }
  10048. },
  10049. },
  10050. [
  10051. {
  10052. name: "Normal",
  10053. height: math.unit(0.83, "meters"),
  10054. default: true
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(12, "feet"),
  10063. weight: math.unit(1000, "lb"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10067. extra: 1762 / 1611
  10068. }
  10069. },
  10070. back: {
  10071. height: math.unit(12, "feet"),
  10072. weight: math.unit(1000, "lb"),
  10073. name: "Back",
  10074. image: {
  10075. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10076. extra: 1762 / 1611
  10077. }
  10078. },
  10079. },
  10080. [
  10081. {
  10082. name: "Normal",
  10083. height: math.unit(12, "feet"),
  10084. default: true
  10085. },
  10086. {
  10087. name: "Kaiju",
  10088. height: math.unit(150, "feet")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(6, "feet"),
  10097. weight: math.unit(150, "lb"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/zero-alurus/front.svg"
  10101. }
  10102. },
  10103. back: {
  10104. height: math.unit(6, "feet"),
  10105. weight: math.unit(150, "lb"),
  10106. name: "Back",
  10107. image: {
  10108. source: "./media/characters/zero-alurus/back.svg"
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Normal",
  10115. height: math.unit(5 + 10 / 12, "feet")
  10116. },
  10117. {
  10118. name: "Macro",
  10119. height: math.unit(60, "feet"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Macro+",
  10124. height: math.unit(450, "feet")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(6, "feet"),
  10133. weight: math.unit(200, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/mega-shi/front.svg",
  10137. extra: 1279 / 1250,
  10138. bottom: 0.02
  10139. }
  10140. },
  10141. back: {
  10142. height: math.unit(6, "feet"),
  10143. weight: math.unit(200, "lb"),
  10144. name: "Back",
  10145. image: {
  10146. source: "./media/characters/mega-shi/back.svg",
  10147. extra: 1279 / 1250,
  10148. bottom: 0.02
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Micro",
  10155. height: math.unit(16 + 6 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Third Dimension",
  10159. height: math.unit(40, "meters")
  10160. },
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(660, "feet"),
  10164. default: true
  10165. },
  10166. {
  10167. name: "Megamacro",
  10168. height: math.unit(10, "miles")
  10169. },
  10170. {
  10171. name: "Planetary Launch",
  10172. height: math.unit(500, "miles")
  10173. },
  10174. {
  10175. name: "Interstellar",
  10176. height: math.unit(1e9, "miles")
  10177. },
  10178. {
  10179. name: "Leaving the Universe",
  10180. height: math.unit(1, "gigaparsec")
  10181. },
  10182. {
  10183. name: "Travelling Universes",
  10184. height: math.unit(30e15, "parsecs")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(5 + 4/12, "feet"),
  10193. weight: math.unit(120, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/odyssey/front.svg",
  10197. extra: 1747/1571,
  10198. bottom: 47/1794
  10199. }
  10200. },
  10201. side: {
  10202. height: math.unit(5.1, "feet"),
  10203. weight: math.unit(120, "lb"),
  10204. name: "Side",
  10205. image: {
  10206. source: "./media/characters/odyssey/side.svg",
  10207. extra: 1847/1619,
  10208. bottom: 47/1894
  10209. }
  10210. },
  10211. lounging: {
  10212. height: math.unit(1.464, "feet"),
  10213. weight: math.unit(120, "lb"),
  10214. name: "Lounging",
  10215. image: {
  10216. source: "./media/characters/odyssey/lounging.svg",
  10217. extra: 1235/837,
  10218. bottom: 551/1786
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(5 + 4 / 12, "feet")
  10226. },
  10227. {
  10228. name: "Macro",
  10229. height: math.unit(1, "km")
  10230. },
  10231. {
  10232. name: "Megamacro",
  10233. height: math.unit(3000, "km")
  10234. },
  10235. {
  10236. name: "Gigamacro",
  10237. height: math.unit(1, "AU"),
  10238. default: true
  10239. },
  10240. {
  10241. name: "Omniversal",
  10242. height: math.unit(100e14, "lightyears")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(6, "feet"),
  10251. weight: math.unit(300, "lb"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/mekuto/front.svg",
  10255. extra: 921 / 832,
  10256. bottom: 0.03
  10257. }
  10258. },
  10259. hand: {
  10260. height: math.unit(6 / 10.24, "feet"),
  10261. name: "Hand",
  10262. image: {
  10263. source: "./media/characters/mekuto/hand.svg"
  10264. }
  10265. },
  10266. foot: {
  10267. height: math.unit(6 / 5.05, "feet"),
  10268. name: "Foot",
  10269. image: {
  10270. source: "./media/characters/mekuto/foot.svg"
  10271. }
  10272. },
  10273. },
  10274. [
  10275. {
  10276. name: "Minimicro",
  10277. height: math.unit(0.2, "inches")
  10278. },
  10279. {
  10280. name: "Micro",
  10281. height: math.unit(1.5, "inches")
  10282. },
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(5 + 11 / 12, "feet"),
  10286. default: true
  10287. },
  10288. {
  10289. name: "Minimacro",
  10290. height: math.unit(17 + 9 / 12, "feet")
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(177.5, "feet")
  10295. },
  10296. {
  10297. name: "Megamacro",
  10298. height: math.unit(152, "miles")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(6.5, "inches"),
  10307. weight: math.unit(13, "oz"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/dafydd-tomos/front.svg",
  10311. extra: 2990 / 2603,
  10312. bottom: 0.03
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Micro",
  10319. height: math.unit(6.5, "inches"),
  10320. default: true
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/splinter/front.svg",
  10333. extra: 2990 / 2882,
  10334. bottom: 0.04
  10335. }
  10336. },
  10337. back: {
  10338. height: math.unit(6, "feet"),
  10339. weight: math.unit(150, "lb"),
  10340. name: "Back",
  10341. image: {
  10342. source: "./media/characters/splinter/back.svg",
  10343. extra: 2990 / 2882,
  10344. bottom: 0.04
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(6, "feet")
  10352. },
  10353. {
  10354. name: "Macro",
  10355. height: math.unit(230, "meters"),
  10356. default: true
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(4 + 10 / 12, "feet"),
  10365. weight: math.unit(480, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/snow-gabumon/front.svg",
  10369. extra: 1140 / 963,
  10370. bottom: 0.058
  10371. }
  10372. },
  10373. back: {
  10374. height: math.unit(4 + 10 / 12, "feet"),
  10375. weight: math.unit(480, "lb"),
  10376. name: "Back",
  10377. image: {
  10378. source: "./media/characters/snow-gabumon/back.svg",
  10379. extra: 1115 / 962,
  10380. bottom: 0.041
  10381. }
  10382. },
  10383. frontUndresed: {
  10384. height: math.unit(4 + 10 / 12, "feet"),
  10385. weight: math.unit(480, "lb"),
  10386. name: "Front (Undressed)",
  10387. image: {
  10388. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10389. extra: 1061 / 960,
  10390. bottom: 0.045
  10391. }
  10392. },
  10393. },
  10394. [
  10395. {
  10396. name: "Micro",
  10397. height: math.unit(1, "inch")
  10398. },
  10399. {
  10400. name: "Normal",
  10401. height: math.unit(4 + 10 / 12, "feet"),
  10402. default: true
  10403. },
  10404. {
  10405. name: "Macro",
  10406. height: math.unit(200, "feet")
  10407. },
  10408. {
  10409. name: "Megamacro",
  10410. height: math.unit(120, "miles")
  10411. },
  10412. {
  10413. name: "Gigamacro",
  10414. height: math.unit(9800, "miles")
  10415. },
  10416. ]
  10417. ))
  10418. characterMakers.push(() => makeCharacter(
  10419. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10420. {
  10421. front: {
  10422. height: math.unit(1.7, "meters"),
  10423. weight: math.unit(140, "lb"),
  10424. name: "Front",
  10425. image: {
  10426. source: "./media/characters/moody/front.svg",
  10427. extra: 3226 / 3007,
  10428. bottom: 0.087
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Micro",
  10435. height: math.unit(1, "mm")
  10436. },
  10437. {
  10438. name: "Normal",
  10439. height: math.unit(1.7, "meters"),
  10440. default: true
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(80, "meters")
  10445. },
  10446. {
  10447. name: "Macro+",
  10448. height: math.unit(500, "meters")
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10454. {
  10455. front: {
  10456. height: math.unit(6, "feet"),
  10457. weight: math.unit(150, "lb"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/zyas/front.svg",
  10461. extra: 1180 / 1120,
  10462. bottom: 0.045
  10463. }
  10464. },
  10465. },
  10466. [
  10467. {
  10468. name: "Normal",
  10469. height: math.unit(10, "feet"),
  10470. default: true
  10471. },
  10472. {
  10473. name: "Macro",
  10474. height: math.unit(500, "feet")
  10475. },
  10476. {
  10477. name: "Megamacro",
  10478. height: math.unit(5, "miles")
  10479. },
  10480. {
  10481. name: "Teramacro",
  10482. height: math.unit(150000, "miles")
  10483. },
  10484. ]
  10485. ))
  10486. characterMakers.push(() => makeCharacter(
  10487. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10488. {
  10489. front: {
  10490. height: math.unit(6, "feet"),
  10491. weight: math.unit(150, "lb"),
  10492. name: "Front",
  10493. image: {
  10494. source: "./media/characters/cuon/front.svg",
  10495. extra: 1390 / 1320,
  10496. bottom: 0.008
  10497. }
  10498. },
  10499. },
  10500. [
  10501. {
  10502. name: "Micro",
  10503. height: math.unit(3, "inches")
  10504. },
  10505. {
  10506. name: "Normal",
  10507. height: math.unit(18 + 9 / 12, "feet"),
  10508. default: true
  10509. },
  10510. {
  10511. name: "Macro",
  10512. height: math.unit(360, "feet")
  10513. },
  10514. {
  10515. name: "Megamacro",
  10516. height: math.unit(360, "miles")
  10517. },
  10518. ]
  10519. ))
  10520. characterMakers.push(() => makeCharacter(
  10521. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10522. {
  10523. front: {
  10524. height: math.unit(2.4, "meters"),
  10525. weight: math.unit(70, "kg"),
  10526. name: "Front",
  10527. image: {
  10528. source: "./media/characters/nyanuxk/front.svg",
  10529. extra: 1172 / 1084,
  10530. bottom: 0.065
  10531. }
  10532. },
  10533. side: {
  10534. height: math.unit(2.4, "meters"),
  10535. weight: math.unit(70, "kg"),
  10536. name: "Side",
  10537. image: {
  10538. source: "./media/characters/nyanuxk/side.svg",
  10539. extra: 1190 / 1132,
  10540. bottom: 0.007
  10541. }
  10542. },
  10543. back: {
  10544. height: math.unit(2.4, "meters"),
  10545. weight: math.unit(70, "kg"),
  10546. name: "Back",
  10547. image: {
  10548. source: "./media/characters/nyanuxk/back.svg",
  10549. extra: 1200 / 1141,
  10550. bottom: 0.015
  10551. }
  10552. },
  10553. foot: {
  10554. height: math.unit(0.52, "meters"),
  10555. name: "Foot",
  10556. image: {
  10557. source: "./media/characters/nyanuxk/foot.svg"
  10558. }
  10559. },
  10560. },
  10561. [
  10562. {
  10563. name: "Micro",
  10564. height: math.unit(2, "cm")
  10565. },
  10566. {
  10567. name: "Normal",
  10568. height: math.unit(2.4, "meters"),
  10569. default: true
  10570. },
  10571. {
  10572. name: "Smaller Macro",
  10573. height: math.unit(120, "meters")
  10574. },
  10575. {
  10576. name: "Bigger Macro",
  10577. height: math.unit(1.2, "km")
  10578. },
  10579. {
  10580. name: "Megamacro",
  10581. height: math.unit(15, "kilometers")
  10582. },
  10583. {
  10584. name: "Gigamacro",
  10585. height: math.unit(2000, "km")
  10586. },
  10587. {
  10588. name: "Teramacro",
  10589. height: math.unit(500000, "km")
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10595. {
  10596. side: {
  10597. height: math.unit(6, "feet"),
  10598. name: "Side",
  10599. image: {
  10600. source: "./media/characters/ailbhe/side.svg",
  10601. extra: 757 / 464,
  10602. bottom: 0.041
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Normal",
  10609. height: math.unit(1.07, "meters"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(120, "kg"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/zevulfius/front.svg",
  10623. extra: 965 / 903
  10624. }
  10625. },
  10626. side: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(120, "kg"),
  10629. name: "Side",
  10630. image: {
  10631. source: "./media/characters/zevulfius/side.svg",
  10632. extra: 939 / 900
  10633. }
  10634. },
  10635. back: {
  10636. height: math.unit(6, "feet"),
  10637. weight: math.unit(120, "kg"),
  10638. name: "Back",
  10639. image: {
  10640. source: "./media/characters/zevulfius/back.svg",
  10641. extra: 918 / 854,
  10642. bottom: 0.005
  10643. }
  10644. },
  10645. foot: {
  10646. height: math.unit(6 / 3.72, "feet"),
  10647. name: "Foot",
  10648. image: {
  10649. source: "./media/characters/zevulfius/foot.svg"
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Macro",
  10656. height: math.unit(750, "meters")
  10657. },
  10658. {
  10659. name: "Megamacro",
  10660. height: math.unit(20, "km"),
  10661. default: true
  10662. },
  10663. {
  10664. name: "Gigamacro",
  10665. height: math.unit(2000, "km")
  10666. },
  10667. {
  10668. name: "Teramacro",
  10669. height: math.unit(250000, "km")
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(100, "feet"),
  10678. weight: math.unit(350, "kg"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/rikes/front.svg",
  10682. extra: 1565 / 1483,
  10683. bottom: 0.017
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Macro",
  10690. height: math.unit(100, "feet"),
  10691. default: true
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(8, "feet"),
  10700. weight: math.unit(356, "lb"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/adam-silver-mane/front.svg",
  10704. extra: 1036/937,
  10705. bottom: 63/1099
  10706. }
  10707. },
  10708. side: {
  10709. height: math.unit(8, "feet"),
  10710. weight: math.unit(356, "lb"),
  10711. name: "Side",
  10712. image: {
  10713. source: "./media/characters/adam-silver-mane/side.svg",
  10714. extra: 997/901,
  10715. bottom: 59/1056
  10716. }
  10717. },
  10718. frontNsfw: {
  10719. height: math.unit(8, "feet"),
  10720. weight: math.unit(356, "lb"),
  10721. name: "Front (NSFW)",
  10722. image: {
  10723. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10724. extra: 1036/937,
  10725. bottom: 63/1099
  10726. }
  10727. },
  10728. sideNsfw: {
  10729. height: math.unit(8, "feet"),
  10730. weight: math.unit(356, "lb"),
  10731. name: "Side (NSFW)",
  10732. image: {
  10733. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10734. extra: 997/901,
  10735. bottom: 59/1056
  10736. }
  10737. },
  10738. dick: {
  10739. height: math.unit(2.1, "feet"),
  10740. name: "Dick",
  10741. image: {
  10742. source: "./media/characters/adam-silver-mane/dick.svg"
  10743. }
  10744. },
  10745. taur: {
  10746. height: math.unit(16, "feet"),
  10747. weight: math.unit(1500, "kg"),
  10748. name: "Taur",
  10749. image: {
  10750. source: "./media/characters/adam-silver-mane/taur.svg",
  10751. extra: 1713 / 1571,
  10752. bottom: 0.01
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Normal",
  10759. height: math.unit(8, "feet")
  10760. },
  10761. {
  10762. name: "Minimacro",
  10763. height: math.unit(80, "feet")
  10764. },
  10765. {
  10766. name: "MDA",
  10767. height: math.unit(80, "meters")
  10768. },
  10769. {
  10770. name: "Macro",
  10771. height: math.unit(800, "feet"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Megamacro",
  10776. height: math.unit(8000, "feet")
  10777. },
  10778. {
  10779. name: "Gigamacro",
  10780. height: math.unit(800, "miles")
  10781. },
  10782. {
  10783. name: "Teramacro",
  10784. height: math.unit(80000, "miles")
  10785. },
  10786. {
  10787. name: "Celestial",
  10788. height: math.unit(8e6, "miles")
  10789. },
  10790. {
  10791. name: "Star Dragon",
  10792. height: math.unit(800000, "parsecs")
  10793. },
  10794. {
  10795. name: "Godly",
  10796. height: math.unit(800, "teraparsecs")
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10802. {
  10803. front: {
  10804. height: math.unit(6, "feet"),
  10805. weight: math.unit(150, "lb"),
  10806. name: "Front",
  10807. image: {
  10808. source: "./media/characters/ky'owin/front.svg",
  10809. extra: 3888 / 3068,
  10810. bottom: 0.015
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(6 + 8 / 12, "feet")
  10818. },
  10819. {
  10820. name: "Large",
  10821. height: math.unit(68, "feet")
  10822. },
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(132, "feet")
  10826. },
  10827. {
  10828. name: "Macro+",
  10829. height: math.unit(340, "feet")
  10830. },
  10831. {
  10832. name: "Macro++",
  10833. height: math.unit(680, "feet"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Megamacro",
  10838. height: math.unit(1, "mile")
  10839. },
  10840. {
  10841. name: "Megamacro+",
  10842. height: math.unit(10, "miles")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(4, "feet"),
  10851. weight: math.unit(50, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/mal/front.svg",
  10855. extra: 785 / 724,
  10856. bottom: 0.07
  10857. }
  10858. },
  10859. },
  10860. [
  10861. {
  10862. name: "Micro",
  10863. height: math.unit(4, "inches")
  10864. },
  10865. {
  10866. name: "Normal",
  10867. height: math.unit(4, "feet"),
  10868. default: true
  10869. },
  10870. {
  10871. name: "Macro",
  10872. height: math.unit(200, "feet")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10878. {
  10879. front: {
  10880. height: math.unit(6, "feet"),
  10881. weight: math.unit(150, "lb"),
  10882. name: "Front",
  10883. image: {
  10884. source: "./media/characters/jordan-deware/front.svg",
  10885. extra: 1191 / 1012
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Nano",
  10892. height: math.unit(0.01, "mm")
  10893. },
  10894. {
  10895. name: "Minimicro",
  10896. height: math.unit(1, "mm")
  10897. },
  10898. {
  10899. name: "Micro",
  10900. height: math.unit(0.5, "inches")
  10901. },
  10902. {
  10903. name: "Normal",
  10904. height: math.unit(4, "feet"),
  10905. default: true
  10906. },
  10907. {
  10908. name: "Minimacro",
  10909. height: math.unit(40, "meters")
  10910. },
  10911. {
  10912. name: "Small Macro",
  10913. height: math.unit(400, "meters")
  10914. },
  10915. {
  10916. name: "Macro",
  10917. height: math.unit(4, "miles")
  10918. },
  10919. {
  10920. name: "Megamacro",
  10921. height: math.unit(40, "miles")
  10922. },
  10923. {
  10924. name: "Megamacro+",
  10925. height: math.unit(400, "miles")
  10926. },
  10927. {
  10928. name: "Gigamacro",
  10929. height: math.unit(400000, "miles")
  10930. },
  10931. ]
  10932. ))
  10933. characterMakers.push(() => makeCharacter(
  10934. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10935. {
  10936. side: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(150, "lb"),
  10939. name: "Side",
  10940. image: {
  10941. source: "./media/characters/kimiko/side.svg",
  10942. extra: 600 / 358
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(15, "feet"),
  10950. default: true
  10951. },
  10952. {
  10953. name: "Macro",
  10954. height: math.unit(220, "feet")
  10955. },
  10956. {
  10957. name: "Macro+",
  10958. height: math.unit(1450, "feet")
  10959. },
  10960. {
  10961. name: "Megamacro",
  10962. height: math.unit(11500, "feet")
  10963. },
  10964. {
  10965. name: "Gigamacro",
  10966. height: math.unit(9500, "miles")
  10967. },
  10968. {
  10969. name: "Teramacro",
  10970. height: math.unit(2208005005, "miles")
  10971. },
  10972. {
  10973. name: "Examacro",
  10974. height: math.unit(2750, "parsecs")
  10975. },
  10976. {
  10977. name: "Zettamacro",
  10978. height: math.unit(101500, "parsecs")
  10979. },
  10980. ]
  10981. ))
  10982. characterMakers.push(() => makeCharacter(
  10983. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10984. {
  10985. front: {
  10986. height: math.unit(6, "feet"),
  10987. weight: math.unit(70, "kg"),
  10988. name: "Front",
  10989. image: {
  10990. source: "./media/characters/andrew-sleepy/front.svg"
  10991. }
  10992. },
  10993. side: {
  10994. height: math.unit(6, "feet"),
  10995. weight: math.unit(70, "kg"),
  10996. name: "Side",
  10997. image: {
  10998. source: "./media/characters/andrew-sleepy/side.svg"
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Micro",
  11005. height: math.unit(1, "mm"),
  11006. default: true
  11007. },
  11008. ]
  11009. ))
  11010. characterMakers.push(() => makeCharacter(
  11011. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11012. {
  11013. front: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(150, "lb"),
  11016. name: "Front",
  11017. image: {
  11018. source: "./media/characters/judio/front.svg",
  11019. extra: 1258 / 1110
  11020. }
  11021. },
  11022. },
  11023. [
  11024. {
  11025. name: "Normal",
  11026. height: math.unit(5 + 6 / 12, "feet")
  11027. },
  11028. {
  11029. name: "Macro",
  11030. height: math.unit(1000, "feet"),
  11031. default: true
  11032. },
  11033. {
  11034. name: "Megamacro",
  11035. height: math.unit(10, "miles")
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11041. {
  11042. front: {
  11043. height: math.unit(6, "feet"),
  11044. weight: math.unit(68, "kg"),
  11045. name: "Front",
  11046. image: {
  11047. source: "./media/characters/nomaxice/front.svg",
  11048. extra: 1498 / 1073,
  11049. bottom: 0.075
  11050. }
  11051. },
  11052. foot: {
  11053. height: math.unit(1.1, "feet"),
  11054. name: "Foot",
  11055. image: {
  11056. source: "./media/characters/nomaxice/foot.svg"
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Micro",
  11063. height: math.unit(8, "cm")
  11064. },
  11065. {
  11066. name: "Norm",
  11067. height: math.unit(1.82, "m")
  11068. },
  11069. {
  11070. name: "Norm+",
  11071. height: math.unit(8.8, "feet")
  11072. },
  11073. {
  11074. name: "Big",
  11075. height: math.unit(8, "meters"),
  11076. default: true
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(18, "meters")
  11081. },
  11082. {
  11083. name: "Macro+",
  11084. height: math.unit(88, "meters")
  11085. },
  11086. ]
  11087. ))
  11088. characterMakers.push(() => makeCharacter(
  11089. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11090. {
  11091. front: {
  11092. height: math.unit(12, "feet"),
  11093. weight: math.unit(1.5, "tons"),
  11094. name: "Front",
  11095. image: {
  11096. source: "./media/characters/dydros/front.svg",
  11097. extra: 863 / 800,
  11098. bottom: 0.015
  11099. }
  11100. },
  11101. back: {
  11102. height: math.unit(12, "feet"),
  11103. weight: math.unit(1.5, "tons"),
  11104. name: "Back",
  11105. image: {
  11106. source: "./media/characters/dydros/back.svg",
  11107. extra: 900 / 843,
  11108. bottom: 0.005
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(12, "feet"),
  11116. default: true
  11117. },
  11118. ]
  11119. ))
  11120. characterMakers.push(() => makeCharacter(
  11121. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11122. {
  11123. front: {
  11124. height: math.unit(6, "feet"),
  11125. weight: math.unit(100, "kg"),
  11126. name: "Front",
  11127. image: {
  11128. source: "./media/characters/riggi/front.svg",
  11129. extra: 5787 / 5303
  11130. }
  11131. },
  11132. hyper: {
  11133. height: math.unit(6 * 5 / 3, "feet"),
  11134. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11135. name: "Hyper",
  11136. image: {
  11137. source: "./media/characters/riggi/hyper.svg",
  11138. extra: 3595 / 3485
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Small Macro",
  11145. height: math.unit(50, "feet")
  11146. },
  11147. {
  11148. name: "Default",
  11149. height: math.unit(200, "feet"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Loom",
  11154. height: math.unit(10000, "feet")
  11155. },
  11156. {
  11157. name: "Cruising Altitude",
  11158. height: math.unit(30000, "feet")
  11159. },
  11160. {
  11161. name: "Megamacro",
  11162. height: math.unit(100, "miles")
  11163. },
  11164. {
  11165. name: "Continent Sized",
  11166. height: math.unit(2800, "miles")
  11167. },
  11168. {
  11169. name: "Earth Sized",
  11170. height: math.unit(8000, "miles")
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11176. {
  11177. front: {
  11178. height: math.unit(6, "feet"),
  11179. weight: math.unit(250, "lb"),
  11180. name: "Front",
  11181. image: {
  11182. source: "./media/characters/alexi/front.svg",
  11183. extra: 3483 / 3291,
  11184. bottom: 0.04
  11185. }
  11186. },
  11187. back: {
  11188. height: math.unit(6, "feet"),
  11189. weight: math.unit(250, "lb"),
  11190. name: "Back",
  11191. image: {
  11192. source: "./media/characters/alexi/back.svg",
  11193. extra: 3533 / 3356,
  11194. bottom: 0.021
  11195. }
  11196. },
  11197. frontTransforming: {
  11198. height: math.unit(8.58, "feet"),
  11199. weight: math.unit(1300, "lb"),
  11200. name: "Transforming",
  11201. image: {
  11202. source: "./media/characters/alexi/front-transforming.svg",
  11203. extra: 437 / 409,
  11204. bottom: 19 / 458.66
  11205. }
  11206. },
  11207. frontTransformed: {
  11208. height: math.unit(12.5, "feet"),
  11209. weight: math.unit(4000, "lb"),
  11210. name: "Transformed",
  11211. image: {
  11212. source: "./media/characters/alexi/front-transformed.svg",
  11213. extra: 639 / 614,
  11214. bottom: 30.55 / 671
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Normal",
  11221. height: math.unit(14, "feet"),
  11222. default: true
  11223. },
  11224. {
  11225. name: "Minimacro",
  11226. height: math.unit(30, "meters")
  11227. },
  11228. {
  11229. name: "Macro",
  11230. height: math.unit(500, "meters")
  11231. },
  11232. {
  11233. name: "Megamacro",
  11234. height: math.unit(9000, "km")
  11235. },
  11236. {
  11237. name: "Teramacro",
  11238. height: math.unit(384000, "km")
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11244. {
  11245. front: {
  11246. height: math.unit(6, "feet"),
  11247. weight: math.unit(150, "lb"),
  11248. name: "Front",
  11249. image: {
  11250. source: "./media/characters/kayroo/front.svg",
  11251. extra: 1153 / 1038,
  11252. bottom: 0.06
  11253. }
  11254. },
  11255. foot: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(150, "lb"),
  11258. name: "Foot",
  11259. image: {
  11260. source: "./media/characters/kayroo/foot.svg"
  11261. }
  11262. },
  11263. },
  11264. [
  11265. {
  11266. name: "Normal",
  11267. height: math.unit(8, "feet"),
  11268. default: true
  11269. },
  11270. {
  11271. name: "Minimacro",
  11272. height: math.unit(250, "feet")
  11273. },
  11274. {
  11275. name: "Macro",
  11276. height: math.unit(2800, "feet")
  11277. },
  11278. {
  11279. name: "Megamacro",
  11280. height: math.unit(5200, "feet")
  11281. },
  11282. {
  11283. name: "Gigamacro",
  11284. height: math.unit(27000, "feet")
  11285. },
  11286. {
  11287. name: "Omega",
  11288. height: math.unit(45000, "feet")
  11289. },
  11290. ]
  11291. ))
  11292. characterMakers.push(() => makeCharacter(
  11293. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11294. {
  11295. front: {
  11296. height: math.unit(18, "feet"),
  11297. weight: math.unit(5800, "lb"),
  11298. name: "Front",
  11299. image: {
  11300. source: "./media/characters/rhys/front.svg",
  11301. extra: 3386 / 3090,
  11302. bottom: 0.07
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Normal",
  11309. height: math.unit(18, "feet"),
  11310. default: true
  11311. },
  11312. {
  11313. name: "Working Size",
  11314. height: math.unit(200, "feet")
  11315. },
  11316. {
  11317. name: "Demolition Size",
  11318. height: math.unit(2000, "feet")
  11319. },
  11320. {
  11321. name: "Maximum Licensed Size",
  11322. height: math.unit(5, "miles")
  11323. },
  11324. {
  11325. name: "Maximum Observed Size",
  11326. height: math.unit(10, "yottameters")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(250, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/toto/front.svg",
  11339. extra: 527 / 479,
  11340. bottom: 0.05
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Micro",
  11347. height: math.unit(3, "feet")
  11348. },
  11349. {
  11350. name: "Normal",
  11351. height: math.unit(10, "feet")
  11352. },
  11353. {
  11354. name: "Macro",
  11355. height: math.unit(150, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Megamacro",
  11360. height: math.unit(1200, "feet")
  11361. },
  11362. ]
  11363. ))
  11364. characterMakers.push(() => makeCharacter(
  11365. { name: "King", species: ["lion"], tags: ["anthro"] },
  11366. {
  11367. back: {
  11368. height: math.unit(6, "feet"),
  11369. weight: math.unit(150, "lb"),
  11370. name: "Back",
  11371. image: {
  11372. source: "./media/characters/king/back.svg"
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Micro",
  11379. height: math.unit(2, "inches")
  11380. },
  11381. {
  11382. name: "Normal",
  11383. height: math.unit(8, "feet")
  11384. },
  11385. {
  11386. name: "Macro",
  11387. height: math.unit(200, "feet"),
  11388. default: true
  11389. },
  11390. {
  11391. name: "Megamacro",
  11392. height: math.unit(50, "miles")
  11393. },
  11394. ]
  11395. ))
  11396. characterMakers.push(() => makeCharacter(
  11397. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11398. {
  11399. front: {
  11400. height: math.unit(11, "feet"),
  11401. weight: math.unit(1400, "lb"),
  11402. name: "Front",
  11403. image: {
  11404. source: "./media/characters/cordite/front.svg",
  11405. extra: 1919/1827,
  11406. bottom: 40/1959
  11407. }
  11408. },
  11409. side: {
  11410. height: math.unit(11, "feet"),
  11411. weight: math.unit(1400, "lb"),
  11412. name: "Side",
  11413. image: {
  11414. source: "./media/characters/cordite/side.svg",
  11415. extra: 1908/1793,
  11416. bottom: 38/1946
  11417. }
  11418. },
  11419. back: {
  11420. height: math.unit(11, "feet"),
  11421. weight: math.unit(1400, "lb"),
  11422. name: "Back",
  11423. image: {
  11424. source: "./media/characters/cordite/back.svg",
  11425. extra: 1938/1837,
  11426. bottom: 10/1948
  11427. }
  11428. },
  11429. feral: {
  11430. height: math.unit(2, "feet"),
  11431. weight: math.unit(90, "lb"),
  11432. name: "Feral",
  11433. image: {
  11434. source: "./media/characters/cordite/feral.svg",
  11435. extra: 1260 / 755,
  11436. bottom: 0.05
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(11, "feet"),
  11444. default: true
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(6, "feet"),
  11453. weight: math.unit(150, "lb"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/pianostrong/front.svg",
  11457. extra: 6577 / 6254,
  11458. bottom: 0.02
  11459. }
  11460. },
  11461. side: {
  11462. height: math.unit(6, "feet"),
  11463. weight: math.unit(150, "lb"),
  11464. name: "Side",
  11465. image: {
  11466. source: "./media/characters/pianostrong/side.svg",
  11467. extra: 6106 / 5730
  11468. }
  11469. },
  11470. back: {
  11471. height: math.unit(6, "feet"),
  11472. weight: math.unit(150, "lb"),
  11473. name: "Back",
  11474. image: {
  11475. source: "./media/characters/pianostrong/back.svg",
  11476. extra: 6085 / 5733,
  11477. bottom: 0.01
  11478. }
  11479. },
  11480. },
  11481. [
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(100, "feet")
  11485. },
  11486. {
  11487. name: "Macro+",
  11488. height: math.unit(300, "feet"),
  11489. default: true
  11490. },
  11491. {
  11492. name: "Macro++",
  11493. height: math.unit(1000, "feet")
  11494. },
  11495. ]
  11496. ))
  11497. characterMakers.push(() => makeCharacter(
  11498. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11499. {
  11500. front: {
  11501. height: math.unit(6, "feet"),
  11502. weight: math.unit(150, "lb"),
  11503. name: "Front",
  11504. image: {
  11505. source: "./media/characters/kona/front.svg",
  11506. extra: 2960 / 2629,
  11507. bottom: 0.005
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Normal",
  11514. height: math.unit(11 + 8 / 12, "feet")
  11515. },
  11516. {
  11517. name: "Macro",
  11518. height: math.unit(850, "feet"),
  11519. default: true
  11520. },
  11521. {
  11522. name: "Macro+",
  11523. height: math.unit(1.5, "km"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Megamacro",
  11528. height: math.unit(80, "miles")
  11529. },
  11530. {
  11531. name: "Gigamacro",
  11532. height: math.unit(3500, "miles")
  11533. },
  11534. ]
  11535. ))
  11536. characterMakers.push(() => makeCharacter(
  11537. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11538. {
  11539. side: {
  11540. height: math.unit(1.9, "meters"),
  11541. weight: math.unit(326, "kg"),
  11542. name: "Side",
  11543. image: {
  11544. source: "./media/characters/levi/side.svg",
  11545. extra: 1704 / 1334,
  11546. bottom: 0.02
  11547. }
  11548. },
  11549. },
  11550. [
  11551. {
  11552. name: "Normal",
  11553. height: math.unit(1.9, "meters"),
  11554. default: true
  11555. },
  11556. {
  11557. name: "Macro",
  11558. height: math.unit(20, "meters")
  11559. },
  11560. {
  11561. name: "Macro+",
  11562. height: math.unit(200, "meters")
  11563. },
  11564. {
  11565. name: "Megamacro",
  11566. height: math.unit(2, "km")
  11567. },
  11568. {
  11569. name: "Megamacro+",
  11570. height: math.unit(20, "km")
  11571. },
  11572. {
  11573. name: "Gigamacro",
  11574. height: math.unit(2500, "km")
  11575. },
  11576. {
  11577. name: "Gigamacro+",
  11578. height: math.unit(120000, "km")
  11579. },
  11580. {
  11581. name: "Teramacro",
  11582. height: math.unit(7.77e6, "km")
  11583. },
  11584. ]
  11585. ))
  11586. characterMakers.push(() => makeCharacter(
  11587. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11588. {
  11589. front: {
  11590. height: math.unit(6 + 4/12, "feet"),
  11591. weight: math.unit(190, "lb"),
  11592. name: "Front",
  11593. image: {
  11594. source: "./media/characters/bmc/front.svg",
  11595. extra: 1626/1472,
  11596. bottom: 79/1705
  11597. }
  11598. },
  11599. back: {
  11600. height: math.unit(6 + 4/12, "feet"),
  11601. weight: math.unit(190, "lb"),
  11602. name: "Back",
  11603. image: {
  11604. source: "./media/characters/bmc/back.svg",
  11605. extra: 1640/1479,
  11606. bottom: 45/1685
  11607. }
  11608. },
  11609. frontArmor: {
  11610. height: math.unit(6 + 4/12, "feet"),
  11611. weight: math.unit(190, "lb"),
  11612. name: "Front-armor",
  11613. image: {
  11614. source: "./media/characters/bmc/front-armor.svg",
  11615. extra: 1538/1468,
  11616. bottom: 79/1617
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Human-sized",
  11623. height: math.unit(6 + 4 / 12, "feet")
  11624. },
  11625. {
  11626. name: "Interactive Size",
  11627. height: math.unit(25, "feet")
  11628. },
  11629. {
  11630. name: "Small",
  11631. height: math.unit(250, "feet")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(1250, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Good Day",
  11640. height: math.unit(88, "miles")
  11641. },
  11642. {
  11643. name: "Largest Measured Size",
  11644. height: math.unit(105.960, "galaxies")
  11645. },
  11646. ]
  11647. ))
  11648. characterMakers.push(() => makeCharacter(
  11649. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11650. {
  11651. front: {
  11652. height: math.unit(20, "feet"),
  11653. weight: math.unit(2016, "kg"),
  11654. name: "Front",
  11655. image: {
  11656. source: "./media/characters/sven-the-kaiju/front.svg",
  11657. extra: 1277/1250,
  11658. bottom: 35/1312
  11659. }
  11660. },
  11661. mouth: {
  11662. height: math.unit(1.85, "feet"),
  11663. name: "Mouth",
  11664. image: {
  11665. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11666. }
  11667. },
  11668. },
  11669. [
  11670. {
  11671. name: "Fairy",
  11672. height: math.unit(6, "inches")
  11673. },
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(20, "feet"),
  11677. default: true
  11678. },
  11679. {
  11680. name: "Rampage",
  11681. height: math.unit(200, "feet")
  11682. },
  11683. {
  11684. name: "Archfey Forest Guardian",
  11685. height: math.unit(1, "mile")
  11686. },
  11687. ]
  11688. ))
  11689. characterMakers.push(() => makeCharacter(
  11690. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11691. {
  11692. front: {
  11693. height: math.unit(4, "meters"),
  11694. weight: math.unit(2, "tons"),
  11695. name: "Front",
  11696. image: {
  11697. source: "./media/characters/marik/front.svg",
  11698. extra: 1057 / 1003,
  11699. bottom: 0.08
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Normal",
  11706. height: math.unit(4, "meters"),
  11707. default: true
  11708. },
  11709. {
  11710. name: "Macro",
  11711. height: math.unit(20, "meters")
  11712. },
  11713. {
  11714. name: "Megamacro",
  11715. height: math.unit(50, "km")
  11716. },
  11717. {
  11718. name: "Gigamacro",
  11719. height: math.unit(100, "km")
  11720. },
  11721. {
  11722. name: "Alpha Macro",
  11723. height: math.unit(7.88e7, "yottameters")
  11724. },
  11725. ]
  11726. ))
  11727. characterMakers.push(() => makeCharacter(
  11728. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11729. {
  11730. front: {
  11731. height: math.unit(6, "feet"),
  11732. weight: math.unit(110, "lb"),
  11733. name: "Front",
  11734. image: {
  11735. source: "./media/characters/mel/front.svg",
  11736. extra: 736 / 617,
  11737. bottom: 0.017
  11738. }
  11739. },
  11740. },
  11741. [
  11742. {
  11743. name: "Pico",
  11744. height: math.unit(3, "pm")
  11745. },
  11746. {
  11747. name: "Nano",
  11748. height: math.unit(3, "nm")
  11749. },
  11750. {
  11751. name: "Micro",
  11752. height: math.unit(0.3, "mm"),
  11753. default: true
  11754. },
  11755. {
  11756. name: "Micro+",
  11757. height: math.unit(3, "mm")
  11758. },
  11759. {
  11760. name: "Normal",
  11761. height: math.unit(5 + 10.5 / 12, "feet")
  11762. },
  11763. ]
  11764. ))
  11765. characterMakers.push(() => makeCharacter(
  11766. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11767. {
  11768. kaiju: {
  11769. height: math.unit(1.75, "meters"),
  11770. weight: math.unit(55, "kg"),
  11771. name: "Kaiju",
  11772. image: {
  11773. source: "./media/characters/lykonous/kaiju.svg",
  11774. extra: 1055 / 946,
  11775. bottom: 0.135
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(2.5, "meters"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Kaiju Dragon",
  11787. height: math.unit(60, "meters")
  11788. },
  11789. {
  11790. name: "Mega Kaiju",
  11791. height: math.unit(120, "km")
  11792. },
  11793. {
  11794. name: "Giga Kaiju",
  11795. height: math.unit(200, "megameters")
  11796. },
  11797. {
  11798. name: "Terra Kaiju",
  11799. height: math.unit(400, "gigameters")
  11800. },
  11801. {
  11802. name: "Kaiju Dragon God",
  11803. height: math.unit(13000, "exaparsecs")
  11804. },
  11805. ]
  11806. ))
  11807. characterMakers.push(() => makeCharacter(
  11808. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11809. {
  11810. front: {
  11811. height: math.unit(6, "feet"),
  11812. weight: math.unit(150, "lb"),
  11813. name: "Front",
  11814. image: {
  11815. source: "./media/characters/blü/front.svg",
  11816. extra: 1883 / 1564,
  11817. bottom: 0.031
  11818. }
  11819. },
  11820. },
  11821. [
  11822. {
  11823. name: "Normal",
  11824. height: math.unit(13, "feet"),
  11825. default: true
  11826. },
  11827. {
  11828. name: "Big Boi",
  11829. height: math.unit(150, "meters")
  11830. },
  11831. {
  11832. name: "Mini Stomper",
  11833. height: math.unit(300, "meters")
  11834. },
  11835. {
  11836. name: "Macro",
  11837. height: math.unit(1000, "meters")
  11838. },
  11839. {
  11840. name: "Megamacro",
  11841. height: math.unit(11000, "meters")
  11842. },
  11843. {
  11844. name: "Gigamacro",
  11845. height: math.unit(11000, "km")
  11846. },
  11847. {
  11848. name: "Teramacro",
  11849. height: math.unit(420000, "km")
  11850. },
  11851. {
  11852. name: "Examacro",
  11853. height: math.unit(120, "parsecs")
  11854. },
  11855. {
  11856. name: "God Tho",
  11857. height: math.unit(98000000000, "parsecs")
  11858. },
  11859. ]
  11860. ))
  11861. characterMakers.push(() => makeCharacter(
  11862. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11863. {
  11864. taurFront: {
  11865. height: math.unit(6, "feet"),
  11866. weight: math.unit(200, "lb"),
  11867. name: "Taur (Front)",
  11868. image: {
  11869. source: "./media/characters/scales/taur-front.svg",
  11870. extra: 1,
  11871. bottom: 0.05
  11872. }
  11873. },
  11874. taurBack: {
  11875. height: math.unit(6, "feet"),
  11876. weight: math.unit(200, "lb"),
  11877. name: "Taur (Back)",
  11878. image: {
  11879. source: "./media/characters/scales/taur-back.svg",
  11880. extra: 1,
  11881. bottom: 0.08
  11882. }
  11883. },
  11884. anthro: {
  11885. height: math.unit(6 * 7 / 12, "feet"),
  11886. weight: math.unit(100, "lb"),
  11887. name: "Anthro",
  11888. image: {
  11889. source: "./media/characters/scales/anthro.svg",
  11890. extra: 1,
  11891. bottom: 0.06
  11892. }
  11893. },
  11894. },
  11895. [
  11896. {
  11897. name: "Normal",
  11898. height: math.unit(12, "feet"),
  11899. default: true
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11905. {
  11906. front: {
  11907. height: math.unit(6, "feet"),
  11908. weight: math.unit(150, "lb"),
  11909. name: "Front",
  11910. image: {
  11911. source: "./media/characters/koragos/front.svg",
  11912. extra: 841 / 794,
  11913. bottom: 0.035
  11914. }
  11915. },
  11916. back: {
  11917. height: math.unit(6, "feet"),
  11918. weight: math.unit(150, "lb"),
  11919. name: "Back",
  11920. image: {
  11921. source: "./media/characters/koragos/back.svg",
  11922. extra: 841 / 810,
  11923. bottom: 0.022
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Normal",
  11930. height: math.unit(6 + 11 / 12, "feet"),
  11931. default: true
  11932. },
  11933. {
  11934. name: "Macro",
  11935. height: math.unit(490, "feet")
  11936. },
  11937. {
  11938. name: "Megamacro",
  11939. height: math.unit(10, "miles")
  11940. },
  11941. {
  11942. name: "Gigamacro",
  11943. height: math.unit(50, "miles")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(250, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/xylrem/front.svg",
  11956. extra: 3323 / 3050,
  11957. bottom: 0.065
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Micro",
  11964. height: math.unit(4, "feet")
  11965. },
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(16, "feet"),
  11969. default: true
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(2720, "feet")
  11974. },
  11975. {
  11976. name: "Megamacro",
  11977. height: math.unit(25000, "miles")
  11978. },
  11979. ]
  11980. ))
  11981. characterMakers.push(() => makeCharacter(
  11982. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11983. {
  11984. front: {
  11985. height: math.unit(8, "feet"),
  11986. weight: math.unit(250, "kg"),
  11987. name: "Front",
  11988. image: {
  11989. source: "./media/characters/ikideru/front.svg",
  11990. extra: 930 / 870,
  11991. bottom: 0.087
  11992. }
  11993. },
  11994. back: {
  11995. height: math.unit(8, "feet"),
  11996. weight: math.unit(250, "kg"),
  11997. name: "Back",
  11998. image: {
  11999. source: "./media/characters/ikideru/back.svg",
  12000. extra: 919 / 852,
  12001. bottom: 0.055
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Rare",
  12008. height: math.unit(8, "feet"),
  12009. default: true
  12010. },
  12011. {
  12012. name: "Playful Loom",
  12013. height: math.unit(80, "feet")
  12014. },
  12015. {
  12016. name: "City Leaner",
  12017. height: math.unit(230, "feet")
  12018. },
  12019. {
  12020. name: "Megamacro",
  12021. height: math.unit(2500, "feet")
  12022. },
  12023. {
  12024. name: "Gigamacro",
  12025. height: math.unit(26400, "feet")
  12026. },
  12027. {
  12028. name: "Tectonic Shifter",
  12029. height: math.unit(1.7, "megameters")
  12030. },
  12031. {
  12032. name: "Planet Carer",
  12033. height: math.unit(21, "megameters")
  12034. },
  12035. {
  12036. name: "God",
  12037. height: math.unit(11157.22, "parsecs")
  12038. },
  12039. ]
  12040. ))
  12041. characterMakers.push(() => makeCharacter(
  12042. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12043. {
  12044. front: {
  12045. height: math.unit(6, "feet"),
  12046. weight: math.unit(120, "lb"),
  12047. name: "Front",
  12048. image: {
  12049. source: "./media/characters/neo/front.svg"
  12050. }
  12051. },
  12052. },
  12053. [
  12054. {
  12055. name: "Micro",
  12056. height: math.unit(2, "inches"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Human Size",
  12061. height: math.unit(5 + 8 / 12, "feet")
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12067. {
  12068. front: {
  12069. height: math.unit(13 + 10 / 12, "feet"),
  12070. weight: math.unit(5320, "lb"),
  12071. name: "Front",
  12072. image: {
  12073. source: "./media/characters/chauncey-chantz/front.svg",
  12074. extra: 1587 / 1435,
  12075. bottom: 0.02
  12076. }
  12077. },
  12078. },
  12079. [
  12080. {
  12081. name: "Normal",
  12082. height: math.unit(13 + 10 / 12, "feet"),
  12083. default: true
  12084. },
  12085. {
  12086. name: "Macro",
  12087. height: math.unit(45, "feet")
  12088. },
  12089. {
  12090. name: "Megamacro",
  12091. height: math.unit(250, "miles")
  12092. },
  12093. {
  12094. name: "Planetary",
  12095. height: math.unit(10000, "miles")
  12096. },
  12097. {
  12098. name: "Galactic",
  12099. height: math.unit(40000, "parsecs")
  12100. },
  12101. {
  12102. name: "Universal",
  12103. height: math.unit(1, "yottameter")
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12109. {
  12110. front: {
  12111. height: math.unit(6, "feet"),
  12112. weight: math.unit(150, "lb"),
  12113. name: "Front",
  12114. image: {
  12115. source: "./media/characters/epifox/front.svg",
  12116. extra: 1,
  12117. bottom: 0.075
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Micro",
  12124. height: math.unit(6, "inches")
  12125. },
  12126. {
  12127. name: "Normal",
  12128. height: math.unit(12, "feet"),
  12129. default: true
  12130. },
  12131. {
  12132. name: "Macro",
  12133. height: math.unit(3810, "feet")
  12134. },
  12135. {
  12136. name: "Megamacro",
  12137. height: math.unit(500, "miles")
  12138. },
  12139. ]
  12140. ))
  12141. characterMakers.push(() => makeCharacter(
  12142. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12143. {
  12144. front: {
  12145. height: math.unit(1.8796, "m"),
  12146. weight: math.unit(230, "lb"),
  12147. name: "Front",
  12148. image: {
  12149. source: "./media/characters/colin-t/front.svg",
  12150. extra: 1272 / 1193,
  12151. bottom: 0.07
  12152. }
  12153. },
  12154. },
  12155. [
  12156. {
  12157. name: "Micro",
  12158. height: math.unit(0.571, "meters")
  12159. },
  12160. {
  12161. name: "Normal",
  12162. height: math.unit(1.8796, "meters"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Tall",
  12167. height: math.unit(4, "meters")
  12168. },
  12169. {
  12170. name: "Macro",
  12171. height: math.unit(67.241, "meters")
  12172. },
  12173. {
  12174. name: "Megamacro",
  12175. height: math.unit(371.856, "meters")
  12176. },
  12177. {
  12178. name: "Planetary",
  12179. height: math.unit(12631.5689, "km")
  12180. },
  12181. ]
  12182. ))
  12183. characterMakers.push(() => makeCharacter(
  12184. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12185. {
  12186. front: {
  12187. height: math.unit(1.85, "meters"),
  12188. weight: math.unit(80, "kg"),
  12189. name: "Front",
  12190. image: {
  12191. source: "./media/characters/matvei/front.svg",
  12192. extra: 614 / 594,
  12193. bottom: 0.01
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Normal",
  12200. height: math.unit(1.85, "meters"),
  12201. default: true
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12207. {
  12208. front: {
  12209. height: math.unit(5 + 9 / 12, "feet"),
  12210. weight: math.unit(70, "lb"),
  12211. name: "Front",
  12212. image: {
  12213. source: "./media/characters/quincy/front.svg",
  12214. extra: 3041 / 2751
  12215. }
  12216. },
  12217. back: {
  12218. height: math.unit(5 + 9 / 12, "feet"),
  12219. weight: math.unit(70, "lb"),
  12220. name: "Back",
  12221. image: {
  12222. source: "./media/characters/quincy/back.svg",
  12223. extra: 3041 / 2751
  12224. }
  12225. },
  12226. flying: {
  12227. height: math.unit(5 + 4 / 12, "feet"),
  12228. weight: math.unit(70, "lb"),
  12229. name: "Flying",
  12230. image: {
  12231. source: "./media/characters/quincy/flying.svg",
  12232. extra: 1044 / 930
  12233. }
  12234. },
  12235. },
  12236. [
  12237. {
  12238. name: "Micro",
  12239. height: math.unit(3, "cm")
  12240. },
  12241. {
  12242. name: "Normal",
  12243. height: math.unit(5 + 9 / 12, "feet")
  12244. },
  12245. {
  12246. name: "Macro",
  12247. height: math.unit(200, "meters"),
  12248. default: true
  12249. },
  12250. {
  12251. name: "Megamacro",
  12252. height: math.unit(1000, "meters")
  12253. },
  12254. ]
  12255. ))
  12256. characterMakers.push(() => makeCharacter(
  12257. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12258. {
  12259. front: {
  12260. height: math.unit(3 + 11/12, "feet"),
  12261. weight: math.unit(50, "lb"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/vanrel/front.svg",
  12265. extra: 1104/949,
  12266. bottom: 52/1156
  12267. }
  12268. },
  12269. back: {
  12270. height: math.unit(3 + 11/12, "feet"),
  12271. weight: math.unit(50, "lb"),
  12272. name: "Back",
  12273. image: {
  12274. source: "./media/characters/vanrel/back.svg",
  12275. extra: 1119/976,
  12276. bottom: 37/1156
  12277. }
  12278. },
  12279. tome: {
  12280. height: math.unit(1.35, "feet"),
  12281. weight: math.unit(10, "lb"),
  12282. name: "Vanrel's Tome",
  12283. rename: true,
  12284. image: {
  12285. source: "./media/characters/vanrel/tome.svg"
  12286. }
  12287. },
  12288. beans: {
  12289. height: math.unit(0.89, "feet"),
  12290. name: "Beans",
  12291. image: {
  12292. source: "./media/characters/vanrel/beans.svg"
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Normal",
  12299. height: math.unit(3 + 11/12, "feet"),
  12300. default: true
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12306. {
  12307. front: {
  12308. height: math.unit(7 + 5 / 12, "feet"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/kuiper-vanrel/front.svg",
  12312. extra: 1219/1169,
  12313. bottom: 69/1288
  12314. }
  12315. },
  12316. back: {
  12317. height: math.unit(7 + 5 / 12, "feet"),
  12318. name: "Back",
  12319. image: {
  12320. source: "./media/characters/kuiper-vanrel/back.svg",
  12321. extra: 1236/1193,
  12322. bottom: 27/1263
  12323. }
  12324. },
  12325. foot: {
  12326. height: math.unit(0.55, "meters"),
  12327. name: "Foot",
  12328. image: {
  12329. source: "./media/characters/kuiper-vanrel/foot.svg",
  12330. }
  12331. },
  12332. battle: {
  12333. height: math.unit(6.824, "feet"),
  12334. name: "Battle",
  12335. image: {
  12336. source: "./media/characters/kuiper-vanrel/battle.svg",
  12337. extra: 1466 / 1327,
  12338. bottom: 29 / 1492.5
  12339. }
  12340. },
  12341. meerkui: {
  12342. height: math.unit(18, "inches"),
  12343. name: "Meerkui",
  12344. image: {
  12345. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12346. extra: 1354/1289,
  12347. bottom: 69/1423
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Normal",
  12354. height: math.unit(7 + 5 / 12, "feet"),
  12355. default: true
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12361. {
  12362. front: {
  12363. height: math.unit(8 + 5 / 12, "feet"),
  12364. name: "Front",
  12365. image: {
  12366. source: "./media/characters/keset-vanrel/front.svg",
  12367. extra: 1231/1148,
  12368. bottom: 82/1313
  12369. }
  12370. },
  12371. back: {
  12372. height: math.unit(8 + 5 / 12, "feet"),
  12373. name: "Back",
  12374. image: {
  12375. source: "./media/characters/keset-vanrel/back.svg",
  12376. extra: 1240/1174,
  12377. bottom: 33/1273
  12378. }
  12379. },
  12380. hand: {
  12381. height: math.unit(0.6, "meters"),
  12382. name: "Hand",
  12383. image: {
  12384. source: "./media/characters/keset-vanrel/hand.svg"
  12385. }
  12386. },
  12387. foot: {
  12388. height: math.unit(0.94978, "meters"),
  12389. name: "Foot",
  12390. image: {
  12391. source: "./media/characters/keset-vanrel/foot.svg"
  12392. }
  12393. },
  12394. battle: {
  12395. height: math.unit(7.408, "feet"),
  12396. name: "Battle",
  12397. image: {
  12398. source: "./media/characters/keset-vanrel/battle.svg",
  12399. extra: 1890 / 1386,
  12400. bottom: 73.28 / 1970
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(8 + 5 / 12, "feet"),
  12408. default: true
  12409. },
  12410. ]
  12411. ))
  12412. characterMakers.push(() => makeCharacter(
  12413. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12414. {
  12415. front: {
  12416. height: math.unit(6, "feet"),
  12417. weight: math.unit(150, "lb"),
  12418. name: "Front",
  12419. image: {
  12420. source: "./media/characters/neos/front.svg",
  12421. extra: 1696 / 992,
  12422. bottom: 0.14
  12423. }
  12424. },
  12425. },
  12426. [
  12427. {
  12428. name: "Normal",
  12429. height: math.unit(54, "cm"),
  12430. default: true
  12431. },
  12432. {
  12433. name: "Macro",
  12434. height: math.unit(100, "m")
  12435. },
  12436. {
  12437. name: "Megamacro",
  12438. height: math.unit(10, "km")
  12439. },
  12440. {
  12441. name: "Megamacro+",
  12442. height: math.unit(100, "km")
  12443. },
  12444. {
  12445. name: "Gigamacro",
  12446. height: math.unit(100, "Mm")
  12447. },
  12448. {
  12449. name: "Teramacro",
  12450. height: math.unit(100, "Gm")
  12451. },
  12452. {
  12453. name: "Examacro",
  12454. height: math.unit(100, "Em")
  12455. },
  12456. {
  12457. name: "Godly",
  12458. height: math.unit(10000, "Ym")
  12459. },
  12460. {
  12461. name: "Beyond Godly",
  12462. height: math.unit(25, "multiverses")
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12468. {
  12469. feminine: {
  12470. height: math.unit(5, "feet"),
  12471. weight: math.unit(100, "lb"),
  12472. name: "Feminine",
  12473. image: {
  12474. source: "./media/characters/sammy-mouse/feminine.svg",
  12475. extra: 2526 / 2425,
  12476. bottom: 0.123
  12477. }
  12478. },
  12479. masculine: {
  12480. height: math.unit(5, "feet"),
  12481. weight: math.unit(100, "lb"),
  12482. name: "Masculine",
  12483. image: {
  12484. source: "./media/characters/sammy-mouse/masculine.svg",
  12485. extra: 2526 / 2425,
  12486. bottom: 0.123
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Micro",
  12493. height: math.unit(5, "inches")
  12494. },
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(5, "feet"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Macro",
  12502. height: math.unit(60, "feet")
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12508. {
  12509. front: {
  12510. height: math.unit(4, "feet"),
  12511. weight: math.unit(50, "lb"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/kole/front.svg",
  12515. extra: 1423 / 1303,
  12516. bottom: 0.025
  12517. }
  12518. },
  12519. back: {
  12520. height: math.unit(4, "feet"),
  12521. weight: math.unit(50, "lb"),
  12522. name: "Back",
  12523. image: {
  12524. source: "./media/characters/kole/back.svg",
  12525. extra: 1426 / 1280,
  12526. bottom: 0.02
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(4, "feet"),
  12534. default: true
  12535. },
  12536. ]
  12537. ))
  12538. characterMakers.push(() => makeCharacter(
  12539. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12540. {
  12541. front: {
  12542. height: math.unit(2.5, "feet"),
  12543. weight: math.unit(32, "lb"),
  12544. name: "Front",
  12545. image: {
  12546. source: "./media/characters/rufran/front.svg",
  12547. extra: 1313/885,
  12548. bottom: 94/1407
  12549. }
  12550. },
  12551. side: {
  12552. height: math.unit(2.5, "feet"),
  12553. weight: math.unit(32, "lb"),
  12554. name: "Side",
  12555. image: {
  12556. source: "./media/characters/rufran/side.svg",
  12557. extra: 1109/852,
  12558. bottom: 118/1227
  12559. }
  12560. },
  12561. back: {
  12562. height: math.unit(2.5, "feet"),
  12563. weight: math.unit(32, "lb"),
  12564. name: "Back",
  12565. image: {
  12566. source: "./media/characters/rufran/back.svg",
  12567. extra: 1280/878,
  12568. bottom: 131/1411
  12569. }
  12570. },
  12571. mouth: {
  12572. height: math.unit(1.13, "feet"),
  12573. name: "Mouth",
  12574. image: {
  12575. source: "./media/characters/rufran/mouth.svg"
  12576. }
  12577. },
  12578. foot: {
  12579. height: math.unit(1.33, "feet"),
  12580. name: "Foot",
  12581. image: {
  12582. source: "./media/characters/rufran/foot.svg"
  12583. }
  12584. },
  12585. koboldFront: {
  12586. height: math.unit(2 + 6 / 12, "feet"),
  12587. weight: math.unit(20, "lb"),
  12588. name: "Front (Kobold)",
  12589. image: {
  12590. source: "./media/characters/rufran/kobold-front.svg",
  12591. extra: 2041 / 1839,
  12592. bottom: 0.055
  12593. }
  12594. },
  12595. koboldBack: {
  12596. height: math.unit(2 + 6 / 12, "feet"),
  12597. weight: math.unit(20, "lb"),
  12598. name: "Back (Kobold)",
  12599. image: {
  12600. source: "./media/characters/rufran/kobold-back.svg",
  12601. extra: 2054 / 1839,
  12602. bottom: 0.01
  12603. }
  12604. },
  12605. koboldHand: {
  12606. height: math.unit(0.2166, "meters"),
  12607. name: "Hand (Kobold)",
  12608. image: {
  12609. source: "./media/characters/rufran/kobold-hand.svg"
  12610. }
  12611. },
  12612. koboldFoot: {
  12613. height: math.unit(0.185, "meters"),
  12614. name: "Foot (Kobold)",
  12615. image: {
  12616. source: "./media/characters/rufran/kobold-foot.svg"
  12617. }
  12618. },
  12619. },
  12620. [
  12621. {
  12622. name: "Micro",
  12623. height: math.unit(1, "inch")
  12624. },
  12625. {
  12626. name: "Normal",
  12627. height: math.unit(2 + 6 / 12, "feet"),
  12628. default: true
  12629. },
  12630. {
  12631. name: "Big",
  12632. height: math.unit(60, "feet")
  12633. },
  12634. {
  12635. name: "Macro",
  12636. height: math.unit(325, "feet")
  12637. },
  12638. ]
  12639. ))
  12640. characterMakers.push(() => makeCharacter(
  12641. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12642. {
  12643. front: {
  12644. height: math.unit(0.3, "meters"),
  12645. weight: math.unit(3.5, "kg"),
  12646. name: "Front",
  12647. image: {
  12648. source: "./media/characters/chip/front.svg",
  12649. extra: 748 / 674
  12650. }
  12651. },
  12652. },
  12653. [
  12654. {
  12655. name: "Micro",
  12656. height: math.unit(1, "inch"),
  12657. default: true
  12658. },
  12659. ]
  12660. ))
  12661. characterMakers.push(() => makeCharacter(
  12662. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12663. {
  12664. side: {
  12665. height: math.unit(2.3, "meters"),
  12666. weight: math.unit(3500, "lb"),
  12667. name: "Side",
  12668. image: {
  12669. source: "./media/characters/torvid/side.svg",
  12670. extra: 1972 / 722,
  12671. bottom: 0.035
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(2.3, "meters"),
  12679. default: true
  12680. },
  12681. ]
  12682. ))
  12683. characterMakers.push(() => makeCharacter(
  12684. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12685. {
  12686. front: {
  12687. height: math.unit(2, "meters"),
  12688. weight: math.unit(150.5, "kg"),
  12689. name: "Front",
  12690. image: {
  12691. source: "./media/characters/susan/front.svg",
  12692. extra: 693 / 635,
  12693. bottom: 0.05
  12694. }
  12695. },
  12696. },
  12697. [
  12698. {
  12699. name: "Megamacro",
  12700. height: math.unit(505, "miles"),
  12701. default: true
  12702. },
  12703. ]
  12704. ))
  12705. characterMakers.push(() => makeCharacter(
  12706. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12707. {
  12708. front: {
  12709. height: math.unit(6, "feet"),
  12710. weight: math.unit(150, "lb"),
  12711. name: "Front",
  12712. image: {
  12713. source: "./media/characters/raindrops/front.svg",
  12714. extra: 2655 / 2461,
  12715. bottom: 49 / 2705
  12716. }
  12717. },
  12718. back: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(150, "lb"),
  12721. name: "Back",
  12722. image: {
  12723. source: "./media/characters/raindrops/back.svg",
  12724. extra: 2574 / 2400,
  12725. bottom: 65 / 2634
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Micro",
  12732. height: math.unit(6, "inches")
  12733. },
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(6 + 2 / 12, "feet")
  12737. },
  12738. {
  12739. name: "Macro",
  12740. height: math.unit(131, "feet"),
  12741. default: true
  12742. },
  12743. {
  12744. name: "Megamacro",
  12745. height: math.unit(15, "miles")
  12746. },
  12747. {
  12748. name: "Gigamacro",
  12749. height: math.unit(4000, "miles")
  12750. },
  12751. {
  12752. name: "Teramacro",
  12753. height: math.unit(315000, "miles")
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12759. {
  12760. front: {
  12761. height: math.unit(2.794, "meters"),
  12762. weight: math.unit(325, "kg"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/tezwa/front.svg",
  12766. extra: 2083 / 1906,
  12767. bottom: 0.031
  12768. }
  12769. },
  12770. foot: {
  12771. height: math.unit(0.687, "meters"),
  12772. name: "Foot",
  12773. image: {
  12774. source: "./media/characters/tezwa/foot.svg"
  12775. }
  12776. },
  12777. },
  12778. [
  12779. {
  12780. name: "Normal",
  12781. height: math.unit(9 + 2 / 12, "feet"),
  12782. default: true
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12788. {
  12789. front: {
  12790. height: math.unit(58, "feet"),
  12791. weight: math.unit(89000, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/typhus/front.svg",
  12795. extra: 816 / 800,
  12796. bottom: 0.065
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Macro",
  12803. height: math.unit(58, "feet"),
  12804. default: true
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(12, "feet"),
  12813. weight: math.unit(6, "tonnes"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/lyra-von-wulf/front.svg",
  12817. extra: 1,
  12818. bottom: 0.10
  12819. }
  12820. },
  12821. frontMecha: {
  12822. height: math.unit(12, "feet"),
  12823. weight: math.unit(12, "tonnes"),
  12824. name: "Front (Mecha)",
  12825. image: {
  12826. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12827. extra: 1,
  12828. bottom: 0.042
  12829. }
  12830. },
  12831. maw: {
  12832. height: math.unit(2.2, "feet"),
  12833. name: "Maw",
  12834. image: {
  12835. source: "./media/characters/lyra-von-wulf/maw.svg"
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(12, "feet"),
  12843. default: true
  12844. },
  12845. {
  12846. name: "Classic",
  12847. height: math.unit(50, "feet")
  12848. },
  12849. {
  12850. name: "Macro",
  12851. height: math.unit(500, "feet")
  12852. },
  12853. {
  12854. name: "Megamacro",
  12855. height: math.unit(1, "mile")
  12856. },
  12857. {
  12858. name: "Gigamacro",
  12859. height: math.unit(400, "miles")
  12860. },
  12861. {
  12862. name: "Teramacro",
  12863. height: math.unit(22000, "miles")
  12864. },
  12865. {
  12866. name: "Solarmacro",
  12867. height: math.unit(8600000, "miles")
  12868. },
  12869. {
  12870. name: "Galactic",
  12871. height: math.unit(1057000, "lightyears")
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(6 + 10 / 12, "feet"),
  12880. weight: math.unit(150, "lb"),
  12881. name: "Front",
  12882. image: {
  12883. source: "./media/characters/dixon/front.svg",
  12884. extra: 3361 / 3209,
  12885. bottom: 0.01
  12886. }
  12887. },
  12888. },
  12889. [
  12890. {
  12891. name: "Normal",
  12892. height: math.unit(6 + 10 / 12, "feet"),
  12893. default: true
  12894. },
  12895. {
  12896. name: "Big",
  12897. height: math.unit(12, "meters")
  12898. },
  12899. {
  12900. name: "Macro",
  12901. height: math.unit(500, "meters")
  12902. },
  12903. {
  12904. name: "Megamacro",
  12905. height: math.unit(2, "km")
  12906. },
  12907. ]
  12908. ))
  12909. characterMakers.push(() => makeCharacter(
  12910. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12911. {
  12912. front: {
  12913. height: math.unit(185, "cm"),
  12914. weight: math.unit(68, "kg"),
  12915. name: "Front",
  12916. image: {
  12917. source: "./media/characters/kauko/front.svg",
  12918. extra: 1455 / 1421,
  12919. bottom: 0.03
  12920. }
  12921. },
  12922. back: {
  12923. height: math.unit(185, "cm"),
  12924. weight: math.unit(68, "kg"),
  12925. name: "Back",
  12926. image: {
  12927. source: "./media/characters/kauko/back.svg",
  12928. extra: 1455 / 1421,
  12929. bottom: 0.004
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Normal",
  12936. height: math.unit(185, "cm"),
  12937. default: true
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12943. {
  12944. front: {
  12945. height: math.unit(6, "feet"),
  12946. weight: math.unit(150, "kg"),
  12947. name: "Front",
  12948. image: {
  12949. source: "./media/characters/varg/front.svg",
  12950. extra: 1108 / 1018,
  12951. bottom: 0.0375
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(5, "meters")
  12959. },
  12960. {
  12961. name: "Macro",
  12962. height: math.unit(200, "meters")
  12963. },
  12964. {
  12965. name: "Megamacro",
  12966. height: math.unit(20, "kilometers")
  12967. },
  12968. {
  12969. name: "True Size",
  12970. height: math.unit(211, "km"),
  12971. default: true
  12972. },
  12973. {
  12974. name: "Gigamacro",
  12975. height: math.unit(1000, "km")
  12976. },
  12977. {
  12978. name: "Gigamacro+",
  12979. height: math.unit(8000, "km")
  12980. },
  12981. {
  12982. name: "Teramacro",
  12983. height: math.unit(1000000, "km")
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12989. {
  12990. front: {
  12991. height: math.unit(7 + 7 / 12, "feet"),
  12992. weight: math.unit(267, "lb"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/dayza/front.svg",
  12996. extra: 1262 / 1200,
  12997. bottom: 0.035
  12998. }
  12999. },
  13000. side: {
  13001. height: math.unit(7 + 7 / 12, "feet"),
  13002. weight: math.unit(267, "lb"),
  13003. name: "Side",
  13004. image: {
  13005. source: "./media/characters/dayza/side.svg",
  13006. extra: 1295 / 1245,
  13007. bottom: 0.05
  13008. }
  13009. },
  13010. back: {
  13011. height: math.unit(7 + 7 / 12, "feet"),
  13012. weight: math.unit(267, "lb"),
  13013. name: "Back",
  13014. image: {
  13015. source: "./media/characters/dayza/back.svg",
  13016. extra: 1241 / 1170
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Normal",
  13023. height: math.unit(7 + 7 / 12, "feet"),
  13024. default: true
  13025. },
  13026. {
  13027. name: "Macro",
  13028. height: math.unit(155, "feet")
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(6 + 5 / 12, "feet"),
  13037. weight: math.unit(160, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/xanthos/front.svg",
  13041. extra: 1,
  13042. bottom: 0.04
  13043. }
  13044. },
  13045. back: {
  13046. height: math.unit(6 + 5 / 12, "feet"),
  13047. weight: math.unit(160, "lb"),
  13048. name: "Back",
  13049. image: {
  13050. source: "./media/characters/xanthos/back.svg",
  13051. extra: 1,
  13052. bottom: 0.03
  13053. }
  13054. },
  13055. hand: {
  13056. height: math.unit(0.928, "feet"),
  13057. name: "Hand",
  13058. image: {
  13059. source: "./media/characters/xanthos/hand.svg"
  13060. }
  13061. },
  13062. foot: {
  13063. height: math.unit(1.286, "feet"),
  13064. name: "Foot",
  13065. image: {
  13066. source: "./media/characters/xanthos/foot.svg"
  13067. }
  13068. },
  13069. },
  13070. [
  13071. {
  13072. name: "Normal",
  13073. height: math.unit(6 + 5 / 12, "feet"),
  13074. default: true
  13075. },
  13076. {
  13077. name: "Normal+",
  13078. height: math.unit(6, "meters")
  13079. },
  13080. {
  13081. name: "Macro",
  13082. height: math.unit(40, "feet")
  13083. },
  13084. {
  13085. name: "Macro+",
  13086. height: math.unit(200, "meters")
  13087. },
  13088. {
  13089. name: "Megamacro",
  13090. height: math.unit(20, "km")
  13091. },
  13092. {
  13093. name: "Megamacro+",
  13094. height: math.unit(100, "km")
  13095. },
  13096. {
  13097. name: "Gigamacro",
  13098. height: math.unit(200, "megameters")
  13099. },
  13100. {
  13101. name: "Gigamacro+",
  13102. height: math.unit(1.5, "gigameters")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(6 + 3 / 12, "feet"),
  13111. weight: math.unit(215, "lb"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/grynn/front.svg",
  13115. extra: 4627 / 4209,
  13116. bottom: 0.047
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Micro",
  13123. height: math.unit(6, "inches")
  13124. },
  13125. {
  13126. name: "Normal",
  13127. height: math.unit(6 + 3 / 12, "feet"),
  13128. default: true
  13129. },
  13130. {
  13131. name: "Big",
  13132. height: math.unit(104, "feet")
  13133. },
  13134. {
  13135. name: "Macro",
  13136. height: math.unit(944, "feet")
  13137. },
  13138. {
  13139. name: "Macro+",
  13140. height: math.unit(9480, "feet")
  13141. },
  13142. {
  13143. name: "Megamacro",
  13144. height: math.unit(78752, "feet")
  13145. },
  13146. {
  13147. name: "Megamacro+",
  13148. height: math.unit(630128, "feet")
  13149. },
  13150. {
  13151. name: "Megamacro++",
  13152. height: math.unit(3150695, "feet")
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13158. {
  13159. front: {
  13160. height: math.unit(7 + 5 / 12, "feet"),
  13161. weight: math.unit(450, "lb"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/mocha-aura/front.svg",
  13165. extra: 1907 / 1817,
  13166. bottom: 0.04
  13167. }
  13168. },
  13169. back: {
  13170. height: math.unit(7 + 5 / 12, "feet"),
  13171. weight: math.unit(450, "lb"),
  13172. name: "Back",
  13173. image: {
  13174. source: "./media/characters/mocha-aura/back.svg",
  13175. extra: 1900 / 1825,
  13176. bottom: 0.045
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Nano",
  13183. height: math.unit(1, "nm")
  13184. },
  13185. {
  13186. name: "Megamicro",
  13187. height: math.unit(1, "mm")
  13188. },
  13189. {
  13190. name: "Micro",
  13191. height: math.unit(3, "inches")
  13192. },
  13193. {
  13194. name: "Normal",
  13195. height: math.unit(7 + 5 / 12, "feet"),
  13196. default: true
  13197. },
  13198. {
  13199. name: "Macro",
  13200. height: math.unit(30, "feet")
  13201. },
  13202. {
  13203. name: "Megamacro",
  13204. height: math.unit(3500, "feet")
  13205. },
  13206. {
  13207. name: "Teramacro",
  13208. height: math.unit(500000, "miles")
  13209. },
  13210. {
  13211. name: "Petamacro",
  13212. height: math.unit(50000000000000000, "parsecs")
  13213. },
  13214. ]
  13215. ))
  13216. characterMakers.push(() => makeCharacter(
  13217. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13218. {
  13219. front: {
  13220. height: math.unit(6, "feet"),
  13221. weight: math.unit(150, "lb"),
  13222. name: "Front",
  13223. image: {
  13224. source: "./media/characters/ilisha-devya/front.svg",
  13225. extra: 1053/1049,
  13226. bottom: 270/1323
  13227. }
  13228. },
  13229. back: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(150, "lb"),
  13232. name: "Back",
  13233. image: {
  13234. source: "./media/characters/ilisha-devya/back.svg",
  13235. extra: 1131/1128,
  13236. bottom: 39/1170
  13237. }
  13238. },
  13239. },
  13240. [
  13241. {
  13242. name: "Macro",
  13243. height: math.unit(500, "feet"),
  13244. default: true
  13245. },
  13246. {
  13247. name: "Megamacro",
  13248. height: math.unit(10, "miles")
  13249. },
  13250. {
  13251. name: "Gigamacro",
  13252. height: math.unit(100000, "miles")
  13253. },
  13254. {
  13255. name: "Examacro",
  13256. height: math.unit(1e9, "lightyears")
  13257. },
  13258. {
  13259. name: "Omniversal",
  13260. height: math.unit(1e33, "lightyears")
  13261. },
  13262. {
  13263. name: "Beyond Infinite",
  13264. height: math.unit(1e100, "lightyears")
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13270. {
  13271. Side: {
  13272. height: math.unit(6, "feet"),
  13273. weight: math.unit(150, "lb"),
  13274. name: "Side",
  13275. image: {
  13276. source: "./media/characters/mira/side.svg",
  13277. extra: 900 / 799,
  13278. bottom: 0.02
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Human Size",
  13285. height: math.unit(6, "feet")
  13286. },
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(100, "feet"),
  13290. default: true
  13291. },
  13292. {
  13293. name: "Megamacro",
  13294. height: math.unit(10, "miles")
  13295. },
  13296. {
  13297. name: "Gigamacro",
  13298. height: math.unit(25000, "miles")
  13299. },
  13300. {
  13301. name: "Teramacro",
  13302. height: math.unit(300, "AU")
  13303. },
  13304. {
  13305. name: "Full Size",
  13306. height: math.unit(4.5e10, "lightyears")
  13307. },
  13308. ]
  13309. ))
  13310. characterMakers.push(() => makeCharacter(
  13311. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13312. {
  13313. front: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(150, "lb"),
  13316. name: "Front",
  13317. image: {
  13318. source: "./media/characters/holly/front.svg",
  13319. extra: 639 / 606
  13320. }
  13321. },
  13322. back: {
  13323. height: math.unit(6, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Back",
  13326. image: {
  13327. source: "./media/characters/holly/back.svg",
  13328. extra: 623 / 598
  13329. }
  13330. },
  13331. frontWorking: {
  13332. height: math.unit(6, "feet"),
  13333. weight: math.unit(150, "lb"),
  13334. name: "Front (Working)",
  13335. image: {
  13336. source: "./media/characters/holly/front-working.svg",
  13337. extra: 607 / 577,
  13338. bottom: 0.048
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Normal",
  13345. height: math.unit(12 + 3 / 12, "feet"),
  13346. default: true
  13347. },
  13348. ]
  13349. ))
  13350. characterMakers.push(() => makeCharacter(
  13351. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13352. {
  13353. front: {
  13354. height: math.unit(6, "feet"),
  13355. weight: math.unit(150, "lb"),
  13356. name: "Front",
  13357. image: {
  13358. source: "./media/characters/porter/front.svg",
  13359. extra: 1,
  13360. bottom: 0.01
  13361. }
  13362. },
  13363. frontRobes: {
  13364. height: math.unit(6, "feet"),
  13365. weight: math.unit(150, "lb"),
  13366. name: "Front (Robes)",
  13367. image: {
  13368. source: "./media/characters/porter/front-robes.svg",
  13369. extra: 1.01,
  13370. bottom: 0.01
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Normal",
  13377. height: math.unit(11 + 9 / 12, "feet"),
  13378. default: true
  13379. },
  13380. ]
  13381. ))
  13382. characterMakers.push(() => makeCharacter(
  13383. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13384. {
  13385. legendary: {
  13386. height: math.unit(6, "feet"),
  13387. weight: math.unit(150, "lb"),
  13388. name: "Legendary",
  13389. image: {
  13390. source: "./media/characters/lucy/legendary.svg",
  13391. extra: 1355 / 1100,
  13392. bottom: 0.045
  13393. }
  13394. },
  13395. },
  13396. [
  13397. {
  13398. name: "Legendary",
  13399. height: math.unit(86882 * 2, "miles"),
  13400. default: true
  13401. },
  13402. ]
  13403. ))
  13404. characterMakers.push(() => makeCharacter(
  13405. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13406. {
  13407. front: {
  13408. height: math.unit(6, "feet"),
  13409. weight: math.unit(150, "lb"),
  13410. name: "Front",
  13411. image: {
  13412. source: "./media/characters/drusilla/front.svg",
  13413. extra: 678 / 635,
  13414. bottom: 0.03
  13415. }
  13416. },
  13417. back: {
  13418. height: math.unit(6, "feet"),
  13419. weight: math.unit(150, "lb"),
  13420. name: "Back",
  13421. image: {
  13422. source: "./media/characters/drusilla/back.svg",
  13423. extra: 678 / 635,
  13424. bottom: 0.005
  13425. }
  13426. },
  13427. },
  13428. [
  13429. {
  13430. name: "Macro",
  13431. height: math.unit(100, "feet")
  13432. },
  13433. {
  13434. name: "Canon Height",
  13435. height: math.unit(2000, "feet"),
  13436. default: true
  13437. },
  13438. ]
  13439. ))
  13440. characterMakers.push(() => makeCharacter(
  13441. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13442. {
  13443. front: {
  13444. height: math.unit(6, "feet"),
  13445. weight: math.unit(180, "lb"),
  13446. name: "Front",
  13447. image: {
  13448. source: "./media/characters/renard-thatch/front.svg",
  13449. extra: 2411 / 2275,
  13450. bottom: 0.01
  13451. }
  13452. },
  13453. frontPosing: {
  13454. height: math.unit(6, "feet"),
  13455. weight: math.unit(180, "lb"),
  13456. name: "Front (Posing)",
  13457. image: {
  13458. source: "./media/characters/renard-thatch/front-posing.svg",
  13459. extra: 2381 / 2261,
  13460. bottom: 0.01
  13461. }
  13462. },
  13463. back: {
  13464. height: math.unit(6, "feet"),
  13465. weight: math.unit(180, "lb"),
  13466. name: "Back",
  13467. image: {
  13468. source: "./media/characters/renard-thatch/back.svg",
  13469. extra: 2428 / 2288
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Micro",
  13476. height: math.unit(3, "inches")
  13477. },
  13478. {
  13479. name: "Default",
  13480. height: math.unit(6, "feet"),
  13481. default: true
  13482. },
  13483. {
  13484. name: "Macro",
  13485. height: math.unit(75, "feet")
  13486. },
  13487. ]
  13488. ))
  13489. characterMakers.push(() => makeCharacter(
  13490. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13491. {
  13492. front: {
  13493. height: math.unit(1450, "feet"),
  13494. weight: math.unit(1.21e6, "tons"),
  13495. name: "Front",
  13496. image: {
  13497. source: "./media/characters/sekvra/front.svg",
  13498. extra: 1193/1190,
  13499. bottom: 78/1271
  13500. }
  13501. },
  13502. side: {
  13503. height: math.unit(1450, "feet"),
  13504. weight: math.unit(1.21e6, "tons"),
  13505. name: "Side",
  13506. image: {
  13507. source: "./media/characters/sekvra/side.svg",
  13508. extra: 1193/1190,
  13509. bottom: 52/1245
  13510. }
  13511. },
  13512. back: {
  13513. height: math.unit(1450, "feet"),
  13514. weight: math.unit(1.21e6, "tons"),
  13515. name: "Back",
  13516. image: {
  13517. source: "./media/characters/sekvra/back.svg",
  13518. extra: 1219/1216,
  13519. bottom: 21/1240
  13520. }
  13521. },
  13522. frontClothed: {
  13523. height: math.unit(1450, "feet"),
  13524. weight: math.unit(1.21e6, "tons"),
  13525. name: "Front (Clothed)",
  13526. image: {
  13527. source: "./media/characters/sekvra/front-clothed.svg",
  13528. extra: 1192/1189,
  13529. bottom: 79/1271
  13530. }
  13531. },
  13532. },
  13533. [
  13534. {
  13535. name: "Macro",
  13536. height: math.unit(1450, "feet"),
  13537. default: true
  13538. },
  13539. {
  13540. name: "Megamacro",
  13541. height: math.unit(15000, "feet")
  13542. },
  13543. ]
  13544. ))
  13545. characterMakers.push(() => makeCharacter(
  13546. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13547. {
  13548. front: {
  13549. height: math.unit(6, "feet"),
  13550. weight: math.unit(150, "lb"),
  13551. name: "Front",
  13552. image: {
  13553. source: "./media/characters/carmine/front.svg",
  13554. extra: 1,
  13555. bottom: 0.035
  13556. }
  13557. },
  13558. frontArmor: {
  13559. height: math.unit(6, "feet"),
  13560. weight: math.unit(150, "lb"),
  13561. name: "Front (Armor)",
  13562. image: {
  13563. source: "./media/characters/carmine/front-armor.svg",
  13564. extra: 1,
  13565. bottom: 0.035
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Large",
  13572. height: math.unit(1, "mile")
  13573. },
  13574. {
  13575. name: "Huge",
  13576. height: math.unit(40, "miles"),
  13577. default: true
  13578. },
  13579. {
  13580. name: "Colossal",
  13581. height: math.unit(2500, "miles")
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13587. {
  13588. front: {
  13589. height: math.unit(6, "feet"),
  13590. weight: math.unit(150, "lb"),
  13591. name: "Front",
  13592. image: {
  13593. source: "./media/characters/elyssia/front.svg",
  13594. extra: 2201 / 2035,
  13595. bottom: 0.05
  13596. }
  13597. },
  13598. frontClothed: {
  13599. height: math.unit(6, "feet"),
  13600. weight: math.unit(150, "lb"),
  13601. name: "Front (Clothed)",
  13602. image: {
  13603. source: "./media/characters/elyssia/front-clothed.svg",
  13604. extra: 2201 / 2035,
  13605. bottom: 0.05
  13606. }
  13607. },
  13608. back: {
  13609. height: math.unit(6, "feet"),
  13610. weight: math.unit(150, "lb"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/elyssia/back.svg",
  13614. extra: 2201 / 2035,
  13615. bottom: 0.013
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Smaller",
  13622. height: math.unit(150, "feet")
  13623. },
  13624. {
  13625. name: "Standard",
  13626. height: math.unit(1400, "feet"),
  13627. default: true
  13628. },
  13629. {
  13630. name: "Distracted",
  13631. height: math.unit(15000, "feet")
  13632. },
  13633. ]
  13634. ))
  13635. characterMakers.push(() => makeCharacter(
  13636. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13637. {
  13638. front: {
  13639. height: math.unit(7 + 4/12, "feet"),
  13640. weight: math.unit(690, "lb"),
  13641. name: "Front",
  13642. image: {
  13643. source: "./media/characters/geno-maxwell/front.svg",
  13644. extra: 984/856,
  13645. bottom: 87/1071
  13646. }
  13647. },
  13648. back: {
  13649. height: math.unit(7 + 4/12, "feet"),
  13650. weight: math.unit(690, "lb"),
  13651. name: "Back",
  13652. image: {
  13653. source: "./media/characters/geno-maxwell/back.svg",
  13654. extra: 981/854,
  13655. bottom: 57/1038
  13656. }
  13657. },
  13658. frontCostume: {
  13659. height: math.unit(7 + 4/12, "feet"),
  13660. weight: math.unit(690, "lb"),
  13661. name: "Front (Costume)",
  13662. image: {
  13663. source: "./media/characters/geno-maxwell/front-costume.svg",
  13664. extra: 984/856,
  13665. bottom: 87/1071
  13666. }
  13667. },
  13668. backcostume: {
  13669. height: math.unit(7 + 4/12, "feet"),
  13670. weight: math.unit(690, "lb"),
  13671. name: "Back (Costume)",
  13672. image: {
  13673. source: "./media/characters/geno-maxwell/back-costume.svg",
  13674. extra: 981/854,
  13675. bottom: 57/1038
  13676. }
  13677. },
  13678. },
  13679. [
  13680. {
  13681. name: "Micro",
  13682. height: math.unit(3, "inches")
  13683. },
  13684. {
  13685. name: "Normal",
  13686. height: math.unit(7 + 4 / 12, "feet"),
  13687. default: true
  13688. },
  13689. {
  13690. name: "Macro",
  13691. height: math.unit(220, "feet")
  13692. },
  13693. {
  13694. name: "Megamacro",
  13695. height: math.unit(11, "miles")
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13701. {
  13702. front: {
  13703. height: math.unit(7 + 4/12, "feet"),
  13704. weight: math.unit(750, "lb"),
  13705. name: "Front",
  13706. image: {
  13707. source: "./media/characters/regena-maxwell/front.svg",
  13708. extra: 984/856,
  13709. bottom: 87/1071
  13710. }
  13711. },
  13712. back: {
  13713. height: math.unit(7 + 4/12, "feet"),
  13714. weight: math.unit(750, "lb"),
  13715. name: "Back",
  13716. image: {
  13717. source: "./media/characters/regena-maxwell/back.svg",
  13718. extra: 981/854,
  13719. bottom: 57/1038
  13720. }
  13721. },
  13722. frontCostume: {
  13723. height: math.unit(7 + 4/12, "feet"),
  13724. weight: math.unit(750, "lb"),
  13725. name: "Front (Costume)",
  13726. image: {
  13727. source: "./media/characters/regena-maxwell/front-costume.svg",
  13728. extra: 984/856,
  13729. bottom: 87/1071
  13730. }
  13731. },
  13732. backcostume: {
  13733. height: math.unit(7 + 4/12, "feet"),
  13734. weight: math.unit(750, "lb"),
  13735. name: "Back (Costume)",
  13736. image: {
  13737. source: "./media/characters/regena-maxwell/back-costume.svg",
  13738. extra: 981/854,
  13739. bottom: 57/1038
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(7 + 4 / 12, "feet"),
  13747. default: true
  13748. },
  13749. {
  13750. name: "Macro",
  13751. height: math.unit(220, "feet")
  13752. },
  13753. {
  13754. name: "Megamacro",
  13755. height: math.unit(11, "miles")
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13761. {
  13762. front: {
  13763. height: math.unit(6, "feet"),
  13764. weight: math.unit(150, "lb"),
  13765. name: "Front",
  13766. image: {
  13767. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13768. extra: 860 / 690,
  13769. bottom: 0.03
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Normal",
  13776. height: math.unit(1.7, "meters"),
  13777. default: true
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(6, "feet"),
  13786. weight: math.unit(150, "lb"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/quilly/front.svg",
  13790. extra: 890 / 776
  13791. }
  13792. },
  13793. },
  13794. [
  13795. {
  13796. name: "Gigamacro",
  13797. height: math.unit(404090, "miles"),
  13798. default: true
  13799. },
  13800. ]
  13801. ))
  13802. characterMakers.push(() => makeCharacter(
  13803. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13804. {
  13805. front: {
  13806. height: math.unit(7 + 8 / 12, "feet"),
  13807. weight: math.unit(350, "lb"),
  13808. name: "Front",
  13809. image: {
  13810. source: "./media/characters/tempest/front.svg",
  13811. extra: 1175 / 1086,
  13812. bottom: 0.02
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(7 + 8 / 12, "feet"),
  13820. default: true
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13826. {
  13827. side: {
  13828. height: math.unit(4 + 5 / 12, "feet"),
  13829. weight: math.unit(80, "lb"),
  13830. name: "Side",
  13831. image: {
  13832. source: "./media/characters/rodger/side.svg",
  13833. extra: 1235 / 1118
  13834. }
  13835. },
  13836. },
  13837. [
  13838. {
  13839. name: "Micro",
  13840. height: math.unit(1, "inch")
  13841. },
  13842. {
  13843. name: "Normal",
  13844. height: math.unit(4 + 5 / 12, "feet"),
  13845. default: true
  13846. },
  13847. {
  13848. name: "Macro",
  13849. height: math.unit(120, "feet")
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13855. {
  13856. front: {
  13857. height: math.unit(6, "feet"),
  13858. weight: math.unit(150, "lb"),
  13859. name: "Front",
  13860. image: {
  13861. source: "./media/characters/danyel/front.svg",
  13862. extra: 1185 / 1123,
  13863. bottom: 0.05
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Shrunken",
  13870. height: math.unit(0.5, "mm")
  13871. },
  13872. {
  13873. name: "Micro",
  13874. height: math.unit(1, "mm"),
  13875. default: true
  13876. },
  13877. {
  13878. name: "Upsized",
  13879. height: math.unit(5 + 5 / 12, "feet")
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(5 + 6 / 12, "feet"),
  13888. weight: math.unit(200, "lb"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/vivian-bijoux/front.svg",
  13892. extra: 1217/1209,
  13893. bottom: 76/1293
  13894. }
  13895. },
  13896. back: {
  13897. height: math.unit(5 + 6 / 12, "feet"),
  13898. weight: math.unit(200, "lb"),
  13899. name: "Back",
  13900. image: {
  13901. source: "./media/characters/vivian-bijoux/back.svg",
  13902. extra: 1214/1208,
  13903. bottom: 51/1265
  13904. }
  13905. },
  13906. dressed: {
  13907. height: math.unit(5 + 6 / 12, "feet"),
  13908. weight: math.unit(200, "lb"),
  13909. name: "Dressed",
  13910. image: {
  13911. source: "./media/characters/vivian-bijoux/dressed.svg",
  13912. extra: 1217/1209,
  13913. bottom: 76/1293
  13914. }
  13915. },
  13916. },
  13917. [
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(5 + 6 / 12, "feet"),
  13921. default: true
  13922. },
  13923. {
  13924. name: "Bad Dream",
  13925. height: math.unit(500, "feet")
  13926. },
  13927. {
  13928. name: "Nightmare",
  13929. height: math.unit(500, "miles")
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(6 + 1 / 12, "feet"),
  13938. weight: math.unit(260, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/zeta/front.svg",
  13942. extra: 1968 / 1889,
  13943. bottom: 0.06
  13944. }
  13945. },
  13946. back: {
  13947. height: math.unit(6 + 1 / 12, "feet"),
  13948. weight: math.unit(260, "lb"),
  13949. name: "Back",
  13950. image: {
  13951. source: "./media/characters/zeta/back.svg",
  13952. extra: 1944 / 1858,
  13953. bottom: 0.03
  13954. }
  13955. },
  13956. hand: {
  13957. height: math.unit(1.112, "feet"),
  13958. name: "Hand",
  13959. image: {
  13960. source: "./media/characters/zeta/hand.svg"
  13961. }
  13962. },
  13963. foot: {
  13964. height: math.unit(1.48, "feet"),
  13965. name: "Foot",
  13966. image: {
  13967. source: "./media/characters/zeta/foot.svg"
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Micro",
  13974. height: math.unit(6, "inches")
  13975. },
  13976. {
  13977. name: "Normal",
  13978. height: math.unit(6 + 1 / 12, "feet"),
  13979. default: true
  13980. },
  13981. {
  13982. name: "Macro",
  13983. height: math.unit(20, "feet")
  13984. },
  13985. ]
  13986. ))
  13987. characterMakers.push(() => makeCharacter(
  13988. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13989. {
  13990. front: {
  13991. height: math.unit(6, "feet"),
  13992. weight: math.unit(150, "lb"),
  13993. name: "Front",
  13994. image: {
  13995. source: "./media/characters/jamie-larsen/front.svg",
  13996. extra: 962 / 933,
  13997. bottom: 0.02
  13998. }
  13999. },
  14000. back: {
  14001. height: math.unit(6, "feet"),
  14002. weight: math.unit(150, "lb"),
  14003. name: "Back",
  14004. image: {
  14005. source: "./media/characters/jamie-larsen/back.svg",
  14006. extra: 997 / 946
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Macro",
  14013. height: math.unit(28 + 7 / 12, "feet"),
  14014. default: true
  14015. },
  14016. {
  14017. name: "Macro+",
  14018. height: math.unit(180, "feet")
  14019. },
  14020. {
  14021. name: "Megamacro",
  14022. height: math.unit(10, "miles")
  14023. },
  14024. {
  14025. name: "Gigamacro",
  14026. height: math.unit(200000, "miles")
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14032. {
  14033. front: {
  14034. height: math.unit(6, "feet"),
  14035. weight: math.unit(120, "lb"),
  14036. name: "Front",
  14037. image: {
  14038. source: "./media/characters/vance/front.svg",
  14039. extra: 1980 / 1890,
  14040. bottom: 0.09
  14041. }
  14042. },
  14043. back: {
  14044. height: math.unit(6, "feet"),
  14045. weight: math.unit(120, "lb"),
  14046. name: "Back",
  14047. image: {
  14048. source: "./media/characters/vance/back.svg",
  14049. extra: 2081 / 1994,
  14050. bottom: 0.014
  14051. }
  14052. },
  14053. hand: {
  14054. height: math.unit(0.88, "feet"),
  14055. name: "Hand",
  14056. image: {
  14057. source: "./media/characters/vance/hand.svg"
  14058. }
  14059. },
  14060. foot: {
  14061. height: math.unit(0.64, "feet"),
  14062. name: "Foot",
  14063. image: {
  14064. source: "./media/characters/vance/foot.svg"
  14065. }
  14066. },
  14067. },
  14068. [
  14069. {
  14070. name: "Small",
  14071. height: math.unit(90, "feet"),
  14072. default: true
  14073. },
  14074. {
  14075. name: "Macro",
  14076. height: math.unit(100, "meters")
  14077. },
  14078. {
  14079. name: "Megamacro",
  14080. height: math.unit(15, "miles")
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(6, "feet"),
  14089. weight: math.unit(180, "lb"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/xochitl/front.svg",
  14093. extra: 2297 / 2261,
  14094. bottom: 0.065
  14095. }
  14096. },
  14097. back: {
  14098. height: math.unit(6, "feet"),
  14099. weight: math.unit(180, "lb"),
  14100. name: "Back",
  14101. image: {
  14102. source: "./media/characters/xochitl/back.svg",
  14103. extra: 2386 / 2354,
  14104. bottom: 0.01
  14105. }
  14106. },
  14107. foot: {
  14108. height: math.unit(6 / 5 * 1.15, "feet"),
  14109. weight: math.unit(150, "lb"),
  14110. name: "Foot",
  14111. image: {
  14112. source: "./media/characters/xochitl/foot.svg"
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Macro",
  14119. height: math.unit(80, "feet")
  14120. },
  14121. {
  14122. name: "Macro+",
  14123. height: math.unit(400, "feet"),
  14124. default: true
  14125. },
  14126. {
  14127. name: "Gigamacro",
  14128. height: math.unit(80000, "miles")
  14129. },
  14130. {
  14131. name: "Gigamacro+",
  14132. height: math.unit(400000, "miles")
  14133. },
  14134. {
  14135. name: "Teramacro",
  14136. height: math.unit(300, "AU")
  14137. },
  14138. ]
  14139. ))
  14140. characterMakers.push(() => makeCharacter(
  14141. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14142. {
  14143. front: {
  14144. height: math.unit(6, "feet"),
  14145. weight: math.unit(150, "lb"),
  14146. name: "Front",
  14147. image: {
  14148. source: "./media/characters/vincent/front.svg",
  14149. extra: 1130 / 1080,
  14150. bottom: 0.055
  14151. }
  14152. },
  14153. beak: {
  14154. height: math.unit(6 * 0.1, "feet"),
  14155. name: "Beak",
  14156. image: {
  14157. source: "./media/characters/vincent/beak.svg"
  14158. }
  14159. },
  14160. hand: {
  14161. height: math.unit(6 * 0.85, "feet"),
  14162. weight: math.unit(150, "lb"),
  14163. name: "Hand",
  14164. image: {
  14165. source: "./media/characters/vincent/hand.svg"
  14166. }
  14167. },
  14168. foot: {
  14169. height: math.unit(6 * 0.19, "feet"),
  14170. weight: math.unit(150, "lb"),
  14171. name: "Foot",
  14172. image: {
  14173. source: "./media/characters/vincent/foot.svg"
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Base",
  14180. height: math.unit(6 + 5 / 12, "feet"),
  14181. default: true
  14182. },
  14183. {
  14184. name: "Macro",
  14185. height: math.unit(300, "feet")
  14186. },
  14187. {
  14188. name: "Megamacro",
  14189. height: math.unit(2, "miles")
  14190. },
  14191. {
  14192. name: "Gigamacro",
  14193. height: math.unit(1000, "miles")
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14199. {
  14200. front: {
  14201. height: math.unit(2, "meters"),
  14202. weight: math.unit(500, "kg"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/coatl/front.svg",
  14206. extra: 3948 / 3500,
  14207. bottom: 0.082
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Normal",
  14214. height: math.unit(4, "meters")
  14215. },
  14216. {
  14217. name: "Macro",
  14218. height: math.unit(100, "meters"),
  14219. default: true
  14220. },
  14221. {
  14222. name: "Macro+",
  14223. height: math.unit(300, "meters")
  14224. },
  14225. {
  14226. name: "Megamacro",
  14227. height: math.unit(3, "gigameters")
  14228. },
  14229. {
  14230. name: "Megamacro+",
  14231. height: math.unit(300, "terameters")
  14232. },
  14233. {
  14234. name: "Megamacro++",
  14235. height: math.unit(3, "lightyears")
  14236. },
  14237. ]
  14238. ))
  14239. characterMakers.push(() => makeCharacter(
  14240. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14241. {
  14242. front: {
  14243. height: math.unit(6, "feet"),
  14244. weight: math.unit(50, "kg"),
  14245. name: "front",
  14246. image: {
  14247. source: "./media/characters/shiroryu/front.svg",
  14248. extra: 1990 / 1935
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Mortal Mingling",
  14255. height: math.unit(3, "meters")
  14256. },
  14257. {
  14258. name: "Kaiju-ish",
  14259. height: math.unit(250, "meters")
  14260. },
  14261. {
  14262. name: "Somewhat Godly",
  14263. height: math.unit(400, "km"),
  14264. default: true
  14265. },
  14266. {
  14267. name: "Planetary",
  14268. height: math.unit(300, "megameters")
  14269. },
  14270. {
  14271. name: "Galaxy-dwarfing",
  14272. height: math.unit(450, "kiloparsecs")
  14273. },
  14274. {
  14275. name: "Universe Eater",
  14276. height: math.unit(150, "gigaparsecs")
  14277. },
  14278. {
  14279. name: "Almost Immeasurable",
  14280. height: math.unit(1.3e266, "yottaparsecs")
  14281. },
  14282. ]
  14283. ))
  14284. characterMakers.push(() => makeCharacter(
  14285. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14286. {
  14287. front: {
  14288. height: math.unit(6, "feet"),
  14289. weight: math.unit(150, "lb"),
  14290. name: "Front",
  14291. image: {
  14292. source: "./media/characters/umeko/front.svg",
  14293. extra: 1,
  14294. bottom: 0.019
  14295. }
  14296. },
  14297. frontArmored: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(150, "lb"),
  14300. name: "Front (Armored)",
  14301. image: {
  14302. source: "./media/characters/umeko/front-armored.svg",
  14303. extra: 1,
  14304. bottom: 0.021
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Macro",
  14311. height: math.unit(220, "feet"),
  14312. default: true
  14313. },
  14314. {
  14315. name: "Guardian Dragon",
  14316. height: math.unit(50, "miles")
  14317. },
  14318. {
  14319. name: "Cosmic",
  14320. height: math.unit(800000, "miles")
  14321. },
  14322. ]
  14323. ))
  14324. characterMakers.push(() => makeCharacter(
  14325. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14326. {
  14327. front: {
  14328. height: math.unit(6, "feet"),
  14329. weight: math.unit(150, "lb"),
  14330. name: "Front",
  14331. image: {
  14332. source: "./media/characters/cassidy/front.svg",
  14333. extra: 810/808,
  14334. bottom: 41/851
  14335. }
  14336. },
  14337. },
  14338. [
  14339. {
  14340. name: "Canon Height",
  14341. height: math.unit(120, "feet"),
  14342. default: true
  14343. },
  14344. {
  14345. name: "Macro+",
  14346. height: math.unit(400, "feet")
  14347. },
  14348. {
  14349. name: "Macro++",
  14350. height: math.unit(4000, "feet")
  14351. },
  14352. {
  14353. name: "Megamacro",
  14354. height: math.unit(3, "miles")
  14355. },
  14356. ]
  14357. ))
  14358. characterMakers.push(() => makeCharacter(
  14359. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14360. {
  14361. front: {
  14362. height: math.unit(6, "feet"),
  14363. weight: math.unit(150, "lb"),
  14364. name: "Front",
  14365. image: {
  14366. source: "./media/characters/isaac/front.svg",
  14367. extra: 896 / 815,
  14368. bottom: 0.11
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Human Size",
  14375. height: math.unit(8, "feet"),
  14376. default: true
  14377. },
  14378. {
  14379. name: "Macro",
  14380. height: math.unit(400, "feet")
  14381. },
  14382. {
  14383. name: "Megamacro",
  14384. height: math.unit(50, "miles")
  14385. },
  14386. {
  14387. name: "Canon Height",
  14388. height: math.unit(200, "AU")
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14394. {
  14395. front: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(72, "kg"),
  14398. name: "Front",
  14399. image: {
  14400. source: "./media/characters/sleekit/front.svg",
  14401. extra: 4693 / 4487,
  14402. bottom: 0.012
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Minimum Height",
  14409. height: math.unit(10, "meters")
  14410. },
  14411. {
  14412. name: "Smaller",
  14413. height: math.unit(25, "meters")
  14414. },
  14415. {
  14416. name: "Larger",
  14417. height: math.unit(38, "meters"),
  14418. default: true
  14419. },
  14420. {
  14421. name: "Maximum height",
  14422. height: math.unit(100, "meters")
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(150, "lb"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/nillia/front.svg",
  14435. extra: 2195 / 2037,
  14436. bottom: 0.005
  14437. }
  14438. },
  14439. back: {
  14440. height: math.unit(6, "feet"),
  14441. weight: math.unit(150, "lb"),
  14442. name: "Back",
  14443. image: {
  14444. source: "./media/characters/nillia/back.svg",
  14445. extra: 2195 / 2037,
  14446. bottom: 0.005
  14447. }
  14448. },
  14449. },
  14450. [
  14451. {
  14452. name: "Canon Height",
  14453. height: math.unit(489, "feet"),
  14454. default: true
  14455. }
  14456. ]
  14457. ))
  14458. characterMakers.push(() => makeCharacter(
  14459. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14460. {
  14461. front: {
  14462. height: math.unit(6, "feet"),
  14463. weight: math.unit(150, "lb"),
  14464. name: "Front",
  14465. image: {
  14466. source: "./media/characters/mesmyriza/front.svg",
  14467. extra: 2067 / 1784,
  14468. bottom: 0.035
  14469. }
  14470. },
  14471. foot: {
  14472. height: math.unit(6 / (250 / 35), "feet"),
  14473. name: "Foot",
  14474. image: {
  14475. source: "./media/characters/mesmyriza/foot.svg"
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Macro",
  14482. height: math.unit(457, "meters"),
  14483. default: true
  14484. },
  14485. {
  14486. name: "Megamacro",
  14487. height: math.unit(8, "megameters")
  14488. },
  14489. ]
  14490. ))
  14491. characterMakers.push(() => makeCharacter(
  14492. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14493. {
  14494. front: {
  14495. height: math.unit(6, "feet"),
  14496. weight: math.unit(250, "lb"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/saudade/front.svg",
  14500. extra: 1172 / 1139,
  14501. bottom: 0.035
  14502. }
  14503. },
  14504. },
  14505. [
  14506. {
  14507. name: "Micro",
  14508. height: math.unit(3, "inches")
  14509. },
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(6, "feet"),
  14513. default: true
  14514. },
  14515. {
  14516. name: "Macro",
  14517. height: math.unit(50, "feet")
  14518. },
  14519. {
  14520. name: "Megamacro",
  14521. height: math.unit(2800, "feet")
  14522. },
  14523. ]
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14527. {
  14528. front: {
  14529. height: math.unit(5 + 4 / 12, "feet"),
  14530. weight: math.unit(100, "lb"),
  14531. name: "Front",
  14532. image: {
  14533. source: "./media/characters/keireer/front.svg",
  14534. extra: 716 / 666,
  14535. bottom: 0.05
  14536. }
  14537. },
  14538. },
  14539. [
  14540. {
  14541. name: "Normal",
  14542. height: math.unit(5 + 4 / 12, "feet"),
  14543. default: true
  14544. },
  14545. ]
  14546. ))
  14547. characterMakers.push(() => makeCharacter(
  14548. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14549. {
  14550. front: {
  14551. height: math.unit(6, "feet"),
  14552. weight: math.unit(90, "kg"),
  14553. name: "Front",
  14554. image: {
  14555. source: "./media/characters/mirja/front.svg",
  14556. extra: 1789 / 1683,
  14557. bottom: 0.05
  14558. }
  14559. },
  14560. frontDressed: {
  14561. height: math.unit(6, "feet"),
  14562. weight: math.unit(90, "lb"),
  14563. name: "Front (Dressed)",
  14564. image: {
  14565. source: "./media/characters/mirja/front-dressed.svg",
  14566. extra: 1789 / 1683,
  14567. bottom: 0.05
  14568. }
  14569. },
  14570. back: {
  14571. height: math.unit(6, "feet"),
  14572. weight: math.unit(90, "lb"),
  14573. name: "Back",
  14574. image: {
  14575. source: "./media/characters/mirja/back.svg",
  14576. extra: 953 / 917,
  14577. bottom: 0.017
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "\"Incognito\"",
  14584. height: math.unit(3, "meters")
  14585. },
  14586. {
  14587. name: "Strolling Size",
  14588. height: math.unit(15, "km")
  14589. },
  14590. {
  14591. name: "Larger Strolling Size",
  14592. height: math.unit(400, "km")
  14593. },
  14594. {
  14595. name: "Preferred Size",
  14596. height: math.unit(5000, "km")
  14597. },
  14598. {
  14599. name: "True Size",
  14600. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14601. default: true
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14607. {
  14608. front: {
  14609. height: math.unit(15, "feet"),
  14610. weight: math.unit(880, "kg"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/nightraver/front.svg",
  14614. extra: 2444 / 2160,
  14615. bottom: 0.027
  14616. }
  14617. },
  14618. back: {
  14619. height: math.unit(15, "feet"),
  14620. weight: math.unit(880, "kg"),
  14621. name: "Back",
  14622. image: {
  14623. source: "./media/characters/nightraver/back.svg",
  14624. extra: 2309 / 2180,
  14625. bottom: 0.005
  14626. }
  14627. },
  14628. sole: {
  14629. height: math.unit(2.878, "feet"),
  14630. name: "Sole",
  14631. image: {
  14632. source: "./media/characters/nightraver/sole.svg"
  14633. }
  14634. },
  14635. foot: {
  14636. height: math.unit(2.285, "feet"),
  14637. name: "Foot",
  14638. image: {
  14639. source: "./media/characters/nightraver/foot.svg"
  14640. }
  14641. },
  14642. maw: {
  14643. height: math.unit(2.67, "feet"),
  14644. name: "Maw",
  14645. image: {
  14646. source: "./media/characters/nightraver/maw.svg"
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Micro",
  14653. height: math.unit(1, "cm")
  14654. },
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(15, "feet"),
  14658. default: true
  14659. },
  14660. {
  14661. name: "Macro",
  14662. height: math.unit(300, "feet")
  14663. },
  14664. {
  14665. name: "Megamacro",
  14666. height: math.unit(300, "miles")
  14667. },
  14668. {
  14669. name: "Gigamacro",
  14670. height: math.unit(10000, "miles")
  14671. },
  14672. ]
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14676. {
  14677. side: {
  14678. height: math.unit(2, "inches"),
  14679. weight: math.unit(5, "grams"),
  14680. name: "Side",
  14681. image: {
  14682. source: "./media/characters/arc/side.svg"
  14683. }
  14684. },
  14685. },
  14686. [
  14687. {
  14688. name: "Micro",
  14689. height: math.unit(2, "inches"),
  14690. default: true
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(1.1938, "meters"),
  14699. weight: math.unit(54, "kg"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/nebula-shahar/front.svg",
  14703. extra: 1642 / 1436,
  14704. bottom: 0.06
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Megamicro",
  14711. height: math.unit(0.3, "mm")
  14712. },
  14713. {
  14714. name: "Micro",
  14715. height: math.unit(3, "cm")
  14716. },
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(138, "cm"),
  14720. default: true
  14721. },
  14722. {
  14723. name: "Macro",
  14724. height: math.unit(30, "m")
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(5.24, "feet"),
  14733. weight: math.unit(150, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/shayla/front.svg",
  14737. extra: 1512 / 1414,
  14738. bottom: 0.01
  14739. }
  14740. },
  14741. back: {
  14742. height: math.unit(5.24, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Back",
  14745. image: {
  14746. source: "./media/characters/shayla/back.svg",
  14747. extra: 1512 / 1414
  14748. }
  14749. },
  14750. hand: {
  14751. height: math.unit(0.7781496062992126, "feet"),
  14752. name: "Hand",
  14753. image: {
  14754. source: "./media/characters/shayla/hand.svg"
  14755. }
  14756. },
  14757. foot: {
  14758. height: math.unit(1.4206036745406823, "feet"),
  14759. name: "Foot",
  14760. image: {
  14761. source: "./media/characters/shayla/foot.svg"
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Micro",
  14768. height: math.unit(0.32, "feet")
  14769. },
  14770. {
  14771. name: "Normal",
  14772. height: math.unit(5.24, "feet"),
  14773. default: true
  14774. },
  14775. {
  14776. name: "Macro",
  14777. height: math.unit(492.12, "feet")
  14778. },
  14779. {
  14780. name: "Megamacro",
  14781. height: math.unit(186.41, "miles")
  14782. },
  14783. ]
  14784. ))
  14785. characterMakers.push(() => makeCharacter(
  14786. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14787. {
  14788. front: {
  14789. height: math.unit(2.2, "m"),
  14790. weight: math.unit(120, "kg"),
  14791. name: "Front",
  14792. image: {
  14793. source: "./media/characters/pia-jr/front.svg",
  14794. extra: 1000 / 970,
  14795. bottom: 0.035
  14796. }
  14797. },
  14798. hand: {
  14799. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14800. name: "Hand",
  14801. image: {
  14802. source: "./media/characters/pia-jr/hand.svg"
  14803. }
  14804. },
  14805. paw: {
  14806. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14807. name: "Paw",
  14808. image: {
  14809. source: "./media/characters/pia-jr/paw.svg"
  14810. }
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Micro",
  14816. height: math.unit(1.2, "cm")
  14817. },
  14818. {
  14819. name: "Normal",
  14820. height: math.unit(2.2, "m"),
  14821. default: true
  14822. },
  14823. {
  14824. name: "Macro",
  14825. height: math.unit(180, "m")
  14826. },
  14827. {
  14828. name: "Megamacro",
  14829. height: math.unit(420, "km")
  14830. },
  14831. ]
  14832. ))
  14833. characterMakers.push(() => makeCharacter(
  14834. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14835. {
  14836. front: {
  14837. height: math.unit(2, "m"),
  14838. weight: math.unit(115, "kg"),
  14839. name: "Front",
  14840. image: {
  14841. source: "./media/characters/pia-sr/front.svg",
  14842. extra: 760 / 730,
  14843. bottom: 0.015
  14844. }
  14845. },
  14846. back: {
  14847. height: math.unit(2, "m"),
  14848. weight: math.unit(115, "kg"),
  14849. name: "Back",
  14850. image: {
  14851. source: "./media/characters/pia-sr/back.svg",
  14852. extra: 760 / 730,
  14853. bottom: 0.01
  14854. }
  14855. },
  14856. hand: {
  14857. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14858. name: "Hand",
  14859. image: {
  14860. source: "./media/characters/pia-sr/hand.svg"
  14861. }
  14862. },
  14863. foot: {
  14864. height: math.unit(1.83, "feet"),
  14865. name: "Foot",
  14866. image: {
  14867. source: "./media/characters/pia-sr/foot.svg"
  14868. }
  14869. },
  14870. },
  14871. [
  14872. {
  14873. name: "Micro",
  14874. height: math.unit(88, "mm")
  14875. },
  14876. {
  14877. name: "Normal",
  14878. height: math.unit(2, "m"),
  14879. default: true
  14880. },
  14881. {
  14882. name: "Macro",
  14883. height: math.unit(200, "m")
  14884. },
  14885. {
  14886. name: "Megamacro",
  14887. height: math.unit(420, "km")
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(8 + 2 / 12, "feet"),
  14896. weight: math.unit(300, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/kibibyte/front.svg",
  14900. extra: 2221 / 2098,
  14901. bottom: 0.04
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(8 + 2 / 12, "feet"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Socialable Macro",
  14913. height: math.unit(50, "feet")
  14914. },
  14915. {
  14916. name: "Macro",
  14917. height: math.unit(300, "feet")
  14918. },
  14919. {
  14920. name: "Megamacro",
  14921. height: math.unit(500, "miles")
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14927. {
  14928. front: {
  14929. height: math.unit(6, "feet"),
  14930. weight: math.unit(150, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/felix/front.svg",
  14934. extra: 762 / 722,
  14935. bottom: 0.02
  14936. }
  14937. },
  14938. frontClothed: {
  14939. height: math.unit(6, "feet"),
  14940. weight: math.unit(150, "lb"),
  14941. name: "Front (Clothed)",
  14942. image: {
  14943. source: "./media/characters/felix/front-clothed.svg",
  14944. extra: 762 / 722,
  14945. bottom: 0.02
  14946. }
  14947. },
  14948. },
  14949. [
  14950. {
  14951. name: "Normal",
  14952. height: math.unit(6 + 8 / 12, "feet"),
  14953. default: true
  14954. },
  14955. {
  14956. name: "Macro",
  14957. height: math.unit(2600, "feet")
  14958. },
  14959. {
  14960. name: "Megamacro",
  14961. height: math.unit(450, "miles")
  14962. },
  14963. ]
  14964. ))
  14965. characterMakers.push(() => makeCharacter(
  14966. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14967. {
  14968. front: {
  14969. height: math.unit(6 + 1 / 12, "feet"),
  14970. weight: math.unit(250, "lb"),
  14971. name: "Front",
  14972. image: {
  14973. source: "./media/characters/tobo/front.svg",
  14974. extra: 608 / 586,
  14975. bottom: 0.023
  14976. }
  14977. },
  14978. back: {
  14979. height: math.unit(6 + 1 / 12, "feet"),
  14980. weight: math.unit(250, "lb"),
  14981. name: "Back",
  14982. image: {
  14983. source: "./media/characters/tobo/back.svg",
  14984. extra: 608 / 586
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Nano",
  14991. height: math.unit(2, "nm")
  14992. },
  14993. {
  14994. name: "Megamicro",
  14995. height: math.unit(0.1, "mm")
  14996. },
  14997. {
  14998. name: "Micro",
  14999. height: math.unit(1, "inch"),
  15000. default: true
  15001. },
  15002. {
  15003. name: "Human-sized",
  15004. height: math.unit(6 + 1 / 12, "feet")
  15005. },
  15006. {
  15007. name: "Macro",
  15008. height: math.unit(250, "feet")
  15009. },
  15010. {
  15011. name: "Megamacro",
  15012. height: math.unit(75, "miles")
  15013. },
  15014. {
  15015. name: "Texas-sized",
  15016. height: math.unit(750, "miles")
  15017. },
  15018. {
  15019. name: "Teramacro",
  15020. height: math.unit(50000, "miles")
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(6, "feet"),
  15029. weight: math.unit(269, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/danny-kapowsky/front.svg",
  15033. extra: 766 / 736,
  15034. bottom: 0.044
  15035. }
  15036. },
  15037. back: {
  15038. height: math.unit(6, "feet"),
  15039. weight: math.unit(269, "lb"),
  15040. name: "Back",
  15041. image: {
  15042. source: "./media/characters/danny-kapowsky/back.svg",
  15043. extra: 797 / 760,
  15044. bottom: 0.025
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Macro",
  15051. height: math.unit(150, "feet"),
  15052. default: true
  15053. },
  15054. {
  15055. name: "Macro+",
  15056. height: math.unit(200, "feet")
  15057. },
  15058. {
  15059. name: "Macro++",
  15060. height: math.unit(300, "feet")
  15061. },
  15062. {
  15063. name: "Macro+++",
  15064. height: math.unit(400, "feet")
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15070. {
  15071. side: {
  15072. height: math.unit(6, "feet"),
  15073. weight: math.unit(170, "lb"),
  15074. name: "Side",
  15075. image: {
  15076. source: "./media/characters/finn/side.svg",
  15077. extra: 1953 / 1807,
  15078. bottom: 0.057
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Megamacro",
  15085. height: math.unit(14445, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(5 + 6 / 12, "feet"),
  15095. weight: math.unit(125, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/roy/front.svg",
  15099. extra: 1,
  15100. bottom: 0.11
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Micro",
  15107. height: math.unit(3, "inches"),
  15108. default: true
  15109. },
  15110. {
  15111. name: "Normal",
  15112. height: math.unit(5 + 6 / 12, "feet")
  15113. },
  15114. {
  15115. name: "Lesser Macro",
  15116. height: math.unit(60, "feet")
  15117. },
  15118. {
  15119. name: "Greater Macro",
  15120. height: math.unit(120, "feet")
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(6, "feet"),
  15129. weight: math.unit(100, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/aevsivs/front.svg",
  15133. extra: 1,
  15134. bottom: 0.03
  15135. }
  15136. },
  15137. back: {
  15138. height: math.unit(6, "feet"),
  15139. weight: math.unit(100, "lb"),
  15140. name: "Back",
  15141. image: {
  15142. source: "./media/characters/aevsivs/back.svg"
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Micro",
  15149. height: math.unit(2, "inches"),
  15150. default: true
  15151. },
  15152. {
  15153. name: "Normal",
  15154. height: math.unit(5, "feet")
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15160. {
  15161. front: {
  15162. height: math.unit(5 + 7 / 12, "feet"),
  15163. weight: math.unit(159, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/hildegard/front.svg",
  15167. extra: 289 / 269,
  15168. bottom: 7.63 / 297.8
  15169. }
  15170. },
  15171. back: {
  15172. height: math.unit(5 + 7 / 12, "feet"),
  15173. weight: math.unit(159, "lb"),
  15174. name: "Back",
  15175. image: {
  15176. source: "./media/characters/hildegard/back.svg",
  15177. extra: 280 / 260,
  15178. bottom: 2.3 / 282
  15179. }
  15180. },
  15181. },
  15182. [
  15183. {
  15184. name: "Normal",
  15185. height: math.unit(5 + 7 / 12, "feet"),
  15186. default: true
  15187. },
  15188. ]
  15189. ))
  15190. characterMakers.push(() => makeCharacter(
  15191. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15192. {
  15193. bernard: {
  15194. height: math.unit(2 + 7 / 12, "feet"),
  15195. weight: math.unit(66, "lb"),
  15196. name: "Bernard",
  15197. rename: true,
  15198. image: {
  15199. source: "./media/characters/bernard-wilder/bernard.svg",
  15200. extra: 192 / 128,
  15201. bottom: 0.05
  15202. }
  15203. },
  15204. wilder: {
  15205. height: math.unit(5 + 8 / 12, "feet"),
  15206. weight: math.unit(143, "lb"),
  15207. name: "Wilder",
  15208. rename: true,
  15209. image: {
  15210. source: "./media/characters/bernard-wilder/wilder.svg",
  15211. extra: 361 / 312,
  15212. bottom: 0.02
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Normal",
  15219. height: math.unit(2 + 7 / 12, "feet"),
  15220. default: true
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15226. {
  15227. anthro: {
  15228. height: math.unit(6 + 1 / 12, "feet"),
  15229. weight: math.unit(155, "lb"),
  15230. name: "Anthro",
  15231. image: {
  15232. source: "./media/characters/hearth/anthro.svg",
  15233. extra: 1178/1136,
  15234. bottom: 28/1206
  15235. }
  15236. },
  15237. feral: {
  15238. height: math.unit(3.78, "feet"),
  15239. weight: math.unit(35, "kg"),
  15240. name: "Feral",
  15241. image: {
  15242. source: "./media/characters/hearth/feral.svg",
  15243. extra: 153 / 135,
  15244. bottom: 0.03
  15245. }
  15246. },
  15247. },
  15248. [
  15249. {
  15250. name: "Normal",
  15251. height: math.unit(6 + 1 / 12, "feet"),
  15252. default: true
  15253. },
  15254. ]
  15255. ))
  15256. characterMakers.push(() => makeCharacter(
  15257. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15258. {
  15259. front: {
  15260. height: math.unit(6, "feet"),
  15261. weight: math.unit(182, "lb"),
  15262. name: "Front",
  15263. image: {
  15264. source: "./media/characters/ingrid/front.svg",
  15265. extra: 294 / 268,
  15266. bottom: 0.027
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "Normal",
  15273. height: math.unit(6, "feet"),
  15274. default: true
  15275. },
  15276. ]
  15277. ))
  15278. characterMakers.push(() => makeCharacter(
  15279. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15280. {
  15281. eevee: {
  15282. height: math.unit(2 + 10 / 12, "feet"),
  15283. weight: math.unit(86, "lb"),
  15284. name: "Malgam",
  15285. image: {
  15286. source: "./media/characters/malgam/eevee.svg",
  15287. extra: 952/784,
  15288. bottom: 38/990
  15289. }
  15290. },
  15291. sylveon: {
  15292. height: math.unit(4, "feet"),
  15293. weight: math.unit(101, "lb"),
  15294. name: "Future Malgam",
  15295. rename: true,
  15296. image: {
  15297. source: "./media/characters/malgam/sylveon.svg",
  15298. extra: 371 / 325,
  15299. bottom: 0.015
  15300. }
  15301. },
  15302. gigantamax: {
  15303. height: math.unit(50, "feet"),
  15304. name: "Gigantamax Malgam",
  15305. rename: true,
  15306. image: {
  15307. source: "./media/characters/malgam/gigantamax.svg"
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(2 + 10 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(5 + 11 / 12, "feet"),
  15324. weight: math.unit(188, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/fleur/front.svg",
  15328. extra: 309 / 283,
  15329. bottom: 0.007
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(5 + 11 / 12, "feet"),
  15337. default: true
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(5 + 4 / 12, "feet"),
  15346. weight: math.unit(122, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/jude/front.svg",
  15350. extra: 288 / 273,
  15351. bottom: 0.03
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Normal",
  15358. height: math.unit(5 + 4 / 12, "feet"),
  15359. default: true
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(5 + 11 / 12, "feet"),
  15368. weight: math.unit(190, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/seara/front.svg",
  15372. extra: 1,
  15373. bottom: 0.05
  15374. }
  15375. },
  15376. },
  15377. [
  15378. {
  15379. name: "Normal",
  15380. height: math.unit(5 + 11 / 12, "feet"),
  15381. default: true
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(16 + 5 / 12, "feet"),
  15390. weight: math.unit(524, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/caspian/front.svg",
  15394. extra: 1,
  15395. bottom: 0.04
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(16 + 5 / 12, "feet"),
  15403. default: true
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(5 + 7 / 12, "feet"),
  15412. weight: math.unit(170, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/mika/front.svg",
  15416. extra: 1,
  15417. bottom: 0.016
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(5 + 7 / 12, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15431. {
  15432. front: {
  15433. height: math.unit(6 + 2 / 12, "feet"),
  15434. weight: math.unit(268, "lb"),
  15435. name: "Front",
  15436. image: {
  15437. source: "./media/characters/sol/front.svg",
  15438. extra: 247 / 231,
  15439. bottom: 0.05
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Normal",
  15446. height: math.unit(6 + 2 / 12, "feet"),
  15447. default: true
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15453. {
  15454. buizel: {
  15455. height: math.unit(2 + 5 / 12, "feet"),
  15456. weight: math.unit(87, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/umiko/buizel.svg",
  15460. extra: 172 / 157,
  15461. bottom: 0.01
  15462. },
  15463. form: "buizel",
  15464. default: true
  15465. },
  15466. floatzel: {
  15467. height: math.unit(5 + 9 / 12, "feet"),
  15468. weight: math.unit(250, "lb"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/umiko/floatzel.svg",
  15472. extra: 1076/1006,
  15473. bottom: 15/1091
  15474. },
  15475. form: "floatzel",
  15476. default: true
  15477. },
  15478. },
  15479. [
  15480. {
  15481. name: "Normal",
  15482. height: math.unit(2 + 5 / 12, "feet"),
  15483. form: "buizel",
  15484. default: true
  15485. },
  15486. {
  15487. name: "Normal",
  15488. height: math.unit(5 + 9 / 12, "feet"),
  15489. form: "floatzel",
  15490. default: true
  15491. },
  15492. ],
  15493. {
  15494. "buizel": {
  15495. name: "Buizel"
  15496. },
  15497. "floatzel": {
  15498. name: "Floatzel",
  15499. default: true
  15500. }
  15501. }
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15505. {
  15506. front: {
  15507. height: math.unit(6 + 2 / 12, "feet"),
  15508. weight: math.unit(146, "lb"),
  15509. name: "Front",
  15510. image: {
  15511. source: "./media/characters/iliac/front.svg",
  15512. extra: 389 / 365,
  15513. bottom: 0.035
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(6 + 2 / 12, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(6, "feet"),
  15530. weight: math.unit(170, "lb"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/topaz/front.svg",
  15534. extra: 317 / 303,
  15535. bottom: 0.055
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(6, "feet"),
  15543. default: true
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(5 + 11 / 12, "feet"),
  15552. weight: math.unit(144, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/gabriel/front.svg",
  15556. extra: 285 / 262,
  15557. bottom: 0.004
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Normal",
  15564. height: math.unit(5 + 11 / 12, "feet"),
  15565. default: true
  15566. },
  15567. ]
  15568. ))
  15569. characterMakers.push(() => makeCharacter(
  15570. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15571. {
  15572. side: {
  15573. height: math.unit(6 + 5 / 12, "feet"),
  15574. weight: math.unit(300, "lb"),
  15575. name: "Side",
  15576. image: {
  15577. source: "./media/characters/tempest-suicune/side.svg",
  15578. extra: 195 / 154,
  15579. bottom: 0.04
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(6 + 5 / 12, "feet"),
  15587. default: true
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(7 + 2 / 12, "feet"),
  15596. weight: math.unit(322, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/vulcan/front.svg",
  15600. extra: 154 / 147,
  15601. bottom: 0.04
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Normal",
  15608. height: math.unit(7 + 2 / 12, "feet"),
  15609. default: true
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15615. {
  15616. front: {
  15617. height: math.unit(5 + 10 / 12, "feet"),
  15618. weight: math.unit(264, "lb"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/gault/front.svg",
  15622. extra: 161 / 140,
  15623. bottom: 0.028
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Normal",
  15630. height: math.unit(5 + 10 / 12, "feet"),
  15631. default: true
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15637. {
  15638. front: {
  15639. height: math.unit(6, "feet"),
  15640. weight: math.unit(150, "lb"),
  15641. name: "Front",
  15642. image: {
  15643. source: "./media/characters/shard/front.svg",
  15644. extra: 273 / 238,
  15645. bottom: 0.02
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(3 + 6 / 12, "feet"),
  15653. default: true
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(5 + 11 / 12, "feet"),
  15662. weight: math.unit(146, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/ashe/front.svg",
  15666. extra: 400 / 373,
  15667. bottom: 0.01
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Normal",
  15674. height: math.unit(5 + 11 / 12, "feet"),
  15675. default: true
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(5 + 5 / 12, "feet"),
  15684. weight: math.unit(135, "lb"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/beatrix/front.svg",
  15688. extra: 392 / 379,
  15689. bottom: 0.01
  15690. }
  15691. },
  15692. },
  15693. [
  15694. {
  15695. name: "Normal",
  15696. height: math.unit(6, "feet"),
  15697. default: true
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(6 + 2/12, "feet"),
  15706. weight: math.unit(135, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/ignatius/front.svg",
  15710. extra: 1380/1259,
  15711. bottom: 27/1407
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "Normal",
  15718. height: math.unit(6 + 2/12, "feet"),
  15719. default: true
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(6 + 2 / 12, "feet"),
  15728. weight: math.unit(138, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/mei-li/front.svg",
  15732. extra: 237 / 229,
  15733. bottom: 0.03
  15734. }
  15735. },
  15736. },
  15737. [
  15738. {
  15739. name: "Normal",
  15740. height: math.unit(6 + 2 / 12, "feet"),
  15741. default: true
  15742. },
  15743. ]
  15744. ))
  15745. characterMakers.push(() => makeCharacter(
  15746. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15747. {
  15748. front: {
  15749. height: math.unit(2 + 4 / 12, "feet"),
  15750. weight: math.unit(62, "lb"),
  15751. name: "Front",
  15752. image: {
  15753. source: "./media/characters/puru/front.svg",
  15754. extra: 206 / 149,
  15755. bottom: 0.06
  15756. }
  15757. },
  15758. },
  15759. [
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(2 + 4 / 12, "feet"),
  15763. default: true
  15764. },
  15765. ]
  15766. ))
  15767. characterMakers.push(() => makeCharacter(
  15768. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15769. {
  15770. anthro: {
  15771. height: math.unit(5 + 8/12, "feet"),
  15772. weight: math.unit(200, "lb"),
  15773. energyNeed: math.unit(2000, "kcal"),
  15774. name: "Anthro",
  15775. image: {
  15776. source: "./media/characters/kee/anthro.svg",
  15777. extra: 3251/3184,
  15778. bottom: 250/3501
  15779. }
  15780. },
  15781. taur: {
  15782. height: math.unit(11, "feet"),
  15783. weight: math.unit(500, "lb"),
  15784. energyNeed: math.unit(5000, "kcal"),
  15785. name: "Taur",
  15786. image: {
  15787. source: "./media/characters/kee/taur.svg",
  15788. extra: 1362/1320,
  15789. bottom: 83/1445
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Normal",
  15796. height: math.unit(5 + 8/12, "feet"),
  15797. default: true
  15798. },
  15799. {
  15800. name: "Macro",
  15801. height: math.unit(35, "feet")
  15802. },
  15803. ]
  15804. ))
  15805. characterMakers.push(() => makeCharacter(
  15806. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15807. {
  15808. anthro: {
  15809. height: math.unit(7, "feet"),
  15810. weight: math.unit(190, "lb"),
  15811. name: "Anthro",
  15812. image: {
  15813. source: "./media/characters/cobalt-dracha/anthro.svg",
  15814. extra: 231 / 225,
  15815. bottom: 0.04
  15816. }
  15817. },
  15818. feral: {
  15819. height: math.unit(9 + 7 / 12, "feet"),
  15820. weight: math.unit(294, "lb"),
  15821. name: "Feral",
  15822. image: {
  15823. source: "./media/characters/cobalt-dracha/feral.svg",
  15824. extra: 692 / 633,
  15825. bottom: 0.05
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Normal",
  15832. height: math.unit(7, "feet"),
  15833. default: true
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15839. {
  15840. fallen: {
  15841. height: math.unit(11 + 8 / 12, "feet"),
  15842. weight: math.unit(485, "lb"),
  15843. name: "Java (Fallen)",
  15844. rename: true,
  15845. image: {
  15846. source: "./media/characters/java/fallen.svg",
  15847. extra: 226 / 208,
  15848. bottom: 0.005
  15849. }
  15850. },
  15851. godkin: {
  15852. height: math.unit(10 + 6 / 12, "feet"),
  15853. weight: math.unit(328, "lb"),
  15854. name: "Java (Godkin)",
  15855. rename: true,
  15856. image: {
  15857. source: "./media/characters/java/godkin.svg",
  15858. extra: 1104/1068,
  15859. bottom: 36/1140
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(11 + 8 / 12, "feet"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(5 + 9 / 12, "feet"),
  15876. weight: math.unit(170, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/purna/front.svg",
  15880. extra: 239 / 229,
  15881. bottom: 0.01
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(5 + 9 / 12, "feet"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(5 + 9 / 12, "feet"),
  15898. weight: math.unit(142, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/kuva/front.svg",
  15902. extra: 281 / 271,
  15903. bottom: 0.006
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(5 + 9 / 12, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15917. {
  15918. anthro: {
  15919. height: math.unit(9 + 2 / 12, "feet"),
  15920. weight: math.unit(270, "lb"),
  15921. name: "Anthro",
  15922. image: {
  15923. source: "./media/characters/embra/anthro.svg",
  15924. extra: 200 / 187,
  15925. bottom: 0.02
  15926. }
  15927. },
  15928. feral: {
  15929. height: math.unit(18 + 8 / 12, "feet"),
  15930. weight: math.unit(576, "lb"),
  15931. name: "Feral",
  15932. image: {
  15933. source: "./media/characters/embra/feral.svg",
  15934. extra: 152 / 137,
  15935. bottom: 0.037
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(9 + 2 / 12, "feet"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15949. {
  15950. anthro: {
  15951. height: math.unit(10 + 9 / 12, "feet"),
  15952. weight: math.unit(224, "lb"),
  15953. name: "Anthro",
  15954. image: {
  15955. source: "./media/characters/grottos/anthro.svg",
  15956. extra: 350 / 332,
  15957. bottom: 0.045
  15958. }
  15959. },
  15960. feral: {
  15961. height: math.unit(20 + 7 / 12, "feet"),
  15962. weight: math.unit(629, "lb"),
  15963. name: "Feral",
  15964. image: {
  15965. source: "./media/characters/grottos/feral.svg",
  15966. extra: 207 / 190,
  15967. bottom: 0.05
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(10 + 9 / 12, "feet"),
  15975. default: true
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15981. {
  15982. anthro: {
  15983. height: math.unit(9 + 6 / 12, "feet"),
  15984. weight: math.unit(298, "lb"),
  15985. name: "Anthro",
  15986. image: {
  15987. source: "./media/characters/frifna/anthro.svg",
  15988. extra: 282 / 269,
  15989. bottom: 0.015
  15990. }
  15991. },
  15992. feral: {
  15993. height: math.unit(16 + 2 / 12, "feet"),
  15994. weight: math.unit(624, "lb"),
  15995. name: "Feral",
  15996. image: {
  15997. source: "./media/characters/frifna/feral.svg"
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(9 + 6 / 12, "feet"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(6 + 2 / 12, "feet"),
  16014. weight: math.unit(168, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/elise/front.svg",
  16018. extra: 276 / 271
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(6 + 2 / 12, "feet"),
  16026. default: true
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16032. {
  16033. front: {
  16034. height: math.unit(5 + 10 / 12, "feet"),
  16035. weight: math.unit(210, "lb"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/glade/front.svg",
  16039. extra: 258 / 247,
  16040. bottom: 0.008
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(5 + 10 / 12, "feet"),
  16048. default: true
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16054. {
  16055. front: {
  16056. height: math.unit(5 + 10 / 12, "feet"),
  16057. weight: math.unit(129, "lb"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/rina/front.svg",
  16061. extra: 266 / 255,
  16062. bottom: 0.005
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Normal",
  16069. height: math.unit(5 + 10 / 12, "feet"),
  16070. default: true
  16071. },
  16072. ]
  16073. ))
  16074. characterMakers.push(() => makeCharacter(
  16075. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16076. {
  16077. front: {
  16078. height: math.unit(6 + 1 / 12, "feet"),
  16079. weight: math.unit(192, "lb"),
  16080. name: "Front",
  16081. image: {
  16082. source: "./media/characters/veronica/front.svg",
  16083. extra: 319 / 309,
  16084. bottom: 0.005
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(6 + 1 / 12, "feet"),
  16092. default: true
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16098. {
  16099. front: {
  16100. height: math.unit(9 + 3 / 12, "feet"),
  16101. weight: math.unit(1100, "lb"),
  16102. name: "Front",
  16103. image: {
  16104. source: "./media/characters/braxton/front.svg",
  16105. extra: 1057 / 984,
  16106. bottom: 0.05
  16107. }
  16108. },
  16109. },
  16110. [
  16111. {
  16112. name: "Normal",
  16113. height: math.unit(9 + 3 / 12, "feet")
  16114. },
  16115. {
  16116. name: "Giant",
  16117. height: math.unit(300, "feet"),
  16118. default: true
  16119. },
  16120. {
  16121. name: "Macro",
  16122. height: math.unit(700, "feet")
  16123. },
  16124. {
  16125. name: "Megamacro",
  16126. height: math.unit(6000, "feet")
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(6 + 7 / 12, "feet"),
  16135. weight: math.unit(150, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/blue-feyonics/front.svg",
  16139. extra: 1403 / 1306,
  16140. bottom: 0.047
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(6 + 7 / 12, "feet"),
  16148. default: true
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16154. {
  16155. front: {
  16156. height: math.unit(1.8, "meters"),
  16157. weight: math.unit(60, "kg"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/maxwell/front.svg",
  16161. extra: 2060 / 1873
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Micro",
  16168. height: math.unit(1, "mm")
  16169. },
  16170. {
  16171. name: "Normal",
  16172. height: math.unit(1.8, "meter"),
  16173. default: true
  16174. },
  16175. {
  16176. name: "Macro",
  16177. height: math.unit(30, "meters")
  16178. },
  16179. {
  16180. name: "Megamacro",
  16181. height: math.unit(10, "km")
  16182. },
  16183. ]
  16184. ))
  16185. characterMakers.push(() => makeCharacter(
  16186. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16187. {
  16188. front: {
  16189. height: math.unit(6, "feet"),
  16190. weight: math.unit(150, "lb"),
  16191. name: "Front",
  16192. image: {
  16193. source: "./media/characters/jack/front.svg",
  16194. extra: 1754 / 1640,
  16195. bottom: 0.01
  16196. }
  16197. },
  16198. },
  16199. [
  16200. {
  16201. name: "Normal",
  16202. height: math.unit(80000, "feet"),
  16203. default: true
  16204. },
  16205. {
  16206. name: "Max size",
  16207. height: math.unit(10, "lightyears")
  16208. },
  16209. ]
  16210. ))
  16211. characterMakers.push(() => makeCharacter(
  16212. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16213. {
  16214. urban: {
  16215. height: math.unit(5, "feet"),
  16216. weight: math.unit(240, "lb"),
  16217. name: "Urban",
  16218. image: {
  16219. source: "./media/characters/cafat/urban.svg",
  16220. extra: 1223/1126,
  16221. bottom: 205/1428
  16222. }
  16223. },
  16224. summer: {
  16225. height: math.unit(5, "feet"),
  16226. weight: math.unit(240, "lb"),
  16227. name: "Summer",
  16228. image: {
  16229. source: "./media/characters/cafat/summer.svg",
  16230. extra: 1223/1126,
  16231. bottom: 205/1428
  16232. }
  16233. },
  16234. winter: {
  16235. height: math.unit(5, "feet"),
  16236. weight: math.unit(240, "lb"),
  16237. name: "Winter",
  16238. image: {
  16239. source: "./media/characters/cafat/winter.svg",
  16240. extra: 1223/1126,
  16241. bottom: 205/1428
  16242. }
  16243. },
  16244. lingerie: {
  16245. height: math.unit(5, "feet"),
  16246. weight: math.unit(240, "lb"),
  16247. name: "Lingerie",
  16248. image: {
  16249. source: "./media/characters/cafat/lingerie.svg",
  16250. extra: 1223/1126,
  16251. bottom: 205/1428
  16252. }
  16253. },
  16254. upright: {
  16255. height: math.unit(6.3, "feet"),
  16256. weight: math.unit(240, "lb"),
  16257. name: "Upright",
  16258. image: {
  16259. source: "./media/characters/cafat/upright.svg",
  16260. bottom: 0.01
  16261. }
  16262. },
  16263. uprightFull: {
  16264. height: math.unit(6.3, "feet"),
  16265. weight: math.unit(240, "lb"),
  16266. name: "Upright (Full)",
  16267. image: {
  16268. source: "./media/characters/cafat/upright-full.svg",
  16269. bottom: 0.01
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Small",
  16276. height: math.unit(5, "feet"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Large",
  16281. height: math.unit(13, "feet")
  16282. },
  16283. ]
  16284. ))
  16285. characterMakers.push(() => makeCharacter(
  16286. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16287. {
  16288. front: {
  16289. height: math.unit(6, "feet"),
  16290. weight: math.unit(150, "lb"),
  16291. name: "Front",
  16292. image: {
  16293. source: "./media/characters/verin-raharra/front.svg",
  16294. extra: 5019 / 4835,
  16295. bottom: 0.023
  16296. }
  16297. },
  16298. },
  16299. [
  16300. {
  16301. name: "Normal",
  16302. height: math.unit(7 + 5 / 12, "feet"),
  16303. default: true
  16304. },
  16305. {
  16306. name: "Upsized",
  16307. height: math.unit(20, "feet")
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16313. {
  16314. front: {
  16315. height: math.unit(7, "feet"),
  16316. weight: math.unit(230, "lb"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/nakata/front.svg",
  16320. extra: 1.005,
  16321. bottom: 0.01
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Normal",
  16328. height: math.unit(7, "feet"),
  16329. default: true
  16330. },
  16331. {
  16332. name: "Big",
  16333. height: math.unit(14, "feet")
  16334. },
  16335. {
  16336. name: "Macro",
  16337. height: math.unit(400, "feet")
  16338. },
  16339. ]
  16340. ))
  16341. characterMakers.push(() => makeCharacter(
  16342. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16343. {
  16344. front: {
  16345. height: math.unit(4.91, "feet"),
  16346. weight: math.unit(100, "lb"),
  16347. name: "Front",
  16348. image: {
  16349. source: "./media/characters/lily/front.svg",
  16350. extra: 1585 / 1415,
  16351. bottom: 0.02
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Normal",
  16358. height: math.unit(4.91, "feet"),
  16359. default: true
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16365. {
  16366. laying: {
  16367. height: math.unit(4 + 4 / 12, "feet"),
  16368. weight: math.unit(600, "lb"),
  16369. name: "Laying",
  16370. image: {
  16371. source: "./media/characters/sheila/laying.svg",
  16372. extra: 1333 / 1265,
  16373. bottom: 0.16
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Normal",
  16380. height: math.unit(4 + 4 / 12, "feet"),
  16381. default: true
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(6, "feet"),
  16390. weight: math.unit(190, "lb"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/sax/front.svg",
  16394. extra: 1187 / 973,
  16395. bottom: 0.042
  16396. }
  16397. },
  16398. },
  16399. [
  16400. {
  16401. name: "Micro",
  16402. height: math.unit(4, "inches"),
  16403. default: true
  16404. },
  16405. ]
  16406. ))
  16407. characterMakers.push(() => makeCharacter(
  16408. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16409. {
  16410. front: {
  16411. height: math.unit(6, "feet"),
  16412. weight: math.unit(150, "lb"),
  16413. name: "Front",
  16414. image: {
  16415. source: "./media/characters/pandora/front.svg",
  16416. extra: 2720 / 2556,
  16417. bottom: 0.015
  16418. }
  16419. },
  16420. back: {
  16421. height: math.unit(6, "feet"),
  16422. weight: math.unit(150, "lb"),
  16423. name: "Back",
  16424. image: {
  16425. source: "./media/characters/pandora/back.svg",
  16426. extra: 2720 / 2556,
  16427. bottom: 0.01
  16428. }
  16429. },
  16430. beans: {
  16431. height: math.unit(6 / 8, "feet"),
  16432. name: "Beans",
  16433. image: {
  16434. source: "./media/characters/pandora/beans.svg"
  16435. }
  16436. },
  16437. collar: {
  16438. height: math.unit(0.31, "feet"),
  16439. name: "Collar",
  16440. image: {
  16441. source: "./media/characters/pandora/collar.svg"
  16442. }
  16443. },
  16444. skirt: {
  16445. height: math.unit(6, "feet"),
  16446. weight: math.unit(150, "lb"),
  16447. name: "Skirt",
  16448. image: {
  16449. source: "./media/characters/pandora/skirt.svg",
  16450. extra: 1622 / 1525,
  16451. bottom: 0.015
  16452. }
  16453. },
  16454. hoodie: {
  16455. height: math.unit(6, "feet"),
  16456. weight: math.unit(150, "lb"),
  16457. name: "Hoodie",
  16458. image: {
  16459. source: "./media/characters/pandora/hoodie.svg",
  16460. extra: 1622 / 1525,
  16461. bottom: 0.015
  16462. }
  16463. },
  16464. casual: {
  16465. height: math.unit(6, "feet"),
  16466. weight: math.unit(150, "lb"),
  16467. name: "Casual",
  16468. image: {
  16469. source: "./media/characters/pandora/casual.svg",
  16470. extra: 1622 / 1525,
  16471. bottom: 0.015
  16472. }
  16473. },
  16474. },
  16475. [
  16476. {
  16477. name: "Normal",
  16478. height: math.unit(6, "feet")
  16479. },
  16480. {
  16481. name: "Big Steppy",
  16482. height: math.unit(1, "km"),
  16483. default: true
  16484. },
  16485. {
  16486. name: "Galactic Steppy",
  16487. height: math.unit(2, "gigameters")
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16493. {
  16494. side: {
  16495. height: math.unit(10, "feet"),
  16496. weight: math.unit(800, "kg"),
  16497. name: "Side",
  16498. image: {
  16499. source: "./media/characters/venio-darcony/side.svg",
  16500. extra: 1373 / 1003,
  16501. bottom: 0.037
  16502. }
  16503. },
  16504. front: {
  16505. height: math.unit(19, "feet"),
  16506. weight: math.unit(800, "kg"),
  16507. name: "Front",
  16508. image: {
  16509. source: "./media/characters/venio-darcony/front.svg"
  16510. }
  16511. },
  16512. back: {
  16513. height: math.unit(19, "feet"),
  16514. weight: math.unit(800, "kg"),
  16515. name: "Back",
  16516. image: {
  16517. source: "./media/characters/venio-darcony/back.svg"
  16518. }
  16519. },
  16520. sideNsfw: {
  16521. height: math.unit(10, "feet"),
  16522. weight: math.unit(800, "kg"),
  16523. name: "Side (NSFW)",
  16524. image: {
  16525. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16526. extra: 1373 / 1003,
  16527. bottom: 0.037
  16528. }
  16529. },
  16530. frontNsfw: {
  16531. height: math.unit(19, "feet"),
  16532. weight: math.unit(800, "kg"),
  16533. name: "Front (NSFW)",
  16534. image: {
  16535. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16536. }
  16537. },
  16538. backNsfw: {
  16539. height: math.unit(19, "feet"),
  16540. weight: math.unit(800, "kg"),
  16541. name: "Back (NSFW)",
  16542. image: {
  16543. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16544. }
  16545. },
  16546. sideArmored: {
  16547. height: math.unit(10, "feet"),
  16548. weight: math.unit(800, "kg"),
  16549. name: "Side (Armored)",
  16550. image: {
  16551. source: "./media/characters/venio-darcony/side-armored.svg",
  16552. extra: 1373 / 1003,
  16553. bottom: 0.037
  16554. }
  16555. },
  16556. frontArmored: {
  16557. height: math.unit(19, "feet"),
  16558. weight: math.unit(900, "kg"),
  16559. name: "Front (Armored)",
  16560. image: {
  16561. source: "./media/characters/venio-darcony/front-armored.svg"
  16562. }
  16563. },
  16564. backArmored: {
  16565. height: math.unit(19, "feet"),
  16566. weight: math.unit(900, "kg"),
  16567. name: "Back (Armored)",
  16568. image: {
  16569. source: "./media/characters/venio-darcony/back-armored.svg"
  16570. }
  16571. },
  16572. sword: {
  16573. height: math.unit(10, "feet"),
  16574. weight: math.unit(50, "lb"),
  16575. name: "Sword",
  16576. image: {
  16577. source: "./media/characters/venio-darcony/sword.svg"
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Normal",
  16584. height: math.unit(10, "feet")
  16585. },
  16586. {
  16587. name: "Macro",
  16588. height: math.unit(130, "feet"),
  16589. default: true
  16590. },
  16591. {
  16592. name: "Macro+",
  16593. height: math.unit(240, "feet")
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(6, "feet"),
  16602. weight: math.unit(150, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/veski/front.svg",
  16606. extra: 1299 / 1225,
  16607. bottom: 0.04
  16608. }
  16609. },
  16610. back: {
  16611. height: math.unit(6, "feet"),
  16612. weight: math.unit(150, "lb"),
  16613. name: "Back",
  16614. image: {
  16615. source: "./media/characters/veski/back.svg",
  16616. extra: 1299 / 1225,
  16617. bottom: 0.008
  16618. }
  16619. },
  16620. maw: {
  16621. height: math.unit(1.5 * 1.21, "feet"),
  16622. name: "Maw",
  16623. image: {
  16624. source: "./media/characters/veski/maw.svg"
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Macro",
  16631. height: math.unit(2, "km"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16638. {
  16639. front: {
  16640. height: math.unit(5 + 7 / 12, "feet"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/isabelle/front.svg",
  16644. extra: 2130 / 1976,
  16645. bottom: 0.05
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Supermicro",
  16652. height: math.unit(10, "micrometers")
  16653. },
  16654. {
  16655. name: "Micro",
  16656. height: math.unit(1, "inch")
  16657. },
  16658. {
  16659. name: "Tiny",
  16660. height: math.unit(5, "inches")
  16661. },
  16662. {
  16663. name: "Standard",
  16664. height: math.unit(5 + 7 / 12, "inches")
  16665. },
  16666. {
  16667. name: "Macro",
  16668. height: math.unit(80, "meters"),
  16669. default: true
  16670. },
  16671. {
  16672. name: "Megamacro",
  16673. height: math.unit(250, "meters")
  16674. },
  16675. {
  16676. name: "Gigamacro",
  16677. height: math.unit(5, "km")
  16678. },
  16679. {
  16680. name: "Cosmic",
  16681. height: math.unit(2.5e6, "miles")
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(6, "feet"),
  16690. weight: math.unit(150, "lb"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/hanzo/front.svg",
  16694. extra: 374 / 344,
  16695. bottom: 0.02
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Normal",
  16702. height: math.unit(8, "feet"),
  16703. default: true
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(7, "feet"),
  16712. weight: math.unit(130, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/anna/front.svg",
  16716. extra: 169 / 145,
  16717. bottom: 0.06
  16718. }
  16719. },
  16720. full: {
  16721. height: math.unit(4.96, "feet"),
  16722. weight: math.unit(220, "lb"),
  16723. name: "Full",
  16724. image: {
  16725. source: "./media/characters/anna/full.svg",
  16726. extra: 138 / 114,
  16727. bottom: 0.15
  16728. }
  16729. },
  16730. tongue: {
  16731. height: math.unit(2.53, "feet"),
  16732. name: "Tongue",
  16733. image: {
  16734. source: "./media/characters/anna/tongue.svg"
  16735. }
  16736. },
  16737. },
  16738. [
  16739. {
  16740. name: "Normal",
  16741. height: math.unit(7, "feet"),
  16742. default: true
  16743. },
  16744. ]
  16745. ))
  16746. characterMakers.push(() => makeCharacter(
  16747. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16748. {
  16749. front: {
  16750. height: math.unit(7, "feet"),
  16751. weight: math.unit(150, "lb"),
  16752. name: "Front",
  16753. image: {
  16754. source: "./media/characters/ian-corvid/front.svg",
  16755. extra: 150 / 142,
  16756. bottom: 0.02
  16757. }
  16758. },
  16759. back: {
  16760. height: math.unit(7, "feet"),
  16761. weight: math.unit(150, "lb"),
  16762. name: "Back",
  16763. image: {
  16764. source: "./media/characters/ian-corvid/back.svg",
  16765. extra: 150 / 143,
  16766. bottom: 0.01
  16767. }
  16768. },
  16769. stomping: {
  16770. height: math.unit(7, "feet"),
  16771. weight: math.unit(150, "lb"),
  16772. name: "Stomping",
  16773. image: {
  16774. source: "./media/characters/ian-corvid/stomping.svg",
  16775. extra: 76 / 72
  16776. }
  16777. },
  16778. sitting: {
  16779. height: math.unit(7 / 1.8, "feet"),
  16780. weight: math.unit(150, "lb"),
  16781. name: "Sitting",
  16782. image: {
  16783. source: "./media/characters/ian-corvid/sitting.svg",
  16784. extra: 1400 / 1269,
  16785. bottom: 0.15
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Tiny Microw",
  16792. height: math.unit(1, "inch")
  16793. },
  16794. {
  16795. name: "Microw",
  16796. height: math.unit(6, "inches")
  16797. },
  16798. {
  16799. name: "Crow",
  16800. height: math.unit(7 + 1 / 12, "feet"),
  16801. default: true
  16802. },
  16803. {
  16804. name: "Macrow",
  16805. height: math.unit(176, "feet")
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16811. {
  16812. front: {
  16813. height: math.unit(5 + 7 / 12, "feet"),
  16814. weight: math.unit(147, "lb"),
  16815. name: "Front",
  16816. image: {
  16817. source: "./media/characters/natalie-kellon/front.svg",
  16818. extra: 1214 / 1141,
  16819. bottom: 0.02
  16820. }
  16821. },
  16822. },
  16823. [
  16824. {
  16825. name: "Micro",
  16826. height: math.unit(1 / 16, "inch")
  16827. },
  16828. {
  16829. name: "Tiny",
  16830. height: math.unit(4, "inches")
  16831. },
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(5 + 7 / 12, "feet"),
  16835. default: true
  16836. },
  16837. {
  16838. name: "Amazon",
  16839. height: math.unit(12, "feet")
  16840. },
  16841. {
  16842. name: "Giantess",
  16843. height: math.unit(160, "meters")
  16844. },
  16845. {
  16846. name: "Titaness",
  16847. height: math.unit(800, "meters")
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16853. {
  16854. front: {
  16855. height: math.unit(6, "feet"),
  16856. weight: math.unit(150, "lb"),
  16857. name: "Front",
  16858. image: {
  16859. source: "./media/characters/alluria/front.svg",
  16860. extra: 806 / 738,
  16861. bottom: 0.01
  16862. }
  16863. },
  16864. side: {
  16865. height: math.unit(6, "feet"),
  16866. weight: math.unit(150, "lb"),
  16867. name: "Side",
  16868. image: {
  16869. source: "./media/characters/alluria/side.svg",
  16870. extra: 800 / 750,
  16871. }
  16872. },
  16873. back: {
  16874. height: math.unit(6, "feet"),
  16875. weight: math.unit(150, "lb"),
  16876. name: "Back",
  16877. image: {
  16878. source: "./media/characters/alluria/back.svg",
  16879. extra: 806 / 738,
  16880. }
  16881. },
  16882. frontMaid: {
  16883. height: math.unit(6, "feet"),
  16884. weight: math.unit(150, "lb"),
  16885. name: "Front (Maid)",
  16886. image: {
  16887. source: "./media/characters/alluria/front-maid.svg",
  16888. extra: 806 / 738,
  16889. bottom: 0.01
  16890. }
  16891. },
  16892. sideMaid: {
  16893. height: math.unit(6, "feet"),
  16894. weight: math.unit(150, "lb"),
  16895. name: "Side (Maid)",
  16896. image: {
  16897. source: "./media/characters/alluria/side-maid.svg",
  16898. extra: 800 / 750,
  16899. bottom: 0.005
  16900. }
  16901. },
  16902. backMaid: {
  16903. height: math.unit(6, "feet"),
  16904. weight: math.unit(150, "lb"),
  16905. name: "Back (Maid)",
  16906. image: {
  16907. source: "./media/characters/alluria/back-maid.svg",
  16908. extra: 806 / 738,
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Micro",
  16915. height: math.unit(6, "inches"),
  16916. default: true
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(6, "feet"),
  16925. weight: math.unit(150, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/kyle/front.svg",
  16929. extra: 1069 / 962,
  16930. bottom: 77.228 / 1727.45
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Macro",
  16937. height: math.unit(150, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(6, "feet"),
  16947. weight: math.unit(300, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/duncan/front.svg",
  16951. extra: 1650 / 1482,
  16952. bottom: 0.05
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Macro",
  16959. height: math.unit(100, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(5 + 4 / 12, "feet"),
  16969. weight: math.unit(220, "lb"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/memory/front.svg",
  16973. extra: 3641 / 3545,
  16974. bottom: 0.03
  16975. }
  16976. },
  16977. back: {
  16978. height: math.unit(5 + 4 / 12, "feet"),
  16979. weight: math.unit(220, "lb"),
  16980. name: "Back",
  16981. image: {
  16982. source: "./media/characters/memory/back.svg",
  16983. extra: 3641 / 3545,
  16984. bottom: 0.025
  16985. }
  16986. },
  16987. frontSkirt: {
  16988. height: math.unit(5 + 4 / 12, "feet"),
  16989. weight: math.unit(220, "lb"),
  16990. name: "Front (Skirt)",
  16991. image: {
  16992. source: "./media/characters/memory/front-skirt.svg",
  16993. extra: 3641 / 3545,
  16994. bottom: 0.03
  16995. }
  16996. },
  16997. frontDress: {
  16998. height: math.unit(5 + 4 / 12, "feet"),
  16999. weight: math.unit(220, "lb"),
  17000. name: "Front (Dress)",
  17001. image: {
  17002. source: "./media/characters/memory/front-dress.svg",
  17003. extra: 3641 / 3545,
  17004. bottom: 0.03
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Micro",
  17011. height: math.unit(6, "inches"),
  17012. default: true
  17013. },
  17014. {
  17015. name: "Normal",
  17016. height: math.unit(5 + 4 / 12, "feet")
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(4 + 11 / 12, "feet"),
  17025. weight: math.unit(100, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/luno/front.svg",
  17029. extra: 1535 / 1487,
  17030. bottom: 0.03
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Micro",
  17037. height: math.unit(3, "inches")
  17038. },
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(4 + 11 / 12, "feet"),
  17042. default: true
  17043. },
  17044. {
  17045. name: "Macro",
  17046. height: math.unit(300, "feet")
  17047. },
  17048. {
  17049. name: "Megamacro",
  17050. height: math.unit(700, "miles")
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17056. {
  17057. front: {
  17058. height: math.unit(6 + 2 / 12, "feet"),
  17059. weight: math.unit(170, "lb"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/jamesy/front.svg",
  17063. extra: 440 / 382,
  17064. bottom: 0.005
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Micro",
  17071. height: math.unit(3, "inches")
  17072. },
  17073. {
  17074. name: "Normal",
  17075. height: math.unit(6 + 2 / 12, "feet"),
  17076. default: true
  17077. },
  17078. {
  17079. name: "Macro",
  17080. height: math.unit(300, "feet")
  17081. },
  17082. {
  17083. name: "Megamacro",
  17084. height: math.unit(700, "miles")
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17090. {
  17091. front: {
  17092. height: math.unit(6, "feet"),
  17093. weight: math.unit(160, "lb"),
  17094. name: "Front",
  17095. image: {
  17096. source: "./media/characters/mark/front.svg",
  17097. extra: 3300 / 3100,
  17098. bottom: 136.42 / 3440.47
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Macro",
  17105. height: math.unit(120, "meters")
  17106. },
  17107. {
  17108. name: "Bigger Macro",
  17109. height: math.unit(350, "meters")
  17110. },
  17111. {
  17112. name: "Megamacro",
  17113. height: math.unit(8, "km"),
  17114. default: true
  17115. },
  17116. {
  17117. name: "Continental",
  17118. height: math.unit(4550, "km")
  17119. },
  17120. {
  17121. name: "Planetary",
  17122. height: math.unit(65000, "km")
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(6, "feet"),
  17131. weight: math.unit(400, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/mac/front.svg",
  17135. extra: 1048 / 987.7,
  17136. bottom: 60 / 1107.6,
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Macro",
  17143. height: math.unit(500, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(5 + 2 / 12, "feet"),
  17153. weight: math.unit(190, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/bari/front.svg",
  17157. extra: 3156 / 2880,
  17158. bottom: 0.03
  17159. }
  17160. },
  17161. back: {
  17162. height: math.unit(5 + 2 / 12, "feet"),
  17163. weight: math.unit(190, "lb"),
  17164. name: "Back",
  17165. image: {
  17166. source: "./media/characters/bari/back.svg",
  17167. extra: 3260 / 2834,
  17168. bottom: 0.025
  17169. }
  17170. },
  17171. frontPlush: {
  17172. height: math.unit(5 + 2 / 12, "feet"),
  17173. weight: math.unit(190, "lb"),
  17174. name: "Front (Plush)",
  17175. image: {
  17176. source: "./media/characters/bari/front-plush.svg",
  17177. extra: 1112 / 1061,
  17178. bottom: 0.002
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Micro",
  17185. height: math.unit(3, "inches")
  17186. },
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(5 + 2 / 12, "feet"),
  17190. default: true
  17191. },
  17192. {
  17193. name: "Macro",
  17194. height: math.unit(20, "feet")
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17200. {
  17201. front: {
  17202. height: math.unit(6 + 1 / 12, "feet"),
  17203. weight: math.unit(275, "lb"),
  17204. name: "Front",
  17205. image: {
  17206. source: "./media/characters/hunter-misha-raven/front.svg"
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Mortal",
  17213. height: math.unit(6 + 1 / 12, "feet")
  17214. },
  17215. {
  17216. name: "Divine",
  17217. height: math.unit(1.12134e34, "parsecs"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17224. {
  17225. front: {
  17226. height: math.unit(6 + 3 / 12, "feet"),
  17227. weight: math.unit(220, "lb"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/max-calore/front.svg",
  17231. extra: 1700 / 1648,
  17232. bottom: 0.01
  17233. }
  17234. },
  17235. back: {
  17236. height: math.unit(6 + 3 / 12, "feet"),
  17237. weight: math.unit(220, "lb"),
  17238. name: "Back",
  17239. image: {
  17240. source: "./media/characters/max-calore/back.svg",
  17241. extra: 1700 / 1648,
  17242. bottom: 0.01
  17243. }
  17244. },
  17245. },
  17246. [
  17247. {
  17248. name: "Normal",
  17249. height: math.unit(6 + 3 / 12, "feet"),
  17250. default: true
  17251. },
  17252. ]
  17253. ))
  17254. characterMakers.push(() => makeCharacter(
  17255. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17256. {
  17257. side: {
  17258. height: math.unit(2 + 8 / 12, "feet"),
  17259. weight: math.unit(99, "lb"),
  17260. name: "Side",
  17261. image: {
  17262. source: "./media/characters/aspen/side.svg",
  17263. extra: 152 / 138,
  17264. bottom: 0.032
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Normal",
  17271. height: math.unit(2 + 8 / 12, "feet"),
  17272. default: true
  17273. },
  17274. ]
  17275. ))
  17276. characterMakers.push(() => makeCharacter(
  17277. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17278. {
  17279. side: {
  17280. height: math.unit(3 + 2 / 12, "feet"),
  17281. weight: math.unit(224, "lb"),
  17282. name: "Side",
  17283. image: {
  17284. source: "./media/characters/sheila-feral-wolf/side.svg",
  17285. extra: 179 / 166,
  17286. bottom: 0.03
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(3 + 2 / 12, "feet"),
  17294. default: true
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17300. {
  17301. side: {
  17302. height: math.unit(1 + 9 / 12, "feet"),
  17303. weight: math.unit(38, "lb"),
  17304. name: "Side",
  17305. image: {
  17306. source: "./media/characters/michelle/side.svg",
  17307. extra: 147 / 136.7,
  17308. bottom: 0.03
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Normal",
  17315. height: math.unit(1 + 9 / 12, "feet"),
  17316. default: true
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17322. {
  17323. front: {
  17324. height: math.unit(1.54, "feet"),
  17325. weight: math.unit(50, "lb"),
  17326. name: "Front",
  17327. image: {
  17328. source: "./media/characters/nino/front.svg"
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Normal",
  17335. height: math.unit(1.54, "feet"),
  17336. default: true
  17337. },
  17338. ]
  17339. ))
  17340. characterMakers.push(() => makeCharacter(
  17341. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17342. {
  17343. front: {
  17344. height: math.unit(1.49, "feet"),
  17345. weight: math.unit(45, "lb"),
  17346. name: "Front",
  17347. image: {
  17348. source: "./media/characters/viola/front.svg"
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(1.49, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(6 + 5 / 12, "feet"),
  17365. weight: math.unit(580, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/atlas/front.svg",
  17369. extra: 298.5 / 290,
  17370. bottom: 0.015
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(6 + 5 / 12, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17384. {
  17385. side: {
  17386. height: math.unit(15.6, "inches"),
  17387. weight: math.unit(10, "lb"),
  17388. name: "Side",
  17389. image: {
  17390. source: "./media/characters/davy/side.svg",
  17391. extra: 200 / 170,
  17392. bottom: 0.01
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(15.6, "inches"),
  17400. default: true
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17406. {
  17407. side: {
  17408. height: math.unit(4 + 8 / 12, "feet"),
  17409. weight: math.unit(166, "lb"),
  17410. name: "Side",
  17411. image: {
  17412. source: "./media/characters/fiona/side.svg",
  17413. extra: 232 / 220,
  17414. bottom: 0.03
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Normal",
  17421. height: math.unit(4 + 8 / 12, "feet"),
  17422. default: true
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17428. {
  17429. front: {
  17430. height: math.unit(26, "inches"),
  17431. weight: math.unit(35, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/lyla/front.svg",
  17435. bottom: 0.1
  17436. }
  17437. },
  17438. },
  17439. [
  17440. {
  17441. name: "Normal",
  17442. height: math.unit(3, "feet"),
  17443. default: true
  17444. },
  17445. ]
  17446. ))
  17447. characterMakers.push(() => makeCharacter(
  17448. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17449. {
  17450. side: {
  17451. height: math.unit(1.8, "feet"),
  17452. weight: math.unit(44, "lb"),
  17453. name: "Side",
  17454. image: {
  17455. source: "./media/characters/perseus/side.svg",
  17456. bottom: 0.21
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Normal",
  17463. height: math.unit(1.8, "feet"),
  17464. default: true
  17465. },
  17466. ]
  17467. ))
  17468. characterMakers.push(() => makeCharacter(
  17469. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17470. {
  17471. side: {
  17472. height: math.unit(4 + 2 / 12, "feet"),
  17473. weight: math.unit(20, "lb"),
  17474. name: "Side",
  17475. image: {
  17476. source: "./media/characters/remus/side.svg"
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(4 + 2 / 12, "feet"),
  17484. default: true
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17490. {
  17491. front: {
  17492. height: math.unit(4 + 11 / 12, "feet"),
  17493. weight: math.unit(114, "lb"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/raf/front.svg",
  17497. extra: 1504/1339,
  17498. bottom: 26/1530
  17499. }
  17500. },
  17501. side: {
  17502. height: math.unit(4 + 11 / 12, "feet"),
  17503. weight: math.unit(114, "lb"),
  17504. name: "Side",
  17505. image: {
  17506. source: "./media/characters/raf/side.svg",
  17507. extra: 1466/1316,
  17508. bottom: 29/1495
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Micro",
  17515. height: math.unit(2, "inches")
  17516. },
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(4 + 11 / 12, "feet"),
  17520. default: true
  17521. },
  17522. {
  17523. name: "Macro",
  17524. height: math.unit(70, "feet")
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(1.5, "meters"),
  17533. weight: math.unit(68, "kg"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/liam-einarr/front.svg",
  17537. extra: 2822 / 2666
  17538. }
  17539. },
  17540. back: {
  17541. height: math.unit(1.5, "meters"),
  17542. weight: math.unit(68, "kg"),
  17543. name: "Back",
  17544. image: {
  17545. source: "./media/characters/liam-einarr/back.svg",
  17546. extra: 2822 / 2666,
  17547. bottom: 0.015
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(1.5, "meters"),
  17555. default: true
  17556. },
  17557. {
  17558. name: "Macro",
  17559. height: math.unit(150, "meters")
  17560. },
  17561. {
  17562. name: "Megamacro",
  17563. height: math.unit(35, "km")
  17564. },
  17565. ]
  17566. ))
  17567. characterMakers.push(() => makeCharacter(
  17568. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17569. {
  17570. front: {
  17571. height: math.unit(6, "feet"),
  17572. weight: math.unit(75, "kg"),
  17573. name: "Front",
  17574. image: {
  17575. source: "./media/characters/linda/front.svg",
  17576. extra: 930 / 874,
  17577. bottom: 0.004
  17578. }
  17579. },
  17580. },
  17581. [
  17582. {
  17583. name: "Normal",
  17584. height: math.unit(6, "feet"),
  17585. default: true
  17586. },
  17587. ]
  17588. ))
  17589. characterMakers.push(() => makeCharacter(
  17590. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17591. {
  17592. front: {
  17593. height: math.unit(6 + 8 / 12, "feet"),
  17594. weight: math.unit(220, "lb"),
  17595. name: "Front",
  17596. image: {
  17597. source: "./media/characters/caylex/front.svg",
  17598. extra: 821 / 772,
  17599. bottom: 0.07
  17600. }
  17601. },
  17602. back: {
  17603. height: math.unit(6 + 8 / 12, "feet"),
  17604. weight: math.unit(220, "lb"),
  17605. name: "Back",
  17606. image: {
  17607. source: "./media/characters/caylex/back.svg",
  17608. extra: 821 / 772,
  17609. bottom: 0.022
  17610. }
  17611. },
  17612. hand: {
  17613. height: math.unit(1.25, "feet"),
  17614. name: "Hand",
  17615. image: {
  17616. source: "./media/characters/caylex/hand.svg"
  17617. }
  17618. },
  17619. foot: {
  17620. height: math.unit(1.6, "feet"),
  17621. name: "Foot",
  17622. image: {
  17623. source: "./media/characters/caylex/foot.svg"
  17624. }
  17625. },
  17626. armored: {
  17627. height: math.unit(6 + 8 / 12, "feet"),
  17628. weight: math.unit(250, "lb"),
  17629. name: "Armored",
  17630. image: {
  17631. source: "./media/characters/caylex/armored.svg",
  17632. extra: 1420 / 1310,
  17633. bottom: 0.045
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(6 + 8 / 12, "feet"),
  17641. default: true
  17642. },
  17643. {
  17644. name: "Normal+",
  17645. height: math.unit(12, "feet")
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17651. {
  17652. front: {
  17653. height: math.unit(7 + 6 / 12, "feet"),
  17654. weight: math.unit(288, "lb"),
  17655. name: "Front",
  17656. image: {
  17657. source: "./media/characters/alana/front.svg",
  17658. extra: 679 / 653,
  17659. bottom: 22.5 / 701
  17660. }
  17661. },
  17662. },
  17663. [
  17664. {
  17665. name: "Normal",
  17666. height: math.unit(7 + 6 / 12, "feet")
  17667. },
  17668. {
  17669. name: "Large",
  17670. height: math.unit(50, "feet")
  17671. },
  17672. {
  17673. name: "Macro",
  17674. height: math.unit(100, "feet"),
  17675. default: true
  17676. },
  17677. {
  17678. name: "Macro+",
  17679. height: math.unit(200, "feet")
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(6 + 1 / 12, "feet"),
  17688. weight: math.unit(210, "lb"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/hasani/front.svg",
  17692. extra: 244 / 232,
  17693. bottom: 0.01
  17694. }
  17695. },
  17696. back: {
  17697. height: math.unit(6 + 1 / 12, "feet"),
  17698. weight: math.unit(210, "lb"),
  17699. name: "Back",
  17700. image: {
  17701. source: "./media/characters/hasani/back.svg",
  17702. extra: 244 / 232,
  17703. bottom: 0.01
  17704. }
  17705. },
  17706. },
  17707. [
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(6 + 1 / 12, "feet")
  17711. },
  17712. {
  17713. name: "Macro",
  17714. height: math.unit(175, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(1.82, "meters"),
  17724. weight: math.unit(140, "lb"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/nita/front.svg",
  17728. extra: 2473 / 2363,
  17729. bottom: 0.01
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(1.82, "m")
  17737. },
  17738. {
  17739. name: "Macro",
  17740. height: math.unit(300, "m")
  17741. },
  17742. {
  17743. name: "Mistake Canon",
  17744. height: math.unit(0.5, "miles"),
  17745. default: true
  17746. },
  17747. {
  17748. name: "Big Mistake",
  17749. height: math.unit(13, "miles")
  17750. },
  17751. {
  17752. name: "Playing God",
  17753. height: math.unit(2450, "miles")
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17759. {
  17760. front: {
  17761. height: math.unit(4, "feet"),
  17762. weight: math.unit(120, "lb"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/shiriko/front.svg",
  17766. extra: 970/934,
  17767. bottom: 5/975
  17768. }
  17769. },
  17770. },
  17771. [
  17772. {
  17773. name: "Normal",
  17774. height: math.unit(4, "feet"),
  17775. default: true
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17781. {
  17782. front: {
  17783. height: math.unit(6, "feet"),
  17784. name: "front",
  17785. image: {
  17786. source: "./media/characters/deja/front.svg",
  17787. extra: 926 / 840,
  17788. bottom: 0.07
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Planck Length",
  17795. height: math.unit(1.6e-35, "meters")
  17796. },
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(30.48, "meters"),
  17800. default: true
  17801. },
  17802. {
  17803. name: "Universal",
  17804. height: math.unit(8.8e26, "meters")
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17810. {
  17811. side: {
  17812. height: math.unit(8, "feet"),
  17813. weight: math.unit(6300, "lb"),
  17814. name: "Side",
  17815. image: {
  17816. source: "./media/characters/anima/side.svg",
  17817. bottom: 0.035
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(8, "feet"),
  17825. default: true
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17831. {
  17832. front: {
  17833. height: math.unit(8, "feet"),
  17834. weight: math.unit(350, "lb"),
  17835. name: "Front",
  17836. image: {
  17837. source: "./media/characters/bianca/front.svg",
  17838. extra: 234 / 225,
  17839. bottom: 0.03
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(8, "feet"),
  17847. default: true
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(6, "feet"),
  17856. weight: math.unit(150, "lb"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/adinia/front.svg",
  17860. extra: 1845 / 1672,
  17861. bottom: 0.02
  17862. }
  17863. },
  17864. back: {
  17865. height: math.unit(6, "feet"),
  17866. weight: math.unit(150, "lb"),
  17867. name: "Back",
  17868. image: {
  17869. source: "./media/characters/adinia/back.svg",
  17870. extra: 1845 / 1672,
  17871. bottom: 0.002
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(11 + 5 / 12, "feet"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(3, "meters"),
  17888. weight: math.unit(200, "kg"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/lykasa/front.svg",
  17892. extra: 1076 / 976,
  17893. bottom: 0.06
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Normal",
  17900. height: math.unit(3, "meters")
  17901. },
  17902. {
  17903. name: "Kaiju",
  17904. height: math.unit(120, "meters"),
  17905. default: true
  17906. },
  17907. {
  17908. name: "Mega Kaiju",
  17909. height: math.unit(240, "km")
  17910. },
  17911. {
  17912. name: "Giga Kaiju",
  17913. height: math.unit(400, "megameters")
  17914. },
  17915. {
  17916. name: "Tera Kaiju",
  17917. height: math.unit(800, "gigameters")
  17918. },
  17919. {
  17920. name: "Kaiju Dragon Goddess",
  17921. height: math.unit(26, "zettaparsecs")
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17927. {
  17928. side: {
  17929. height: math.unit(283 / 124 * 6, "feet"),
  17930. weight: math.unit(35000, "lb"),
  17931. name: "Side",
  17932. image: {
  17933. source: "./media/characters/malfaren/side.svg",
  17934. extra: 1310/529,
  17935. bottom: 24/1334
  17936. }
  17937. },
  17938. front: {
  17939. height: math.unit(22.36, "feet"),
  17940. weight: math.unit(35000, "lb"),
  17941. name: "Front",
  17942. image: {
  17943. source: "./media/characters/malfaren/front.svg",
  17944. extra: 1237/1115,
  17945. bottom: 32/1269
  17946. }
  17947. },
  17948. maw: {
  17949. height: math.unit(6.9, "feet"),
  17950. name: "Maw",
  17951. image: {
  17952. source: "./media/characters/malfaren/maw.svg"
  17953. }
  17954. },
  17955. dick: {
  17956. height: math.unit(6.19, "feet"),
  17957. name: "Dick",
  17958. image: {
  17959. source: "./media/characters/malfaren/dick.svg"
  17960. }
  17961. },
  17962. eye: {
  17963. height: math.unit(0.69, "feet"),
  17964. name: "Eye",
  17965. image: {
  17966. source: "./media/characters/malfaren/eye.svg"
  17967. }
  17968. },
  17969. },
  17970. [
  17971. {
  17972. name: "Big",
  17973. height: math.unit(283 / 162 * 6, "feet"),
  17974. },
  17975. {
  17976. name: "Bigger",
  17977. height: math.unit(283 / 124 * 6, "feet")
  17978. },
  17979. {
  17980. name: "Massive",
  17981. height: math.unit(283 / 92 * 6, "feet"),
  17982. default: true
  17983. },
  17984. {
  17985. name: "👀💦",
  17986. height: math.unit(283 / 73 * 6, "feet"),
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17992. {
  17993. front: {
  17994. height: math.unit(1.7, "m"),
  17995. weight: math.unit(70, "kg"),
  17996. name: "Front",
  17997. image: {
  17998. source: "./media/characters/kernel/front.svg",
  17999. extra: 222 / 210,
  18000. bottom: 0.007
  18001. }
  18002. },
  18003. },
  18004. [
  18005. {
  18006. name: "Nano",
  18007. height: math.unit(17, "micrometers")
  18008. },
  18009. {
  18010. name: "Micro",
  18011. height: math.unit(1.7, "mm")
  18012. },
  18013. {
  18014. name: "Small",
  18015. height: math.unit(1.7, "cm")
  18016. },
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(1.7, "m"),
  18020. default: true
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18026. {
  18027. front: {
  18028. height: math.unit(1.75, "meters"),
  18029. weight: math.unit(65, "kg"),
  18030. name: "Front",
  18031. image: {
  18032. source: "./media/characters/jayne-folest/front.svg",
  18033. extra: 2115 / 2007,
  18034. bottom: 0.02
  18035. }
  18036. },
  18037. back: {
  18038. height: math.unit(1.75, "meters"),
  18039. weight: math.unit(65, "kg"),
  18040. name: "Back",
  18041. image: {
  18042. source: "./media/characters/jayne-folest/back.svg",
  18043. extra: 2115 / 2007,
  18044. bottom: 0.005
  18045. }
  18046. },
  18047. frontClothed: {
  18048. height: math.unit(1.75, "meters"),
  18049. weight: math.unit(65, "kg"),
  18050. name: "Front (Clothed)",
  18051. image: {
  18052. source: "./media/characters/jayne-folest/front-clothed.svg",
  18053. extra: 2115 / 2007,
  18054. bottom: 0.035
  18055. }
  18056. },
  18057. hand: {
  18058. height: math.unit(1 / 1.260, "feet"),
  18059. name: "Hand",
  18060. image: {
  18061. source: "./media/characters/jayne-folest/hand.svg"
  18062. }
  18063. },
  18064. foot: {
  18065. height: math.unit(1 / 0.918, "feet"),
  18066. name: "Foot",
  18067. image: {
  18068. source: "./media/characters/jayne-folest/foot.svg"
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Micro",
  18075. height: math.unit(4, "cm")
  18076. },
  18077. {
  18078. name: "Normal",
  18079. height: math.unit(1.75, "meters")
  18080. },
  18081. {
  18082. name: "Macro",
  18083. height: math.unit(47.5, "meters"),
  18084. default: true
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18090. {
  18091. front: {
  18092. height: math.unit(180, "cm"),
  18093. weight: math.unit(70, "kg"),
  18094. name: "Front",
  18095. image: {
  18096. source: "./media/characters/algier/front.svg",
  18097. extra: 596 / 572,
  18098. bottom: 0.04
  18099. }
  18100. },
  18101. back: {
  18102. height: math.unit(180, "cm"),
  18103. weight: math.unit(70, "kg"),
  18104. name: "Back",
  18105. image: {
  18106. source: "./media/characters/algier/back.svg",
  18107. extra: 596 / 572,
  18108. bottom: 0.025
  18109. }
  18110. },
  18111. frontdressed: {
  18112. height: math.unit(180, "cm"),
  18113. weight: math.unit(150, "kg"),
  18114. name: "Front-dressed",
  18115. image: {
  18116. source: "./media/characters/algier/front-dressed.svg",
  18117. extra: 596 / 572,
  18118. bottom: 0.038
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Micro",
  18125. height: math.unit(5, "cm")
  18126. },
  18127. {
  18128. name: "Normal",
  18129. height: math.unit(180, "cm"),
  18130. default: true
  18131. },
  18132. {
  18133. name: "Macro",
  18134. height: math.unit(64, "m")
  18135. },
  18136. ]
  18137. ))
  18138. characterMakers.push(() => makeCharacter(
  18139. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18140. {
  18141. upright: {
  18142. height: math.unit(7, "feet"),
  18143. weight: math.unit(300, "lb"),
  18144. name: "Upright",
  18145. image: {
  18146. source: "./media/characters/pretzel/upright.svg",
  18147. extra: 534 / 522,
  18148. bottom: 0.065
  18149. }
  18150. },
  18151. sprawling: {
  18152. height: math.unit(3.75, "feet"),
  18153. weight: math.unit(300, "lb"),
  18154. name: "Sprawling",
  18155. image: {
  18156. source: "./media/characters/pretzel/sprawling.svg",
  18157. extra: 314 / 281,
  18158. bottom: 0.1
  18159. }
  18160. },
  18161. tongue: {
  18162. height: math.unit(2, "feet"),
  18163. name: "Tongue",
  18164. image: {
  18165. source: "./media/characters/pretzel/tongue.svg"
  18166. }
  18167. },
  18168. },
  18169. [
  18170. {
  18171. name: "Normal",
  18172. height: math.unit(7, "feet"),
  18173. default: true
  18174. },
  18175. {
  18176. name: "Oversized",
  18177. height: math.unit(15, "feet")
  18178. },
  18179. {
  18180. name: "Huge",
  18181. height: math.unit(30, "feet")
  18182. },
  18183. {
  18184. name: "Macro",
  18185. height: math.unit(250, "feet")
  18186. },
  18187. ]
  18188. ))
  18189. characterMakers.push(() => makeCharacter(
  18190. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18191. {
  18192. sideFront: {
  18193. height: math.unit(5 + 2 / 12, "feet"),
  18194. weight: math.unit(120, "lb"),
  18195. name: "Front Side",
  18196. image: {
  18197. source: "./media/characters/roxi/side-front.svg",
  18198. extra: 2924 / 2717,
  18199. bottom: 0.08
  18200. }
  18201. },
  18202. sideBack: {
  18203. height: math.unit(5 + 2 / 12, "feet"),
  18204. weight: math.unit(120, "lb"),
  18205. name: "Back Side",
  18206. image: {
  18207. source: "./media/characters/roxi/side-back.svg",
  18208. extra: 2904 / 2693,
  18209. bottom: 0.06
  18210. }
  18211. },
  18212. front: {
  18213. height: math.unit(5 + 2 / 12, "feet"),
  18214. weight: math.unit(120, "lb"),
  18215. name: "Front",
  18216. image: {
  18217. source: "./media/characters/roxi/front.svg",
  18218. extra: 2028 / 1907,
  18219. bottom: 0.01
  18220. }
  18221. },
  18222. frontAlt: {
  18223. height: math.unit(5 + 2 / 12, "feet"),
  18224. weight: math.unit(120, "lb"),
  18225. name: "Front (Alt)",
  18226. image: {
  18227. source: "./media/characters/roxi/front-alt.svg",
  18228. extra: 1828 / 1798,
  18229. bottom: 0.01
  18230. }
  18231. },
  18232. sitting: {
  18233. height: math.unit(2.8, "feet"),
  18234. weight: math.unit(120, "lb"),
  18235. name: "Sitting",
  18236. image: {
  18237. source: "./media/characters/roxi/sitting.svg",
  18238. extra: 2660 / 2462,
  18239. bottom: 0.1
  18240. }
  18241. },
  18242. },
  18243. [
  18244. {
  18245. name: "Normal",
  18246. height: math.unit(5 + 2 / 12, "feet"),
  18247. default: true
  18248. },
  18249. ]
  18250. ))
  18251. characterMakers.push(() => makeCharacter(
  18252. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18253. {
  18254. side: {
  18255. height: math.unit(55, "feet"),
  18256. weight: math.unit(153, "tons"),
  18257. name: "Side",
  18258. image: {
  18259. source: "./media/characters/shadow/side.svg",
  18260. extra: 701 / 628,
  18261. bottom: 0.02
  18262. }
  18263. },
  18264. flying: {
  18265. height: math.unit(145, "feet"),
  18266. weight: math.unit(153, "tons"),
  18267. name: "Flying",
  18268. image: {
  18269. source: "./media/characters/shadow/flying.svg"
  18270. }
  18271. },
  18272. },
  18273. [
  18274. {
  18275. name: "Normal",
  18276. height: math.unit(55, "feet"),
  18277. default: true
  18278. },
  18279. ]
  18280. ))
  18281. characterMakers.push(() => makeCharacter(
  18282. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18283. {
  18284. front: {
  18285. height: math.unit(6, "feet"),
  18286. weight: math.unit(200, "lb"),
  18287. name: "Front",
  18288. image: {
  18289. source: "./media/characters/marcie/front.svg",
  18290. extra: 960 / 876,
  18291. bottom: 58 / 1017.87
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Macro",
  18298. height: math.unit(1, "mile"),
  18299. default: true
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(7, "feet"),
  18308. weight: math.unit(200, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/kachina/front.svg",
  18312. extra: 1290.68 / 1119,
  18313. bottom: 36.5 / 1327.18
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Normal",
  18320. height: math.unit(7, "feet"),
  18321. default: true
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18327. {
  18328. looking: {
  18329. height: math.unit(2, "meters"),
  18330. weight: math.unit(300, "kg"),
  18331. name: "Looking",
  18332. image: {
  18333. source: "./media/characters/kash/looking.svg",
  18334. extra: 474 / 344,
  18335. bottom: 0.03
  18336. }
  18337. },
  18338. side: {
  18339. height: math.unit(2, "meters"),
  18340. weight: math.unit(300, "kg"),
  18341. name: "Side",
  18342. image: {
  18343. source: "./media/characters/kash/side.svg",
  18344. extra: 302 / 251,
  18345. bottom: 0.03
  18346. }
  18347. },
  18348. front: {
  18349. height: math.unit(2, "meters"),
  18350. weight: math.unit(300, "kg"),
  18351. name: "Front",
  18352. image: {
  18353. source: "./media/characters/kash/front.svg",
  18354. extra: 495 / 360,
  18355. bottom: 0.015
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Normal",
  18362. height: math.unit(2, "meters"),
  18363. default: true
  18364. },
  18365. {
  18366. name: "Big",
  18367. height: math.unit(3, "meters")
  18368. },
  18369. {
  18370. name: "Large",
  18371. height: math.unit(5, "meters")
  18372. },
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18377. {
  18378. feeding: {
  18379. height: math.unit(6.7, "feet"),
  18380. weight: math.unit(350, "lb"),
  18381. name: "Feeding",
  18382. image: {
  18383. source: "./media/characters/lalim/feeding.svg",
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Normal",
  18390. height: math.unit(6.7, "feet"),
  18391. default: true
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(9.5, "feet"),
  18400. weight: math.unit(600, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/de'vout/front.svg",
  18404. extra: 1443 / 1328,
  18405. bottom: 0.025
  18406. }
  18407. },
  18408. back: {
  18409. height: math.unit(9.5, "feet"),
  18410. weight: math.unit(600, "lb"),
  18411. name: "Back",
  18412. image: {
  18413. source: "./media/characters/de'vout/back.svg",
  18414. extra: 1443 / 1328
  18415. }
  18416. },
  18417. frontDressed: {
  18418. height: math.unit(9.5, "feet"),
  18419. weight: math.unit(600, "lb"),
  18420. name: "Front (Dressed",
  18421. image: {
  18422. source: "./media/characters/de'vout/front-dressed.svg",
  18423. extra: 1443 / 1328,
  18424. bottom: 0.025
  18425. }
  18426. },
  18427. backDressed: {
  18428. height: math.unit(9.5, "feet"),
  18429. weight: math.unit(600, "lb"),
  18430. name: "Back (Dressed",
  18431. image: {
  18432. source: "./media/characters/de'vout/back-dressed.svg",
  18433. extra: 1443 / 1328
  18434. }
  18435. },
  18436. },
  18437. [
  18438. {
  18439. name: "Normal",
  18440. height: math.unit(9.5, "feet"),
  18441. default: true
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18447. {
  18448. front: {
  18449. height: math.unit(8, "feet"),
  18450. weight: math.unit(225, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/talana/front.svg",
  18454. extra: 1410 / 1300,
  18455. bottom: 0.015
  18456. }
  18457. },
  18458. frontDressed: {
  18459. height: math.unit(8, "feet"),
  18460. weight: math.unit(225, "lb"),
  18461. name: "Front (Dressed",
  18462. image: {
  18463. source: "./media/characters/talana/front-dressed.svg",
  18464. extra: 1410 / 1300,
  18465. bottom: 0.015
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Normal",
  18472. height: math.unit(8, "feet"),
  18473. default: true
  18474. },
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18479. {
  18480. side: {
  18481. height: math.unit(7.2, "feet"),
  18482. weight: math.unit(150, "lb"),
  18483. name: "Side",
  18484. image: {
  18485. source: "./media/characters/xeauvok/side.svg",
  18486. extra: 1975 / 1523,
  18487. bottom: 0.07
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Normal",
  18494. height: math.unit(7.2, "feet"),
  18495. default: true
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18501. {
  18502. side: {
  18503. height: math.unit(10, "feet"),
  18504. weight: math.unit(900, "kg"),
  18505. name: "Side",
  18506. image: {
  18507. source: "./media/characters/zara/side.svg",
  18508. extra: 504 / 498
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(10, "feet"),
  18516. default: true
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18522. {
  18523. side: {
  18524. height: math.unit(6, "feet"),
  18525. weight: math.unit(150, "lb"),
  18526. name: "Side",
  18527. image: {
  18528. source: "./media/characters/richard-dragon/side.svg",
  18529. extra: 845 / 340,
  18530. bottom: 0.017
  18531. }
  18532. },
  18533. maw: {
  18534. height: math.unit(2.97, "feet"),
  18535. name: "Maw",
  18536. image: {
  18537. source: "./media/characters/richard-dragon/maw.svg"
  18538. }
  18539. },
  18540. },
  18541. [
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18546. {
  18547. front: {
  18548. height: math.unit(4, "feet"),
  18549. weight: math.unit(100, "lb"),
  18550. name: "Front",
  18551. image: {
  18552. source: "./media/characters/richard-smeargle/front.svg",
  18553. extra: 2952 / 2820,
  18554. bottom: 0.028
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(4, "feet"),
  18562. default: true
  18563. },
  18564. {
  18565. name: "Dynamax",
  18566. height: math.unit(20, "meters")
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18572. {
  18573. front: {
  18574. height: math.unit(6, "feet"),
  18575. weight: math.unit(110, "lb"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/klay/front.svg",
  18579. extra: 962 / 883,
  18580. bottom: 0.04
  18581. }
  18582. },
  18583. back: {
  18584. height: math.unit(6, "feet"),
  18585. weight: math.unit(110, "lb"),
  18586. name: "Back",
  18587. image: {
  18588. source: "./media/characters/klay/back.svg",
  18589. extra: 962 / 883
  18590. }
  18591. },
  18592. beans: {
  18593. height: math.unit(1.15, "feet"),
  18594. name: "Beans",
  18595. image: {
  18596. source: "./media/characters/klay/beans.svg"
  18597. }
  18598. },
  18599. },
  18600. [
  18601. {
  18602. name: "Micro",
  18603. height: math.unit(6, "inches")
  18604. },
  18605. {
  18606. name: "Mini",
  18607. height: math.unit(3, "feet")
  18608. },
  18609. {
  18610. name: "Normal",
  18611. height: math.unit(6, "feet"),
  18612. default: true
  18613. },
  18614. {
  18615. name: "Big",
  18616. height: math.unit(25, "feet")
  18617. },
  18618. {
  18619. name: "Macro",
  18620. height: math.unit(100, "feet")
  18621. },
  18622. {
  18623. name: "Megamacro",
  18624. height: math.unit(400, "feet")
  18625. },
  18626. ]
  18627. ))
  18628. characterMakers.push(() => makeCharacter(
  18629. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18630. {
  18631. front: {
  18632. height: math.unit(6, "feet"),
  18633. weight: math.unit(160, "lb"),
  18634. name: "Front",
  18635. image: {
  18636. source: "./media/characters/marcus/front.svg",
  18637. extra: 734 / 676,
  18638. bottom: 0.03
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Little",
  18645. height: math.unit(6, "feet")
  18646. },
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(110, "feet"),
  18650. default: true
  18651. },
  18652. {
  18653. name: "Macro",
  18654. height: math.unit(250, "feet")
  18655. },
  18656. {
  18657. name: "Megamacro",
  18658. height: math.unit(1000, "feet")
  18659. },
  18660. ]
  18661. ))
  18662. characterMakers.push(() => makeCharacter(
  18663. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18664. {
  18665. front: {
  18666. height: math.unit(7, "feet"),
  18667. weight: math.unit(275, "lb"),
  18668. name: "Front",
  18669. image: {
  18670. source: "./media/characters/claude-delroute/front.svg",
  18671. extra: 902/827,
  18672. bottom: 26/928
  18673. }
  18674. },
  18675. side: {
  18676. height: math.unit(7, "feet"),
  18677. weight: math.unit(275, "lb"),
  18678. name: "Side",
  18679. image: {
  18680. source: "./media/characters/claude-delroute/side.svg",
  18681. extra: 908/853,
  18682. bottom: 16/924
  18683. }
  18684. },
  18685. back: {
  18686. height: math.unit(7, "feet"),
  18687. weight: math.unit(275, "lb"),
  18688. name: "Back",
  18689. image: {
  18690. source: "./media/characters/claude-delroute/back.svg",
  18691. extra: 911/829,
  18692. bottom: 18/929
  18693. }
  18694. },
  18695. maw: {
  18696. height: math.unit(0.6407, "meters"),
  18697. name: "Maw",
  18698. image: {
  18699. source: "./media/characters/claude-delroute/maw.svg"
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(7, "feet"),
  18707. default: true
  18708. },
  18709. {
  18710. name: "Lorge",
  18711. height: math.unit(20, "feet")
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18717. {
  18718. front: {
  18719. height: math.unit(8 + 4 / 12, "feet"),
  18720. weight: math.unit(600, "lb"),
  18721. name: "Front",
  18722. image: {
  18723. source: "./media/characters/dragonien/front.svg",
  18724. extra: 100 / 94,
  18725. bottom: 3.3 / 103.3445
  18726. }
  18727. },
  18728. back: {
  18729. height: math.unit(8 + 4 / 12, "feet"),
  18730. weight: math.unit(600, "lb"),
  18731. name: "Back",
  18732. image: {
  18733. source: "./media/characters/dragonien/back.svg",
  18734. extra: 776 / 746,
  18735. bottom: 6.4 / 782.0616
  18736. }
  18737. },
  18738. foot: {
  18739. height: math.unit(1.54, "feet"),
  18740. name: "Foot",
  18741. image: {
  18742. source: "./media/characters/dragonien/foot.svg",
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Normal",
  18749. height: math.unit(8 + 4 / 12, "feet"),
  18750. default: true
  18751. },
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(200, "feet")
  18755. },
  18756. {
  18757. name: "Megamacro",
  18758. height: math.unit(1, "mile")
  18759. },
  18760. {
  18761. name: "Gigamacro",
  18762. height: math.unit(1000, "miles")
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18768. {
  18769. front: {
  18770. height: math.unit(5 + 2 / 12, "feet"),
  18771. weight: math.unit(110, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/desta/front.svg",
  18775. extra: 767 / 726,
  18776. bottom: 11.7 / 779
  18777. }
  18778. },
  18779. back: {
  18780. height: math.unit(5 + 2 / 12, "feet"),
  18781. weight: math.unit(110, "lb"),
  18782. name: "Back",
  18783. image: {
  18784. source: "./media/characters/desta/back.svg",
  18785. extra: 777 / 728,
  18786. bottom: 6 / 784
  18787. }
  18788. },
  18789. frontAlt: {
  18790. height: math.unit(5 + 2 / 12, "feet"),
  18791. weight: math.unit(110, "lb"),
  18792. name: "Front",
  18793. image: {
  18794. source: "./media/characters/desta/front-alt.svg",
  18795. extra: 1482 / 1417
  18796. }
  18797. },
  18798. side: {
  18799. height: math.unit(5 + 2 / 12, "feet"),
  18800. weight: math.unit(110, "lb"),
  18801. name: "Side",
  18802. image: {
  18803. source: "./media/characters/desta/side.svg",
  18804. extra: 2579 / 2491,
  18805. bottom: 0.053
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Micro",
  18812. height: math.unit(6, "inches")
  18813. },
  18814. {
  18815. name: "Normal",
  18816. height: math.unit(5 + 2 / 12, "feet"),
  18817. default: true
  18818. },
  18819. {
  18820. name: "Macro",
  18821. height: math.unit(62, "feet")
  18822. },
  18823. {
  18824. name: "Megamacro",
  18825. height: math.unit(1800, "feet")
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18831. {
  18832. front: {
  18833. height: math.unit(10, "feet"),
  18834. weight: math.unit(700, "lb"),
  18835. name: "Front",
  18836. image: {
  18837. source: "./media/characters/storm-alystar/front.svg",
  18838. extra: 2112 / 1898,
  18839. bottom: 0.034
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Micro",
  18846. height: math.unit(3.5, "inches")
  18847. },
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(10, "feet"),
  18851. default: true
  18852. },
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(400, "feet")
  18856. },
  18857. {
  18858. name: "Deific",
  18859. height: math.unit(60, "miles")
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(2.35, "meters"),
  18868. weight: math.unit(119, "kg"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/ilia/front.svg",
  18872. extra: 1285 / 1255,
  18873. bottom: 0.06
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(2.35, "meters")
  18881. },
  18882. {
  18883. name: "Macro",
  18884. height: math.unit(140, "meters"),
  18885. default: true
  18886. },
  18887. {
  18888. name: "Megamacro",
  18889. height: math.unit(100, "miles")
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18895. {
  18896. front: {
  18897. height: math.unit(6 + 5 / 12, "feet"),
  18898. weight: math.unit(190, "lb"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/kingdead/front.svg",
  18902. extra: 1228 / 1177
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Micro",
  18909. height: math.unit(7, "inches")
  18910. },
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(6 + 5 / 12, "feet")
  18914. },
  18915. {
  18916. name: "Macro",
  18917. height: math.unit(150, "feet"),
  18918. default: true
  18919. },
  18920. {
  18921. name: "Megamacro",
  18922. height: math.unit(200, "miles")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(8, "feet"),
  18931. weight: math.unit(600, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/kyrehx/front.svg",
  18935. extra: 1195 / 1095,
  18936. bottom: 0.034
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Micro",
  18943. height: math.unit(2, "inches")
  18944. },
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(8, "feet"),
  18948. default: true
  18949. },
  18950. {
  18951. name: "Macro",
  18952. height: math.unit(255, "feet")
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18961. weight: math.unit(184, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/xang/front.svg",
  18965. extra: 845 / 755
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18973. default: true
  18974. },
  18975. {
  18976. name: "Macro",
  18977. height: math.unit(0.935 * 146, "feet")
  18978. },
  18979. {
  18980. name: "Megamacro",
  18981. height: math.unit(0.935 * 3, "miles")
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18987. {
  18988. frontDressed: {
  18989. height: math.unit(5 + 7 / 12, "feet"),
  18990. weight: math.unit(140, "lb"),
  18991. name: "Front (Dressed)",
  18992. image: {
  18993. source: "./media/characters/doc-weardno/front-dressed.svg",
  18994. extra: 263 / 234
  18995. }
  18996. },
  18997. backDressed: {
  18998. height: math.unit(5 + 7 / 12, "feet"),
  18999. weight: math.unit(140, "lb"),
  19000. name: "Back (Dressed)",
  19001. image: {
  19002. source: "./media/characters/doc-weardno/back-dressed.svg",
  19003. extra: 266 / 238
  19004. }
  19005. },
  19006. front: {
  19007. height: math.unit(5 + 7 / 12, "feet"),
  19008. weight: math.unit(140, "lb"),
  19009. name: "Front",
  19010. image: {
  19011. source: "./media/characters/doc-weardno/front.svg",
  19012. extra: 254 / 233
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Micro",
  19019. height: math.unit(3, "inches")
  19020. },
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(5 + 7 / 12, "feet"),
  19024. default: true
  19025. },
  19026. {
  19027. name: "Macro",
  19028. height: math.unit(25, "feet")
  19029. },
  19030. {
  19031. name: "Megamacro",
  19032. height: math.unit(2, "miles")
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19038. {
  19039. front: {
  19040. height: math.unit(6 + 2 / 12, "feet"),
  19041. weight: math.unit(153, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/seth-whilst/front.svg",
  19045. bottom: 0.07
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Micro",
  19052. height: math.unit(5, "inches")
  19053. },
  19054. {
  19055. name: "Normal",
  19056. height: math.unit(6 + 2 / 12, "feet"),
  19057. default: true
  19058. },
  19059. ]
  19060. ))
  19061. characterMakers.push(() => makeCharacter(
  19062. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19063. {
  19064. front: {
  19065. height: math.unit(3, "inches"),
  19066. weight: math.unit(8, "grams"),
  19067. name: "Front",
  19068. image: {
  19069. source: "./media/characters/pocket-jabari/front.svg",
  19070. extra: 1024 / 974,
  19071. bottom: 0.039
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Minimicro",
  19078. height: math.unit(8, "mm")
  19079. },
  19080. {
  19081. name: "Micro",
  19082. height: math.unit(3, "inches"),
  19083. default: true
  19084. },
  19085. {
  19086. name: "Normal",
  19087. height: math.unit(3, "feet")
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(15, "feet"),
  19096. weight: math.unit(3280, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/sapphy/front.svg",
  19100. extra: 671 / 577,
  19101. bottom: 0.085
  19102. }
  19103. },
  19104. back: {
  19105. height: math.unit(15, "feet"),
  19106. weight: math.unit(3280, "lb"),
  19107. name: "Back",
  19108. image: {
  19109. source: "./media/characters/sapphy/back.svg",
  19110. extra: 631 / 607,
  19111. bottom: 0.045
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Normal",
  19118. height: math.unit(15, "feet")
  19119. },
  19120. {
  19121. name: "Casual Macro",
  19122. height: math.unit(120, "feet")
  19123. },
  19124. {
  19125. name: "Macro",
  19126. height: math.unit(2150, "feet"),
  19127. default: true
  19128. },
  19129. {
  19130. name: "Megamacro",
  19131. height: math.unit(8, "miles")
  19132. },
  19133. {
  19134. name: "Galaxy Mom",
  19135. height: math.unit(6, "megalightyears")
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19141. {
  19142. front: {
  19143. height: math.unit(6, "feet"),
  19144. weight: math.unit(170, "lb"),
  19145. name: "Front",
  19146. image: {
  19147. source: "./media/characters/kiro/front.svg",
  19148. extra: 1064 / 1012,
  19149. bottom: 0.052
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Micro",
  19156. height: math.unit(6, "inches")
  19157. },
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(6, "feet"),
  19161. default: true
  19162. },
  19163. {
  19164. name: "Macro",
  19165. height: math.unit(72, "feet")
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(5 + 9 / 12, "feet"),
  19174. weight: math.unit(175, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/irishfox/front.svg",
  19178. extra: 1912 / 1680,
  19179. bottom: 0.02
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Nano",
  19186. height: math.unit(1, "mm")
  19187. },
  19188. {
  19189. name: "Micro",
  19190. height: math.unit(2, "inches")
  19191. },
  19192. {
  19193. name: "Normal",
  19194. height: math.unit(5 + 9 / 12, "feet"),
  19195. default: true
  19196. },
  19197. {
  19198. name: "Macro",
  19199. height: math.unit(45, "feet")
  19200. },
  19201. ]
  19202. ))
  19203. characterMakers.push(() => makeCharacter(
  19204. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19205. {
  19206. front: {
  19207. height: math.unit(6 + 1 / 12, "feet"),
  19208. weight: math.unit(75, "lb"),
  19209. name: "Front",
  19210. image: {
  19211. source: "./media/characters/aronai-sieyes/front.svg",
  19212. extra: 1532/1450,
  19213. bottom: 42/1574
  19214. }
  19215. },
  19216. side: {
  19217. height: math.unit(6 + 1 / 12, "feet"),
  19218. weight: math.unit(75, "lb"),
  19219. name: "Side",
  19220. image: {
  19221. source: "./media/characters/aronai-sieyes/side.svg",
  19222. extra: 1422/1365,
  19223. bottom: 148/1570
  19224. }
  19225. },
  19226. back: {
  19227. height: math.unit(6 + 1 / 12, "feet"),
  19228. weight: math.unit(75, "lb"),
  19229. name: "Back",
  19230. image: {
  19231. source: "./media/characters/aronai-sieyes/back.svg",
  19232. extra: 1526/1464,
  19233. bottom: 51/1577
  19234. }
  19235. },
  19236. dressed: {
  19237. height: math.unit(6 + 1 / 12, "feet"),
  19238. weight: math.unit(75, "lb"),
  19239. name: "Dressed",
  19240. image: {
  19241. source: "./media/characters/aronai-sieyes/dressed.svg",
  19242. extra: 1559/1483,
  19243. bottom: 39/1598
  19244. }
  19245. },
  19246. slit: {
  19247. height: math.unit(1.3, "feet"),
  19248. name: "Slit",
  19249. image: {
  19250. source: "./media/characters/aronai-sieyes/slit.svg"
  19251. }
  19252. },
  19253. slitSpread: {
  19254. height: math.unit(0.9, "feet"),
  19255. name: "Slit (Spread)",
  19256. image: {
  19257. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19258. }
  19259. },
  19260. rump: {
  19261. height: math.unit(1.3, "feet"),
  19262. name: "Rump",
  19263. image: {
  19264. source: "./media/characters/aronai-sieyes/rump.svg"
  19265. }
  19266. },
  19267. maw: {
  19268. height: math.unit(1.25, "feet"),
  19269. name: "Maw",
  19270. image: {
  19271. source: "./media/characters/aronai-sieyes/maw.svg"
  19272. }
  19273. },
  19274. feral: {
  19275. height: math.unit(18, "feet"),
  19276. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19277. name: "Feral",
  19278. image: {
  19279. source: "./media/characters/aronai-sieyes/feral.svg",
  19280. extra: 1530 / 1240,
  19281. bottom: 0.035
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Micro",
  19288. height: math.unit(2, "inches")
  19289. },
  19290. {
  19291. name: "Normal",
  19292. height: math.unit(6 + 1 / 12, "feet"),
  19293. default: true
  19294. }
  19295. ]
  19296. ))
  19297. characterMakers.push(() => makeCharacter(
  19298. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19299. {
  19300. front: {
  19301. height: math.unit(12, "feet"),
  19302. weight: math.unit(410, "kg"),
  19303. name: "Front",
  19304. image: {
  19305. source: "./media/characters/xuna/front.svg",
  19306. extra: 2184 / 1980
  19307. }
  19308. },
  19309. side: {
  19310. height: math.unit(12, "feet"),
  19311. weight: math.unit(410, "kg"),
  19312. name: "Side",
  19313. image: {
  19314. source: "./media/characters/xuna/side.svg",
  19315. extra: 2184 / 1980
  19316. }
  19317. },
  19318. back: {
  19319. height: math.unit(12, "feet"),
  19320. weight: math.unit(410, "kg"),
  19321. name: "Back",
  19322. image: {
  19323. source: "./media/characters/xuna/back.svg",
  19324. extra: 2184 / 1980
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Nano glow",
  19331. height: math.unit(10, "nm")
  19332. },
  19333. {
  19334. name: "Micro floof",
  19335. height: math.unit(0.3, "m")
  19336. },
  19337. {
  19338. name: "Huggable softy boi",
  19339. height: math.unit(3.6576, "m"),
  19340. default: true
  19341. },
  19342. {
  19343. name: "Admirable floof",
  19344. height: math.unit(80, "meters")
  19345. },
  19346. {
  19347. name: "Gentle macro",
  19348. height: math.unit(300, "meters")
  19349. },
  19350. {
  19351. name: "Very careful floof",
  19352. height: math.unit(3200, "meters")
  19353. },
  19354. {
  19355. name: "The mega floof",
  19356. height: math.unit(36000, "meters")
  19357. },
  19358. {
  19359. name: "Giga-fur-Wicker",
  19360. height: math.unit(4800000, "meters")
  19361. },
  19362. {
  19363. name: "Licky world",
  19364. height: math.unit(20000000, "meters")
  19365. },
  19366. {
  19367. name: "Floofy cyan sun",
  19368. height: math.unit(1500000000, "meters")
  19369. },
  19370. {
  19371. name: "Milky Wicker",
  19372. height: math.unit(1000000000000000000000, "meters")
  19373. },
  19374. {
  19375. name: "The observing Wicker",
  19376. height: math.unit(999999999999999999999999999, "meters")
  19377. },
  19378. ]
  19379. ))
  19380. characterMakers.push(() => makeCharacter(
  19381. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19382. {
  19383. front: {
  19384. height: math.unit(5 + 9 / 12, "feet"),
  19385. weight: math.unit(150, "lb"),
  19386. name: "Front",
  19387. image: {
  19388. source: "./media/characters/arokha-sieyes/front.svg",
  19389. extra: 1425 / 1284,
  19390. bottom: 0.05
  19391. }
  19392. },
  19393. },
  19394. [
  19395. {
  19396. name: "Normal",
  19397. height: math.unit(5 + 9 / 12, "feet")
  19398. },
  19399. {
  19400. name: "Macro",
  19401. height: math.unit(30, "meters"),
  19402. default: true
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19408. {
  19409. front: {
  19410. height: math.unit(6, "feet"),
  19411. weight: math.unit(180, "lb"),
  19412. name: "Front",
  19413. image: {
  19414. source: "./media/characters/arokh-sieyes/front.svg",
  19415. extra: 1830 / 1769,
  19416. bottom: 0.01
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(6, "feet")
  19424. },
  19425. {
  19426. name: "Macro",
  19427. height: math.unit(30, "meters"),
  19428. default: true
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19434. {
  19435. side: {
  19436. height: math.unit(13 + 1 / 12, "feet"),
  19437. weight: math.unit(8.5, "tonnes"),
  19438. name: "Side",
  19439. image: {
  19440. source: "./media/characters/goldeneye/side.svg",
  19441. extra: 1182 / 778,
  19442. bottom: 0.067
  19443. }
  19444. },
  19445. paw: {
  19446. height: math.unit(3.4, "feet"),
  19447. name: "Paw",
  19448. image: {
  19449. source: "./media/characters/goldeneye/paw.svg"
  19450. }
  19451. },
  19452. },
  19453. [
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(13 + 1 / 12, "feet"),
  19457. default: true
  19458. },
  19459. ]
  19460. ))
  19461. characterMakers.push(() => makeCharacter(
  19462. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19463. {
  19464. front: {
  19465. height: math.unit(6 + 1 / 12, "feet"),
  19466. weight: math.unit(210, "lb"),
  19467. name: "Front",
  19468. image: {
  19469. source: "./media/characters/leonardo-lycheborne/front.svg",
  19470. extra: 776/723,
  19471. bottom: 34/810
  19472. }
  19473. },
  19474. side: {
  19475. height: math.unit(6 + 1 / 12, "feet"),
  19476. weight: math.unit(210, "lb"),
  19477. name: "Side",
  19478. image: {
  19479. source: "./media/characters/leonardo-lycheborne/side.svg",
  19480. extra: 780/728,
  19481. bottom: 12/792
  19482. }
  19483. },
  19484. back: {
  19485. height: math.unit(6 + 1 / 12, "feet"),
  19486. weight: math.unit(210, "lb"),
  19487. name: "Back",
  19488. image: {
  19489. source: "./media/characters/leonardo-lycheborne/back.svg",
  19490. extra: 775/721,
  19491. bottom: 17/792
  19492. }
  19493. },
  19494. hand: {
  19495. height: math.unit(1.08, "feet"),
  19496. name: "Hand",
  19497. image: {
  19498. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19499. }
  19500. },
  19501. foot: {
  19502. height: math.unit(1.32, "feet"),
  19503. name: "Foot",
  19504. image: {
  19505. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19506. }
  19507. },
  19508. maw: {
  19509. height: math.unit(1, "feet"),
  19510. name: "Maw",
  19511. image: {
  19512. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19513. }
  19514. },
  19515. were: {
  19516. height: math.unit(20, "feet"),
  19517. weight: math.unit(7800, "lb"),
  19518. name: "Were",
  19519. image: {
  19520. source: "./media/characters/leonardo-lycheborne/were.svg",
  19521. extra: 1224/1165,
  19522. bottom: 72/1296
  19523. }
  19524. },
  19525. feral: {
  19526. height: math.unit(7.5, "feet"),
  19527. weight: math.unit(600, "lb"),
  19528. name: "Feral",
  19529. image: {
  19530. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19531. extra: 797/702,
  19532. bottom: 139/936
  19533. }
  19534. },
  19535. taur: {
  19536. height: math.unit(11, "feet"),
  19537. weight: math.unit(3300, "lb"),
  19538. name: "Taur",
  19539. image: {
  19540. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19541. extra: 1271/1197,
  19542. bottom: 47/1318
  19543. }
  19544. },
  19545. barghest: {
  19546. height: math.unit(11, "feet"),
  19547. weight: math.unit(1300, "lb"),
  19548. name: "Barghest",
  19549. image: {
  19550. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19551. extra: 1291/1204,
  19552. bottom: 37/1328
  19553. }
  19554. },
  19555. dick: {
  19556. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19557. name: "Dick",
  19558. image: {
  19559. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19560. }
  19561. },
  19562. dickWere: {
  19563. height: math.unit((20) / 3.8, "feet"),
  19564. name: "Dick (Were)",
  19565. image: {
  19566. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(6 + 1 / 12, "feet"),
  19574. default: true
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(10, "feet"),
  19583. weight: math.unit(350, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/jet/front.svg",
  19587. extra: 2050 / 1980,
  19588. bottom: 0.013
  19589. }
  19590. },
  19591. back: {
  19592. height: math.unit(10, "feet"),
  19593. weight: math.unit(350, "lb"),
  19594. name: "Back",
  19595. image: {
  19596. source: "./media/characters/jet/back.svg",
  19597. extra: 2050 / 1980,
  19598. bottom: 0.013
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Micro",
  19605. height: math.unit(6, "inches")
  19606. },
  19607. {
  19608. name: "Normal",
  19609. height: math.unit(10, "feet"),
  19610. default: true
  19611. },
  19612. {
  19613. name: "Macro",
  19614. height: math.unit(100, "feet")
  19615. },
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19620. {
  19621. front: {
  19622. height: math.unit(15, "feet"),
  19623. weight: math.unit(2800, "lb"),
  19624. name: "Front",
  19625. image: {
  19626. source: "./media/characters/tanarath/front.svg",
  19627. extra: 2392 / 2220,
  19628. bottom: 0.03
  19629. }
  19630. },
  19631. back: {
  19632. height: math.unit(15, "feet"),
  19633. weight: math.unit(2800, "lb"),
  19634. name: "Back",
  19635. image: {
  19636. source: "./media/characters/tanarath/back.svg",
  19637. extra: 2392 / 2220,
  19638. bottom: 0.03
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Normal",
  19645. height: math.unit(15, "feet"),
  19646. default: true
  19647. },
  19648. ]
  19649. ))
  19650. characterMakers.push(() => makeCharacter(
  19651. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19652. {
  19653. front: {
  19654. height: math.unit(7 + 1 / 12, "feet"),
  19655. weight: math.unit(175, "lb"),
  19656. name: "Front",
  19657. image: {
  19658. source: "./media/characters/patty-cattybatty/front.svg",
  19659. extra: 908 / 874,
  19660. bottom: 0.025
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Micro",
  19667. height: math.unit(1, "inch")
  19668. },
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(7 + 1 / 12, "feet")
  19672. },
  19673. {
  19674. name: "Mini Macro",
  19675. height: math.unit(155, "feet")
  19676. },
  19677. {
  19678. name: "Macro",
  19679. height: math.unit(1077, "feet")
  19680. },
  19681. {
  19682. name: "Mega Macro",
  19683. height: math.unit(47650, "feet"),
  19684. default: true
  19685. },
  19686. {
  19687. name: "Giga Macro",
  19688. height: math.unit(440, "miles")
  19689. },
  19690. {
  19691. name: "Tera Macro",
  19692. height: math.unit(8700, "miles")
  19693. },
  19694. {
  19695. name: "Planetary Macro",
  19696. height: math.unit(32700, "miles")
  19697. },
  19698. {
  19699. name: "Solar Macro",
  19700. height: math.unit(550000, "miles")
  19701. },
  19702. {
  19703. name: "Celestial Macro",
  19704. height: math.unit(2.5, "AU")
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(4 + 5 / 12, "feet"),
  19713. weight: math.unit(90, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/cappu/front.svg",
  19717. extra: 1247 / 1152,
  19718. bottom: 0.012
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Normal",
  19725. height: math.unit(4 + 5 / 12, "feet"),
  19726. default: true
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19732. {
  19733. frontDressed: {
  19734. height: math.unit(70, "cm"),
  19735. weight: math.unit(6, "kg"),
  19736. name: "Front (Dressed)",
  19737. image: {
  19738. source: "./media/characters/sebi/front-dressed.svg",
  19739. extra: 713.5 / 686.5,
  19740. bottom: 0.003
  19741. }
  19742. },
  19743. front: {
  19744. height: math.unit(70, "cm"),
  19745. weight: math.unit(5, "kg"),
  19746. name: "Front",
  19747. image: {
  19748. source: "./media/characters/sebi/front.svg",
  19749. extra: 713.5 / 686.5,
  19750. bottom: 0.003
  19751. }
  19752. }
  19753. },
  19754. [
  19755. {
  19756. name: "Normal",
  19757. height: math.unit(70, "cm"),
  19758. default: true
  19759. },
  19760. {
  19761. name: "Macro",
  19762. height: math.unit(8, "meters")
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19768. {
  19769. front: {
  19770. height: math.unit(6, "feet"),
  19771. weight: math.unit(150, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/typhek/front.svg",
  19775. extra: 1948 / 1929,
  19776. bottom: 0.025
  19777. }
  19778. },
  19779. side: {
  19780. height: math.unit(6, "feet"),
  19781. weight: math.unit(150, "lb"),
  19782. name: "Side",
  19783. image: {
  19784. source: "./media/characters/typhek/side.svg",
  19785. extra: 2034 / 2010,
  19786. bottom: 0.003
  19787. }
  19788. },
  19789. back: {
  19790. height: math.unit(6, "feet"),
  19791. weight: math.unit(150, "lb"),
  19792. name: "Back",
  19793. image: {
  19794. source: "./media/characters/typhek/back.svg",
  19795. extra: 2005 / 1978,
  19796. bottom: 0.004
  19797. }
  19798. },
  19799. palm: {
  19800. height: math.unit(1.2, "feet"),
  19801. name: "Palm",
  19802. image: {
  19803. source: "./media/characters/typhek/palm.svg"
  19804. }
  19805. },
  19806. fist: {
  19807. height: math.unit(1.1, "feet"),
  19808. name: "Fist",
  19809. image: {
  19810. source: "./media/characters/typhek/fist.svg"
  19811. }
  19812. },
  19813. foot: {
  19814. height: math.unit(1.57, "feet"),
  19815. name: "Foot",
  19816. image: {
  19817. source: "./media/characters/typhek/foot.svg"
  19818. }
  19819. },
  19820. sole: {
  19821. height: math.unit(2.05, "feet"),
  19822. name: "Sole",
  19823. image: {
  19824. source: "./media/characters/typhek/sole.svg"
  19825. }
  19826. },
  19827. },
  19828. [
  19829. {
  19830. name: "Macro",
  19831. height: math.unit(40, "stories"),
  19832. default: true
  19833. },
  19834. {
  19835. name: "Megamacro",
  19836. height: math.unit(1, "mile")
  19837. },
  19838. {
  19839. name: "Gigamacro",
  19840. height: math.unit(4000, "solarradii")
  19841. },
  19842. {
  19843. name: "Universal",
  19844. height: math.unit(1.1, "universes")
  19845. }
  19846. ]
  19847. ))
  19848. characterMakers.push(() => makeCharacter(
  19849. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19850. {
  19851. side: {
  19852. height: math.unit(5 + 7 / 12, "feet"),
  19853. weight: math.unit(150, "lb"),
  19854. name: "Side",
  19855. image: {
  19856. source: "./media/characters/kassy/side.svg",
  19857. extra: 1280 / 1225,
  19858. bottom: 0.002
  19859. }
  19860. },
  19861. front: {
  19862. height: math.unit(5 + 7 / 12, "feet"),
  19863. weight: math.unit(150, "lb"),
  19864. name: "Front",
  19865. image: {
  19866. source: "./media/characters/kassy/front.svg",
  19867. extra: 1280 / 1225,
  19868. bottom: 0.025
  19869. }
  19870. },
  19871. back: {
  19872. height: math.unit(5 + 7 / 12, "feet"),
  19873. weight: math.unit(150, "lb"),
  19874. name: "Back",
  19875. image: {
  19876. source: "./media/characters/kassy/back.svg",
  19877. extra: 1280 / 1225,
  19878. bottom: 0.002
  19879. }
  19880. },
  19881. foot: {
  19882. height: math.unit(1.266, "feet"),
  19883. name: "Foot",
  19884. image: {
  19885. source: "./media/characters/kassy/foot.svg"
  19886. }
  19887. },
  19888. },
  19889. [
  19890. {
  19891. name: "Normal",
  19892. height: math.unit(5 + 7 / 12, "feet")
  19893. },
  19894. {
  19895. name: "Macro",
  19896. height: math.unit(137, "feet"),
  19897. default: true
  19898. },
  19899. {
  19900. name: "Megamacro",
  19901. height: math.unit(1, "mile")
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19907. {
  19908. front: {
  19909. height: math.unit(6 + 1 / 12, "feet"),
  19910. weight: math.unit(200, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/neil/front.svg",
  19914. extra: 1326 / 1250,
  19915. bottom: 0.023
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(6 + 1 / 12, "feet"),
  19923. default: true
  19924. },
  19925. {
  19926. name: "Macro",
  19927. height: math.unit(200, "feet")
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19933. {
  19934. front: {
  19935. height: math.unit(5 + 9 / 12, "feet"),
  19936. weight: math.unit(190, "lb"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/atticus/front.svg",
  19940. extra: 2934 / 2785,
  19941. bottom: 0.025
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(5 + 9 / 12, "feet"),
  19949. default: true
  19950. },
  19951. {
  19952. name: "Macro",
  19953. height: math.unit(180, "feet")
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19959. {
  19960. side: {
  19961. height: math.unit(9, "feet"),
  19962. weight: math.unit(650, "lb"),
  19963. name: "Side",
  19964. image: {
  19965. source: "./media/characters/milo/side.svg",
  19966. extra: 2644 / 2310,
  19967. bottom: 0.032
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Normal",
  19974. height: math.unit(9, "feet"),
  19975. default: true
  19976. },
  19977. {
  19978. name: "Macro",
  19979. height: math.unit(300, "feet")
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19985. {
  19986. side: {
  19987. height: math.unit(8, "meters"),
  19988. weight: math.unit(90000, "kg"),
  19989. name: "Side",
  19990. image: {
  19991. source: "./media/characters/ijzer/side.svg",
  19992. extra: 2756 / 1600,
  19993. bottom: 0.01
  19994. }
  19995. },
  19996. },
  19997. [
  19998. {
  19999. name: "Small",
  20000. height: math.unit(3, "meters")
  20001. },
  20002. {
  20003. name: "Normal",
  20004. height: math.unit(8, "meters"),
  20005. default: true
  20006. },
  20007. {
  20008. name: "Normal+",
  20009. height: math.unit(10, "meters")
  20010. },
  20011. {
  20012. name: "Bigger",
  20013. height: math.unit(24, "meters")
  20014. },
  20015. {
  20016. name: "Huge",
  20017. height: math.unit(80, "meters")
  20018. },
  20019. ]
  20020. ))
  20021. characterMakers.push(() => makeCharacter(
  20022. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20023. {
  20024. front: {
  20025. height: math.unit(6 + 2 / 12, "feet"),
  20026. weight: math.unit(153, "lb"),
  20027. name: "Front",
  20028. image: {
  20029. source: "./media/characters/luca-cervicum/front.svg",
  20030. extra: 370 / 327,
  20031. bottom: 0.015
  20032. }
  20033. },
  20034. back: {
  20035. height: math.unit(6 + 2 / 12, "feet"),
  20036. weight: math.unit(153, "lb"),
  20037. name: "Back",
  20038. image: {
  20039. source: "./media/characters/luca-cervicum/back.svg",
  20040. extra: 367 / 333,
  20041. bottom: 0.005
  20042. }
  20043. },
  20044. frontGear: {
  20045. height: math.unit(6 + 2 / 12, "feet"),
  20046. weight: math.unit(173, "lb"),
  20047. name: "Front (Gear)",
  20048. image: {
  20049. source: "./media/characters/luca-cervicum/front-gear.svg",
  20050. extra: 377 / 333,
  20051. bottom: 0.006
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "Normal",
  20058. height: math.unit(6 + 2 / 12, "feet"),
  20059. default: true
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20065. {
  20066. front: {
  20067. height: math.unit(6 + 1 / 12, "feet"),
  20068. weight: math.unit(304, "lb"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/oliver/front.svg",
  20072. extra: 157 / 143,
  20073. bottom: 0.08
  20074. }
  20075. },
  20076. },
  20077. [
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(6 + 1 / 12, "feet"),
  20081. default: true
  20082. },
  20083. ]
  20084. ))
  20085. characterMakers.push(() => makeCharacter(
  20086. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20087. {
  20088. front: {
  20089. height: math.unit(5 + 7 / 12, "feet"),
  20090. weight: math.unit(140, "lb"),
  20091. name: "Front",
  20092. image: {
  20093. source: "./media/characters/shane/front.svg",
  20094. extra: 304 / 289,
  20095. bottom: 0.005
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(5 + 7 / 12, "feet"),
  20103. default: true
  20104. },
  20105. ]
  20106. ))
  20107. characterMakers.push(() => makeCharacter(
  20108. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20109. {
  20110. front: {
  20111. height: math.unit(5 + 9 / 12, "feet"),
  20112. weight: math.unit(178, "lb"),
  20113. name: "Front",
  20114. image: {
  20115. source: "./media/characters/shin/front.svg",
  20116. extra: 159 / 151,
  20117. bottom: 0.015
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(5 + 9 / 12, "feet"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(5 + 10 / 12, "feet"),
  20134. weight: math.unit(168, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/xerxes/front.svg",
  20138. extra: 282 / 260,
  20139. bottom: 0.045
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(5 + 10 / 12, "feet"),
  20147. default: true
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(6 + 7 / 12, "feet"),
  20156. weight: math.unit(208, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/chaska/front.svg",
  20160. extra: 332 / 319,
  20161. bottom: 0.015
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(6 + 7 / 12, "feet"),
  20169. default: true
  20170. },
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20175. {
  20176. front: {
  20177. height: math.unit(5 + 8 / 12, "feet"),
  20178. weight: math.unit(208, "lb"),
  20179. name: "Front",
  20180. image: {
  20181. source: "./media/characters/enuk/front.svg",
  20182. extra: 437 / 406,
  20183. bottom: 0.02
  20184. }
  20185. },
  20186. },
  20187. [
  20188. {
  20189. name: "Normal",
  20190. height: math.unit(5 + 8 / 12, "feet"),
  20191. default: true
  20192. },
  20193. ]
  20194. ))
  20195. characterMakers.push(() => makeCharacter(
  20196. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20197. {
  20198. front: {
  20199. height: math.unit(5 + 10 / 12, "feet"),
  20200. weight: math.unit(252, "lb"),
  20201. name: "Front",
  20202. image: {
  20203. source: "./media/characters/bruun/front.svg",
  20204. extra: 197 / 187,
  20205. bottom: 0.012
  20206. }
  20207. },
  20208. },
  20209. [
  20210. {
  20211. name: "Normal",
  20212. height: math.unit(5 + 10 / 12, "feet"),
  20213. default: true
  20214. },
  20215. ]
  20216. ))
  20217. characterMakers.push(() => makeCharacter(
  20218. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20219. {
  20220. front: {
  20221. height: math.unit(6 + 10 / 12, "feet"),
  20222. weight: math.unit(255, "lb"),
  20223. name: "Front",
  20224. image: {
  20225. source: "./media/characters/alexeev/front.svg",
  20226. extra: 213 / 200,
  20227. bottom: 0.05
  20228. }
  20229. },
  20230. },
  20231. [
  20232. {
  20233. name: "Normal",
  20234. height: math.unit(6 + 10 / 12, "feet"),
  20235. default: true
  20236. },
  20237. ]
  20238. ))
  20239. characterMakers.push(() => makeCharacter(
  20240. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20241. {
  20242. front: {
  20243. height: math.unit(2 + 8 / 12, "feet"),
  20244. weight: math.unit(22, "lb"),
  20245. name: "Front",
  20246. image: {
  20247. source: "./media/characters/evelyn/front.svg",
  20248. extra: 208 / 180
  20249. }
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(2 + 8 / 12, "feet"),
  20256. default: true
  20257. },
  20258. ]
  20259. ))
  20260. characterMakers.push(() => makeCharacter(
  20261. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20262. {
  20263. front: {
  20264. height: math.unit(5 + 9 / 12, "feet"),
  20265. weight: math.unit(139, "lb"),
  20266. name: "Front",
  20267. image: {
  20268. source: "./media/characters/inca/front.svg",
  20269. extra: 294 / 291,
  20270. bottom: 0.03
  20271. }
  20272. },
  20273. },
  20274. [
  20275. {
  20276. name: "Normal",
  20277. height: math.unit(5 + 9 / 12, "feet"),
  20278. default: true
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20284. {
  20285. front: {
  20286. height: math.unit(6 + 3 / 12, "feet"),
  20287. weight: math.unit(185, "lb"),
  20288. name: "Front",
  20289. image: {
  20290. source: "./media/characters/mera/front.svg",
  20291. extra: 291 / 277,
  20292. bottom: 0.03
  20293. }
  20294. },
  20295. },
  20296. [
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(6 + 3 / 12, "feet"),
  20300. default: true
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20306. {
  20307. front: {
  20308. height: math.unit(6 + 7 / 12, "feet"),
  20309. weight: math.unit(160, "lb"),
  20310. name: "Front",
  20311. image: {
  20312. source: "./media/characters/ceres/front.svg",
  20313. extra: 1023 / 950,
  20314. bottom: 0.027
  20315. }
  20316. },
  20317. back: {
  20318. height: math.unit(6 + 7 / 12, "feet"),
  20319. weight: math.unit(160, "lb"),
  20320. name: "Back",
  20321. image: {
  20322. source: "./media/characters/ceres/back.svg",
  20323. extra: 1023 / 950
  20324. }
  20325. },
  20326. },
  20327. [
  20328. {
  20329. name: "Normal",
  20330. height: math.unit(6 + 7 / 12, "feet"),
  20331. default: true
  20332. },
  20333. ]
  20334. ))
  20335. characterMakers.push(() => makeCharacter(
  20336. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20337. {
  20338. front: {
  20339. height: math.unit(5 + 10 / 12, "feet"),
  20340. weight: math.unit(150, "lb"),
  20341. name: "Front",
  20342. image: {
  20343. source: "./media/characters/kris/front.svg",
  20344. extra: 885 / 803,
  20345. bottom: 0.03
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(5 + 10 / 12, "feet"),
  20353. default: true
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20359. {
  20360. front: {
  20361. height: math.unit(7, "feet"),
  20362. weight: math.unit(120, "kg"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/taluthus/front.svg",
  20366. extra: 903 / 833,
  20367. bottom: 0.015
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(7, "feet"),
  20375. default: true
  20376. },
  20377. {
  20378. name: "Macro",
  20379. height: math.unit(300, "feet")
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20385. {
  20386. front: {
  20387. height: math.unit(5 + 9 / 12, "feet"),
  20388. weight: math.unit(145, "lb"),
  20389. name: "Front",
  20390. image: {
  20391. source: "./media/characters/dawn/front.svg",
  20392. extra: 2094 / 2016,
  20393. bottom: 0.025
  20394. }
  20395. },
  20396. back: {
  20397. height: math.unit(5 + 9 / 12, "feet"),
  20398. weight: math.unit(160, "lb"),
  20399. name: "Back",
  20400. image: {
  20401. source: "./media/characters/dawn/back.svg",
  20402. extra: 2112 / 2080,
  20403. bottom: 0.005
  20404. }
  20405. },
  20406. },
  20407. [
  20408. {
  20409. name: "Normal",
  20410. height: math.unit(6 + 7 / 12, "feet"),
  20411. default: true
  20412. },
  20413. ]
  20414. ))
  20415. characterMakers.push(() => makeCharacter(
  20416. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20417. {
  20418. anthro: {
  20419. height: math.unit(8 + 3 / 12, "feet"),
  20420. weight: math.unit(450, "lb"),
  20421. name: "Anthro",
  20422. image: {
  20423. source: "./media/characters/arador/anthro.svg",
  20424. extra: 1835 / 1718,
  20425. bottom: 0.025
  20426. }
  20427. },
  20428. feral: {
  20429. height: math.unit(4, "feet"),
  20430. weight: math.unit(200, "lb"),
  20431. name: "Feral",
  20432. image: {
  20433. source: "./media/characters/arador/feral.svg",
  20434. extra: 1683 / 1514,
  20435. bottom: 0.07
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Normal",
  20442. height: math.unit(8 + 3 / 12, "feet")
  20443. },
  20444. {
  20445. name: "Macro",
  20446. height: math.unit(82.5, "feet"),
  20447. default: true
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20453. {
  20454. front: {
  20455. height: math.unit(5 + 10 / 12, "feet"),
  20456. weight: math.unit(125, "lb"),
  20457. name: "Front",
  20458. image: {
  20459. source: "./media/characters/dharsi/front.svg",
  20460. extra: 716 / 630,
  20461. bottom: 0.035
  20462. }
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Nano",
  20468. height: math.unit(100, "nm")
  20469. },
  20470. {
  20471. name: "Micro",
  20472. height: math.unit(2, "inches")
  20473. },
  20474. {
  20475. name: "Normal",
  20476. height: math.unit(5 + 10 / 12, "feet"),
  20477. default: true
  20478. },
  20479. {
  20480. name: "Macro",
  20481. height: math.unit(1000, "feet")
  20482. },
  20483. {
  20484. name: "Megamacro",
  20485. height: math.unit(10, "miles")
  20486. },
  20487. {
  20488. name: "Gigamacro",
  20489. height: math.unit(3000, "miles")
  20490. },
  20491. {
  20492. name: "Teramacro",
  20493. height: math.unit(500000, "miles")
  20494. },
  20495. {
  20496. name: "Teramacro+",
  20497. height: math.unit(30, "galaxies")
  20498. },
  20499. ]
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20503. {
  20504. front: {
  20505. height: math.unit(6, "feet"),
  20506. weight: math.unit(150, "lb"),
  20507. name: "Front",
  20508. image: {
  20509. source: "./media/characters/deathy/front.svg",
  20510. extra: 1552 / 1463,
  20511. bottom: 0.025
  20512. }
  20513. },
  20514. side: {
  20515. height: math.unit(6, "feet"),
  20516. weight: math.unit(150, "lb"),
  20517. name: "Side",
  20518. image: {
  20519. source: "./media/characters/deathy/side.svg",
  20520. extra: 1604 / 1455,
  20521. bottom: 0.025
  20522. }
  20523. },
  20524. back: {
  20525. height: math.unit(6, "feet"),
  20526. weight: math.unit(150, "lb"),
  20527. name: "Back",
  20528. image: {
  20529. source: "./media/characters/deathy/back.svg",
  20530. extra: 1580 / 1463,
  20531. bottom: 0.005
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Micro",
  20538. height: math.unit(5, "millimeters")
  20539. },
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(6 + 5 / 12, "feet"),
  20543. default: true
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20549. {
  20550. front: {
  20551. height: math.unit(16, "feet"),
  20552. weight: math.unit(4000, "lb"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/juniper/front.svg",
  20556. bottom: 0.04
  20557. }
  20558. },
  20559. },
  20560. [
  20561. {
  20562. name: "Normal",
  20563. height: math.unit(16, "feet"),
  20564. default: true
  20565. },
  20566. ]
  20567. ))
  20568. characterMakers.push(() => makeCharacter(
  20569. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20570. {
  20571. front: {
  20572. height: math.unit(6, "feet"),
  20573. weight: math.unit(150, "lb"),
  20574. name: "Front",
  20575. image: {
  20576. source: "./media/characters/hipster/front.svg",
  20577. extra: 1312 / 1209,
  20578. bottom: 0.025
  20579. }
  20580. },
  20581. back: {
  20582. height: math.unit(6, "feet"),
  20583. weight: math.unit(150, "lb"),
  20584. name: "Back",
  20585. image: {
  20586. source: "./media/characters/hipster/back.svg",
  20587. extra: 1281 / 1196,
  20588. bottom: 0.01
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Micro",
  20595. height: math.unit(1, "mm")
  20596. },
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(4, "inches"),
  20600. default: true
  20601. },
  20602. {
  20603. name: "Macro",
  20604. height: math.unit(500, "feet")
  20605. },
  20606. {
  20607. name: "Megamacro",
  20608. height: math.unit(1000, "miles")
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20614. {
  20615. front: {
  20616. height: math.unit(6, "feet"),
  20617. weight: math.unit(150, "lb"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/tendirmuldr/front.svg",
  20621. extra: 1878 / 1772,
  20622. bottom: 0.015
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Megamacro",
  20629. height: math.unit(1500, "miles"),
  20630. default: true
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20636. {
  20637. front: {
  20638. height: math.unit(14, "feet"),
  20639. weight: math.unit(12000, "lb"),
  20640. name: "Front",
  20641. image: {
  20642. source: "./media/characters/mort/front.svg",
  20643. extra: 365 / 318,
  20644. bottom: 0.01
  20645. }
  20646. },
  20647. side: {
  20648. height: math.unit(14, "feet"),
  20649. weight: math.unit(12000, "lb"),
  20650. name: "Side",
  20651. image: {
  20652. source: "./media/characters/mort/side.svg",
  20653. extra: 365 / 318,
  20654. bottom: 0.052
  20655. },
  20656. default: true
  20657. },
  20658. back: {
  20659. height: math.unit(14, "feet"),
  20660. weight: math.unit(12000, "lb"),
  20661. name: "Back",
  20662. image: {
  20663. source: "./media/characters/mort/back.svg",
  20664. extra: 371 / 332,
  20665. bottom: 0.18
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(14, "feet"),
  20673. default: true
  20674. },
  20675. ]
  20676. ))
  20677. characterMakers.push(() => makeCharacter(
  20678. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20679. {
  20680. front: {
  20681. height: math.unit(8, "feet"),
  20682. weight: math.unit(1, "ton"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/lycoa/front.svg",
  20686. extra: 1836/1728,
  20687. bottom: 81/1917
  20688. }
  20689. },
  20690. back: {
  20691. height: math.unit(8, "feet"),
  20692. weight: math.unit(1, "ton"),
  20693. name: "Back",
  20694. image: {
  20695. source: "./media/characters/lycoa/back.svg",
  20696. extra: 1785/1720,
  20697. bottom: 91/1876
  20698. }
  20699. },
  20700. head: {
  20701. height: math.unit(1.6243, "feet"),
  20702. name: "Head",
  20703. image: {
  20704. source: "./media/characters/lycoa/head.svg",
  20705. extra: 1011/782,
  20706. bottom: 0/1011
  20707. }
  20708. },
  20709. tailmaw: {
  20710. height: math.unit(1.9, "feet"),
  20711. name: "Tailmaw",
  20712. image: {
  20713. source: "./media/characters/lycoa/tailmaw.svg"
  20714. }
  20715. },
  20716. tentacles: {
  20717. height: math.unit(2.1, "feet"),
  20718. name: "Tentacles",
  20719. image: {
  20720. source: "./media/characters/lycoa/tentacles.svg"
  20721. }
  20722. },
  20723. dick: {
  20724. height: math.unit(1.73, "feet"),
  20725. name: "Dick",
  20726. image: {
  20727. source: "./media/characters/lycoa/dick.svg"
  20728. }
  20729. },
  20730. },
  20731. [
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(8, "feet"),
  20735. default: true
  20736. },
  20737. {
  20738. name: "Macro",
  20739. height: math.unit(30, "feet")
  20740. },
  20741. ]
  20742. ))
  20743. characterMakers.push(() => makeCharacter(
  20744. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20745. {
  20746. front: {
  20747. height: math.unit(4 + 2 / 12, "feet"),
  20748. weight: math.unit(70, "lb"),
  20749. name: "Front",
  20750. image: {
  20751. source: "./media/characters/naldara/front.svg",
  20752. extra: 1664/1387,
  20753. bottom: 81/1745
  20754. },
  20755. form: "anthro",
  20756. default: true
  20757. },
  20758. naga: {
  20759. height: math.unit(20, "feet"),
  20760. weight: math.unit(15000, "kg"),
  20761. name: "Front",
  20762. image: {
  20763. source: "./media/characters/naldara/naga.svg",
  20764. extra: 1590/1396,
  20765. bottom: 285/1875
  20766. },
  20767. form: "naga",
  20768. default: true
  20769. },
  20770. },
  20771. [
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(4 + 2 / 12, "feet"),
  20775. form: "anthro",
  20776. default: true
  20777. },
  20778. {
  20779. name: "Normal",
  20780. height: math.unit(20, "feet"),
  20781. form: "naga",
  20782. default: true
  20783. },
  20784. ],
  20785. {
  20786. "anthro": {
  20787. name: "Anthro",
  20788. default: true
  20789. },
  20790. "naga": {
  20791. name: "Naga"
  20792. }
  20793. }
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(13 + 7 / 12, "feet"),
  20800. weight: math.unit(1500, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/briar/front.svg",
  20804. extra: 1223/1157,
  20805. bottom: 123/1346
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(13 + 7 / 12, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20819. {
  20820. side: {
  20821. height: math.unit(16, "feet"),
  20822. weight: math.unit(500, "lb"),
  20823. name: "Side",
  20824. image: {
  20825. source: "./media/characters/vanguard/side.svg",
  20826. extra: 1022/914,
  20827. bottom: 30/1052
  20828. }
  20829. },
  20830. sideAlt: {
  20831. height: math.unit(10, "feet"),
  20832. weight: math.unit(500, "lb"),
  20833. name: "Side (Alt)",
  20834. image: {
  20835. source: "./media/characters/vanguard/side-alt.svg",
  20836. extra: 502 / 425,
  20837. bottom: 0.087
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Normal",
  20844. height: math.unit(17.71, "feet"),
  20845. default: true
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(7.5, "feet"),
  20854. weight: math.unit(2, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/artemis/work-safe-front.svg",
  20858. extra: 1192 / 1075,
  20859. bottom: 0.07
  20860. },
  20861. form: "work-safe",
  20862. default: true
  20863. },
  20864. frontNsfw: {
  20865. height: math.unit(7.5, "feet"),
  20866. weight: math.unit(2, "lb"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/artemis/calibrating-front.svg",
  20870. extra: 1192 / 1075,
  20871. bottom: 0.07
  20872. },
  20873. form: "calibrating",
  20874. default: true
  20875. },
  20876. frontNsfwer: {
  20877. height: math.unit(7.5, "feet"),
  20878. weight: math.unit(2, "lb"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/artemis/oversize-load-front.svg",
  20882. extra: 1192 / 1075,
  20883. bottom: 0.07
  20884. },
  20885. form: "oversize-load",
  20886. default: true
  20887. },
  20888. side: {
  20889. height: math.unit(7.5, "feet"),
  20890. weight: math.unit(2, "lb"),
  20891. name: "Side",
  20892. image: {
  20893. source: "./media/characters/artemis/work-safe-side.svg",
  20894. extra: 1192 / 1075,
  20895. bottom: 0.07
  20896. },
  20897. form: "work-safe"
  20898. },
  20899. sideNsfw: {
  20900. height: math.unit(7.5, "feet"),
  20901. weight: math.unit(2, "lb"),
  20902. name: "Side",
  20903. image: {
  20904. source: "./media/characters/artemis/calibrating-side.svg",
  20905. extra: 1192 / 1075,
  20906. bottom: 0.07
  20907. },
  20908. form: "calibrating"
  20909. },
  20910. sideNsfwer: {
  20911. height: math.unit(7.5, "feet"),
  20912. weight: math.unit(2, "lb"),
  20913. name: "Side",
  20914. image: {
  20915. source: "./media/characters/artemis/oversize-load-side.svg",
  20916. extra: 1192 / 1075,
  20917. bottom: 0.07
  20918. },
  20919. form: "oversize-load"
  20920. },
  20921. maw: {
  20922. height: math.unit(1.1, "feet"),
  20923. name: "Maw",
  20924. image: {
  20925. source: "./media/characters/artemis/maw.svg"
  20926. },
  20927. form: "work-safe"
  20928. },
  20929. stomach: {
  20930. height: math.unit(0.95, "feet"),
  20931. name: "Stomach",
  20932. image: {
  20933. source: "./media/characters/artemis/stomach.svg"
  20934. },
  20935. form: "work-safe"
  20936. },
  20937. dickCanine: {
  20938. height: math.unit(1, "feet"),
  20939. name: "Dick (Canine)",
  20940. image: {
  20941. source: "./media/characters/artemis/dick-canine.svg"
  20942. },
  20943. form: "calibrating"
  20944. },
  20945. dickEquine: {
  20946. height: math.unit(0.85, "feet"),
  20947. name: "Dick (Equine)",
  20948. image: {
  20949. source: "./media/characters/artemis/dick-equine.svg"
  20950. },
  20951. form: "calibrating"
  20952. },
  20953. dickExotic: {
  20954. height: math.unit(0.85, "feet"),
  20955. name: "Dick (Exotic)",
  20956. image: {
  20957. source: "./media/characters/artemis/dick-exotic.svg"
  20958. },
  20959. form: "calibrating"
  20960. },
  20961. dickCanineBigger: {
  20962. height: math.unit(1 * 1.33, "feet"),
  20963. name: "Dick (Canine)",
  20964. image: {
  20965. source: "./media/characters/artemis/dick-canine.svg"
  20966. },
  20967. form: "oversize-load"
  20968. },
  20969. dickEquineBigger: {
  20970. height: math.unit(0.85 * 1.33, "feet"),
  20971. name: "Dick (Equine)",
  20972. image: {
  20973. source: "./media/characters/artemis/dick-equine.svg"
  20974. },
  20975. form: "oversize-load"
  20976. },
  20977. dickExoticBigger: {
  20978. height: math.unit(0.85 * 1.33, "feet"),
  20979. name: "Dick (Exotic)",
  20980. image: {
  20981. source: "./media/characters/artemis/dick-exotic.svg"
  20982. },
  20983. form: "oversize-load"
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(7.5, "feet"),
  20990. form: "work-safe",
  20991. default: true
  20992. },
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(7.5, "feet"),
  20996. form: "calibrating",
  20997. default: true
  20998. },
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(7.5, "feet"),
  21002. form: "oversize-load",
  21003. default: true
  21004. },
  21005. {
  21006. name: "Enlarged",
  21007. height: math.unit(12, "feet"),
  21008. form: "work-safe",
  21009. },
  21010. {
  21011. name: "Enlarged",
  21012. height: math.unit(12, "feet"),
  21013. form: "calibrating",
  21014. },
  21015. {
  21016. name: "Enlarged",
  21017. height: math.unit(12, "feet"),
  21018. form: "oversize-load",
  21019. },
  21020. ],
  21021. {
  21022. "work-safe": {
  21023. name: "Work-Safe",
  21024. default: true
  21025. },
  21026. "calibrating": {
  21027. name: "Calibrating"
  21028. },
  21029. "oversize-load": {
  21030. name: "Oversize Load"
  21031. }
  21032. }
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(5 + 3 / 12, "feet"),
  21039. weight: math.unit(160, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/kira/front.svg",
  21043. extra: 906 / 786,
  21044. bottom: 0.01
  21045. }
  21046. },
  21047. back: {
  21048. height: math.unit(5 + 3 / 12, "feet"),
  21049. weight: math.unit(160, "lb"),
  21050. name: "Back",
  21051. image: {
  21052. source: "./media/characters/kira/back.svg",
  21053. extra: 882 / 757,
  21054. bottom: 0.005
  21055. }
  21056. },
  21057. frontDressed: {
  21058. height: math.unit(5 + 3 / 12, "feet"),
  21059. weight: math.unit(160, "lb"),
  21060. name: "Front (Dressed)",
  21061. image: {
  21062. source: "./media/characters/kira/front-dressed.svg",
  21063. extra: 906 / 786,
  21064. bottom: 0.01
  21065. }
  21066. },
  21067. beans: {
  21068. height: math.unit(0.92, "feet"),
  21069. name: "Beans",
  21070. image: {
  21071. source: "./media/characters/kira/beans.svg"
  21072. }
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Normal",
  21078. height: math.unit(5 + 3 / 12, "feet"),
  21079. default: true
  21080. },
  21081. ]
  21082. ))
  21083. characterMakers.push(() => makeCharacter(
  21084. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21085. {
  21086. front: {
  21087. height: math.unit(5 + 4 / 12, "feet"),
  21088. weight: math.unit(145, "lb"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/scramble/front.svg",
  21092. extra: 763 / 727,
  21093. bottom: 0.05
  21094. }
  21095. },
  21096. back: {
  21097. height: math.unit(5 + 4 / 12, "feet"),
  21098. weight: math.unit(145, "lb"),
  21099. name: "Back",
  21100. image: {
  21101. source: "./media/characters/scramble/back.svg",
  21102. extra: 826 / 737,
  21103. bottom: 0.002
  21104. }
  21105. },
  21106. },
  21107. [
  21108. {
  21109. name: "Normal",
  21110. height: math.unit(5 + 4 / 12, "feet"),
  21111. default: true
  21112. },
  21113. ]
  21114. ))
  21115. characterMakers.push(() => makeCharacter(
  21116. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21117. {
  21118. side: {
  21119. height: math.unit(6 + 2 / 12, "feet"),
  21120. weight: math.unit(190, "lb"),
  21121. name: "Side",
  21122. image: {
  21123. source: "./media/characters/biscuit/side.svg",
  21124. extra: 858 / 791,
  21125. bottom: 0.044
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Normal",
  21132. height: math.unit(6 + 2 / 12, "feet"),
  21133. default: true
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21139. {
  21140. front: {
  21141. height: math.unit(5 + 2 / 12, "feet"),
  21142. weight: math.unit(120, "lb"),
  21143. name: "Front",
  21144. image: {
  21145. source: "./media/characters/poffin/front.svg",
  21146. extra: 786 / 680,
  21147. bottom: 0.005
  21148. }
  21149. },
  21150. },
  21151. [
  21152. {
  21153. name: "Normal",
  21154. height: math.unit(5 + 2 / 12, "feet"),
  21155. default: true
  21156. },
  21157. ]
  21158. ))
  21159. characterMakers.push(() => makeCharacter(
  21160. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21161. {
  21162. front: {
  21163. height: math.unit(6 + 3 / 12, "feet"),
  21164. weight: math.unit(519, "lb"),
  21165. name: "Front",
  21166. image: {
  21167. source: "./media/characters/dhari/front.svg",
  21168. extra: 1048 / 946,
  21169. bottom: 0.015
  21170. }
  21171. },
  21172. back: {
  21173. height: math.unit(6 + 3 / 12, "feet"),
  21174. weight: math.unit(519, "lb"),
  21175. name: "Back",
  21176. image: {
  21177. source: "./media/characters/dhari/back.svg",
  21178. extra: 1048 / 931,
  21179. bottom: 0.005
  21180. }
  21181. },
  21182. frontDressed: {
  21183. height: math.unit(6 + 3 / 12, "feet"),
  21184. weight: math.unit(519, "lb"),
  21185. name: "Front (Dressed)",
  21186. image: {
  21187. source: "./media/characters/dhari/front-dressed.svg",
  21188. extra: 1713 / 1546,
  21189. bottom: 0.02
  21190. }
  21191. },
  21192. backDressed: {
  21193. height: math.unit(6 + 3 / 12, "feet"),
  21194. weight: math.unit(519, "lb"),
  21195. name: "Back (Dressed)",
  21196. image: {
  21197. source: "./media/characters/dhari/back-dressed.svg",
  21198. extra: 1699 / 1537,
  21199. bottom: 0.01
  21200. }
  21201. },
  21202. maw: {
  21203. height: math.unit(0.95, "feet"),
  21204. name: "Maw",
  21205. image: {
  21206. source: "./media/characters/dhari/maw.svg"
  21207. }
  21208. },
  21209. wereFront: {
  21210. height: math.unit(12 + 8 / 12, "feet"),
  21211. weight: math.unit(4000, "lb"),
  21212. name: "Front (Were)",
  21213. image: {
  21214. source: "./media/characters/dhari/were-front.svg",
  21215. extra: 1065 / 969,
  21216. bottom: 0.015
  21217. }
  21218. },
  21219. wereBack: {
  21220. height: math.unit(12 + 8 / 12, "feet"),
  21221. weight: math.unit(4000, "lb"),
  21222. name: "Back (Were)",
  21223. image: {
  21224. source: "./media/characters/dhari/were-back.svg",
  21225. extra: 1065 / 969,
  21226. bottom: 0.012
  21227. }
  21228. },
  21229. wereMaw: {
  21230. height: math.unit(0.625, "meters"),
  21231. name: "Maw (Were)",
  21232. image: {
  21233. source: "./media/characters/dhari/were-maw.svg"
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(6 + 3 / 12, "feet"),
  21241. default: true
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21247. {
  21248. anthro: {
  21249. height: math.unit(5 + 7 / 12, "feet"),
  21250. weight: math.unit(175, "lb"),
  21251. name: "Anthro",
  21252. image: {
  21253. source: "./media/characters/rena-dyne/anthro.svg",
  21254. extra: 1849 / 1785,
  21255. bottom: 0.005
  21256. }
  21257. },
  21258. taur: {
  21259. height: math.unit(15 + 6 / 12, "feet"),
  21260. weight: math.unit(8000, "lb"),
  21261. name: "Taur",
  21262. image: {
  21263. source: "./media/characters/rena-dyne/taur.svg",
  21264. extra: 2315 / 2234,
  21265. bottom: 0.033
  21266. }
  21267. },
  21268. },
  21269. [
  21270. {
  21271. name: "Normal",
  21272. height: math.unit(5 + 7 / 12, "feet"),
  21273. default: true
  21274. },
  21275. ]
  21276. ))
  21277. characterMakers.push(() => makeCharacter(
  21278. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21279. {
  21280. front: {
  21281. height: math.unit(8, "feet"),
  21282. weight: math.unit(600, "lb"),
  21283. name: "Front",
  21284. image: {
  21285. source: "./media/characters/weremeep/front.svg",
  21286. extra: 967 / 862,
  21287. bottom: 0.01
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(8, "feet"),
  21295. default: true
  21296. },
  21297. {
  21298. name: "Lorg",
  21299. height: math.unit(12, "feet")
  21300. },
  21301. {
  21302. name: "Oh Lawd She Comin'",
  21303. height: math.unit(20, "feet")
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21309. {
  21310. front: {
  21311. height: math.unit(4, "feet"),
  21312. weight: math.unit(90, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/reza/front.svg",
  21316. extra: 1183 / 1111,
  21317. bottom: 0.017
  21318. }
  21319. },
  21320. back: {
  21321. height: math.unit(4, "feet"),
  21322. weight: math.unit(90, "lb"),
  21323. name: "Back",
  21324. image: {
  21325. source: "./media/characters/reza/back.svg",
  21326. extra: 1183 / 1111,
  21327. bottom: 0.01
  21328. }
  21329. },
  21330. drake: {
  21331. height: math.unit(30, "feet"),
  21332. weight: math.unit(246960, "lb"),
  21333. name: "Drake",
  21334. image: {
  21335. source: "./media/characters/reza/drake.svg",
  21336. extra: 2350 / 2024,
  21337. bottom: 60.7 / 2403
  21338. }
  21339. },
  21340. },
  21341. [
  21342. {
  21343. name: "Normal",
  21344. height: math.unit(4, "feet"),
  21345. default: true
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21351. {
  21352. side: {
  21353. height: math.unit(15, "feet"),
  21354. weight: math.unit(14, "tons"),
  21355. name: "Side",
  21356. image: {
  21357. source: "./media/characters/athea/side.svg",
  21358. extra: 960 / 540,
  21359. bottom: 0.003
  21360. }
  21361. },
  21362. sitting: {
  21363. height: math.unit(6 * 2.85, "feet"),
  21364. weight: math.unit(14, "tons"),
  21365. name: "Sitting",
  21366. image: {
  21367. source: "./media/characters/athea/sitting.svg",
  21368. extra: 621 / 581,
  21369. bottom: 0.075
  21370. }
  21371. },
  21372. maw: {
  21373. height: math.unit(7.59498031496063, "feet"),
  21374. name: "Maw",
  21375. image: {
  21376. source: "./media/characters/athea/maw.svg"
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Lap Cat",
  21383. height: math.unit(2.5, "feet")
  21384. },
  21385. {
  21386. name: "Minimacro",
  21387. height: math.unit(15, "feet"),
  21388. default: true
  21389. },
  21390. {
  21391. name: "Macro",
  21392. height: math.unit(120, "feet")
  21393. },
  21394. {
  21395. name: "Macro+",
  21396. height: math.unit(640, "feet")
  21397. },
  21398. {
  21399. name: "Colossus",
  21400. height: math.unit(2.2, "miles")
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21406. {
  21407. front: {
  21408. height: math.unit(8 + 8 / 12, "feet"),
  21409. weight: math.unit(130, "kg"),
  21410. name: "Front",
  21411. image: {
  21412. source: "./media/characters/seroko/front.svg",
  21413. extra: 1385 / 1280,
  21414. bottom: 0.025
  21415. }
  21416. },
  21417. back: {
  21418. height: math.unit(8 + 8 / 12, "feet"),
  21419. weight: math.unit(130, "kg"),
  21420. name: "Back",
  21421. image: {
  21422. source: "./media/characters/seroko/back.svg",
  21423. extra: 1369 / 1238,
  21424. bottom: 0.018
  21425. }
  21426. },
  21427. frontDressed: {
  21428. height: math.unit(8 + 8 / 12, "feet"),
  21429. weight: math.unit(130, "kg"),
  21430. name: "Front (Dressed)",
  21431. image: {
  21432. source: "./media/characters/seroko/front-dressed.svg",
  21433. extra: 1366 / 1275,
  21434. bottom: 0.03
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Normal",
  21441. height: math.unit(8 + 8 / 12, "feet"),
  21442. default: true
  21443. },
  21444. ]
  21445. ))
  21446. characterMakers.push(() => makeCharacter(
  21447. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21448. {
  21449. front: {
  21450. height: math.unit(5.5, "feet"),
  21451. weight: math.unit(160, "lb"),
  21452. name: "Front",
  21453. image: {
  21454. source: "./media/characters/quatzi/front.svg",
  21455. extra: 2346 / 2242,
  21456. bottom: 0.015
  21457. }
  21458. },
  21459. },
  21460. [
  21461. {
  21462. name: "Normal",
  21463. height: math.unit(5.5, "feet"),
  21464. default: true
  21465. },
  21466. {
  21467. name: "Big",
  21468. height: math.unit(7.7, "feet")
  21469. },
  21470. ]
  21471. ))
  21472. characterMakers.push(() => makeCharacter(
  21473. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21474. {
  21475. front: {
  21476. height: math.unit(5 + 11 / 12, "feet"),
  21477. weight: math.unit(180, "lb"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/sen/front.svg",
  21481. extra: 1321 / 1254,
  21482. bottom: 0.015
  21483. }
  21484. },
  21485. side: {
  21486. height: math.unit(5 + 11 / 12, "feet"),
  21487. weight: math.unit(180, "lb"),
  21488. name: "Side",
  21489. image: {
  21490. source: "./media/characters/sen/side.svg",
  21491. extra: 1321 / 1254,
  21492. bottom: 0.007
  21493. }
  21494. },
  21495. back: {
  21496. height: math.unit(5 + 11 / 12, "feet"),
  21497. weight: math.unit(180, "lb"),
  21498. name: "Back",
  21499. image: {
  21500. source: "./media/characters/sen/back.svg",
  21501. extra: 1321 / 1254
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(5 + 11 / 12, "feet"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(166.6, "cm"),
  21518. weight: math.unit(66.6, "kg"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/fruity/front.svg",
  21522. extra: 1510 / 1386,
  21523. bottom: 0.04
  21524. }
  21525. },
  21526. back: {
  21527. height: math.unit(166.6, "cm"),
  21528. weight: math.unit(66.6, "lb"),
  21529. name: "Back",
  21530. image: {
  21531. source: "./media/characters/fruity/back.svg",
  21532. extra: 1563 / 1435,
  21533. bottom: 0.005
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Normal",
  21540. height: math.unit(166.6, "cm"),
  21541. default: true
  21542. },
  21543. {
  21544. name: "Demonic",
  21545. height: math.unit(166.6, "feet")
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21551. {
  21552. side: {
  21553. height: math.unit(10, "feet"),
  21554. weight: math.unit(500, "lb"),
  21555. name: "Side",
  21556. image: {
  21557. source: "./media/characters/zost/side.svg",
  21558. extra: 2870/2533,
  21559. bottom: 252/3122
  21560. }
  21561. },
  21562. mawFront: {
  21563. height: math.unit(1.08, "meters"),
  21564. name: "Maw (Front)",
  21565. image: {
  21566. source: "./media/characters/zost/maw-front.svg"
  21567. }
  21568. },
  21569. mawSide: {
  21570. height: math.unit(2.66, "feet"),
  21571. name: "Maw (Side)",
  21572. image: {
  21573. source: "./media/characters/zost/maw-side.svg"
  21574. }
  21575. },
  21576. wingspan: {
  21577. height: math.unit(7.4, "feet"),
  21578. name: "Wingspan",
  21579. image: {
  21580. source: "./media/characters/zost/wingspan.svg"
  21581. }
  21582. },
  21583. },
  21584. [
  21585. {
  21586. name: "Normal",
  21587. height: math.unit(10, "feet"),
  21588. default: true
  21589. },
  21590. ]
  21591. ))
  21592. characterMakers.push(() => makeCharacter(
  21593. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21594. {
  21595. front: {
  21596. height: math.unit(5 + 4 / 12, "feet"),
  21597. weight: math.unit(120, "lb"),
  21598. name: "Front",
  21599. image: {
  21600. source: "./media/characters/luci/front.svg",
  21601. extra: 1985 / 1884,
  21602. bottom: 0.04
  21603. }
  21604. },
  21605. back: {
  21606. height: math.unit(5 + 4 / 12, "feet"),
  21607. weight: math.unit(120, "lb"),
  21608. name: "Back",
  21609. image: {
  21610. source: "./media/characters/luci/back.svg",
  21611. extra: 1892 / 1791,
  21612. bottom: 0.002
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(5 + 4 / 12, "feet"),
  21620. default: true
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21626. {
  21627. front: {
  21628. height: math.unit(1500, "feet"),
  21629. weight: math.unit(3.8e6, "tons"),
  21630. name: "Front",
  21631. image: {
  21632. source: "./media/characters/2th/front.svg",
  21633. extra: 3489 / 3350,
  21634. bottom: 0.1
  21635. }
  21636. },
  21637. foot: {
  21638. height: math.unit(461, "feet"),
  21639. name: "Foot",
  21640. image: {
  21641. source: "./media/characters/2th/foot.svg"
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "\"Micro\"",
  21648. height: math.unit(15 + 7 / 12, "feet")
  21649. },
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(1500, "feet"),
  21653. default: true
  21654. },
  21655. {
  21656. name: "Macro",
  21657. height: math.unit(5000, "feet")
  21658. },
  21659. {
  21660. name: "Megamacro",
  21661. height: math.unit(15, "miles")
  21662. },
  21663. {
  21664. name: "Gigamacro",
  21665. height: math.unit(4000, "miles")
  21666. },
  21667. {
  21668. name: "Galactic",
  21669. height: math.unit(50, "AU")
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21675. {
  21676. front: {
  21677. height: math.unit(5 + 6 / 12, "feet"),
  21678. weight: math.unit(220, "lb"),
  21679. name: "Front",
  21680. image: {
  21681. source: "./media/characters/amethyst/front.svg",
  21682. extra: 2078 / 2040,
  21683. bottom: 0.045
  21684. }
  21685. },
  21686. back: {
  21687. height: math.unit(5 + 6 / 12, "feet"),
  21688. weight: math.unit(220, "lb"),
  21689. name: "Back",
  21690. image: {
  21691. source: "./media/characters/amethyst/back.svg",
  21692. extra: 2021 / 1989,
  21693. bottom: 0.02
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(5 + 6 / 12, "feet"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(4 + 11 / 12, "feet"),
  21710. weight: math.unit(120, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/yumi-akiyama/front.svg",
  21714. extra: 1327 / 1235,
  21715. bottom: 0.02
  21716. }
  21717. },
  21718. back: {
  21719. height: math.unit(4 + 11 / 12, "feet"),
  21720. weight: math.unit(120, "lb"),
  21721. name: "Back",
  21722. image: {
  21723. source: "./media/characters/yumi-akiyama/back.svg",
  21724. extra: 1287 / 1245,
  21725. bottom: 0.002
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Galactic",
  21732. height: math.unit(50, "galaxies"),
  21733. default: true
  21734. },
  21735. {
  21736. name: "Universal",
  21737. height: math.unit(100, "universes")
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21743. {
  21744. front: {
  21745. height: math.unit(8, "feet"),
  21746. weight: math.unit(500, "lb"),
  21747. name: "Front",
  21748. image: {
  21749. source: "./media/characters/rifter-yrmori/front.svg",
  21750. extra: 1180 / 1125,
  21751. bottom: 0.02
  21752. }
  21753. },
  21754. back: {
  21755. height: math.unit(8, "feet"),
  21756. weight: math.unit(500, "lb"),
  21757. name: "Back",
  21758. image: {
  21759. source: "./media/characters/rifter-yrmori/back.svg",
  21760. extra: 1190 / 1145,
  21761. bottom: 0.001
  21762. }
  21763. },
  21764. wings: {
  21765. height: math.unit(7.75, "feet"),
  21766. weight: math.unit(500, "lb"),
  21767. name: "Wings",
  21768. image: {
  21769. source: "./media/characters/rifter-yrmori/wings.svg",
  21770. extra: 1357 / 1285
  21771. }
  21772. },
  21773. maw: {
  21774. height: math.unit(0.8, "feet"),
  21775. name: "Maw",
  21776. image: {
  21777. source: "./media/characters/rifter-yrmori/maw.svg"
  21778. }
  21779. },
  21780. mawfront: {
  21781. height: math.unit(1.45, "feet"),
  21782. name: "Maw (Front)",
  21783. image: {
  21784. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21785. }
  21786. },
  21787. },
  21788. [
  21789. {
  21790. name: "Normal",
  21791. height: math.unit(8, "feet"),
  21792. default: true
  21793. },
  21794. {
  21795. name: "Macro",
  21796. height: math.unit(42, "meters")
  21797. },
  21798. ]
  21799. ))
  21800. characterMakers.push(() => makeCharacter(
  21801. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21802. {
  21803. were: {
  21804. height: math.unit(25 + 6 / 12, "feet"),
  21805. weight: math.unit(10000, "lb"),
  21806. name: "Were",
  21807. image: {
  21808. source: "./media/characters/tahajin/were.svg",
  21809. extra: 801 / 770,
  21810. bottom: 0.042
  21811. }
  21812. },
  21813. aquatic: {
  21814. height: math.unit(6 + 4 / 12, "feet"),
  21815. weight: math.unit(160, "lb"),
  21816. name: "Aquatic",
  21817. image: {
  21818. source: "./media/characters/tahajin/aquatic.svg",
  21819. extra: 572 / 542,
  21820. bottom: 0.04
  21821. }
  21822. },
  21823. chow: {
  21824. height: math.unit(8 + 11 / 12, "feet"),
  21825. weight: math.unit(450, "lb"),
  21826. name: "Chow",
  21827. image: {
  21828. source: "./media/characters/tahajin/chow.svg",
  21829. extra: 660 / 640,
  21830. bottom: 0.015
  21831. }
  21832. },
  21833. demiNaga: {
  21834. height: math.unit(6 + 8 / 12, "feet"),
  21835. weight: math.unit(300, "lb"),
  21836. name: "Demi Naga",
  21837. image: {
  21838. source: "./media/characters/tahajin/demi-naga.svg",
  21839. extra: 643 / 615,
  21840. bottom: 0.1
  21841. }
  21842. },
  21843. data: {
  21844. height: math.unit(5, "inches"),
  21845. weight: math.unit(0.1, "lb"),
  21846. name: "Data",
  21847. image: {
  21848. source: "./media/characters/tahajin/data.svg"
  21849. }
  21850. },
  21851. fluu: {
  21852. height: math.unit(5 + 7 / 12, "feet"),
  21853. weight: math.unit(140, "lb"),
  21854. name: "Fluu",
  21855. image: {
  21856. source: "./media/characters/tahajin/fluu.svg",
  21857. extra: 628 / 592,
  21858. bottom: 0.02
  21859. }
  21860. },
  21861. starWarrior: {
  21862. height: math.unit(4 + 5 / 12, "feet"),
  21863. weight: math.unit(50, "lb"),
  21864. name: "Star Warrior",
  21865. image: {
  21866. source: "./media/characters/tahajin/star-warrior.svg"
  21867. }
  21868. },
  21869. },
  21870. [
  21871. {
  21872. name: "Normal",
  21873. height: math.unit(25 + 6 / 12, "feet"),
  21874. default: true
  21875. },
  21876. ]
  21877. ))
  21878. characterMakers.push(() => makeCharacter(
  21879. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21880. {
  21881. front: {
  21882. height: math.unit(8, "feet"),
  21883. weight: math.unit(350, "lb"),
  21884. name: "Front",
  21885. image: {
  21886. source: "./media/characters/gabira/front.svg",
  21887. extra: 608 / 580,
  21888. bottom: 0.03
  21889. }
  21890. },
  21891. back: {
  21892. height: math.unit(8, "feet"),
  21893. weight: math.unit(350, "lb"),
  21894. name: "Back",
  21895. image: {
  21896. source: "./media/characters/gabira/back.svg",
  21897. extra: 608 / 580,
  21898. bottom: 0.03
  21899. }
  21900. },
  21901. },
  21902. [
  21903. {
  21904. name: "Normal",
  21905. height: math.unit(8, "feet"),
  21906. default: true
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21912. {
  21913. front: {
  21914. height: math.unit(5 + 3 / 12, "feet"),
  21915. weight: math.unit(137, "lb"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/sasha-katraine/front.svg",
  21919. bottom: 0.045
  21920. }
  21921. },
  21922. },
  21923. [
  21924. {
  21925. name: "Micro",
  21926. height: math.unit(5, "inches")
  21927. },
  21928. {
  21929. name: "Normal",
  21930. height: math.unit(5 + 3 / 12, "feet"),
  21931. default: true
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21937. {
  21938. side: {
  21939. height: math.unit(4, "inches"),
  21940. weight: math.unit(200, "grams"),
  21941. name: "Side",
  21942. image: {
  21943. source: "./media/characters/der/side.svg",
  21944. extra: 719 / 400,
  21945. bottom: 30.6 / 749.9187
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Micro",
  21952. height: math.unit(4, "inches"),
  21953. default: true
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21959. {
  21960. side: {
  21961. height: math.unit(30, "meters"),
  21962. weight: math.unit(700, "tonnes"),
  21963. name: "Side",
  21964. image: {
  21965. source: "./media/characters/fixerdragon/side.svg",
  21966. extra: (1293.0514 - 116.03) / 1106.86,
  21967. bottom: 116.03 / 1293.0514
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Planck",
  21974. height: math.unit(1.6e-35, "meters")
  21975. },
  21976. {
  21977. name: "Micro",
  21978. height: math.unit(0.4, "meters")
  21979. },
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(30, "meters"),
  21983. default: true
  21984. },
  21985. {
  21986. name: "Megamacro",
  21987. height: math.unit(1.2, "megameters")
  21988. },
  21989. {
  21990. name: "Teramacro",
  21991. height: math.unit(130, "terameters")
  21992. },
  21993. {
  21994. name: "Yottamacro",
  21995. height: math.unit(6200, "yottameters")
  21996. },
  21997. ]
  21998. ));
  21999. characterMakers.push(() => makeCharacter(
  22000. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22001. {
  22002. front: {
  22003. height: math.unit(8, "feet"),
  22004. weight: math.unit(250, "lb"),
  22005. name: "Front",
  22006. image: {
  22007. source: "./media/characters/kite/front.svg",
  22008. extra: 2796 / 2659,
  22009. bottom: 0.002
  22010. }
  22011. },
  22012. },
  22013. [
  22014. {
  22015. name: "Normal",
  22016. height: math.unit(8, "feet"),
  22017. default: true
  22018. },
  22019. {
  22020. name: "Macro",
  22021. height: math.unit(360, "feet")
  22022. },
  22023. {
  22024. name: "Megamacro",
  22025. height: math.unit(1500, "feet")
  22026. },
  22027. ]
  22028. ))
  22029. characterMakers.push(() => makeCharacter(
  22030. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  22031. {
  22032. front: {
  22033. height: math.unit(5 + 11/12, "feet"),
  22034. weight: math.unit(170, "lb"),
  22035. name: "Front",
  22036. image: {
  22037. source: "./media/characters/poojawa-vynar/front.svg",
  22038. extra: 1735/1585,
  22039. bottom: 96/1831
  22040. }
  22041. },
  22042. back: {
  22043. height: math.unit(5 + 11/12, "feet"),
  22044. weight: math.unit(170, "lb"),
  22045. name: "Back",
  22046. image: {
  22047. source: "./media/characters/poojawa-vynar/back.svg",
  22048. extra: 1749/1607,
  22049. bottom: 28/1777
  22050. }
  22051. },
  22052. male: {
  22053. height: math.unit(5 + 11/12, "feet"),
  22054. weight: math.unit(170, "lb"),
  22055. name: "Male",
  22056. image: {
  22057. source: "./media/characters/poojawa-vynar/male.svg",
  22058. extra: 1855/1713,
  22059. bottom: 63/1918
  22060. }
  22061. },
  22062. taur: {
  22063. height: math.unit(5 + 11/12, "feet"),
  22064. weight: math.unit(170, "lb"),
  22065. name: "Taur",
  22066. image: {
  22067. source: "./media/characters/poojawa-vynar/taur.svg",
  22068. extra: 1151/1059,
  22069. bottom: 356/1507
  22070. }
  22071. },
  22072. frontDressed: {
  22073. height: math.unit(5 + 11/12, "feet"),
  22074. weight: math.unit(170, "lb"),
  22075. name: "Front (Dressed)",
  22076. image: {
  22077. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22078. extra: 1735/1585,
  22079. bottom: 96/1831
  22080. }
  22081. },
  22082. backDressed: {
  22083. height: math.unit(5 + 11/12, "feet"),
  22084. weight: math.unit(170, "lb"),
  22085. name: "Back (Dressed)",
  22086. image: {
  22087. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22088. extra: 1749/1607,
  22089. bottom: 28/1777
  22090. }
  22091. },
  22092. maleDressed: {
  22093. height: math.unit(5 + 11/12, "feet"),
  22094. weight: math.unit(170, "lb"),
  22095. name: "Male (Dressed)",
  22096. image: {
  22097. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22098. extra: 1855/1713,
  22099. bottom: 63/1918
  22100. }
  22101. },
  22102. taurDressed: {
  22103. height: math.unit(5 + 11/12, "feet"),
  22104. weight: math.unit(170, "lb"),
  22105. name: "Taur (Dressed)",
  22106. image: {
  22107. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22108. extra: 1151/1059,
  22109. bottom: 356/1507
  22110. }
  22111. },
  22112. maw: {
  22113. height: math.unit(1.46, "feet"),
  22114. name: "Maw",
  22115. image: {
  22116. source: "./media/characters/poojawa-vynar/maw.svg"
  22117. }
  22118. },
  22119. head: {
  22120. height: math.unit(2.34, "feet"),
  22121. name: "Head",
  22122. image: {
  22123. source: "./media/characters/poojawa-vynar/head.svg"
  22124. }
  22125. },
  22126. paw: {
  22127. height: math.unit(1.61, "feet"),
  22128. name: "Paw",
  22129. image: {
  22130. source: "./media/characters/poojawa-vynar/paw.svg"
  22131. }
  22132. },
  22133. pawToering: {
  22134. height: math.unit(1.72, "feet"),
  22135. name: "Paw (Toering)",
  22136. image: {
  22137. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22138. }
  22139. },
  22140. toering: {
  22141. height: math.unit(2.9, "inches"),
  22142. name: "Toering",
  22143. image: {
  22144. source: "./media/characters/poojawa-vynar/toering.svg"
  22145. }
  22146. },
  22147. shaft: {
  22148. height: math.unit(0.625, "feet"),
  22149. name: "Shaft",
  22150. image: {
  22151. source: "./media/characters/poojawa-vynar/shaft.svg"
  22152. }
  22153. },
  22154. spade: {
  22155. height: math.unit(0.42, "feet"),
  22156. name: "Spade",
  22157. image: {
  22158. source: "./media/characters/poojawa-vynar/spade.svg"
  22159. }
  22160. },
  22161. },
  22162. [
  22163. {
  22164. name: "Shortstack",
  22165. height: math.unit(4, "feet")
  22166. },
  22167. {
  22168. name: "Normal",
  22169. height: math.unit(5 + 11 / 12, "feet"),
  22170. default: true
  22171. },
  22172. {
  22173. name: "Tauric",
  22174. height: math.unit(4, "meters")
  22175. },
  22176. ]
  22177. ))
  22178. characterMakers.push(() => makeCharacter(
  22179. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22180. {
  22181. front: {
  22182. height: math.unit(293, "meters"),
  22183. weight: math.unit(70400, "tons"),
  22184. name: "Front",
  22185. image: {
  22186. source: "./media/characters/violette/front.svg",
  22187. extra: 1227 / 1180,
  22188. bottom: 0.005
  22189. }
  22190. },
  22191. back: {
  22192. height: math.unit(293, "meters"),
  22193. weight: math.unit(70400, "tons"),
  22194. name: "Back",
  22195. image: {
  22196. source: "./media/characters/violette/back.svg",
  22197. extra: 1227 / 1180,
  22198. bottom: 0.005
  22199. }
  22200. },
  22201. },
  22202. [
  22203. {
  22204. name: "Macro",
  22205. height: math.unit(293, "meters"),
  22206. default: true
  22207. },
  22208. ]
  22209. ))
  22210. characterMakers.push(() => makeCharacter(
  22211. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22212. {
  22213. front: {
  22214. height: math.unit(1050, "feet"),
  22215. weight: math.unit(200000, "tons"),
  22216. name: "Front",
  22217. image: {
  22218. source: "./media/characters/alessandra/front.svg",
  22219. extra: 960 / 912,
  22220. bottom: 0.06
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Macro",
  22227. height: math.unit(1050, "feet")
  22228. },
  22229. {
  22230. name: "Macro+",
  22231. height: math.unit(900, "meters"),
  22232. default: true
  22233. },
  22234. ]
  22235. ))
  22236. characterMakers.push(() => makeCharacter(
  22237. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22238. {
  22239. front: {
  22240. height: math.unit(5, "feet"),
  22241. weight: math.unit(187, "lb"),
  22242. name: "Front",
  22243. image: {
  22244. source: "./media/characters/person/front.svg",
  22245. extra: 3087 / 2945,
  22246. bottom: 91 / 3181
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Micro",
  22253. height: math.unit(3, "inches")
  22254. },
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(5, "feet"),
  22258. default: true
  22259. },
  22260. {
  22261. name: "Macro",
  22262. height: math.unit(90, "feet")
  22263. },
  22264. {
  22265. name: "Max Size",
  22266. height: math.unit(280, "feet")
  22267. },
  22268. ]
  22269. ))
  22270. characterMakers.push(() => makeCharacter(
  22271. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22272. {
  22273. front: {
  22274. height: math.unit(4.5, "meters"),
  22275. weight: math.unit(3200, "lb"),
  22276. name: "Front",
  22277. image: {
  22278. source: "./media/characters/ty/front.svg",
  22279. extra: 1038 / 960,
  22280. bottom: 31.156 / 1068
  22281. }
  22282. },
  22283. back: {
  22284. height: math.unit(4.5, "meters"),
  22285. weight: math.unit(3200, "lb"),
  22286. name: "Back",
  22287. image: {
  22288. source: "./media/characters/ty/back.svg",
  22289. extra: 1044 / 966,
  22290. bottom: 7.48 / 1049
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(4.5, "meters"),
  22298. default: true
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(5 + 4 / 12, "feet"),
  22307. weight: math.unit(115, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/rocky/front.svg",
  22311. extra: 1012 / 975,
  22312. bottom: 54 / 1066
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(5 + 4 / 12, "feet"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22326. {
  22327. upright: {
  22328. height: math.unit(6, "meters"),
  22329. weight: math.unit(4000, "kg"),
  22330. name: "Upright",
  22331. image: {
  22332. source: "./media/characters/ruin/upright.svg",
  22333. extra: 668 / 661,
  22334. bottom: 42 / 799.8396
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Normal",
  22341. height: math.unit(6, "meters"),
  22342. default: true
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22348. {
  22349. front: {
  22350. height: math.unit(5, "feet"),
  22351. weight: math.unit(106, "lb"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/robin/front.svg",
  22355. extra: 862 / 799,
  22356. bottom: 42.4 / 914.8856
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(5, "feet"),
  22364. default: true
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22370. {
  22371. side: {
  22372. height: math.unit(3, "feet"),
  22373. weight: math.unit(225, "lb"),
  22374. name: "Side",
  22375. image: {
  22376. source: "./media/characters/saian/side.svg",
  22377. extra: 566 / 356,
  22378. bottom: 79.7 / 643
  22379. }
  22380. },
  22381. maw: {
  22382. height: math.unit(2.85, "feet"),
  22383. name: "Maw",
  22384. image: {
  22385. source: "./media/characters/saian/maw.svg"
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Normal",
  22392. height: math.unit(3, "feet"),
  22393. default: true
  22394. },
  22395. ]
  22396. ))
  22397. characterMakers.push(() => makeCharacter(
  22398. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22399. {
  22400. side: {
  22401. height: math.unit(8, "feet"),
  22402. weight: math.unit(300, "lb"),
  22403. name: "Side",
  22404. image: {
  22405. source: "./media/characters/equus-silvermane/side.svg",
  22406. extra: 2176 / 2050,
  22407. bottom: 65.7 / 2245
  22408. }
  22409. },
  22410. front: {
  22411. height: math.unit(8, "feet"),
  22412. weight: math.unit(300, "lb"),
  22413. name: "Front",
  22414. image: {
  22415. source: "./media/characters/equus-silvermane/front.svg",
  22416. extra: 4633 / 4400,
  22417. bottom: 71.3 / 4706.915
  22418. }
  22419. },
  22420. sideStepping: {
  22421. height: math.unit(8, "feet"),
  22422. weight: math.unit(300, "lb"),
  22423. name: "Side (Stepping)",
  22424. image: {
  22425. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22426. extra: 1968 / 1860,
  22427. bottom: 16.4 / 1989
  22428. }
  22429. },
  22430. },
  22431. [
  22432. {
  22433. name: "Normal",
  22434. height: math.unit(8, "feet")
  22435. },
  22436. {
  22437. name: "Minimacro",
  22438. height: math.unit(75, "feet"),
  22439. default: true
  22440. },
  22441. {
  22442. name: "Macro",
  22443. height: math.unit(150, "feet")
  22444. },
  22445. {
  22446. name: "Macro+",
  22447. height: math.unit(1000, "feet")
  22448. },
  22449. {
  22450. name: "Megamacro",
  22451. height: math.unit(1, "mile")
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22457. {
  22458. side: {
  22459. height: math.unit(20, "feet"),
  22460. weight: math.unit(30000, "kg"),
  22461. name: "Side",
  22462. image: {
  22463. source: "./media/characters/windar/side.svg",
  22464. extra: 1491 / 1248,
  22465. bottom: 82.56 / 1568
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(20, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22479. {
  22480. side: {
  22481. height: math.unit(15.66, "feet"),
  22482. weight: math.unit(150, "lb"),
  22483. name: "Side",
  22484. image: {
  22485. source: "./media/characters/melody/side.svg",
  22486. extra: 1097 / 944,
  22487. bottom: 11.8 / 1109
  22488. }
  22489. },
  22490. sideOutfit: {
  22491. height: math.unit(15.66, "feet"),
  22492. weight: math.unit(150, "lb"),
  22493. name: "Side (Outfit)",
  22494. image: {
  22495. source: "./media/characters/melody/side-outfit.svg",
  22496. extra: 1097 / 944,
  22497. bottom: 11.8 / 1109
  22498. }
  22499. },
  22500. },
  22501. [
  22502. {
  22503. name: "Normal",
  22504. height: math.unit(15.66, "feet"),
  22505. default: true
  22506. },
  22507. ]
  22508. ))
  22509. characterMakers.push(() => makeCharacter(
  22510. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22511. {
  22512. front: {
  22513. height: math.unit(8, "feet"),
  22514. weight: math.unit(325, "lb"),
  22515. name: "Front",
  22516. image: {
  22517. source: "./media/characters/windera/front.svg",
  22518. extra: 3180 / 2845,
  22519. bottom: 178 / 3365
  22520. }
  22521. },
  22522. },
  22523. [
  22524. {
  22525. name: "Normal",
  22526. height: math.unit(8, "feet"),
  22527. default: true
  22528. },
  22529. ]
  22530. ))
  22531. characterMakers.push(() => makeCharacter(
  22532. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22533. {
  22534. front: {
  22535. height: math.unit(28.75, "feet"),
  22536. weight: math.unit(2000, "kg"),
  22537. name: "Front",
  22538. image: {
  22539. source: "./media/characters/sonear/front.svg",
  22540. extra: 1041.1 / 964.9,
  22541. bottom: 53.7 / 1096.6
  22542. }
  22543. },
  22544. },
  22545. [
  22546. {
  22547. name: "Normal",
  22548. height: math.unit(28.75, "feet"),
  22549. default: true
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22555. {
  22556. side: {
  22557. height: math.unit(25.5, "feet"),
  22558. weight: math.unit(23000, "kg"),
  22559. name: "Side",
  22560. image: {
  22561. source: "./media/characters/kanara/side.svg"
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(25.5, "feet"),
  22569. default: true
  22570. },
  22571. ]
  22572. ))
  22573. characterMakers.push(() => makeCharacter(
  22574. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22575. {
  22576. side: {
  22577. height: math.unit(10, "feet"),
  22578. weight: math.unit(1000, "kg"),
  22579. name: "Side",
  22580. image: {
  22581. source: "./media/characters/ereus/side.svg",
  22582. extra: 1157 / 959,
  22583. bottom: 153 / 1312.5
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(10, "feet"),
  22591. default: true
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22597. {
  22598. side: {
  22599. height: math.unit(4.5, "feet"),
  22600. weight: math.unit(500, "lb"),
  22601. name: "Side",
  22602. image: {
  22603. source: "./media/characters/e-ter/side.svg",
  22604. extra: 1550 / 1248,
  22605. bottom: 146 / 1694
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(4.5, "feet"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22619. {
  22620. side: {
  22621. height: math.unit(9.7, "feet"),
  22622. weight: math.unit(4000, "kg"),
  22623. name: "Side",
  22624. image: {
  22625. source: "./media/characters/yamie/side.svg"
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Normal",
  22632. height: math.unit(9.7, "feet"),
  22633. default: true
  22634. },
  22635. ]
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22639. {
  22640. front: {
  22641. height: math.unit(50, "feet"),
  22642. weight: math.unit(50000, "kg"),
  22643. name: "Front",
  22644. image: {
  22645. source: "./media/characters/anders/front.svg",
  22646. extra: 570 / 539,
  22647. bottom: 14.7 / 586.7
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Large",
  22654. height: math.unit(50, "feet")
  22655. },
  22656. {
  22657. name: "Macro",
  22658. height: math.unit(2000, "feet"),
  22659. default: true
  22660. },
  22661. {
  22662. name: "Megamacro",
  22663. height: math.unit(12, "miles")
  22664. },
  22665. ]
  22666. ))
  22667. characterMakers.push(() => makeCharacter(
  22668. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22669. {
  22670. front: {
  22671. height: math.unit(7 + 2 / 12, "feet"),
  22672. weight: math.unit(300, "lb"),
  22673. name: "Front",
  22674. image: {
  22675. source: "./media/characters/reban/front.svg",
  22676. extra: 1287/1212,
  22677. bottom: 148/1435
  22678. }
  22679. },
  22680. head: {
  22681. height: math.unit(1.95, "feet"),
  22682. name: "Head",
  22683. image: {
  22684. source: "./media/characters/reban/head.svg"
  22685. }
  22686. },
  22687. maw: {
  22688. height: math.unit(0.95, "feet"),
  22689. name: "Maw",
  22690. image: {
  22691. source: "./media/characters/reban/maw.svg"
  22692. }
  22693. },
  22694. foot: {
  22695. height: math.unit(1.65, "feet"),
  22696. name: "Foot",
  22697. image: {
  22698. source: "./media/characters/reban/foot.svg"
  22699. }
  22700. },
  22701. dick: {
  22702. height: math.unit(7 / 5, "feet"),
  22703. name: "Dick",
  22704. image: {
  22705. source: "./media/characters/reban/dick.svg"
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Natural Height",
  22712. height: math.unit(7 + 2 / 12, "feet")
  22713. },
  22714. {
  22715. name: "Macro",
  22716. height: math.unit(500, "feet"),
  22717. default: true
  22718. },
  22719. {
  22720. name: "Canon Height",
  22721. height: math.unit(50, "AU")
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22727. {
  22728. front: {
  22729. height: math.unit(6, "feet"),
  22730. weight: math.unit(150, "lb"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/terrance-keayes/front.svg",
  22734. extra: 1.005,
  22735. bottom: 151 / 1615
  22736. }
  22737. },
  22738. side: {
  22739. height: math.unit(6, "feet"),
  22740. weight: math.unit(150, "lb"),
  22741. name: "Side",
  22742. image: {
  22743. source: "./media/characters/terrance-keayes/side.svg",
  22744. extra: 1.005,
  22745. bottom: 129.4 / 1544
  22746. }
  22747. },
  22748. back: {
  22749. height: math.unit(6, "feet"),
  22750. weight: math.unit(150, "lb"),
  22751. name: "Back",
  22752. image: {
  22753. source: "./media/characters/terrance-keayes/back.svg",
  22754. extra: 1.005,
  22755. bottom: 58.4 / 1557.3
  22756. }
  22757. },
  22758. dick: {
  22759. height: math.unit(6 * 0.208, "feet"),
  22760. name: "Dick",
  22761. image: {
  22762. source: "./media/characters/terrance-keayes/dick.svg"
  22763. }
  22764. },
  22765. },
  22766. [
  22767. {
  22768. name: "Canon Height",
  22769. height: math.unit(35, "miles"),
  22770. default: true
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22776. {
  22777. front: {
  22778. height: math.unit(6, "feet"),
  22779. weight: math.unit(150, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/ofelia/front.svg",
  22783. extra: 1130/1117,
  22784. bottom: 91/1221
  22785. }
  22786. },
  22787. back: {
  22788. height: math.unit(6, "feet"),
  22789. weight: math.unit(150, "lb"),
  22790. name: "Back",
  22791. image: {
  22792. source: "./media/characters/ofelia/back.svg",
  22793. extra: 1172/1159,
  22794. bottom: 28/1200
  22795. }
  22796. },
  22797. maw: {
  22798. height: math.unit(1, "feet"),
  22799. name: "Maw",
  22800. image: {
  22801. source: "./media/characters/ofelia/maw.svg"
  22802. }
  22803. },
  22804. foot: {
  22805. height: math.unit(1.949, "feet"),
  22806. name: "Foot",
  22807. image: {
  22808. source: "./media/characters/ofelia/foot.svg"
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Canon Height",
  22815. height: math.unit(2000, "miles"),
  22816. default: true
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22822. {
  22823. front: {
  22824. height: math.unit(6, "feet"),
  22825. weight: math.unit(150, "lb"),
  22826. name: "Front",
  22827. image: {
  22828. source: "./media/characters/samuel/front.svg",
  22829. extra: 265 / 258,
  22830. bottom: 2 / 266.1566
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Macro",
  22837. height: math.unit(100, "feet"),
  22838. default: true
  22839. },
  22840. {
  22841. name: "Full Size",
  22842. height: math.unit(1000, "miles")
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22848. {
  22849. front: {
  22850. height: math.unit(6, "feet"),
  22851. weight: math.unit(300, "lb"),
  22852. name: "Front",
  22853. image: {
  22854. source: "./media/characters/beishir-kiel/front.svg",
  22855. extra: 569 / 547,
  22856. bottom: 41.9 / 609
  22857. }
  22858. },
  22859. maw: {
  22860. height: math.unit(6 * 0.202, "feet"),
  22861. name: "Maw",
  22862. image: {
  22863. source: "./media/characters/beishir-kiel/maw.svg"
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Macro",
  22870. height: math.unit(300, "feet"),
  22871. default: true
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22877. {
  22878. front: {
  22879. height: math.unit(5 + 7/12, "feet"),
  22880. weight: math.unit(120, "lb"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/logan-grey/front.svg",
  22884. extra: 1836/1738,
  22885. bottom: 108/1944
  22886. }
  22887. },
  22888. back: {
  22889. height: math.unit(5 + 7/12, "feet"),
  22890. weight: math.unit(120, "lb"),
  22891. name: "Back",
  22892. image: {
  22893. source: "./media/characters/logan-grey/back.svg",
  22894. extra: 1880/1794,
  22895. bottom: 24/1904
  22896. }
  22897. },
  22898. frontSfw: {
  22899. height: math.unit(5 + 7/12, "feet"),
  22900. weight: math.unit(120, "lb"),
  22901. name: "Front (SFW)",
  22902. image: {
  22903. source: "./media/characters/logan-grey/front-sfw.svg",
  22904. extra: 1836/1738,
  22905. bottom: 108/1944
  22906. }
  22907. },
  22908. backSfw: {
  22909. height: math.unit(5 + 7/12, "feet"),
  22910. weight: math.unit(120, "lb"),
  22911. name: "Back (SFW)",
  22912. image: {
  22913. source: "./media/characters/logan-grey/back-sfw.svg",
  22914. extra: 1880/1794,
  22915. bottom: 24/1904
  22916. }
  22917. },
  22918. hands: {
  22919. height: math.unit(0.84, "feet"),
  22920. name: "Hands",
  22921. image: {
  22922. source: "./media/characters/logan-grey/hands.svg"
  22923. }
  22924. },
  22925. paws: {
  22926. height: math.unit(0.72, "feet"),
  22927. name: "Paws",
  22928. image: {
  22929. source: "./media/characters/logan-grey/paws.svg"
  22930. }
  22931. },
  22932. cock: {
  22933. height: math.unit(1.45, "feet"),
  22934. name: "Cock",
  22935. image: {
  22936. source: "./media/characters/logan-grey/cock.svg"
  22937. }
  22938. },
  22939. cockAlt: {
  22940. height: math.unit(1.437, "feet"),
  22941. name: "Cock (alt)",
  22942. image: {
  22943. source: "./media/characters/logan-grey/cock-alt.svg"
  22944. }
  22945. },
  22946. },
  22947. [
  22948. {
  22949. name: "Normal",
  22950. height: math.unit(5 + 8 / 12, "feet")
  22951. },
  22952. {
  22953. name: "The 500 Foot Femboy",
  22954. height: math.unit(500, "feet"),
  22955. default: true
  22956. },
  22957. {
  22958. name: "Megmacro",
  22959. height: math.unit(20, "miles")
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22965. {
  22966. front: {
  22967. height: math.unit(8 + 2 / 12, "feet"),
  22968. weight: math.unit(275, "lb"),
  22969. name: "Front",
  22970. image: {
  22971. source: "./media/characters/draganta/front.svg",
  22972. extra: 1177 / 1135,
  22973. bottom: 33.46 / 1212.1
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(8 + 6 / 12, "feet"),
  22981. default: true
  22982. },
  22983. {
  22984. name: "Macro",
  22985. height: math.unit(150, "feet")
  22986. },
  22987. {
  22988. name: "Megamacro",
  22989. height: math.unit(1000, "miles")
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(1.72, "m"),
  22998. weight: math.unit(80, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/voski/front.svg",
  23002. extra: 2076.22 / 2022.4,
  23003. bottom: 102.7 / 2177.3866
  23004. }
  23005. },
  23006. frontNsfw: {
  23007. height: math.unit(1.72, "m"),
  23008. weight: math.unit(80, "lb"),
  23009. name: "Front (NSFW)",
  23010. image: {
  23011. source: "./media/characters/voski/front-nsfw.svg",
  23012. extra: 2076.22 / 2022.4,
  23013. bottom: 102.7 / 2177.3866
  23014. }
  23015. },
  23016. back: {
  23017. height: math.unit(1.72, "m"),
  23018. weight: math.unit(80, "lb"),
  23019. name: "Back",
  23020. image: {
  23021. source: "./media/characters/voski/back.svg",
  23022. extra: 2104 / 2051,
  23023. bottom: 10.45 / 2113.63
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "Normal",
  23030. height: math.unit(1.72, "m")
  23031. },
  23032. {
  23033. name: "Macro",
  23034. height: math.unit(55, "m"),
  23035. default: true
  23036. },
  23037. {
  23038. name: "Macro+",
  23039. height: math.unit(300, "m")
  23040. },
  23041. {
  23042. name: "Macro++",
  23043. height: math.unit(700, "m")
  23044. },
  23045. {
  23046. name: "Macro+++",
  23047. height: math.unit(4500, "m")
  23048. },
  23049. {
  23050. name: "Macro++++",
  23051. height: math.unit(45, "km")
  23052. },
  23053. {
  23054. name: "Macro+++++",
  23055. height: math.unit(1220, "km")
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(2.3, "m"),
  23064. weight: math.unit(304, "kg"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/icowom-lee/front.svg",
  23068. extra: 985 / 955,
  23069. bottom: 25.4 / 1012
  23070. }
  23071. },
  23072. fronttentacles: {
  23073. height: math.unit(2.3, "m"),
  23074. weight: math.unit(304, "kg"),
  23075. name: "Front-tentacles",
  23076. image: {
  23077. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23078. extra: 985 / 955,
  23079. bottom: 25.4 / 1012
  23080. }
  23081. },
  23082. back: {
  23083. height: math.unit(2.3, "m"),
  23084. weight: math.unit(304, "kg"),
  23085. name: "Back",
  23086. image: {
  23087. source: "./media/characters/icowom-lee/back.svg",
  23088. extra: 975 / 954,
  23089. bottom: 9.5 / 985
  23090. }
  23091. },
  23092. backtentacles: {
  23093. height: math.unit(2.3, "m"),
  23094. weight: math.unit(304, "kg"),
  23095. name: "Back-tentacles",
  23096. image: {
  23097. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23098. extra: 975 / 954,
  23099. bottom: 9.5 / 985
  23100. }
  23101. },
  23102. frontDressed: {
  23103. height: math.unit(2.3, "m"),
  23104. weight: math.unit(304, "kg"),
  23105. name: "Front (Dressed)",
  23106. image: {
  23107. source: "./media/characters/icowom-lee/front-dressed.svg",
  23108. extra: 3076 / 2933,
  23109. bottom: 51.4 / 3125.1889
  23110. }
  23111. },
  23112. rump: {
  23113. height: math.unit(0.776, "meters"),
  23114. name: "Rump",
  23115. image: {
  23116. source: "./media/characters/icowom-lee/rump.svg"
  23117. }
  23118. },
  23119. genitals: {
  23120. height: math.unit(0.78, "meters"),
  23121. name: "Genitals",
  23122. image: {
  23123. source: "./media/characters/icowom-lee/genitals.svg"
  23124. }
  23125. },
  23126. },
  23127. [
  23128. {
  23129. name: "Normal",
  23130. height: math.unit(2.3, "meters"),
  23131. default: true
  23132. },
  23133. {
  23134. name: "Macro",
  23135. height: math.unit(94, "meters"),
  23136. default: true
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(22, "meters"),
  23145. weight: math.unit(21000, "kg"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/shock-diamond/front.svg",
  23149. extra: 2204 / 2053,
  23150. bottom: 65 / 2239.47
  23151. }
  23152. },
  23153. frontNude: {
  23154. height: math.unit(22, "meters"),
  23155. weight: math.unit(21000, "kg"),
  23156. name: "Front (Nude)",
  23157. image: {
  23158. source: "./media/characters/shock-diamond/front-nude.svg",
  23159. extra: 2514 / 2285,
  23160. bottom: 13 / 2527.56
  23161. }
  23162. },
  23163. },
  23164. [
  23165. {
  23166. name: "Normal",
  23167. height: math.unit(3, "meters")
  23168. },
  23169. {
  23170. name: "Macro",
  23171. height: math.unit(22, "meters"),
  23172. default: true
  23173. },
  23174. ]
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(5 + 4 / 12, "feet"),
  23181. weight: math.unit(120, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/rory/front.svg",
  23185. extra: 1318/1241,
  23186. bottom: 42/1360
  23187. }
  23188. },
  23189. back: {
  23190. height: math.unit(5 + 4 / 12, "feet"),
  23191. weight: math.unit(120, "lb"),
  23192. name: "Back",
  23193. image: {
  23194. source: "./media/characters/rory/back.svg",
  23195. extra: 1318/1241,
  23196. bottom: 42/1360
  23197. }
  23198. },
  23199. butt: {
  23200. height: math.unit(1.74, "feet"),
  23201. name: "Butt",
  23202. image: {
  23203. source: "./media/characters/rory/butt.svg"
  23204. }
  23205. },
  23206. dick: {
  23207. height: math.unit(1.02, "feet"),
  23208. name: "Dick",
  23209. image: {
  23210. source: "./media/characters/rory/dick.svg"
  23211. }
  23212. },
  23213. paws: {
  23214. height: math.unit(1, "feet"),
  23215. name: "Paws",
  23216. image: {
  23217. source: "./media/characters/rory/paws.svg"
  23218. }
  23219. },
  23220. frontAlt: {
  23221. height: math.unit(5 + 4 / 12, "feet"),
  23222. weight: math.unit(120, "lb"),
  23223. name: "Front (Alt)",
  23224. image: {
  23225. source: "./media/characters/rory/front-alt.svg",
  23226. extra: 589 / 556,
  23227. bottom: 45.7 / 635.76
  23228. }
  23229. },
  23230. frontAltNude: {
  23231. height: math.unit(5 + 4 / 12, "feet"),
  23232. weight: math.unit(120, "lb"),
  23233. name: "Front (Alt, Nude)",
  23234. image: {
  23235. source: "./media/characters/rory/front-alt-nude.svg",
  23236. extra: 589 / 556,
  23237. bottom: 45.7 / 635.76
  23238. }
  23239. },
  23240. side: {
  23241. height: math.unit(5 + 4 / 12, "feet"),
  23242. weight: math.unit(120, "lb"),
  23243. name: "Side",
  23244. image: {
  23245. source: "./media/characters/rory/side.svg",
  23246. extra: 597 / 564,
  23247. bottom: 55 / 653
  23248. }
  23249. },
  23250. backAlt: {
  23251. height: math.unit(5 + 4 / 12, "feet"),
  23252. weight: math.unit(120, "lb"),
  23253. name: "Back (Alt)",
  23254. image: {
  23255. source: "./media/characters/rory/back-alt.svg",
  23256. extra: 620 / 585,
  23257. bottom: 8.86 / 630.43
  23258. }
  23259. },
  23260. dickAlt: {
  23261. height: math.unit(0.86, "feet"),
  23262. name: "Dick (Alt)",
  23263. image: {
  23264. source: "./media/characters/rory/dick-alt.svg"
  23265. }
  23266. },
  23267. },
  23268. [
  23269. {
  23270. name: "Normal",
  23271. height: math.unit(5 + 4 / 12, "feet"),
  23272. default: true
  23273. },
  23274. {
  23275. name: "Macro",
  23276. height: math.unit(100, "feet")
  23277. },
  23278. {
  23279. name: "Macro+",
  23280. height: math.unit(140, "feet")
  23281. },
  23282. {
  23283. name: "Macro++",
  23284. height: math.unit(300, "feet")
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23290. {
  23291. front: {
  23292. height: math.unit(5 + 9 / 12, "feet"),
  23293. weight: math.unit(190, "lb"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/sprisk/front.svg",
  23297. extra: 1225 / 1180,
  23298. bottom: 42.7 / 1266.4
  23299. }
  23300. },
  23301. frontNsfw: {
  23302. height: math.unit(5 + 9 / 12, "feet"),
  23303. weight: math.unit(190, "lb"),
  23304. name: "Front (NSFW)",
  23305. image: {
  23306. source: "./media/characters/sprisk/front-nsfw.svg",
  23307. extra: 1225 / 1180,
  23308. bottom: 42.7 / 1266.4
  23309. }
  23310. },
  23311. back: {
  23312. height: math.unit(5 + 9 / 12, "feet"),
  23313. weight: math.unit(190, "lb"),
  23314. name: "Back",
  23315. image: {
  23316. source: "./media/characters/sprisk/back.svg",
  23317. extra: 1247 / 1200,
  23318. bottom: 5.6 / 1253.04
  23319. }
  23320. },
  23321. },
  23322. [
  23323. {
  23324. name: "Tiny",
  23325. height: math.unit(2, "inches")
  23326. },
  23327. {
  23328. name: "Normal",
  23329. height: math.unit(5 + 9 / 12, "feet"),
  23330. default: true
  23331. },
  23332. {
  23333. name: "Mini Macro",
  23334. height: math.unit(18, "feet")
  23335. },
  23336. {
  23337. name: "Macro",
  23338. height: math.unit(100, "feet")
  23339. },
  23340. {
  23341. name: "MACRO",
  23342. height: math.unit(50, "miles")
  23343. },
  23344. {
  23345. name: "M A C R O",
  23346. height: math.unit(300, "miles")
  23347. },
  23348. ]
  23349. ))
  23350. characterMakers.push(() => makeCharacter(
  23351. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23352. {
  23353. side: {
  23354. height: math.unit(15.6, "meters"),
  23355. weight: math.unit(700000, "kg"),
  23356. name: "Side",
  23357. image: {
  23358. source: "./media/characters/bunsen/side.svg",
  23359. extra: 1644 / 358
  23360. }
  23361. },
  23362. foot: {
  23363. height: math.unit(1.611 * 1644 / 358, "meter"),
  23364. name: "Foot",
  23365. image: {
  23366. source: "./media/characters/bunsen/foot.svg"
  23367. }
  23368. },
  23369. },
  23370. [
  23371. {
  23372. name: "Small",
  23373. height: math.unit(10, "feet")
  23374. },
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(15.6, "meters"),
  23378. default: true
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23384. {
  23385. front: {
  23386. height: math.unit(4 + 11 / 12, "feet"),
  23387. weight: math.unit(140, "lb"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/sesh/front.svg",
  23391. extra: 3420 / 3231,
  23392. bottom: 72 / 3949.5
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Normal",
  23399. height: math.unit(4 + 11 / 12, "feet")
  23400. },
  23401. {
  23402. name: "Grown",
  23403. height: math.unit(15, "feet"),
  23404. default: true
  23405. },
  23406. {
  23407. name: "Macro",
  23408. height: math.unit(1500, "feet")
  23409. },
  23410. {
  23411. name: "Megamacro",
  23412. height: math.unit(30, "miles")
  23413. },
  23414. {
  23415. name: "Continental",
  23416. height: math.unit(3000, "miles")
  23417. },
  23418. {
  23419. name: "Gravity Mass",
  23420. height: math.unit(300000, "miles")
  23421. },
  23422. {
  23423. name: "Planet Buster",
  23424. height: math.unit(30000000, "miles")
  23425. },
  23426. {
  23427. name: "Big",
  23428. height: math.unit(3000000000, "miles")
  23429. },
  23430. ]
  23431. ))
  23432. characterMakers.push(() => makeCharacter(
  23433. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23434. {
  23435. front: {
  23436. height: math.unit(9, "feet"),
  23437. weight: math.unit(350, "lb"),
  23438. name: "Front",
  23439. image: {
  23440. source: "./media/characters/pepper/front.svg",
  23441. extra: 1448 / 1312,
  23442. bottom: 9.4 / 1457.88
  23443. }
  23444. },
  23445. back: {
  23446. height: math.unit(9, "feet"),
  23447. weight: math.unit(350, "lb"),
  23448. name: "Back",
  23449. image: {
  23450. source: "./media/characters/pepper/back.svg",
  23451. extra: 1423 / 1300,
  23452. bottom: 4.6 / 1429
  23453. }
  23454. },
  23455. maw: {
  23456. height: math.unit(0.932, "feet"),
  23457. name: "Maw",
  23458. image: {
  23459. source: "./media/characters/pepper/maw.svg"
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Normal",
  23466. height: math.unit(9, "feet"),
  23467. default: true
  23468. },
  23469. ]
  23470. ))
  23471. characterMakers.push(() => makeCharacter(
  23472. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23473. {
  23474. front: {
  23475. height: math.unit(6, "feet"),
  23476. weight: math.unit(150, "lb"),
  23477. name: "Front",
  23478. image: {
  23479. source: "./media/characters/maelstrom/front.svg",
  23480. extra: 2100 / 1883,
  23481. bottom: 94 / 2196.7
  23482. }
  23483. },
  23484. },
  23485. [
  23486. {
  23487. name: "Less Kaiju",
  23488. height: math.unit(200, "feet")
  23489. },
  23490. {
  23491. name: "Kaiju",
  23492. height: math.unit(400, "feet"),
  23493. default: true
  23494. },
  23495. {
  23496. name: "Kaiju-er",
  23497. height: math.unit(600, "feet")
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(6 + 5 / 12, "feet"),
  23506. weight: math.unit(180, "lb"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/lexir/front.svg",
  23510. extra: 180 / 172,
  23511. bottom: 12 / 192
  23512. }
  23513. },
  23514. back: {
  23515. height: math.unit(6 + 5 / 12, "feet"),
  23516. weight: math.unit(180, "lb"),
  23517. name: "Back",
  23518. image: {
  23519. source: "./media/characters/lexir/back.svg",
  23520. extra: 183.84 / 175.5,
  23521. bottom: 3.1 / 187
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Very Smal",
  23528. height: math.unit(1, "nm")
  23529. },
  23530. {
  23531. name: "Normal",
  23532. height: math.unit(6 + 5 / 12, "feet"),
  23533. default: true
  23534. },
  23535. {
  23536. name: "Macro",
  23537. height: math.unit(1, "mile")
  23538. },
  23539. {
  23540. name: "Megamacro",
  23541. height: math.unit(50, "miles")
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23547. {
  23548. front: {
  23549. height: math.unit(1.5, "meters"),
  23550. weight: math.unit(100, "lb"),
  23551. name: "Front",
  23552. image: {
  23553. source: "./media/characters/maksio/front.svg",
  23554. extra: 1549 / 1531,
  23555. bottom: 123.7 / 1674.5429
  23556. }
  23557. },
  23558. back: {
  23559. height: math.unit(1.5, "meters"),
  23560. weight: math.unit(100, "lb"),
  23561. name: "Back",
  23562. image: {
  23563. source: "./media/characters/maksio/back.svg",
  23564. extra: 1541 / 1509,
  23565. bottom: 97 / 1639
  23566. }
  23567. },
  23568. hand: {
  23569. height: math.unit(0.621, "feet"),
  23570. name: "Hand",
  23571. image: {
  23572. source: "./media/characters/maksio/hand.svg"
  23573. }
  23574. },
  23575. foot: {
  23576. height: math.unit(1.611, "feet"),
  23577. name: "Foot",
  23578. image: {
  23579. source: "./media/characters/maksio/foot.svg"
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Shrunken",
  23586. height: math.unit(10, "cm")
  23587. },
  23588. {
  23589. name: "Normal",
  23590. height: math.unit(150, "cm"),
  23591. default: true
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23597. {
  23598. front: {
  23599. height: math.unit(100, "feet"),
  23600. name: "Front",
  23601. image: {
  23602. source: "./media/characters/erza-bear/front.svg",
  23603. extra: 2449 / 2390,
  23604. bottom: 46 / 2494
  23605. }
  23606. },
  23607. back: {
  23608. height: math.unit(100, "feet"),
  23609. name: "Back",
  23610. image: {
  23611. source: "./media/characters/erza-bear/back.svg",
  23612. extra: 2489 / 2430,
  23613. bottom: 85.4 / 2480
  23614. }
  23615. },
  23616. tail: {
  23617. height: math.unit(42, "feet"),
  23618. name: "Tail",
  23619. image: {
  23620. source: "./media/characters/erza-bear/tail.svg"
  23621. }
  23622. },
  23623. tongue: {
  23624. height: math.unit(8, "feet"),
  23625. name: "Tongue",
  23626. image: {
  23627. source: "./media/characters/erza-bear/tongue.svg"
  23628. }
  23629. },
  23630. dick: {
  23631. height: math.unit(10.5, "feet"),
  23632. name: "Dick",
  23633. image: {
  23634. source: "./media/characters/erza-bear/dick.svg"
  23635. }
  23636. },
  23637. dickVertical: {
  23638. height: math.unit(16.9, "feet"),
  23639. name: "Dick (Vertical)",
  23640. image: {
  23641. source: "./media/characters/erza-bear/dick-vertical.svg"
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Macro",
  23648. height: math.unit(100, "feet"),
  23649. default: true
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(172, "cm"),
  23658. weight: math.unit(73, "kg"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/violet-flor/front.svg",
  23662. extra: 1530 / 1442,
  23663. bottom: 61.9 / 1588.8
  23664. }
  23665. },
  23666. back: {
  23667. height: math.unit(180, "cm"),
  23668. weight: math.unit(73, "kg"),
  23669. name: "Back",
  23670. image: {
  23671. source: "./media/characters/violet-flor/back.svg",
  23672. extra: 1692 / 1630,
  23673. bottom: 20 / 1712
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Normal",
  23680. height: math.unit(172, "cm"),
  23681. default: true
  23682. },
  23683. ]
  23684. ))
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23687. {
  23688. front: {
  23689. height: math.unit(6, "feet"),
  23690. weight: math.unit(220, "lb"),
  23691. name: "Front",
  23692. image: {
  23693. source: "./media/characters/lynn-rhea/front.svg",
  23694. extra: 310 / 273
  23695. }
  23696. },
  23697. back: {
  23698. height: math.unit(6, "feet"),
  23699. weight: math.unit(220, "lb"),
  23700. name: "Back",
  23701. image: {
  23702. source: "./media/characters/lynn-rhea/back.svg",
  23703. extra: 310 / 273
  23704. }
  23705. },
  23706. dicks: {
  23707. height: math.unit(0.9, "feet"),
  23708. name: "Dicks",
  23709. image: {
  23710. source: "./media/characters/lynn-rhea/dicks.svg"
  23711. }
  23712. },
  23713. slit: {
  23714. height: math.unit(0.4, "feet"),
  23715. name: "Slit",
  23716. image: {
  23717. source: "./media/characters/lynn-rhea/slit.svg"
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Micro",
  23724. height: math.unit(1, "inch")
  23725. },
  23726. {
  23727. name: "Macro",
  23728. height: math.unit(60, "feet"),
  23729. default: true
  23730. },
  23731. {
  23732. name: "Megamacro",
  23733. height: math.unit(2, "miles")
  23734. },
  23735. {
  23736. name: "Gigamacro",
  23737. height: math.unit(3, "earths")
  23738. },
  23739. {
  23740. name: "Galactic",
  23741. height: math.unit(0.8, "galaxies")
  23742. },
  23743. ]
  23744. ))
  23745. characterMakers.push(() => makeCharacter(
  23746. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23747. {
  23748. front: {
  23749. height: math.unit(1600, "feet"),
  23750. weight: math.unit(85758785169, "kg"),
  23751. name: "Front",
  23752. image: {
  23753. source: "./media/characters/valathos/front.svg",
  23754. extra: 1451 / 1339
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Macro",
  23761. height: math.unit(1600, "feet"),
  23762. default: true
  23763. },
  23764. ]
  23765. ))
  23766. characterMakers.push(() => makeCharacter(
  23767. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23768. {
  23769. front: {
  23770. height: math.unit(7 + 5 / 12, "feet"),
  23771. weight: math.unit(300, "lb"),
  23772. name: "Front",
  23773. image: {
  23774. source: "./media/characters/azula/front.svg",
  23775. extra: 3208 / 2880,
  23776. bottom: 80.2 / 3277
  23777. }
  23778. },
  23779. back: {
  23780. height: math.unit(7 + 5 / 12, "feet"),
  23781. weight: math.unit(300, "lb"),
  23782. name: "Back",
  23783. image: {
  23784. source: "./media/characters/azula/back.svg",
  23785. extra: 3169 / 2822,
  23786. bottom: 150.6 / 3321
  23787. }
  23788. },
  23789. },
  23790. [
  23791. {
  23792. name: "Normal",
  23793. height: math.unit(7 + 5 / 12, "feet"),
  23794. default: true
  23795. },
  23796. {
  23797. name: "Big",
  23798. height: math.unit(20, "feet")
  23799. },
  23800. ]
  23801. ))
  23802. characterMakers.push(() => makeCharacter(
  23803. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23804. {
  23805. front: {
  23806. height: math.unit(5 + 1 / 12, "feet"),
  23807. weight: math.unit(110, "lb"),
  23808. name: "Front",
  23809. image: {
  23810. source: "./media/characters/rupert/front.svg",
  23811. extra: 1549 / 1495,
  23812. bottom: 54.2 / 1604.4
  23813. }
  23814. },
  23815. },
  23816. [
  23817. {
  23818. name: "Normal",
  23819. height: math.unit(5 + 1 / 12, "feet"),
  23820. default: true
  23821. },
  23822. ]
  23823. ))
  23824. characterMakers.push(() => makeCharacter(
  23825. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23826. {
  23827. front: {
  23828. height: math.unit(8 + 4 / 12, "feet"),
  23829. weight: math.unit(350, "lb"),
  23830. name: "Front",
  23831. image: {
  23832. source: "./media/characters/sheera-castellar/front.svg",
  23833. extra: 1957 / 1894,
  23834. bottom: 26.97 / 1975.017
  23835. }
  23836. },
  23837. side: {
  23838. height: math.unit(8 + 4 / 12, "feet"),
  23839. weight: math.unit(350, "lb"),
  23840. name: "Side",
  23841. image: {
  23842. source: "./media/characters/sheera-castellar/side.svg",
  23843. extra: 1957 / 1894
  23844. }
  23845. },
  23846. back: {
  23847. height: math.unit(8 + 4 / 12, "feet"),
  23848. weight: math.unit(350, "lb"),
  23849. name: "Back",
  23850. image: {
  23851. source: "./media/characters/sheera-castellar/back.svg",
  23852. extra: 1957 / 1894
  23853. }
  23854. },
  23855. angled: {
  23856. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23857. weight: math.unit(350, "lb"),
  23858. name: "Angled",
  23859. image: {
  23860. source: "./media/characters/sheera-castellar/angled.svg",
  23861. extra: 1807 / 1707,
  23862. bottom: 68 / 1875
  23863. }
  23864. },
  23865. genitals: {
  23866. height: math.unit(2.2, "feet"),
  23867. name: "Genitals",
  23868. image: {
  23869. source: "./media/characters/sheera-castellar/genitals.svg"
  23870. }
  23871. },
  23872. taur: {
  23873. height: math.unit(10 + 6/12, "feet"),
  23874. name: "Taur",
  23875. image: {
  23876. source: "./media/characters/sheera-castellar/taur.svg",
  23877. extra: 2017/1909,
  23878. bottom: 185/2202
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "Normal",
  23885. height: math.unit(8 + 4 / 12, "feet")
  23886. },
  23887. {
  23888. name: "Macro",
  23889. height: math.unit(150, "feet"),
  23890. default: true
  23891. },
  23892. {
  23893. name: "Macro+",
  23894. height: math.unit(800, "feet")
  23895. },
  23896. ]
  23897. ))
  23898. characterMakers.push(() => makeCharacter(
  23899. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23900. {
  23901. front: {
  23902. height: math.unit(6, "feet"),
  23903. weight: math.unit(150, "lb"),
  23904. name: "Front",
  23905. image: {
  23906. source: "./media/characters/jaipur/front.svg",
  23907. extra: 3860 / 3731,
  23908. bottom: 287 / 4140
  23909. }
  23910. },
  23911. back: {
  23912. height: math.unit(6, "feet"),
  23913. weight: math.unit(150, "lb"),
  23914. name: "Back",
  23915. image: {
  23916. source: "./media/characters/jaipur/back.svg",
  23917. extra: 4060 / 3930,
  23918. bottom: 151 / 4200
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Normal",
  23925. height: math.unit(1.85, "meters"),
  23926. default: true
  23927. },
  23928. {
  23929. name: "Macro",
  23930. height: math.unit(150, "meters")
  23931. },
  23932. {
  23933. name: "Macro+",
  23934. height: math.unit(0.5, "miles")
  23935. },
  23936. {
  23937. name: "Macro++",
  23938. height: math.unit(2.5, "miles")
  23939. },
  23940. {
  23941. name: "Macro+++",
  23942. height: math.unit(12, "miles")
  23943. },
  23944. {
  23945. name: "Macro++++",
  23946. height: math.unit(120, "miles")
  23947. },
  23948. {
  23949. name: "Macro+++++",
  23950. height: math.unit(1200, "miles")
  23951. },
  23952. ]
  23953. ))
  23954. characterMakers.push(() => makeCharacter(
  23955. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23956. {
  23957. front: {
  23958. height: math.unit(6, "feet"),
  23959. weight: math.unit(150, "lb"),
  23960. name: "Front",
  23961. image: {
  23962. source: "./media/characters/sheila-wolf/front.svg",
  23963. extra: 1931 / 1808,
  23964. bottom: 29.5 / 1960
  23965. }
  23966. },
  23967. dick: {
  23968. height: math.unit(1.464, "feet"),
  23969. name: "Dick",
  23970. image: {
  23971. source: "./media/characters/sheila-wolf/dick.svg"
  23972. }
  23973. },
  23974. muzzle: {
  23975. height: math.unit(0.513, "feet"),
  23976. name: "Muzzle",
  23977. image: {
  23978. source: "./media/characters/sheila-wolf/muzzle.svg"
  23979. }
  23980. },
  23981. },
  23982. [
  23983. {
  23984. name: "Macro",
  23985. height: math.unit(70, "feet"),
  23986. default: true
  23987. },
  23988. ]
  23989. ))
  23990. characterMakers.push(() => makeCharacter(
  23991. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23992. {
  23993. front: {
  23994. height: math.unit(32, "meters"),
  23995. weight: math.unit(300000, "kg"),
  23996. name: "Front",
  23997. image: {
  23998. source: "./media/characters/almor/front.svg",
  23999. extra: 1408 / 1322,
  24000. bottom: 94.6 / 1506.5
  24001. }
  24002. },
  24003. },
  24004. [
  24005. {
  24006. name: "Macro",
  24007. height: math.unit(32, "meters"),
  24008. default: true
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24014. {
  24015. front: {
  24016. height: math.unit(7, "feet"),
  24017. weight: math.unit(200, "lb"),
  24018. name: "Front",
  24019. image: {
  24020. source: "./media/characters/silver/front.svg",
  24021. extra: 472.1 / 450.5,
  24022. bottom: 26.5 / 499.424
  24023. }
  24024. },
  24025. },
  24026. [
  24027. {
  24028. name: "Normal",
  24029. height: math.unit(7, "feet"),
  24030. default: true
  24031. },
  24032. {
  24033. name: "Macro",
  24034. height: math.unit(800, "feet")
  24035. },
  24036. {
  24037. name: "Megamacro",
  24038. height: math.unit(250, "miles")
  24039. },
  24040. ]
  24041. ))
  24042. characterMakers.push(() => makeCharacter(
  24043. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24044. {
  24045. front: {
  24046. height: math.unit(6, "feet"),
  24047. weight: math.unit(150, "lb"),
  24048. name: "Front",
  24049. image: {
  24050. source: "./media/characters/pliskin/front.svg",
  24051. extra: 1469 / 1359,
  24052. bottom: 70 / 1540
  24053. }
  24054. },
  24055. },
  24056. [
  24057. {
  24058. name: "Micro",
  24059. height: math.unit(3, "inches")
  24060. },
  24061. {
  24062. name: "Normal",
  24063. height: math.unit(5 + 11 / 12, "feet"),
  24064. default: true
  24065. },
  24066. {
  24067. name: "Macro",
  24068. height: math.unit(120, "feet")
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24074. {
  24075. front: {
  24076. height: math.unit(6, "feet"),
  24077. weight: math.unit(150, "lb"),
  24078. name: "Front",
  24079. image: {
  24080. source: "./media/characters/sammy/front.svg",
  24081. extra: 1193 / 1089,
  24082. bottom: 30.5 / 1226
  24083. }
  24084. },
  24085. },
  24086. [
  24087. {
  24088. name: "Macro",
  24089. height: math.unit(1700, "feet"),
  24090. default: true
  24091. },
  24092. {
  24093. name: "Examacro",
  24094. height: math.unit(2.5e9, "lightyears")
  24095. },
  24096. ]
  24097. ))
  24098. characterMakers.push(() => makeCharacter(
  24099. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24100. {
  24101. front: {
  24102. height: math.unit(21, "meters"),
  24103. weight: math.unit(12, "tonnes"),
  24104. name: "Front",
  24105. image: {
  24106. source: "./media/characters/kuru/front.svg",
  24107. extra: 4301 / 3785,
  24108. bottom: 371.3 / 4691
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Macro",
  24115. height: math.unit(21, "meters"),
  24116. default: true
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24122. {
  24123. front: {
  24124. height: math.unit(23, "meters"),
  24125. weight: math.unit(12.2, "tonnes"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/rakka/front.svg",
  24129. extra: 4670 / 4169,
  24130. bottom: 301 / 4968.7
  24131. }
  24132. },
  24133. },
  24134. [
  24135. {
  24136. name: "Macro",
  24137. height: math.unit(23, "meters"),
  24138. default: true
  24139. },
  24140. ]
  24141. ))
  24142. characterMakers.push(() => makeCharacter(
  24143. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24144. {
  24145. front: {
  24146. height: math.unit(6, "feet"),
  24147. weight: math.unit(150, "lb"),
  24148. name: "Front",
  24149. image: {
  24150. source: "./media/characters/rhys-feline/front.svg",
  24151. extra: 2488 / 2308,
  24152. bottom: 35.67 / 2519.19
  24153. }
  24154. },
  24155. },
  24156. [
  24157. {
  24158. name: "Really Small",
  24159. height: math.unit(1, "nm")
  24160. },
  24161. {
  24162. name: "Micro",
  24163. height: math.unit(4, "inches")
  24164. },
  24165. {
  24166. name: "Normal",
  24167. height: math.unit(4 + 10 / 12, "feet"),
  24168. default: true
  24169. },
  24170. {
  24171. name: "Macro",
  24172. height: math.unit(100, "feet")
  24173. },
  24174. {
  24175. name: "Megamacto",
  24176. height: math.unit(50, "miles")
  24177. },
  24178. ]
  24179. ))
  24180. characterMakers.push(() => makeCharacter(
  24181. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24182. {
  24183. side: {
  24184. height: math.unit(30, "feet"),
  24185. weight: math.unit(35000, "kg"),
  24186. name: "Side",
  24187. image: {
  24188. source: "./media/characters/alydar/side.svg",
  24189. extra: 234 / 222,
  24190. bottom: 6.5 / 241
  24191. }
  24192. },
  24193. front: {
  24194. height: math.unit(30, "feet"),
  24195. weight: math.unit(35000, "kg"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/alydar/front.svg",
  24199. extra: 223.37 / 210.2,
  24200. bottom: 22.3 / 246.76
  24201. }
  24202. },
  24203. top: {
  24204. height: math.unit(64.54, "feet"),
  24205. weight: math.unit(35000, "kg"),
  24206. name: "Top",
  24207. image: {
  24208. source: "./media/characters/alydar/top.svg"
  24209. }
  24210. },
  24211. anthro: {
  24212. height: math.unit(30, "feet"),
  24213. weight: math.unit(9000, "kg"),
  24214. name: "Anthro",
  24215. image: {
  24216. source: "./media/characters/alydar/anthro.svg",
  24217. extra: 432 / 421,
  24218. bottom: 7.18 / 440
  24219. }
  24220. },
  24221. maw: {
  24222. height: math.unit(11.693, "feet"),
  24223. name: "Maw",
  24224. image: {
  24225. source: "./media/characters/alydar/maw.svg"
  24226. }
  24227. },
  24228. head: {
  24229. height: math.unit(11.693, "feet"),
  24230. name: "Head",
  24231. image: {
  24232. source: "./media/characters/alydar/head.svg"
  24233. }
  24234. },
  24235. headAlt: {
  24236. height: math.unit(12.861, "feet"),
  24237. name: "Head (Alt)",
  24238. image: {
  24239. source: "./media/characters/alydar/head-alt.svg"
  24240. }
  24241. },
  24242. wing: {
  24243. height: math.unit(20.712, "feet"),
  24244. name: "Wing",
  24245. image: {
  24246. source: "./media/characters/alydar/wing.svg"
  24247. }
  24248. },
  24249. wingFeather: {
  24250. height: math.unit(9.662, "feet"),
  24251. name: "Wing Feather",
  24252. image: {
  24253. source: "./media/characters/alydar/wing-feather.svg"
  24254. }
  24255. },
  24256. countourFeather: {
  24257. height: math.unit(4.154, "feet"),
  24258. name: "Contour Feather",
  24259. image: {
  24260. source: "./media/characters/alydar/contour-feather.svg"
  24261. }
  24262. },
  24263. },
  24264. [
  24265. {
  24266. name: "Diplomatic",
  24267. height: math.unit(13, "feet"),
  24268. default: true
  24269. },
  24270. {
  24271. name: "Small",
  24272. height: math.unit(30, "feet")
  24273. },
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(95, "feet"),
  24277. default: true
  24278. },
  24279. {
  24280. name: "Large",
  24281. height: math.unit(285, "feet")
  24282. },
  24283. {
  24284. name: "Incomprehensible",
  24285. height: math.unit(450, "megameters")
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24291. {
  24292. side: {
  24293. height: math.unit(11, "feet"),
  24294. weight: math.unit(1750, "kg"),
  24295. name: "Side",
  24296. image: {
  24297. source: "./media/characters/selicia/side.svg",
  24298. extra: 440 / 396,
  24299. bottom: 24.8 / 465.979
  24300. }
  24301. },
  24302. maw: {
  24303. height: math.unit(4.665, "feet"),
  24304. name: "Maw",
  24305. image: {
  24306. source: "./media/characters/selicia/maw.svg"
  24307. }
  24308. },
  24309. },
  24310. [
  24311. {
  24312. name: "Normal",
  24313. height: math.unit(11, "feet"),
  24314. default: true
  24315. },
  24316. ]
  24317. ))
  24318. characterMakers.push(() => makeCharacter(
  24319. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24320. {
  24321. side: {
  24322. height: math.unit(2 + 6 / 12, "feet"),
  24323. weight: math.unit(30, "lb"),
  24324. name: "Side",
  24325. image: {
  24326. source: "./media/characters/layla/side.svg",
  24327. extra: 244 / 188,
  24328. bottom: 18.2 / 262.1
  24329. }
  24330. },
  24331. back: {
  24332. height: math.unit(2 + 6 / 12, "feet"),
  24333. weight: math.unit(30, "lb"),
  24334. name: "Back",
  24335. image: {
  24336. source: "./media/characters/layla/back.svg",
  24337. extra: 308 / 241.5,
  24338. bottom: 8.9 / 316.8
  24339. }
  24340. },
  24341. cumming: {
  24342. height: math.unit(2 + 6 / 12, "feet"),
  24343. weight: math.unit(30, "lb"),
  24344. name: "Cumming",
  24345. image: {
  24346. source: "./media/characters/layla/cumming.svg",
  24347. extra: 342 / 279,
  24348. bottom: 595 / 938
  24349. }
  24350. },
  24351. dickFlaccid: {
  24352. height: math.unit(2.595, "feet"),
  24353. name: "Flaccid Genitals",
  24354. image: {
  24355. source: "./media/characters/layla/dick-flaccid.svg"
  24356. }
  24357. },
  24358. dickErect: {
  24359. height: math.unit(2.359, "feet"),
  24360. name: "Erect Genitals",
  24361. image: {
  24362. source: "./media/characters/layla/dick-erect.svg"
  24363. }
  24364. },
  24365. dragon: {
  24366. height: math.unit(40, "feet"),
  24367. name: "Dragon",
  24368. image: {
  24369. source: "./media/characters/layla/dragon.svg",
  24370. extra: 610/535,
  24371. bottom: 367/977
  24372. }
  24373. },
  24374. taur: {
  24375. height: math.unit(30, "feet"),
  24376. name: "Taur",
  24377. image: {
  24378. source: "./media/characters/layla/taur.svg",
  24379. extra: 1268/1199,
  24380. bottom: 112/1380
  24381. }
  24382. },
  24383. },
  24384. [
  24385. {
  24386. name: "Micro",
  24387. height: math.unit(1, "inch")
  24388. },
  24389. {
  24390. name: "Small",
  24391. height: math.unit(1, "foot")
  24392. },
  24393. {
  24394. name: "Normal",
  24395. height: math.unit(2 + 6 / 12, "feet"),
  24396. default: true
  24397. },
  24398. {
  24399. name: "Macro",
  24400. height: math.unit(200, "feet")
  24401. },
  24402. {
  24403. name: "Megamacro",
  24404. height: math.unit(1000, "miles")
  24405. },
  24406. {
  24407. name: "Planetary",
  24408. height: math.unit(8000, "miles")
  24409. },
  24410. {
  24411. name: "True Layla",
  24412. height: math.unit(200000 * 7, "multiverses")
  24413. },
  24414. ]
  24415. ))
  24416. characterMakers.push(() => makeCharacter(
  24417. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24418. {
  24419. back: {
  24420. height: math.unit(10.5, "feet"),
  24421. weight: math.unit(800, "lb"),
  24422. name: "Back",
  24423. image: {
  24424. source: "./media/characters/knox/back.svg",
  24425. extra: 1486 / 1089,
  24426. bottom: 107 / 1601.4
  24427. }
  24428. },
  24429. side: {
  24430. height: math.unit(10.5, "feet"),
  24431. weight: math.unit(800, "lb"),
  24432. name: "Side",
  24433. image: {
  24434. source: "./media/characters/knox/side.svg",
  24435. extra: 244 / 218,
  24436. bottom: 14 / 260
  24437. }
  24438. },
  24439. },
  24440. [
  24441. {
  24442. name: "Compact",
  24443. height: math.unit(10.5, "feet"),
  24444. default: true
  24445. },
  24446. {
  24447. name: "Dynamax",
  24448. height: math.unit(210, "feet")
  24449. },
  24450. {
  24451. name: "Full Macro",
  24452. height: math.unit(850, "feet")
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24458. {
  24459. front: {
  24460. height: math.unit(28, "feet"),
  24461. weight: math.unit(10500, "lb"),
  24462. name: "Front",
  24463. image: {
  24464. source: "./media/characters/kayda/front.svg",
  24465. extra: 1536 / 1428,
  24466. bottom: 68.7 / 1603
  24467. }
  24468. },
  24469. back: {
  24470. height: math.unit(28, "feet"),
  24471. weight: math.unit(10500, "lb"),
  24472. name: "Back",
  24473. image: {
  24474. source: "./media/characters/kayda/back.svg",
  24475. extra: 1557 / 1464,
  24476. bottom: 39.5 / 1597.49
  24477. }
  24478. },
  24479. dick: {
  24480. height: math.unit(3.858, "feet"),
  24481. name: "Dick",
  24482. image: {
  24483. source: "./media/characters/kayda/dick.svg"
  24484. }
  24485. },
  24486. },
  24487. [
  24488. {
  24489. name: "Macro",
  24490. height: math.unit(28, "feet"),
  24491. default: true
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24497. {
  24498. front: {
  24499. height: math.unit(10 + 11 / 12, "feet"),
  24500. weight: math.unit(1400, "lb"),
  24501. name: "Front",
  24502. image: {
  24503. source: "./media/characters/brian/front.svg",
  24504. extra: 737 / 692,
  24505. bottom: 55.4 / 785
  24506. }
  24507. },
  24508. },
  24509. [
  24510. {
  24511. name: "Normal",
  24512. height: math.unit(10 + 11 / 12, "feet"),
  24513. default: true
  24514. },
  24515. ]
  24516. ))
  24517. characterMakers.push(() => makeCharacter(
  24518. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24519. {
  24520. front: {
  24521. height: math.unit(5 + 8 / 12, "feet"),
  24522. weight: math.unit(140, "lb"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/khemri/front.svg",
  24526. extra: 4780 / 4059,
  24527. bottom: 80.1 / 4859.25
  24528. }
  24529. },
  24530. },
  24531. [
  24532. {
  24533. name: "Micro",
  24534. height: math.unit(6, "inches")
  24535. },
  24536. {
  24537. name: "Normal",
  24538. height: math.unit(5 + 8 / 12, "feet"),
  24539. default: true
  24540. },
  24541. ]
  24542. ))
  24543. characterMakers.push(() => makeCharacter(
  24544. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24545. {
  24546. front: {
  24547. height: math.unit(13, "feet"),
  24548. weight: math.unit(1700, "lb"),
  24549. name: "Front",
  24550. image: {
  24551. source: "./media/characters/felix-braveheart/front.svg",
  24552. extra: 1222 / 1157,
  24553. bottom: 53.2 / 1280
  24554. }
  24555. },
  24556. back: {
  24557. height: math.unit(13, "feet"),
  24558. weight: math.unit(1700, "lb"),
  24559. name: "Back",
  24560. image: {
  24561. source: "./media/characters/felix-braveheart/back.svg",
  24562. extra: 1277 / 1203,
  24563. bottom: 50.2 / 1327
  24564. }
  24565. },
  24566. feral: {
  24567. height: math.unit(6, "feet"),
  24568. weight: math.unit(400, "lb"),
  24569. name: "Feral",
  24570. image: {
  24571. source: "./media/characters/felix-braveheart/feral.svg",
  24572. extra: 682 / 625,
  24573. bottom: 6.9 / 688
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Normal",
  24580. height: math.unit(13, "feet"),
  24581. default: true
  24582. },
  24583. ]
  24584. ))
  24585. characterMakers.push(() => makeCharacter(
  24586. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24587. {
  24588. side: {
  24589. height: math.unit(5 + 11 / 12, "feet"),
  24590. weight: math.unit(1400, "lb"),
  24591. name: "Side",
  24592. image: {
  24593. source: "./media/characters/shadow-blade/side.svg",
  24594. extra: 1726 / 1267,
  24595. bottom: 58.4 / 1785
  24596. }
  24597. },
  24598. },
  24599. [
  24600. {
  24601. name: "Normal",
  24602. height: math.unit(5 + 11 / 12, "feet"),
  24603. default: true
  24604. },
  24605. ]
  24606. ))
  24607. characterMakers.push(() => makeCharacter(
  24608. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24609. {
  24610. front: {
  24611. height: math.unit(1 + 6 / 12, "feet"),
  24612. weight: math.unit(25, "lb"),
  24613. name: "Front",
  24614. image: {
  24615. source: "./media/characters/karla-halldor/front.svg",
  24616. extra: 1459 / 1383,
  24617. bottom: 12 / 1472
  24618. }
  24619. },
  24620. },
  24621. [
  24622. {
  24623. name: "Normal",
  24624. height: math.unit(1 + 6 / 12, "feet"),
  24625. default: true
  24626. },
  24627. ]
  24628. ))
  24629. characterMakers.push(() => makeCharacter(
  24630. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24631. {
  24632. front: {
  24633. height: math.unit(6 + 2 / 12, "feet"),
  24634. weight: math.unit(160, "lb"),
  24635. name: "Front",
  24636. image: {
  24637. source: "./media/characters/ariam/front.svg",
  24638. extra: 1073/976,
  24639. bottom: 52/1125
  24640. }
  24641. },
  24642. back: {
  24643. height: math.unit(6 + 2/12, "feet"),
  24644. weight: math.unit(160, "lb"),
  24645. name: "Back",
  24646. image: {
  24647. source: "./media/characters/ariam/back.svg",
  24648. extra: 1103/1023,
  24649. bottom: 9/1112
  24650. }
  24651. },
  24652. dressed: {
  24653. height: math.unit(6 + 2/12, "feet"),
  24654. weight: math.unit(160, "lb"),
  24655. name: "Dressed",
  24656. image: {
  24657. source: "./media/characters/ariam/dressed.svg",
  24658. extra: 1099/1009,
  24659. bottom: 25/1124
  24660. }
  24661. },
  24662. squatting: {
  24663. height: math.unit(4.1, "feet"),
  24664. weight: math.unit(160, "lb"),
  24665. name: "Squatting",
  24666. image: {
  24667. source: "./media/characters/ariam/squatting.svg",
  24668. extra: 2617 / 2112,
  24669. bottom: 61.2 / 2681,
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Normal",
  24676. height: math.unit(6 + 2 / 12, "feet"),
  24677. default: true
  24678. },
  24679. {
  24680. name: "Normal+",
  24681. height: math.unit(4, "meters")
  24682. },
  24683. {
  24684. name: "Macro",
  24685. height: math.unit(50, "meters")
  24686. },
  24687. {
  24688. name: "Macro+",
  24689. height: math.unit(100, "meters")
  24690. },
  24691. {
  24692. name: "Megamacro",
  24693. height: math.unit(20, "km")
  24694. },
  24695. {
  24696. name: "Caretaker",
  24697. height: math.unit(444, "megameters")
  24698. },
  24699. ]
  24700. ))
  24701. characterMakers.push(() => makeCharacter(
  24702. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24703. {
  24704. front: {
  24705. height: math.unit(1.67, "meters"),
  24706. weight: math.unit(140, "lb"),
  24707. name: "Front",
  24708. image: {
  24709. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24710. extra: 438 / 410,
  24711. bottom: 0.75 / 439
  24712. }
  24713. },
  24714. },
  24715. [
  24716. {
  24717. name: "Shrunken",
  24718. height: math.unit(7.6, "cm")
  24719. },
  24720. {
  24721. name: "Human Scale",
  24722. height: math.unit(1.67, "meters")
  24723. },
  24724. {
  24725. name: "Wolxi Scale",
  24726. height: math.unit(36.7, "meters"),
  24727. default: true
  24728. },
  24729. ]
  24730. ))
  24731. characterMakers.push(() => makeCharacter(
  24732. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24733. {
  24734. front: {
  24735. height: math.unit(1.73, "meters"),
  24736. weight: math.unit(240, "lb"),
  24737. name: "Front",
  24738. image: {
  24739. source: "./media/characters/izue-two-mothers/front.svg",
  24740. extra: 469 / 437,
  24741. bottom: 1.24 / 470.6
  24742. }
  24743. },
  24744. },
  24745. [
  24746. {
  24747. name: "Shrunken",
  24748. height: math.unit(7.86, "cm")
  24749. },
  24750. {
  24751. name: "Human Scale",
  24752. height: math.unit(1.73, "meters")
  24753. },
  24754. {
  24755. name: "Wolxi Scale",
  24756. height: math.unit(38, "meters"),
  24757. default: true
  24758. },
  24759. ]
  24760. ))
  24761. characterMakers.push(() => makeCharacter(
  24762. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24763. {
  24764. front: {
  24765. height: math.unit(1.55, "meters"),
  24766. weight: math.unit(120, "lb"),
  24767. name: "Front",
  24768. image: {
  24769. source: "./media/characters/teeku-love-shack/front.svg",
  24770. extra: 387 / 362,
  24771. bottom: 1.51 / 388
  24772. }
  24773. },
  24774. },
  24775. [
  24776. {
  24777. name: "Shrunken",
  24778. height: math.unit(7, "cm")
  24779. },
  24780. {
  24781. name: "Human Scale",
  24782. height: math.unit(1.55, "meters")
  24783. },
  24784. {
  24785. name: "Wolxi Scale",
  24786. height: math.unit(34.1, "meters"),
  24787. default: true
  24788. },
  24789. ]
  24790. ))
  24791. characterMakers.push(() => makeCharacter(
  24792. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24793. {
  24794. front: {
  24795. height: math.unit(1.83, "meters"),
  24796. weight: math.unit(135, "lb"),
  24797. name: "Front",
  24798. image: {
  24799. source: "./media/characters/dejma-the-red/front.svg",
  24800. extra: 480 / 458,
  24801. bottom: 1.8 / 482
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Shrunken",
  24808. height: math.unit(8.3, "cm")
  24809. },
  24810. {
  24811. name: "Human Scale",
  24812. height: math.unit(1.83, "meters")
  24813. },
  24814. {
  24815. name: "Wolxi Scale",
  24816. height: math.unit(40, "meters"),
  24817. default: true
  24818. },
  24819. ]
  24820. ))
  24821. characterMakers.push(() => makeCharacter(
  24822. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24823. {
  24824. front: {
  24825. height: math.unit(1.78, "meters"),
  24826. weight: math.unit(65, "kg"),
  24827. name: "Front",
  24828. image: {
  24829. source: "./media/characters/aki/front.svg",
  24830. extra: 452 / 415
  24831. }
  24832. },
  24833. frontNsfw: {
  24834. height: math.unit(1.78, "meters"),
  24835. weight: math.unit(65, "kg"),
  24836. name: "Front (NSFW)",
  24837. image: {
  24838. source: "./media/characters/aki/front-nsfw.svg",
  24839. extra: 452 / 415
  24840. }
  24841. },
  24842. back: {
  24843. height: math.unit(1.78, "meters"),
  24844. weight: math.unit(65, "kg"),
  24845. name: "Back",
  24846. image: {
  24847. source: "./media/characters/aki/back.svg",
  24848. extra: 452 / 415
  24849. }
  24850. },
  24851. rump: {
  24852. height: math.unit(2.05, "feet"),
  24853. name: "Rump",
  24854. image: {
  24855. source: "./media/characters/aki/rump.svg"
  24856. }
  24857. },
  24858. dick: {
  24859. height: math.unit(0.95, "feet"),
  24860. name: "Dick",
  24861. image: {
  24862. source: "./media/characters/aki/dick.svg"
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Micro",
  24869. height: math.unit(15, "cm")
  24870. },
  24871. {
  24872. name: "Normal",
  24873. height: math.unit(178, "cm"),
  24874. default: true
  24875. },
  24876. {
  24877. name: "Macro",
  24878. height: math.unit(214, "m")
  24879. },
  24880. {
  24881. name: "Macro+",
  24882. height: math.unit(534, "m")
  24883. },
  24884. ]
  24885. ))
  24886. characterMakers.push(() => makeCharacter(
  24887. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24888. {
  24889. front: {
  24890. height: math.unit(5 + 5 / 12, "feet"),
  24891. weight: math.unit(120, "lb"),
  24892. name: "Front",
  24893. image: {
  24894. source: "./media/characters/ari/front.svg",
  24895. extra: 714.5 / 682,
  24896. bottom: 8 / 722.5
  24897. }
  24898. },
  24899. },
  24900. [
  24901. {
  24902. name: "Normal",
  24903. height: math.unit(5 + 5 / 12, "feet")
  24904. },
  24905. {
  24906. name: "Macro",
  24907. height: math.unit(100, "feet"),
  24908. default: true
  24909. },
  24910. {
  24911. name: "Megamacro",
  24912. height: math.unit(100, "miles")
  24913. },
  24914. {
  24915. name: "Gigamacro",
  24916. height: math.unit(80000, "miles")
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24922. {
  24923. side: {
  24924. height: math.unit(9, "feet"),
  24925. weight: math.unit(400, "kg"),
  24926. name: "Side",
  24927. image: {
  24928. source: "./media/characters/bolt/side.svg",
  24929. extra: 1126 / 896,
  24930. bottom: 60 / 1187.3,
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Micro",
  24937. height: math.unit(5, "inches")
  24938. },
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(9, "feet"),
  24942. default: true
  24943. },
  24944. {
  24945. name: "Macro",
  24946. height: math.unit(700, "feet")
  24947. },
  24948. {
  24949. name: "Max Size",
  24950. height: math.unit(1.52e22, "yottameters")
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(4.3, "meters"),
  24959. weight: math.unit(3, "tons"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/draekon-sylviar/front.svg",
  24963. extra: 2072/1512,
  24964. bottom: 74/2146
  24965. }
  24966. },
  24967. back: {
  24968. height: math.unit(4.3, "meters"),
  24969. weight: math.unit(3, "tons"),
  24970. name: "Back",
  24971. image: {
  24972. source: "./media/characters/draekon-sylviar/back.svg",
  24973. extra: 1639/1483,
  24974. bottom: 41/1680
  24975. }
  24976. },
  24977. feral: {
  24978. height: math.unit(1.15, "meters"),
  24979. weight: math.unit(3, "tons"),
  24980. name: "Feral",
  24981. image: {
  24982. source: "./media/characters/draekon-sylviar/feral.svg",
  24983. extra: 1033/395,
  24984. bottom: 130/1163
  24985. }
  24986. },
  24987. maw: {
  24988. height: math.unit(1.3, "meters"),
  24989. name: "Maw",
  24990. image: {
  24991. source: "./media/characters/draekon-sylviar/maw.svg"
  24992. }
  24993. },
  24994. mawSeparated: {
  24995. height: math.unit(1.53, "meters"),
  24996. name: "Separated Maw",
  24997. image: {
  24998. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  24999. }
  25000. },
  25001. tail: {
  25002. height: math.unit(1.15, "meters"),
  25003. name: "Tail",
  25004. image: {
  25005. source: "./media/characters/draekon-sylviar/tail.svg"
  25006. }
  25007. },
  25008. tailDick: {
  25009. height: math.unit(1.15, "meters"),
  25010. name: "Tail (Dick)",
  25011. image: {
  25012. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25013. }
  25014. },
  25015. tailDickSeparated: {
  25016. height: math.unit(1.19, "meters"),
  25017. name: "Tail (Separated Dick)",
  25018. image: {
  25019. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25020. }
  25021. },
  25022. slit: {
  25023. height: math.unit(1, "meters"),
  25024. name: "Slit",
  25025. image: {
  25026. source: "./media/characters/draekon-sylviar/slit.svg"
  25027. }
  25028. },
  25029. dick: {
  25030. height: math.unit(1.15, "meters"),
  25031. name: "Dick",
  25032. image: {
  25033. source: "./media/characters/draekon-sylviar/dick.svg"
  25034. }
  25035. },
  25036. dickSeparated: {
  25037. height: math.unit(1.1, "meters"),
  25038. name: "Separated Dick",
  25039. image: {
  25040. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25041. }
  25042. },
  25043. sheath: {
  25044. height: math.unit(1.15, "meters"),
  25045. name: "Sheath",
  25046. image: {
  25047. source: "./media/characters/draekon-sylviar/sheath.svg"
  25048. }
  25049. },
  25050. },
  25051. [
  25052. {
  25053. name: "Small",
  25054. height: math.unit(4.53 / 2, "meters"),
  25055. default: true
  25056. },
  25057. {
  25058. name: "Normal",
  25059. height: math.unit(4.53, "meters"),
  25060. default: true
  25061. },
  25062. {
  25063. name: "Large",
  25064. height: math.unit(4.53 * 2, "meters"),
  25065. },
  25066. ]
  25067. ))
  25068. characterMakers.push(() => makeCharacter(
  25069. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25070. {
  25071. front: {
  25072. height: math.unit(6 + 2 / 12, "feet"),
  25073. weight: math.unit(180, "lb"),
  25074. name: "Front",
  25075. image: {
  25076. source: "./media/characters/brawler/front.svg",
  25077. extra: 3301 / 3027,
  25078. bottom: 138 / 3439
  25079. }
  25080. },
  25081. },
  25082. [
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(6 + 2 / 12, "feet"),
  25086. default: true
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25092. {
  25093. front: {
  25094. height: math.unit(11, "feet"),
  25095. weight: math.unit(1000, "lb"),
  25096. name: "Front",
  25097. image: {
  25098. source: "./media/characters/alex/front.svg",
  25099. bottom: 44.5 / 620
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Micro",
  25106. height: math.unit(5, "inches")
  25107. },
  25108. {
  25109. name: "Normal",
  25110. height: math.unit(11, "feet"),
  25111. default: true
  25112. },
  25113. {
  25114. name: "Macro",
  25115. height: math.unit(9.5e9, "feet")
  25116. },
  25117. {
  25118. name: "Max Size",
  25119. height: math.unit(1.4e283, "yottameters")
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25125. {
  25126. female: {
  25127. height: math.unit(29.9, "m"),
  25128. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25129. name: "Female",
  25130. image: {
  25131. source: "./media/characters/zenari/female.svg",
  25132. extra: 3281.6 / 3217,
  25133. bottom: 72.2 / 3353
  25134. }
  25135. },
  25136. male: {
  25137. height: math.unit(27.7, "m"),
  25138. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25139. name: "Male",
  25140. image: {
  25141. source: "./media/characters/zenari/male.svg",
  25142. extra: 3008 / 2991,
  25143. bottom: 54.6 / 3069
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Macro",
  25150. height: math.unit(29.7, "meters"),
  25151. default: true
  25152. },
  25153. ]
  25154. ))
  25155. characterMakers.push(() => makeCharacter(
  25156. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25157. {
  25158. female: {
  25159. height: math.unit(23.8, "m"),
  25160. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25161. name: "Female",
  25162. image: {
  25163. source: "./media/characters/mactarian/female.svg",
  25164. extra: 2662 / 2569,
  25165. bottom: 73 / 2736
  25166. }
  25167. },
  25168. male: {
  25169. height: math.unit(23.8, "m"),
  25170. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25171. name: "Male",
  25172. image: {
  25173. source: "./media/characters/mactarian/male.svg",
  25174. extra: 2673 / 2600,
  25175. bottom: 76 / 2750
  25176. }
  25177. },
  25178. },
  25179. [
  25180. {
  25181. name: "Macro",
  25182. height: math.unit(23.8, "meters"),
  25183. default: true
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25189. {
  25190. female: {
  25191. height: math.unit(19.3, "m"),
  25192. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25193. name: "Female",
  25194. image: {
  25195. source: "./media/characters/umok/female.svg",
  25196. extra: 2186 / 2078,
  25197. bottom: 87 / 2277
  25198. }
  25199. },
  25200. male: {
  25201. height: math.unit(19.5, "m"),
  25202. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25203. name: "Male",
  25204. image: {
  25205. source: "./media/characters/umok/male.svg",
  25206. extra: 2233 / 2140,
  25207. bottom: 24.4 / 2258
  25208. }
  25209. },
  25210. },
  25211. [
  25212. {
  25213. name: "Macro",
  25214. height: math.unit(19.3, "meters"),
  25215. default: true
  25216. },
  25217. ]
  25218. ))
  25219. characterMakers.push(() => makeCharacter(
  25220. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25221. {
  25222. female: {
  25223. height: math.unit(26.15, "m"),
  25224. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25225. name: "Female",
  25226. image: {
  25227. source: "./media/characters/joraxian/female.svg",
  25228. extra: 2912 / 2824,
  25229. bottom: 36 / 2956
  25230. }
  25231. },
  25232. male: {
  25233. height: math.unit(25.4, "m"),
  25234. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25235. name: "Male",
  25236. image: {
  25237. source: "./media/characters/joraxian/male.svg",
  25238. extra: 2877 / 2721,
  25239. bottom: 82 / 2967
  25240. }
  25241. },
  25242. },
  25243. [
  25244. {
  25245. name: "Macro",
  25246. height: math.unit(26.15, "meters"),
  25247. default: true
  25248. },
  25249. ]
  25250. ))
  25251. characterMakers.push(() => makeCharacter(
  25252. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25253. {
  25254. female: {
  25255. height: math.unit(21.6, "m"),
  25256. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25257. name: "Female",
  25258. image: {
  25259. source: "./media/characters/sthara/female.svg",
  25260. extra: 2516 / 2347,
  25261. bottom: 21.5 / 2537
  25262. }
  25263. },
  25264. male: {
  25265. height: math.unit(24, "m"),
  25266. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25267. name: "Male",
  25268. image: {
  25269. source: "./media/characters/sthara/male.svg",
  25270. extra: 2732 / 2607,
  25271. bottom: 23 / 2732
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Macro",
  25278. height: math.unit(21.6, "meters"),
  25279. default: true
  25280. },
  25281. ]
  25282. ))
  25283. characterMakers.push(() => makeCharacter(
  25284. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25285. {
  25286. front: {
  25287. height: math.unit(6 + 4 / 12, "feet"),
  25288. weight: math.unit(175, "lb"),
  25289. name: "Front",
  25290. image: {
  25291. source: "./media/characters/luka-bryzant/front.svg",
  25292. extra: 311 / 289,
  25293. bottom: 4 / 315
  25294. }
  25295. },
  25296. back: {
  25297. height: math.unit(6 + 4 / 12, "feet"),
  25298. weight: math.unit(175, "lb"),
  25299. name: "Back",
  25300. image: {
  25301. source: "./media/characters/luka-bryzant/back.svg",
  25302. extra: 311 / 289,
  25303. bottom: 3.8 / 313.7
  25304. }
  25305. },
  25306. },
  25307. [
  25308. {
  25309. name: "Micro",
  25310. height: math.unit(10, "inches")
  25311. },
  25312. {
  25313. name: "Normal",
  25314. height: math.unit(6 + 4 / 12, "feet"),
  25315. default: true
  25316. },
  25317. {
  25318. name: "Large",
  25319. height: math.unit(12, "feet")
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25325. {
  25326. front: {
  25327. height: math.unit(5 + 7 / 12, "feet"),
  25328. weight: math.unit(185, "lb"),
  25329. name: "Front",
  25330. image: {
  25331. source: "./media/characters/aman-aquila/front.svg",
  25332. extra: 1013 / 976,
  25333. bottom: 45.6 / 1057
  25334. }
  25335. },
  25336. side: {
  25337. height: math.unit(5 + 7 / 12, "feet"),
  25338. weight: math.unit(185, "lb"),
  25339. name: "Side",
  25340. image: {
  25341. source: "./media/characters/aman-aquila/side.svg",
  25342. extra: 1054 / 1011,
  25343. bottom: 15 / 1070
  25344. }
  25345. },
  25346. back: {
  25347. height: math.unit(5 + 7 / 12, "feet"),
  25348. weight: math.unit(185, "lb"),
  25349. name: "Back",
  25350. image: {
  25351. source: "./media/characters/aman-aquila/back.svg",
  25352. extra: 1026 / 970,
  25353. bottom: 12 / 1039
  25354. }
  25355. },
  25356. head: {
  25357. height: math.unit(1.211, "feet"),
  25358. name: "Head",
  25359. image: {
  25360. source: "./media/characters/aman-aquila/head.svg",
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Minimicro",
  25367. height: math.unit(0.057, "inches")
  25368. },
  25369. {
  25370. name: "Micro",
  25371. height: math.unit(7, "inches")
  25372. },
  25373. {
  25374. name: "Mini",
  25375. height: math.unit(3 + 7 / 12, "feet")
  25376. },
  25377. {
  25378. name: "Normal",
  25379. height: math.unit(5 + 7 / 12, "feet"),
  25380. default: true
  25381. },
  25382. {
  25383. name: "Macro",
  25384. height: math.unit(157 + 7 / 12, "feet")
  25385. },
  25386. {
  25387. name: "Megamacro",
  25388. height: math.unit(1557 + 7 / 12, "feet")
  25389. },
  25390. {
  25391. name: "Gigamacro",
  25392. height: math.unit(15557 + 7 / 12, "feet")
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25398. {
  25399. front: {
  25400. height: math.unit(3 + 2 / 12, "inches"),
  25401. weight: math.unit(0.3, "ounces"),
  25402. name: "Front",
  25403. image: {
  25404. source: "./media/characters/hiphae/front.svg",
  25405. extra: 1931 / 1683,
  25406. bottom: 24 / 1955
  25407. }
  25408. },
  25409. },
  25410. [
  25411. {
  25412. name: "Normal",
  25413. height: math.unit(3 + 1 / 2, "inches"),
  25414. default: true
  25415. },
  25416. ]
  25417. ))
  25418. characterMakers.push(() => makeCharacter(
  25419. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25420. {
  25421. front: {
  25422. height: math.unit(5 + 10 / 12, "feet"),
  25423. weight: math.unit(165, "lb"),
  25424. name: "Front",
  25425. image: {
  25426. source: "./media/characters/nicky/front.svg",
  25427. extra: 3144 / 2886,
  25428. bottom: 45.6 / 3192
  25429. }
  25430. },
  25431. back: {
  25432. height: math.unit(5 + 10 / 12, "feet"),
  25433. weight: math.unit(165, "lb"),
  25434. name: "Back",
  25435. image: {
  25436. source: "./media/characters/nicky/back.svg",
  25437. extra: 3055 / 2804,
  25438. bottom: 28.4 / 3087
  25439. }
  25440. },
  25441. frontclothed: {
  25442. height: math.unit(5 + 10 / 12, "feet"),
  25443. weight: math.unit(165, "lb"),
  25444. name: "Front-clothed",
  25445. image: {
  25446. source: "./media/characters/nicky/front-clothed.svg",
  25447. extra: 3184.9 / 2926.9,
  25448. bottom: 86.5 / 3239.9
  25449. }
  25450. },
  25451. foot: {
  25452. height: math.unit(1.16, "feet"),
  25453. name: "Foot",
  25454. image: {
  25455. source: "./media/characters/nicky/foot.svg"
  25456. }
  25457. },
  25458. feet: {
  25459. height: math.unit(1.34, "feet"),
  25460. name: "Feet",
  25461. image: {
  25462. source: "./media/characters/nicky/feet.svg"
  25463. }
  25464. },
  25465. maw: {
  25466. height: math.unit(0.9, "feet"),
  25467. name: "Maw",
  25468. image: {
  25469. source: "./media/characters/nicky/maw.svg"
  25470. }
  25471. },
  25472. },
  25473. [
  25474. {
  25475. name: "Normal",
  25476. height: math.unit(5 + 10 / 12, "feet"),
  25477. default: true
  25478. },
  25479. {
  25480. name: "Macro",
  25481. height: math.unit(60, "feet")
  25482. },
  25483. {
  25484. name: "Megamacro",
  25485. height: math.unit(1, "mile")
  25486. },
  25487. ]
  25488. ))
  25489. characterMakers.push(() => makeCharacter(
  25490. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25491. {
  25492. side: {
  25493. height: math.unit(10, "feet"),
  25494. weight: math.unit(600, "lb"),
  25495. name: "Side",
  25496. image: {
  25497. source: "./media/characters/blair/side.svg",
  25498. bottom: 16.6 / 475,
  25499. extra: 458 / 431
  25500. }
  25501. },
  25502. },
  25503. [
  25504. {
  25505. name: "Micro",
  25506. height: math.unit(8, "inches")
  25507. },
  25508. {
  25509. name: "Normal",
  25510. height: math.unit(10, "feet"),
  25511. default: true
  25512. },
  25513. {
  25514. name: "Macro",
  25515. height: math.unit(180, "feet")
  25516. },
  25517. ]
  25518. ))
  25519. characterMakers.push(() => makeCharacter(
  25520. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25521. {
  25522. front: {
  25523. height: math.unit(5 + 4 / 12, "feet"),
  25524. weight: math.unit(125, "lb"),
  25525. name: "Front",
  25526. image: {
  25527. source: "./media/characters/fisher/front.svg",
  25528. extra: 444 / 390,
  25529. bottom: 2 / 444.8
  25530. }
  25531. },
  25532. },
  25533. [
  25534. {
  25535. name: "Micro",
  25536. height: math.unit(4, "inches")
  25537. },
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(5 + 4 / 12, "feet"),
  25541. default: true
  25542. },
  25543. {
  25544. name: "Macro",
  25545. height: math.unit(100, "feet")
  25546. },
  25547. ]
  25548. ))
  25549. characterMakers.push(() => makeCharacter(
  25550. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25551. {
  25552. front: {
  25553. height: math.unit(6.71, "feet"),
  25554. weight: math.unit(200, "lb"),
  25555. capacity: math.unit(1000000, "people"),
  25556. name: "Front",
  25557. image: {
  25558. source: "./media/characters/gliss/front.svg",
  25559. extra: 2347 / 2231,
  25560. bottom: 113 / 2462
  25561. }
  25562. },
  25563. hammerspaceSize: {
  25564. height: math.unit(6.71 * 717, "feet"),
  25565. weight: math.unit(200, "lb"),
  25566. capacity: math.unit(1000000, "people"),
  25567. name: "Hammerspace Size",
  25568. image: {
  25569. source: "./media/characters/gliss/front.svg",
  25570. extra: 2347 / 2231,
  25571. bottom: 113 / 2462
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Normal",
  25578. height: math.unit(6.71, "feet"),
  25579. default: true
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25585. {
  25586. side: {
  25587. height: math.unit(1.44, "m"),
  25588. weight: math.unit(80, "kg"),
  25589. name: "Side",
  25590. image: {
  25591. source: "./media/characters/dune-anderson/side.svg",
  25592. bottom: 49 / 1426
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Wolf-sized",
  25599. height: math.unit(1.44, "meters")
  25600. },
  25601. {
  25602. name: "Normal",
  25603. height: math.unit(5.05, "meters"),
  25604. default: true
  25605. },
  25606. {
  25607. name: "Big",
  25608. height: math.unit(14.4, "meters")
  25609. },
  25610. {
  25611. name: "Huge",
  25612. height: math.unit(144, "meters")
  25613. },
  25614. ]
  25615. ))
  25616. characterMakers.push(() => makeCharacter(
  25617. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25618. {
  25619. front: {
  25620. height: math.unit(7, "feet"),
  25621. weight: math.unit(425, "lb"),
  25622. name: "Front",
  25623. image: {
  25624. source: "./media/characters/hind/front.svg",
  25625. extra: 2091 / 1860,
  25626. bottom: 129 / 2220
  25627. }
  25628. },
  25629. back: {
  25630. height: math.unit(7, "feet"),
  25631. weight: math.unit(425, "lb"),
  25632. name: "Back",
  25633. image: {
  25634. source: "./media/characters/hind/back.svg",
  25635. extra: 2091 / 1860,
  25636. bottom: 24.6 / 2309
  25637. }
  25638. },
  25639. tail: {
  25640. height: math.unit(2.8, "feet"),
  25641. name: "Tail",
  25642. image: {
  25643. source: "./media/characters/hind/tail.svg"
  25644. }
  25645. },
  25646. head: {
  25647. height: math.unit(2.55, "feet"),
  25648. name: "Head",
  25649. image: {
  25650. source: "./media/characters/hind/head.svg"
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "XS",
  25657. height: math.unit(0.7, "feet")
  25658. },
  25659. {
  25660. name: "Normal",
  25661. height: math.unit(7, "feet"),
  25662. default: true
  25663. },
  25664. {
  25665. name: "XL",
  25666. height: math.unit(70, "feet")
  25667. },
  25668. ]
  25669. ))
  25670. characterMakers.push(() => makeCharacter(
  25671. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25672. {
  25673. front: {
  25674. height: math.unit(2.1, "meters"),
  25675. weight: math.unit(150, "lb"),
  25676. name: "Front",
  25677. image: {
  25678. source: "./media/characters/tharquench-sizestealer/front.svg",
  25679. extra: 1605/1470,
  25680. bottom: 36/1641
  25681. }
  25682. },
  25683. frontAlt: {
  25684. height: math.unit(2.1, "meters"),
  25685. weight: math.unit(150, "lb"),
  25686. name: "Front (Alt)",
  25687. image: {
  25688. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25689. extra: 2318 / 2063,
  25690. bottom: 93.4 / 2410
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Nano",
  25697. height: math.unit(1, "mm")
  25698. },
  25699. {
  25700. name: "Micro",
  25701. height: math.unit(1, "cm")
  25702. },
  25703. {
  25704. name: "Normal",
  25705. height: math.unit(2.1, "meters"),
  25706. default: true
  25707. },
  25708. ]
  25709. ))
  25710. characterMakers.push(() => makeCharacter(
  25711. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25712. {
  25713. front: {
  25714. height: math.unit(7 + 5 / 12, "feet"),
  25715. weight: math.unit(357, "lb"),
  25716. name: "Front",
  25717. image: {
  25718. source: "./media/characters/solex-draconov/front.svg",
  25719. extra: 1993 / 1865,
  25720. bottom: 117 / 2111
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Natural Height",
  25727. height: math.unit(7 + 5 / 12, "feet"),
  25728. default: true
  25729. },
  25730. {
  25731. name: "Macro",
  25732. height: math.unit(350, "feet")
  25733. },
  25734. {
  25735. name: "Macro+",
  25736. height: math.unit(1000, "feet")
  25737. },
  25738. {
  25739. name: "Megamacro",
  25740. height: math.unit(20, "km")
  25741. },
  25742. {
  25743. name: "Megamacro+",
  25744. height: math.unit(1000, "km")
  25745. },
  25746. {
  25747. name: "Gigamacro",
  25748. height: math.unit(2.5, "Gm")
  25749. },
  25750. {
  25751. name: "Teramacro",
  25752. height: math.unit(15, "Tm")
  25753. },
  25754. {
  25755. name: "Galactic",
  25756. height: math.unit(30, "Zm")
  25757. },
  25758. {
  25759. name: "Universal",
  25760. height: math.unit(21000, "Ym")
  25761. },
  25762. {
  25763. name: "Omniversal",
  25764. height: math.unit(9.861e50, "Ym")
  25765. },
  25766. {
  25767. name: "Existential",
  25768. height: math.unit(1e300, "meters")
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25774. {
  25775. side: {
  25776. height: math.unit(25, "feet"),
  25777. weight: math.unit(90000, "lb"),
  25778. name: "Side",
  25779. image: {
  25780. source: "./media/characters/mandarax/side.svg",
  25781. extra: 614 / 332,
  25782. bottom: 55 / 630
  25783. }
  25784. },
  25785. head: {
  25786. height: math.unit(11.4, "feet"),
  25787. name: "Head",
  25788. image: {
  25789. source: "./media/characters/mandarax/head.svg"
  25790. }
  25791. },
  25792. belly: {
  25793. height: math.unit(33, "feet"),
  25794. name: "Belly",
  25795. capacity: math.unit(500, "people"),
  25796. image: {
  25797. source: "./media/characters/mandarax/belly.svg"
  25798. }
  25799. },
  25800. dick: {
  25801. height: math.unit(8.46, "feet"),
  25802. name: "Dick",
  25803. image: {
  25804. source: "./media/characters/mandarax/dick.svg"
  25805. }
  25806. },
  25807. top: {
  25808. height: math.unit(28, "meters"),
  25809. name: "Top",
  25810. image: {
  25811. source: "./media/characters/mandarax/top.svg"
  25812. }
  25813. },
  25814. },
  25815. [
  25816. {
  25817. name: "Normal",
  25818. height: math.unit(25, "feet"),
  25819. default: true
  25820. },
  25821. ]
  25822. ))
  25823. characterMakers.push(() => makeCharacter(
  25824. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25825. {
  25826. front: {
  25827. height: math.unit(5, "feet"),
  25828. weight: math.unit(90, "lb"),
  25829. name: "Front",
  25830. image: {
  25831. source: "./media/characters/pixil/front.svg",
  25832. extra: 2000 / 1618,
  25833. bottom: 12.3 / 2011
  25834. }
  25835. },
  25836. },
  25837. [
  25838. {
  25839. name: "Normal",
  25840. height: math.unit(5, "feet"),
  25841. default: true
  25842. },
  25843. {
  25844. name: "Megamacro",
  25845. height: math.unit(10, "miles"),
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(7 + 2 / 12, "feet"),
  25854. weight: math.unit(200, "lb"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/angel/front.svg",
  25858. extra: 1830 / 1737,
  25859. bottom: 22.6 / 1854,
  25860. }
  25861. },
  25862. },
  25863. [
  25864. {
  25865. name: "Normal",
  25866. height: math.unit(7 + 2 / 12, "feet"),
  25867. default: true
  25868. },
  25869. {
  25870. name: "Macro",
  25871. height: math.unit(1000, "feet")
  25872. },
  25873. {
  25874. name: "Megamacro",
  25875. height: math.unit(2, "miles")
  25876. },
  25877. {
  25878. name: "Gigamacro",
  25879. height: math.unit(20, "earths")
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25885. {
  25886. front: {
  25887. height: math.unit(5, "feet"),
  25888. weight: math.unit(180, "lb"),
  25889. name: "Front",
  25890. image: {
  25891. source: "./media/characters/mekana/front.svg",
  25892. extra: 1671 / 1605,
  25893. bottom: 3.5 / 1691
  25894. }
  25895. },
  25896. side: {
  25897. height: math.unit(5, "feet"),
  25898. weight: math.unit(180, "lb"),
  25899. name: "Side",
  25900. image: {
  25901. source: "./media/characters/mekana/side.svg",
  25902. extra: 1671 / 1605,
  25903. bottom: 3.5 / 1691
  25904. }
  25905. },
  25906. back: {
  25907. height: math.unit(5, "feet"),
  25908. weight: math.unit(180, "lb"),
  25909. name: "Back",
  25910. image: {
  25911. source: "./media/characters/mekana/back.svg",
  25912. extra: 1671 / 1605,
  25913. bottom: 3.5 / 1691
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Normal",
  25920. height: math.unit(5, "feet"),
  25921. default: true
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25927. {
  25928. front: {
  25929. height: math.unit(4 + 6 / 12, "feet"),
  25930. weight: math.unit(80, "lb"),
  25931. name: "Front",
  25932. image: {
  25933. source: "./media/characters/pixie/front.svg",
  25934. extra: 1924 / 1825,
  25935. bottom: 22.4 / 1946
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Normal",
  25942. height: math.unit(4 + 6 / 12, "feet"),
  25943. default: true
  25944. },
  25945. {
  25946. name: "Macro",
  25947. height: math.unit(40, "feet")
  25948. },
  25949. ]
  25950. ))
  25951. characterMakers.push(() => makeCharacter(
  25952. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25953. {
  25954. front: {
  25955. height: math.unit(2.1, "meters"),
  25956. weight: math.unit(200, "lb"),
  25957. name: "Front",
  25958. image: {
  25959. source: "./media/characters/the-lascivious/front.svg",
  25960. extra: 1 / 0.893,
  25961. bottom: 3.5 / 573.7
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Human Scale",
  25968. height: math.unit(2.1, "meters")
  25969. },
  25970. {
  25971. name: "Wolxi Scale",
  25972. height: math.unit(46.2, "m"),
  25973. default: true
  25974. },
  25975. {
  25976. name: "Boinker of Buildings",
  25977. height: math.unit(10, "km")
  25978. },
  25979. {
  25980. name: "Shagger of Skyscrapers",
  25981. height: math.unit(40, "km")
  25982. },
  25983. {
  25984. name: "Banger of Boroughs",
  25985. height: math.unit(4000, "km")
  25986. },
  25987. {
  25988. name: "Screwer of States",
  25989. height: math.unit(100000, "km")
  25990. },
  25991. {
  25992. name: "Pounder of Planets",
  25993. height: math.unit(2000000, "km")
  25994. },
  25995. ]
  25996. ))
  25997. characterMakers.push(() => makeCharacter(
  25998. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25999. {
  26000. front: {
  26001. height: math.unit(6, "feet"),
  26002. weight: math.unit(150, "lb"),
  26003. name: "Front",
  26004. image: {
  26005. source: "./media/characters/aj/front.svg",
  26006. extra: 2039 / 1562,
  26007. bottom: 40 / 2079
  26008. }
  26009. },
  26010. },
  26011. [
  26012. {
  26013. name: "Normal",
  26014. height: math.unit(11 + 6 / 12, "feet"),
  26015. default: true
  26016. },
  26017. {
  26018. name: "Megamacro",
  26019. height: math.unit(60, "megameters")
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26025. {
  26026. side: {
  26027. height: math.unit(31 + 8 / 12, "feet"),
  26028. weight: math.unit(75000, "kg"),
  26029. name: "Side",
  26030. image: {
  26031. source: "./media/characters/koros/side.svg",
  26032. extra: 1442 / 1297,
  26033. bottom: 122.7 / 1562
  26034. }
  26035. },
  26036. dicksKingsCrown: {
  26037. height: math.unit(6, "feet"),
  26038. name: "Dicks (King's Crown)",
  26039. image: {
  26040. source: "./media/characters/koros/dicks-kings-crown.svg"
  26041. }
  26042. },
  26043. dicksTailSet: {
  26044. height: math.unit(3, "feet"),
  26045. name: "Dicks (Tail Set)",
  26046. image: {
  26047. source: "./media/characters/koros/dicks-tail-set.svg"
  26048. }
  26049. },
  26050. dickCumming: {
  26051. height: math.unit(7.98, "feet"),
  26052. name: "Dick (Cumming)",
  26053. image: {
  26054. source: "./media/characters/koros/dick-cumming.svg"
  26055. }
  26056. },
  26057. dicksBack: {
  26058. height: math.unit(5.9, "feet"),
  26059. name: "Dicks (Back)",
  26060. image: {
  26061. source: "./media/characters/koros/dicks-back.svg"
  26062. }
  26063. },
  26064. dicksFront: {
  26065. height: math.unit(3.72, "feet"),
  26066. name: "Dicks (Front)",
  26067. image: {
  26068. source: "./media/characters/koros/dicks-front.svg"
  26069. }
  26070. },
  26071. dicksPeeking: {
  26072. height: math.unit(3.0, "feet"),
  26073. name: "Dicks (Peeking)",
  26074. image: {
  26075. source: "./media/characters/koros/dicks-peeking.svg"
  26076. }
  26077. },
  26078. eye: {
  26079. height: math.unit(1.7, "feet"),
  26080. name: "Eye",
  26081. image: {
  26082. source: "./media/characters/koros/eye.svg"
  26083. }
  26084. },
  26085. headFront: {
  26086. height: math.unit(11.69, "feet"),
  26087. name: "Head (Front)",
  26088. image: {
  26089. source: "./media/characters/koros/head-front.svg"
  26090. }
  26091. },
  26092. headSide: {
  26093. height: math.unit(14, "feet"),
  26094. name: "Head (Side)",
  26095. image: {
  26096. source: "./media/characters/koros/head-side.svg"
  26097. }
  26098. },
  26099. leg: {
  26100. height: math.unit(17, "feet"),
  26101. name: "Leg",
  26102. image: {
  26103. source: "./media/characters/koros/leg.svg"
  26104. }
  26105. },
  26106. mawSide: {
  26107. height: math.unit(12.8, "feet"),
  26108. name: "Maw (Side)",
  26109. image: {
  26110. source: "./media/characters/koros/maw-side.svg"
  26111. }
  26112. },
  26113. mawSpitting: {
  26114. height: math.unit(17, "feet"),
  26115. name: "Maw (Spitting)",
  26116. image: {
  26117. source: "./media/characters/koros/maw-spitting.svg"
  26118. }
  26119. },
  26120. slit: {
  26121. height: math.unit(2.8, "feet"),
  26122. name: "Slit",
  26123. image: {
  26124. source: "./media/characters/koros/slit.svg"
  26125. }
  26126. },
  26127. stomach: {
  26128. height: math.unit(6.8, "feet"),
  26129. capacity: math.unit(20, "people"),
  26130. name: "Stomach",
  26131. image: {
  26132. source: "./media/characters/koros/stomach.svg"
  26133. }
  26134. },
  26135. wingspanBottom: {
  26136. height: math.unit(114, "feet"),
  26137. name: "Wingspan (Bottom)",
  26138. image: {
  26139. source: "./media/characters/koros/wingspan-bottom.svg"
  26140. }
  26141. },
  26142. wingspanTop: {
  26143. height: math.unit(104, "feet"),
  26144. name: "Wingspan (Top)",
  26145. image: {
  26146. source: "./media/characters/koros/wingspan-top.svg"
  26147. }
  26148. },
  26149. },
  26150. [
  26151. {
  26152. name: "Normal",
  26153. height: math.unit(31 + 8 / 12, "feet"),
  26154. default: true
  26155. },
  26156. ]
  26157. ))
  26158. characterMakers.push(() => makeCharacter(
  26159. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26160. {
  26161. front: {
  26162. height: math.unit(18 + 5 / 12, "feet"),
  26163. weight: math.unit(3750, "kg"),
  26164. name: "Front",
  26165. image: {
  26166. source: "./media/characters/vexx/front.svg",
  26167. extra: 426 / 396,
  26168. bottom: 31.5 / 458
  26169. }
  26170. },
  26171. maw: {
  26172. height: math.unit(6, "feet"),
  26173. name: "Maw",
  26174. image: {
  26175. source: "./media/characters/vexx/maw.svg"
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Normal",
  26182. height: math.unit(18 + 5 / 12, "feet"),
  26183. default: true
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26189. {
  26190. front: {
  26191. height: math.unit(17 + 6 / 12, "feet"),
  26192. weight: math.unit(150, "lb"),
  26193. name: "Front",
  26194. image: {
  26195. source: "./media/characters/baadra/front.svg",
  26196. extra: 1694/1553,
  26197. bottom: 179/1873
  26198. }
  26199. },
  26200. frontAlt: {
  26201. height: math.unit(17 + 6 / 12, "feet"),
  26202. weight: math.unit(150, "lb"),
  26203. name: "Front (Alt)",
  26204. image: {
  26205. source: "./media/characters/baadra/front-alt.svg",
  26206. extra: 3137 / 2890,
  26207. bottom: 168.4 / 3305
  26208. }
  26209. },
  26210. back: {
  26211. height: math.unit(17 + 6 / 12, "feet"),
  26212. weight: math.unit(150, "lb"),
  26213. name: "Back",
  26214. image: {
  26215. source: "./media/characters/baadra/back.svg",
  26216. extra: 3142 / 2890,
  26217. bottom: 220 / 3371
  26218. }
  26219. },
  26220. head: {
  26221. height: math.unit(5.45, "feet"),
  26222. name: "Head",
  26223. image: {
  26224. source: "./media/characters/baadra/head.svg"
  26225. }
  26226. },
  26227. headAngry: {
  26228. height: math.unit(4.95, "feet"),
  26229. name: "Head (Angry)",
  26230. image: {
  26231. source: "./media/characters/baadra/head-angry.svg"
  26232. }
  26233. },
  26234. headOpen: {
  26235. height: math.unit(6, "feet"),
  26236. name: "Head (Open)",
  26237. image: {
  26238. source: "./media/characters/baadra/head-open.svg"
  26239. }
  26240. },
  26241. },
  26242. [
  26243. {
  26244. name: "Normal",
  26245. height: math.unit(17 + 6 / 12, "feet"),
  26246. default: true
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26252. {
  26253. front: {
  26254. height: math.unit(7 + 3 / 12, "feet"),
  26255. weight: math.unit(180, "lb"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/juri/front.svg",
  26259. extra: 1401 / 1237,
  26260. bottom: 18.5 / 1418
  26261. }
  26262. },
  26263. side: {
  26264. height: math.unit(7 + 3 / 12, "feet"),
  26265. weight: math.unit(180, "lb"),
  26266. name: "Side",
  26267. image: {
  26268. source: "./media/characters/juri/side.svg",
  26269. extra: 1424 / 1242,
  26270. bottom: 18.5 / 1447
  26271. }
  26272. },
  26273. sitting: {
  26274. height: math.unit(6, "feet"),
  26275. weight: math.unit(180, "lb"),
  26276. name: "Sitting",
  26277. image: {
  26278. source: "./media/characters/juri/sitting.svg",
  26279. extra: 1270 / 1143,
  26280. bottom: 100 / 1343
  26281. }
  26282. },
  26283. back: {
  26284. height: math.unit(7 + 3 / 12, "feet"),
  26285. weight: math.unit(180, "lb"),
  26286. name: "Back",
  26287. image: {
  26288. source: "./media/characters/juri/back.svg",
  26289. extra: 1377 / 1240,
  26290. bottom: 23.7 / 1405
  26291. }
  26292. },
  26293. maw: {
  26294. height: math.unit(2.8, "feet"),
  26295. name: "Maw",
  26296. image: {
  26297. source: "./media/characters/juri/maw.svg"
  26298. }
  26299. },
  26300. stomach: {
  26301. height: math.unit(0.89, "feet"),
  26302. capacity: math.unit(4, "liters"),
  26303. name: "Stomach",
  26304. image: {
  26305. source: "./media/characters/juri/stomach.svg"
  26306. }
  26307. },
  26308. },
  26309. [
  26310. {
  26311. name: "Normal",
  26312. height: math.unit(7 + 3 / 12, "feet"),
  26313. default: true
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26319. {
  26320. fox: {
  26321. height: math.unit(5 + 6 / 12, "feet"),
  26322. weight: math.unit(140, "lb"),
  26323. name: "Fox",
  26324. image: {
  26325. source: "./media/characters/maxene-sita/fox.svg",
  26326. extra: 146 / 138,
  26327. bottom: 2.1 / 148.19
  26328. }
  26329. },
  26330. foxLaying: {
  26331. height: math.unit(1.70, "feet"),
  26332. weight: math.unit(140, "lb"),
  26333. name: "Fox (Laying)",
  26334. image: {
  26335. source: "./media/characters/maxene-sita/fox-laying.svg",
  26336. extra: 910 / 572,
  26337. bottom: 71 / 981
  26338. }
  26339. },
  26340. kitsune: {
  26341. height: math.unit(10, "feet"),
  26342. weight: math.unit(800, "lb"),
  26343. name: "Kitsune",
  26344. image: {
  26345. source: "./media/characters/maxene-sita/kitsune.svg",
  26346. extra: 185 / 176,
  26347. bottom: 4.7 / 189.9
  26348. }
  26349. },
  26350. hellhound: {
  26351. height: math.unit(10, "feet"),
  26352. weight: math.unit(700, "lb"),
  26353. name: "Hellhound",
  26354. image: {
  26355. source: "./media/characters/maxene-sita/hellhound.svg",
  26356. extra: 1600 / 1545,
  26357. bottom: 81 / 1681
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Normal",
  26364. height: math.unit(5 + 6 / 12, "feet"),
  26365. default: true
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26371. {
  26372. front: {
  26373. height: math.unit(3 + 4 / 12, "feet"),
  26374. weight: math.unit(70, "lb"),
  26375. name: "Front",
  26376. image: {
  26377. source: "./media/characters/maia/front.svg",
  26378. extra: 227 / 219.5,
  26379. bottom: 40 / 267
  26380. }
  26381. },
  26382. back: {
  26383. height: math.unit(3 + 4 / 12, "feet"),
  26384. weight: math.unit(70, "lb"),
  26385. name: "Back",
  26386. image: {
  26387. source: "./media/characters/maia/back.svg",
  26388. extra: 237 / 225
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(3 + 4 / 12, "feet"),
  26396. default: true
  26397. },
  26398. ]
  26399. ))
  26400. characterMakers.push(() => makeCharacter(
  26401. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26402. {
  26403. front: {
  26404. height: math.unit(5 + 10 / 12, "feet"),
  26405. weight: math.unit(197, "lb"),
  26406. name: "Front",
  26407. image: {
  26408. source: "./media/characters/jabaro/front.svg",
  26409. extra: 225 / 216,
  26410. bottom: 5.06 / 230
  26411. }
  26412. },
  26413. back: {
  26414. height: math.unit(5 + 10 / 12, "feet"),
  26415. weight: math.unit(197, "lb"),
  26416. name: "Back",
  26417. image: {
  26418. source: "./media/characters/jabaro/back.svg",
  26419. extra: 225 / 219,
  26420. bottom: 1.9 / 227
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Normal",
  26427. height: math.unit(5 + 10 / 12, "feet"),
  26428. default: true
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(5 + 8 / 12, "feet"),
  26437. weight: math.unit(139, "lb"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/risa/front.svg",
  26441. extra: 270 / 260,
  26442. bottom: 11.2 / 282
  26443. }
  26444. },
  26445. back: {
  26446. height: math.unit(5 + 8 / 12, "feet"),
  26447. weight: math.unit(139, "lb"),
  26448. name: "Back",
  26449. image: {
  26450. source: "./media/characters/risa/back.svg",
  26451. extra: 264 / 255,
  26452. bottom: 4 / 268
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Normal",
  26459. height: math.unit(5 + 8 / 12, "feet"),
  26460. default: true
  26461. },
  26462. ]
  26463. ))
  26464. characterMakers.push(() => makeCharacter(
  26465. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26466. {
  26467. front: {
  26468. height: math.unit(2 + 11 / 12, "feet"),
  26469. weight: math.unit(30, "lb"),
  26470. name: "Front",
  26471. image: {
  26472. source: "./media/characters/weatley/front.svg",
  26473. bottom: 10.7 / 414,
  26474. extra: 403.5 / 362
  26475. }
  26476. },
  26477. back: {
  26478. height: math.unit(2 + 11 / 12, "feet"),
  26479. weight: math.unit(30, "lb"),
  26480. name: "Back",
  26481. image: {
  26482. source: "./media/characters/weatley/back.svg",
  26483. bottom: 10.7 / 414,
  26484. extra: 403.5 / 362
  26485. }
  26486. },
  26487. },
  26488. [
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(2 + 11 / 12, "feet"),
  26492. default: true
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26498. {
  26499. front: {
  26500. height: math.unit(5 + 2 / 12, "feet"),
  26501. weight: math.unit(50, "kg"),
  26502. name: "Front",
  26503. image: {
  26504. source: "./media/characters/mercury-crescent/front.svg",
  26505. extra: 1088 / 1033,
  26506. bottom: 18.9 / 1109
  26507. }
  26508. },
  26509. },
  26510. [
  26511. {
  26512. name: "Normal",
  26513. height: math.unit(5 + 2 / 12, "feet"),
  26514. default: true
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(2, "feet"),
  26523. weight: math.unit(15, "kg"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/diamond-jones/front.svg",
  26527. extra: 727/723,
  26528. bottom: 46/773
  26529. }
  26530. },
  26531. },
  26532. [
  26533. {
  26534. name: "Normal",
  26535. height: math.unit(2, "feet"),
  26536. default: true
  26537. },
  26538. ]
  26539. ))
  26540. characterMakers.push(() => makeCharacter(
  26541. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26542. {
  26543. front: {
  26544. height: math.unit(3, "feet"),
  26545. weight: math.unit(30, "kg"),
  26546. name: "Front",
  26547. image: {
  26548. source: "./media/characters/sweet-bit/front.svg",
  26549. extra: 675 / 567,
  26550. bottom: 27.7 / 703
  26551. }
  26552. },
  26553. },
  26554. [
  26555. {
  26556. name: "Normal",
  26557. height: math.unit(3, "feet"),
  26558. default: true
  26559. },
  26560. ]
  26561. ))
  26562. characterMakers.push(() => makeCharacter(
  26563. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26564. {
  26565. side: {
  26566. height: math.unit(9.178, "feet"),
  26567. weight: math.unit(500, "lb"),
  26568. name: "Side",
  26569. image: {
  26570. source: "./media/characters/umbrazen/side.svg",
  26571. extra: 1730 / 1473,
  26572. bottom: 34.6 / 1765
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Normal",
  26579. height: math.unit(9.178, "feet"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26586. {
  26587. front: {
  26588. height: math.unit(10, "feet"),
  26589. weight: math.unit(750, "lb"),
  26590. name: "Front",
  26591. image: {
  26592. source: "./media/characters/arlist/front.svg",
  26593. extra: 961 / 778,
  26594. bottom: 6.2 / 986
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(10, "feet"),
  26602. default: true
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26608. {
  26609. front: {
  26610. height: math.unit(5 + 1 / 12, "feet"),
  26611. weight: math.unit(110, "lb"),
  26612. name: "Front",
  26613. image: {
  26614. source: "./media/characters/aradel/front.svg",
  26615. extra: 324 / 303,
  26616. bottom: 3.6 / 329.4
  26617. }
  26618. },
  26619. },
  26620. [
  26621. {
  26622. name: "Normal",
  26623. height: math.unit(5 + 1 / 12, "feet"),
  26624. default: true
  26625. },
  26626. ]
  26627. ))
  26628. characterMakers.push(() => makeCharacter(
  26629. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26630. {
  26631. dressed: {
  26632. height: math.unit(3 + 8 / 12, "feet"),
  26633. weight: math.unit(50, "lb"),
  26634. name: "Dressed",
  26635. image: {
  26636. source: "./media/characters/serryn/dressed.svg",
  26637. extra: 1792 / 1656,
  26638. bottom: 43.5 / 1840
  26639. }
  26640. },
  26641. nude: {
  26642. height: math.unit(3 + 8 / 12, "feet"),
  26643. weight: math.unit(50, "lb"),
  26644. name: "Nude",
  26645. image: {
  26646. source: "./media/characters/serryn/nude.svg",
  26647. extra: 1792 / 1656,
  26648. bottom: 43.5 / 1840
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(3 + 8 / 12, "feet"),
  26656. default: true
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26662. {
  26663. front: {
  26664. height: math.unit(7 + 10 / 12, "feet"),
  26665. weight: math.unit(255, "lb"),
  26666. name: "Front",
  26667. image: {
  26668. source: "./media/characters/xavier-thyme/front.svg",
  26669. extra: 3733 / 3642,
  26670. bottom: 131 / 3869
  26671. }
  26672. },
  26673. frontRaven: {
  26674. height: math.unit(7 + 10 / 12, "feet"),
  26675. weight: math.unit(255, "lb"),
  26676. name: "Front (Raven)",
  26677. image: {
  26678. source: "./media/characters/xavier-thyme/front-raven.svg",
  26679. extra: 4385 / 3642,
  26680. bottom: 131 / 4517
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(7 + 10 / 12, "feet"),
  26688. default: true
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26694. {
  26695. front: {
  26696. height: math.unit(1.6, "m"),
  26697. weight: math.unit(50, "kg"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/kiki/front.svg",
  26701. extra: 4682 / 3610,
  26702. bottom: 115 / 4777
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Normal",
  26709. height: math.unit(1.6, "meters"),
  26710. default: true
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(50, "m"),
  26719. weight: math.unit(500, "tonnes"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/ryoko/front.svg",
  26723. extra: 4632 / 3926,
  26724. bottom: 193 / 4823
  26725. }
  26726. },
  26727. },
  26728. [
  26729. {
  26730. name: "Normal",
  26731. height: math.unit(50, "meters"),
  26732. default: true
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26738. {
  26739. front: {
  26740. height: math.unit(30, "m"),
  26741. weight: math.unit(22, "tonnes"),
  26742. name: "Front",
  26743. image: {
  26744. source: "./media/characters/elio/front.svg",
  26745. extra: 4582 / 3720,
  26746. bottom: 236 / 4828
  26747. }
  26748. },
  26749. },
  26750. [
  26751. {
  26752. name: "Normal",
  26753. height: math.unit(30, "meters"),
  26754. default: true
  26755. },
  26756. ]
  26757. ))
  26758. characterMakers.push(() => makeCharacter(
  26759. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26760. {
  26761. front: {
  26762. height: math.unit(6 + 3 / 12, "feet"),
  26763. weight: math.unit(120, "lb"),
  26764. name: "Front",
  26765. image: {
  26766. source: "./media/characters/azura/front.svg",
  26767. extra: 1149 / 1135,
  26768. bottom: 45 / 1194
  26769. }
  26770. },
  26771. frontClothed: {
  26772. height: math.unit(6 + 3 / 12, "feet"),
  26773. weight: math.unit(120, "lb"),
  26774. name: "Front (Clothed)",
  26775. image: {
  26776. source: "./media/characters/azura/front-clothed.svg",
  26777. extra: 1149 / 1135,
  26778. bottom: 45 / 1194
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Normal",
  26785. height: math.unit(6 + 3 / 12, "feet"),
  26786. default: true
  26787. },
  26788. {
  26789. name: "Macro",
  26790. height: math.unit(20 + 6 / 12, "feet")
  26791. },
  26792. {
  26793. name: "Megamacro",
  26794. height: math.unit(12, "miles")
  26795. },
  26796. {
  26797. name: "Gigamacro",
  26798. height: math.unit(10000, "miles")
  26799. },
  26800. {
  26801. name: "Teramacro",
  26802. height: math.unit(900000, "miles")
  26803. },
  26804. ]
  26805. ))
  26806. characterMakers.push(() => makeCharacter(
  26807. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26808. {
  26809. front: {
  26810. height: math.unit(12, "feet"),
  26811. weight: math.unit(1, "ton"),
  26812. capacity: math.unit(660000, "gallons"),
  26813. name: "Front",
  26814. image: {
  26815. source: "./media/characters/zeus/front.svg",
  26816. extra: 5005 / 4717,
  26817. bottom: 363 / 5388
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Normal",
  26824. height: math.unit(12, "feet")
  26825. },
  26826. {
  26827. name: "Preferred Size",
  26828. height: math.unit(0.5, "miles"),
  26829. default: true
  26830. },
  26831. {
  26832. name: "Giga Horse",
  26833. height: math.unit(300, "miles")
  26834. },
  26835. {
  26836. name: "Riding Planets",
  26837. height: math.unit(30, "megameters")
  26838. },
  26839. {
  26840. name: "Cosmic Giant",
  26841. height: math.unit(3, "zettameters")
  26842. },
  26843. {
  26844. name: "Breeding God",
  26845. height: math.unit(9.92e22, "yottameters")
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26851. {
  26852. side: {
  26853. height: math.unit(9, "feet"),
  26854. weight: math.unit(1500, "kg"),
  26855. name: "Side",
  26856. image: {
  26857. source: "./media/characters/fang/side.svg",
  26858. extra: 924 / 866,
  26859. bottom: 47.5 / 972.3
  26860. }
  26861. },
  26862. },
  26863. [
  26864. {
  26865. name: "Normal",
  26866. height: math.unit(9, "feet"),
  26867. default: true
  26868. },
  26869. {
  26870. name: "Macro",
  26871. height: math.unit(75 + 6 / 12, "feet")
  26872. },
  26873. {
  26874. name: "Teramacro",
  26875. height: math.unit(50000, "miles")
  26876. },
  26877. ]
  26878. ))
  26879. characterMakers.push(() => makeCharacter(
  26880. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26881. {
  26882. front: {
  26883. height: math.unit(10, "feet"),
  26884. weight: math.unit(2, "tons"),
  26885. name: "Front",
  26886. image: {
  26887. source: "./media/characters/rekhit/front.svg",
  26888. extra: 2796 / 2590,
  26889. bottom: 225 / 3022
  26890. }
  26891. },
  26892. },
  26893. [
  26894. {
  26895. name: "Normal",
  26896. height: math.unit(10, "feet"),
  26897. default: true
  26898. },
  26899. {
  26900. name: "Macro",
  26901. height: math.unit(500, "feet")
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26907. {
  26908. front: {
  26909. height: math.unit(7 + 6.451 / 12, "feet"),
  26910. weight: math.unit(310, "lb"),
  26911. name: "Front",
  26912. image: {
  26913. source: "./media/characters/dahlia-verrick/front.svg",
  26914. extra: 1488 / 1365,
  26915. bottom: 6.2 / 1495
  26916. }
  26917. },
  26918. back: {
  26919. height: math.unit(7 + 6.451 / 12, "feet"),
  26920. weight: math.unit(310, "lb"),
  26921. name: "Back",
  26922. image: {
  26923. source: "./media/characters/dahlia-verrick/back.svg",
  26924. extra: 1472 / 1351,
  26925. bottom: 5.28 / 1477
  26926. }
  26927. },
  26928. frontBusiness: {
  26929. height: math.unit(7 + 6.451 / 12, "feet"),
  26930. weight: math.unit(200, "lb"),
  26931. name: "Front (Business)",
  26932. image: {
  26933. source: "./media/characters/dahlia-verrick/front-business.svg",
  26934. extra: 1478 / 1381,
  26935. bottom: 5.5 / 1484
  26936. }
  26937. },
  26938. frontCasual: {
  26939. height: math.unit(7 + 6.451 / 12, "feet"),
  26940. weight: math.unit(200, "lb"),
  26941. name: "Front (Casual)",
  26942. image: {
  26943. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26944. extra: 1478 / 1381,
  26945. bottom: 5.5 / 1484
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Travel-Sized",
  26952. height: math.unit(7.45, "inches")
  26953. },
  26954. {
  26955. name: "Normal",
  26956. height: math.unit(7 + 6.451 / 12, "feet"),
  26957. default: true
  26958. },
  26959. {
  26960. name: "Hitting the Town",
  26961. height: math.unit(37 + 8 / 12, "feet")
  26962. },
  26963. {
  26964. name: "Stomp in the Suburbs",
  26965. height: math.unit(964 + 9.728 / 12, "feet")
  26966. },
  26967. {
  26968. name: "Sit on the City",
  26969. height: math.unit(61747 + 10.592 / 12, "feet")
  26970. },
  26971. {
  26972. name: "Glomp the Globe",
  26973. height: math.unit(252919327 + 4.832 / 12, "feet")
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26979. {
  26980. front: {
  26981. height: math.unit(6 + 4 / 12, "feet"),
  26982. weight: math.unit(320, "lb"),
  26983. name: "Front",
  26984. image: {
  26985. source: "./media/characters/balina-mahigan/front.svg",
  26986. extra: 447 / 428,
  26987. bottom: 18 / 466
  26988. }
  26989. },
  26990. back: {
  26991. height: math.unit(6 + 4 / 12, "feet"),
  26992. weight: math.unit(320, "lb"),
  26993. name: "Back",
  26994. image: {
  26995. source: "./media/characters/balina-mahigan/back.svg",
  26996. extra: 445 / 428,
  26997. bottom: 4.07 / 448
  26998. }
  26999. },
  27000. arm: {
  27001. height: math.unit(1.88, "feet"),
  27002. name: "Arm",
  27003. image: {
  27004. source: "./media/characters/balina-mahigan/arm.svg"
  27005. }
  27006. },
  27007. backPort: {
  27008. height: math.unit(0.685, "feet"),
  27009. name: "Back Port",
  27010. image: {
  27011. source: "./media/characters/balina-mahigan/back-port.svg"
  27012. }
  27013. },
  27014. hoofpaw: {
  27015. height: math.unit(1.41, "feet"),
  27016. name: "Hoofpaw",
  27017. image: {
  27018. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27019. }
  27020. },
  27021. leftHandBack: {
  27022. height: math.unit(0.938, "feet"),
  27023. name: "Left Hand (Back)",
  27024. image: {
  27025. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27026. }
  27027. },
  27028. leftHandFront: {
  27029. height: math.unit(0.938, "feet"),
  27030. name: "Left Hand (Front)",
  27031. image: {
  27032. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27033. }
  27034. },
  27035. rightHandBack: {
  27036. height: math.unit(0.95, "feet"),
  27037. name: "Right Hand (Back)",
  27038. image: {
  27039. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27040. }
  27041. },
  27042. rightHandFront: {
  27043. height: math.unit(0.95, "feet"),
  27044. name: "Right Hand (Front)",
  27045. image: {
  27046. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27047. }
  27048. },
  27049. },
  27050. [
  27051. {
  27052. name: "Normal",
  27053. height: math.unit(6 + 4 / 12, "feet"),
  27054. default: true
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27060. {
  27061. front: {
  27062. height: math.unit(6, "feet"),
  27063. weight: math.unit(320, "lb"),
  27064. name: "Front",
  27065. image: {
  27066. source: "./media/characters/balina-mejeri/front.svg",
  27067. extra: 517 / 488,
  27068. bottom: 44.2 / 561
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Normal",
  27075. height: math.unit(6 + 4 / 12, "feet")
  27076. },
  27077. {
  27078. name: "Business",
  27079. height: math.unit(155, "feet"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27086. {
  27087. kneeling: {
  27088. height: math.unit(6 + 4 / 12, "feet"),
  27089. weight: math.unit(300 * 20, "lb"),
  27090. name: "Kneeling",
  27091. image: {
  27092. source: "./media/characters/balbarian/kneeling.svg",
  27093. extra: 922 / 862,
  27094. bottom: 42.4 / 965
  27095. }
  27096. },
  27097. },
  27098. [
  27099. {
  27100. name: "Normal",
  27101. height: math.unit(6 + 4 / 12, "feet")
  27102. },
  27103. {
  27104. name: "Treasured",
  27105. height: math.unit(18 + 9 / 12, "feet"),
  27106. default: true
  27107. },
  27108. {
  27109. name: "Macro",
  27110. height: math.unit(900, "feet")
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27116. {
  27117. front: {
  27118. height: math.unit(6 + 4 / 12, "feet"),
  27119. weight: math.unit(325, "lb"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/balina-amarini/front.svg",
  27123. extra: 415 / 403,
  27124. bottom: 19 / 433.4
  27125. }
  27126. },
  27127. back: {
  27128. height: math.unit(6 + 4 / 12, "feet"),
  27129. weight: math.unit(325, "lb"),
  27130. name: "Back",
  27131. image: {
  27132. source: "./media/characters/balina-amarini/back.svg",
  27133. extra: 415 / 403,
  27134. bottom: 13.5 / 432
  27135. }
  27136. },
  27137. overdrive: {
  27138. height: math.unit(6 + 4 / 12, "feet"),
  27139. weight: math.unit(400, "lb"),
  27140. name: "Overdrive",
  27141. image: {
  27142. source: "./media/characters/balina-amarini/overdrive.svg",
  27143. extra: 269 / 259,
  27144. bottom: 12 / 282
  27145. }
  27146. },
  27147. },
  27148. [
  27149. {
  27150. name: "Boom",
  27151. height: math.unit(9 + 10 / 12, "feet"),
  27152. default: true
  27153. },
  27154. {
  27155. name: "Macro",
  27156. height: math.unit(280, "feet")
  27157. },
  27158. ]
  27159. ))
  27160. characterMakers.push(() => makeCharacter(
  27161. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27162. {
  27163. goddess: {
  27164. height: math.unit(600, "feet"),
  27165. weight: math.unit(2000000, "tons"),
  27166. name: "Goddess",
  27167. image: {
  27168. source: "./media/characters/lady-kubwa/goddess.svg",
  27169. extra: 1240.5 / 1223,
  27170. bottom: 22 / 1263
  27171. }
  27172. },
  27173. goddesser: {
  27174. height: math.unit(900, "feet"),
  27175. weight: math.unit(20000000, "lb"),
  27176. name: "Goddess-er",
  27177. image: {
  27178. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27179. extra: 899 / 888,
  27180. bottom: 12.6 / 912
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Macro",
  27187. height: math.unit(600, "feet"),
  27188. default: true
  27189. },
  27190. {
  27191. name: "Megamacro",
  27192. height: math.unit(250, "miles")
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27198. {
  27199. front: {
  27200. height: math.unit(7 + 7 / 12, "feet"),
  27201. weight: math.unit(250, "lb"),
  27202. name: "Front",
  27203. image: {
  27204. source: "./media/characters/tala-grovehorn/front.svg",
  27205. extra: 2636 / 2525,
  27206. bottom: 147 / 2781
  27207. }
  27208. },
  27209. back: {
  27210. height: math.unit(7 + 7 / 12, "feet"),
  27211. weight: math.unit(250, "lb"),
  27212. name: "Back",
  27213. image: {
  27214. source: "./media/characters/tala-grovehorn/back.svg",
  27215. extra: 2635 / 2539,
  27216. bottom: 100 / 2732.8
  27217. }
  27218. },
  27219. mouth: {
  27220. height: math.unit(1.15, "feet"),
  27221. name: "Mouth",
  27222. image: {
  27223. source: "./media/characters/tala-grovehorn/mouth.svg"
  27224. }
  27225. },
  27226. dick: {
  27227. height: math.unit(2.36, "feet"),
  27228. name: "Dick",
  27229. image: {
  27230. source: "./media/characters/tala-grovehorn/dick.svg"
  27231. }
  27232. },
  27233. slit: {
  27234. height: math.unit(0.61, "feet"),
  27235. name: "Slit",
  27236. image: {
  27237. source: "./media/characters/tala-grovehorn/slit.svg"
  27238. }
  27239. },
  27240. },
  27241. [
  27242. ]
  27243. ))
  27244. characterMakers.push(() => makeCharacter(
  27245. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27246. {
  27247. front: {
  27248. height: math.unit(7 + 7 / 12, "feet"),
  27249. weight: math.unit(225, "lb"),
  27250. name: "Front",
  27251. image: {
  27252. source: "./media/characters/epona/front.svg",
  27253. extra: 2445 / 2290,
  27254. bottom: 251 / 2696
  27255. }
  27256. },
  27257. back: {
  27258. height: math.unit(7 + 7 / 12, "feet"),
  27259. weight: math.unit(225, "lb"),
  27260. name: "Back",
  27261. image: {
  27262. source: "./media/characters/epona/back.svg",
  27263. extra: 2546 / 2408,
  27264. bottom: 44 / 2589
  27265. }
  27266. },
  27267. genitals: {
  27268. height: math.unit(1.5, "feet"),
  27269. name: "Genitals",
  27270. image: {
  27271. source: "./media/characters/epona/genitals.svg"
  27272. }
  27273. },
  27274. },
  27275. [
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(7 + 7 / 12, "feet"),
  27279. default: true
  27280. },
  27281. ]
  27282. ))
  27283. characterMakers.push(() => makeCharacter(
  27284. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27285. {
  27286. front: {
  27287. height: math.unit(7, "feet"),
  27288. weight: math.unit(518, "lb"),
  27289. name: "Front",
  27290. image: {
  27291. source: "./media/characters/avia-bloodbourn/front.svg",
  27292. extra: 1466 / 1350,
  27293. bottom: 65 / 1527
  27294. }
  27295. },
  27296. },
  27297. [
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(9.35, "feet"),
  27305. weight: math.unit(600, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/amera/front.svg",
  27309. extra: 891 / 818,
  27310. bottom: 30 / 922.7
  27311. }
  27312. },
  27313. back: {
  27314. height: math.unit(9.35, "feet"),
  27315. weight: math.unit(600, "lb"),
  27316. name: "Back",
  27317. image: {
  27318. source: "./media/characters/amera/back.svg",
  27319. extra: 876 / 824,
  27320. bottom: 6.8 / 884
  27321. }
  27322. },
  27323. dick: {
  27324. height: math.unit(2.14, "feet"),
  27325. name: "Dick",
  27326. image: {
  27327. source: "./media/characters/amera/dick.svg"
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Normal",
  27334. height: math.unit(9.35, "feet"),
  27335. default: true
  27336. },
  27337. ]
  27338. ))
  27339. characterMakers.push(() => makeCharacter(
  27340. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27341. {
  27342. kneeling: {
  27343. height: math.unit(3 + 4 / 12, "feet"),
  27344. weight: math.unit(90, "lb"),
  27345. name: "Kneeling",
  27346. image: {
  27347. source: "./media/characters/rosewen/kneeling.svg",
  27348. extra: 1835 / 1571,
  27349. bottom: 27.7 / 1862
  27350. }
  27351. },
  27352. },
  27353. [
  27354. {
  27355. name: "Normal",
  27356. height: math.unit(3 + 4 / 12, "feet"),
  27357. default: true
  27358. },
  27359. ]
  27360. ))
  27361. characterMakers.push(() => makeCharacter(
  27362. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27363. {
  27364. front: {
  27365. height: math.unit(5 + 10 / 12, "feet"),
  27366. weight: math.unit(200, "lb"),
  27367. name: "Front",
  27368. image: {
  27369. source: "./media/characters/sabah/front.svg",
  27370. extra: 849 / 763,
  27371. bottom: 33.9 / 881
  27372. }
  27373. },
  27374. },
  27375. [
  27376. {
  27377. name: "Normal",
  27378. height: math.unit(5 + 10 / 12, "feet"),
  27379. default: true
  27380. },
  27381. ]
  27382. ))
  27383. characterMakers.push(() => makeCharacter(
  27384. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27385. {
  27386. front: {
  27387. height: math.unit(3 + 5 / 12, "feet"),
  27388. weight: math.unit(40, "kg"),
  27389. name: "Front",
  27390. image: {
  27391. source: "./media/characters/purple-flame/front.svg",
  27392. extra: 1577 / 1412,
  27393. bottom: 97 / 1694
  27394. }
  27395. },
  27396. frontDressed: {
  27397. height: math.unit(3 + 5 / 12, "feet"),
  27398. weight: math.unit(40, "kg"),
  27399. name: "Front (Dressed)",
  27400. image: {
  27401. source: "./media/characters/purple-flame/front-dressed.svg",
  27402. extra: 1577 / 1412,
  27403. bottom: 97 / 1694
  27404. }
  27405. },
  27406. headphones: {
  27407. height: math.unit(0.85, "feet"),
  27408. name: "Headphones",
  27409. image: {
  27410. source: "./media/characters/purple-flame/headphones.svg"
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Really Small",
  27417. height: math.unit(5, "cm")
  27418. },
  27419. {
  27420. name: "Micro",
  27421. height: math.unit(1 + 5 / 12, "feet")
  27422. },
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(3 + 5 / 12, "feet"),
  27426. default: true
  27427. },
  27428. {
  27429. name: "Minimacro",
  27430. height: math.unit(125, "feet")
  27431. },
  27432. {
  27433. name: "Macro",
  27434. height: math.unit(0.5, "miles")
  27435. },
  27436. {
  27437. name: "Megamacro",
  27438. height: math.unit(50, "miles")
  27439. },
  27440. {
  27441. name: "Gigantic",
  27442. height: math.unit(750, "miles")
  27443. },
  27444. {
  27445. name: "Planetary",
  27446. height: math.unit(15000, "miles")
  27447. },
  27448. ]
  27449. ))
  27450. characterMakers.push(() => makeCharacter(
  27451. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27452. {
  27453. front: {
  27454. height: math.unit(14, "feet"),
  27455. weight: math.unit(959, "lb"),
  27456. name: "Front",
  27457. image: {
  27458. source: "./media/characters/arsenal/front.svg",
  27459. extra: 2357 / 2157,
  27460. bottom: 93 / 2458
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Normal",
  27467. height: math.unit(14, "feet"),
  27468. default: true
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27474. {
  27475. front: {
  27476. height: math.unit(6, "feet"),
  27477. weight: math.unit(150, "lb"),
  27478. name: "Front",
  27479. image: {
  27480. source: "./media/characters/adira/front.svg",
  27481. extra: 1078 / 1029,
  27482. bottom: 87 / 1166
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Micro",
  27489. height: math.unit(4, "inches"),
  27490. default: true
  27491. },
  27492. {
  27493. name: "Macro",
  27494. height: math.unit(50, "feet")
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27500. {
  27501. front: {
  27502. height: math.unit(16, "feet"),
  27503. weight: math.unit(1000, "lb"),
  27504. name: "Front",
  27505. image: {
  27506. source: "./media/characters/grim/front.svg",
  27507. extra: 622 / 614,
  27508. bottom: 18.1 / 642
  27509. }
  27510. },
  27511. back: {
  27512. height: math.unit(16, "feet"),
  27513. weight: math.unit(1000, "lb"),
  27514. name: "Back",
  27515. image: {
  27516. source: "./media/characters/grim/back.svg",
  27517. extra: 610.6 / 602,
  27518. bottom: 40.8 / 652
  27519. }
  27520. },
  27521. hunched: {
  27522. height: math.unit(9.75, "feet"),
  27523. weight: math.unit(1000, "lb"),
  27524. name: "Hunched",
  27525. image: {
  27526. source: "./media/characters/grim/hunched.svg",
  27527. extra: 304 / 297,
  27528. bottom: 35.4 / 394
  27529. }
  27530. },
  27531. },
  27532. [
  27533. {
  27534. name: "Normal",
  27535. height: math.unit(16, "feet"),
  27536. default: true
  27537. },
  27538. ]
  27539. ))
  27540. characterMakers.push(() => makeCharacter(
  27541. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27542. {
  27543. front: {
  27544. height: math.unit(2.3, "meters"),
  27545. weight: math.unit(300, "lb"),
  27546. name: "Front",
  27547. image: {
  27548. source: "./media/characters/sinja/front-sfw.svg",
  27549. extra: 1393 / 1294,
  27550. bottom: 70 / 1463
  27551. }
  27552. },
  27553. frontNsfw: {
  27554. height: math.unit(2.3, "meters"),
  27555. weight: math.unit(300, "lb"),
  27556. name: "Front (NSFW)",
  27557. image: {
  27558. source: "./media/characters/sinja/front-nsfw.svg",
  27559. extra: 1393 / 1294,
  27560. bottom: 70 / 1463
  27561. }
  27562. },
  27563. back: {
  27564. height: math.unit(2.3, "meters"),
  27565. weight: math.unit(300, "lb"),
  27566. name: "Back",
  27567. image: {
  27568. source: "./media/characters/sinja/back.svg",
  27569. extra: 1393 / 1294,
  27570. bottom: 70 / 1463
  27571. }
  27572. },
  27573. head: {
  27574. height: math.unit(1.771, "feet"),
  27575. name: "Head",
  27576. image: {
  27577. source: "./media/characters/sinja/head.svg"
  27578. }
  27579. },
  27580. slit: {
  27581. height: math.unit(0.8, "feet"),
  27582. name: "Slit",
  27583. image: {
  27584. source: "./media/characters/sinja/slit.svg"
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(2.3, "meters")
  27592. },
  27593. {
  27594. name: "Macro",
  27595. height: math.unit(91, "meters"),
  27596. default: true
  27597. },
  27598. {
  27599. name: "Megamacro",
  27600. height: math.unit(91440, "meters")
  27601. },
  27602. {
  27603. name: "Gigamacro",
  27604. height: math.unit(60960000, "meters")
  27605. },
  27606. {
  27607. name: "Teramacro",
  27608. height: math.unit(9144000000, "meters")
  27609. },
  27610. ]
  27611. ))
  27612. characterMakers.push(() => makeCharacter(
  27613. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27614. {
  27615. front: {
  27616. height: math.unit(1.7, "meters"),
  27617. weight: math.unit(130, "lb"),
  27618. name: "Front",
  27619. image: {
  27620. source: "./media/characters/kyu/front.svg",
  27621. extra: 415 / 395,
  27622. bottom: 5 / 420
  27623. }
  27624. },
  27625. head: {
  27626. height: math.unit(1.75, "feet"),
  27627. name: "Head",
  27628. image: {
  27629. source: "./media/characters/kyu/head.svg"
  27630. }
  27631. },
  27632. foot: {
  27633. height: math.unit(0.81, "feet"),
  27634. name: "Foot",
  27635. image: {
  27636. source: "./media/characters/kyu/foot.svg"
  27637. }
  27638. },
  27639. },
  27640. [
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(1.7, "meters")
  27644. },
  27645. {
  27646. name: "Macro",
  27647. height: math.unit(131, "feet"),
  27648. default: true
  27649. },
  27650. {
  27651. name: "Megamacro",
  27652. height: math.unit(91440, "meters")
  27653. },
  27654. {
  27655. name: "Gigamacro",
  27656. height: math.unit(60960000, "meters")
  27657. },
  27658. {
  27659. name: "Teramacro",
  27660. height: math.unit(9144000000, "meters")
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(7 + 1 / 12, "feet"),
  27669. weight: math.unit(250, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/joey/front.svg",
  27673. extra: 1791 / 1537,
  27674. bottom: 28 / 1816
  27675. }
  27676. },
  27677. },
  27678. [
  27679. {
  27680. name: "Micro",
  27681. height: math.unit(3, "inches")
  27682. },
  27683. {
  27684. name: "Normal",
  27685. height: math.unit(7 + 1 / 12, "feet"),
  27686. default: true
  27687. },
  27688. ]
  27689. ))
  27690. characterMakers.push(() => makeCharacter(
  27691. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27692. {
  27693. front: {
  27694. height: math.unit(165, "cm"),
  27695. weight: math.unit(140, "lb"),
  27696. name: "Front",
  27697. image: {
  27698. source: "./media/characters/sam-evans/front.svg",
  27699. extra: 3417 / 3230,
  27700. bottom: 41.3 / 3417
  27701. }
  27702. },
  27703. frontSixTails: {
  27704. height: math.unit(165, "cm"),
  27705. weight: math.unit(140, "lb"),
  27706. name: "Front-six-tails",
  27707. image: {
  27708. source: "./media/characters/sam-evans/front-six-tails.svg",
  27709. extra: 3417 / 3230,
  27710. bottom: 41.3 / 3417
  27711. }
  27712. },
  27713. back: {
  27714. height: math.unit(165, "cm"),
  27715. weight: math.unit(140, "lb"),
  27716. name: "Back",
  27717. image: {
  27718. source: "./media/characters/sam-evans/back.svg",
  27719. extra: 3227 / 3032,
  27720. bottom: 6.8 / 3234
  27721. }
  27722. },
  27723. face: {
  27724. height: math.unit(0.68, "feet"),
  27725. name: "Face",
  27726. image: {
  27727. source: "./media/characters/sam-evans/face.svg"
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Normal",
  27734. height: math.unit(165, "cm"),
  27735. default: true
  27736. },
  27737. {
  27738. name: "Macro",
  27739. height: math.unit(100, "meters")
  27740. },
  27741. {
  27742. name: "Macro+",
  27743. height: math.unit(800, "meters")
  27744. },
  27745. {
  27746. name: "Macro++",
  27747. height: math.unit(3, "km")
  27748. },
  27749. {
  27750. name: "Macro+++",
  27751. height: math.unit(30, "km")
  27752. },
  27753. ]
  27754. ))
  27755. characterMakers.push(() => makeCharacter(
  27756. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27757. {
  27758. front: {
  27759. height: math.unit(10, "feet"),
  27760. weight: math.unit(750, "lb"),
  27761. name: "Front",
  27762. image: {
  27763. source: "./media/characters/juliet-a/front.svg",
  27764. extra: 1766 / 1720,
  27765. bottom: 43 / 1809
  27766. }
  27767. },
  27768. back: {
  27769. height: math.unit(10, "feet"),
  27770. weight: math.unit(750, "lb"),
  27771. name: "Back",
  27772. image: {
  27773. source: "./media/characters/juliet-a/back.svg",
  27774. extra: 1781 / 1734,
  27775. bottom: 35 / 1810,
  27776. }
  27777. },
  27778. },
  27779. [
  27780. {
  27781. name: "Normal",
  27782. height: math.unit(10, "feet"),
  27783. default: true
  27784. },
  27785. {
  27786. name: "Dragon Form",
  27787. height: math.unit(250, "feet")
  27788. },
  27789. {
  27790. name: "Macro",
  27791. height: math.unit(1000, "feet")
  27792. },
  27793. {
  27794. name: "Megamacro",
  27795. height: math.unit(10000, "feet")
  27796. }
  27797. ]
  27798. ))
  27799. characterMakers.push(() => makeCharacter(
  27800. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27801. {
  27802. regular: {
  27803. height: math.unit(7 + 3 / 12, "feet"),
  27804. weight: math.unit(260, "lb"),
  27805. name: "Regular",
  27806. image: {
  27807. source: "./media/characters/wild/regular.svg",
  27808. extra: 97.45 / 92,
  27809. bottom: 6.8 / 104.3
  27810. }
  27811. },
  27812. biggums: {
  27813. height: math.unit(8 + 6 / 12, "feet"),
  27814. weight: math.unit(425, "lb"),
  27815. name: "Biggums",
  27816. image: {
  27817. source: "./media/characters/wild/biggums.svg",
  27818. extra: 97.45 / 92,
  27819. bottom: 7.5 / 132.34
  27820. }
  27821. },
  27822. mawRegular: {
  27823. height: math.unit(1.24, "feet"),
  27824. name: "Maw (Regular)",
  27825. image: {
  27826. source: "./media/characters/wild/maw.svg"
  27827. }
  27828. },
  27829. mawBiggums: {
  27830. height: math.unit(1.47, "feet"),
  27831. name: "Maw (Biggums)",
  27832. image: {
  27833. source: "./media/characters/wild/maw.svg"
  27834. }
  27835. },
  27836. },
  27837. [
  27838. {
  27839. name: "Normal",
  27840. height: math.unit(7 + 3 / 12, "feet"),
  27841. default: true
  27842. },
  27843. ]
  27844. ))
  27845. characterMakers.push(() => makeCharacter(
  27846. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27847. {
  27848. front: {
  27849. height: math.unit(2.5, "meters"),
  27850. weight: math.unit(200, "kg"),
  27851. name: "Front",
  27852. image: {
  27853. source: "./media/characters/vidar/front.svg",
  27854. extra: 2994 / 2795,
  27855. bottom: 56 / 3061
  27856. }
  27857. },
  27858. back: {
  27859. height: math.unit(2.5, "meters"),
  27860. weight: math.unit(200, "kg"),
  27861. name: "Back",
  27862. image: {
  27863. source: "./media/characters/vidar/back.svg",
  27864. extra: 3131 / 2928,
  27865. bottom: 13.5 / 3141.5
  27866. }
  27867. },
  27868. feral: {
  27869. height: math.unit(2.5, "meters"),
  27870. weight: math.unit(2000, "kg"),
  27871. name: "Feral",
  27872. image: {
  27873. source: "./media/characters/vidar/feral.svg",
  27874. extra: 2790 / 1765,
  27875. bottom: 6 / 2796
  27876. }
  27877. },
  27878. },
  27879. [
  27880. {
  27881. name: "Normal",
  27882. height: math.unit(2.5, "meters"),
  27883. default: true
  27884. },
  27885. {
  27886. name: "Macro",
  27887. height: math.unit(100, "meters")
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27893. {
  27894. front: {
  27895. height: math.unit(5 + 9 / 12, "feet"),
  27896. weight: math.unit(120, "lb"),
  27897. name: "Front",
  27898. image: {
  27899. source: "./media/characters/ash/front.svg",
  27900. extra: 2189 / 1961,
  27901. bottom: 5.2 / 2194
  27902. }
  27903. },
  27904. },
  27905. [
  27906. {
  27907. name: "Normal",
  27908. height: math.unit(5 + 9 / 12, "feet"),
  27909. default: true
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27915. {
  27916. front: {
  27917. height: math.unit(9, "feet"),
  27918. weight: math.unit(10000, "lb"),
  27919. name: "Front",
  27920. image: {
  27921. source: "./media/characters/gygabite/front.svg",
  27922. bottom: 31.7 / 537.8,
  27923. extra: 505 / 370
  27924. }
  27925. },
  27926. },
  27927. [
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(9, "feet"),
  27931. default: true
  27932. },
  27933. ]
  27934. ))
  27935. characterMakers.push(() => makeCharacter(
  27936. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27937. {
  27938. front: {
  27939. height: math.unit(12, "feet"),
  27940. weight: math.unit(35000, "lb"),
  27941. name: "Front",
  27942. image: {
  27943. source: "./media/characters/p0tat0/front.svg",
  27944. extra: 1065 / 921,
  27945. bottom: 55.7 / 1121.25
  27946. }
  27947. },
  27948. },
  27949. [
  27950. {
  27951. name: "Normal",
  27952. height: math.unit(12, "feet"),
  27953. default: true
  27954. },
  27955. ]
  27956. ))
  27957. characterMakers.push(() => makeCharacter(
  27958. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27959. {
  27960. side: {
  27961. height: math.unit(6.5, "feet"),
  27962. weight: math.unit(800, "lb"),
  27963. name: "Side",
  27964. image: {
  27965. source: "./media/characters/dusk/side.svg",
  27966. extra: 615 / 373,
  27967. bottom: 53 / 664
  27968. }
  27969. },
  27970. sitting: {
  27971. height: math.unit(7, "feet"),
  27972. weight: math.unit(800, "lb"),
  27973. name: "Sitting",
  27974. image: {
  27975. source: "./media/characters/dusk/sitting.svg",
  27976. extra: 753 / 425,
  27977. bottom: 33 / 774
  27978. }
  27979. },
  27980. head: {
  27981. height: math.unit(6.1, "feet"),
  27982. name: "Head",
  27983. image: {
  27984. source: "./media/characters/dusk/head.svg"
  27985. }
  27986. },
  27987. },
  27988. [
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(7, "feet"),
  27992. default: true
  27993. },
  27994. ]
  27995. ))
  27996. characterMakers.push(() => makeCharacter(
  27997. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27998. {
  27999. front: {
  28000. height: math.unit(15, "feet"),
  28001. weight: math.unit(7000, "lb"),
  28002. name: "Front",
  28003. image: {
  28004. source: "./media/characters/jay-direwolf/front.svg",
  28005. extra: 1810 / 1732,
  28006. bottom: 66 / 1892
  28007. }
  28008. },
  28009. },
  28010. [
  28011. {
  28012. name: "Normal",
  28013. height: math.unit(15, "feet"),
  28014. default: true
  28015. },
  28016. ]
  28017. ))
  28018. characterMakers.push(() => makeCharacter(
  28019. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28020. {
  28021. front: {
  28022. height: math.unit(4 + 9 / 12, "feet"),
  28023. weight: math.unit(130, "lb"),
  28024. name: "Front",
  28025. image: {
  28026. source: "./media/characters/anchovie/front.svg",
  28027. extra: 382 / 350,
  28028. bottom: 25 / 409
  28029. }
  28030. },
  28031. back: {
  28032. height: math.unit(4 + 9 / 12, "feet"),
  28033. weight: math.unit(130, "lb"),
  28034. name: "Back",
  28035. image: {
  28036. source: "./media/characters/anchovie/back.svg",
  28037. extra: 385 / 352,
  28038. bottom: 16.6 / 402
  28039. }
  28040. },
  28041. frontDressed: {
  28042. height: math.unit(4 + 9 / 12, "feet"),
  28043. weight: math.unit(130, "lb"),
  28044. name: "Front (Dressed)",
  28045. image: {
  28046. source: "./media/characters/anchovie/front-dressed.svg",
  28047. extra: 382 / 350,
  28048. bottom: 25 / 409
  28049. }
  28050. },
  28051. backDressed: {
  28052. height: math.unit(4 + 9 / 12, "feet"),
  28053. weight: math.unit(130, "lb"),
  28054. name: "Back (Dressed)",
  28055. image: {
  28056. source: "./media/characters/anchovie/back-dressed.svg",
  28057. extra: 385 / 352,
  28058. bottom: 16.6 / 402
  28059. }
  28060. },
  28061. },
  28062. [
  28063. {
  28064. name: "Micro",
  28065. height: math.unit(6.4, "inches")
  28066. },
  28067. {
  28068. name: "Normal",
  28069. height: math.unit(4 + 9 / 12, "feet"),
  28070. default: true
  28071. },
  28072. ]
  28073. ))
  28074. characterMakers.push(() => makeCharacter(
  28075. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28076. {
  28077. front: {
  28078. height: math.unit(2, "meters"),
  28079. weight: math.unit(180, "lb"),
  28080. name: "Front",
  28081. image: {
  28082. source: "./media/characters/acidrenamon/front.svg",
  28083. extra: 987 / 890,
  28084. bottom: 22.8 / 1009
  28085. }
  28086. },
  28087. back: {
  28088. height: math.unit(2, "meters"),
  28089. weight: math.unit(180, "lb"),
  28090. name: "Back",
  28091. image: {
  28092. source: "./media/characters/acidrenamon/back.svg",
  28093. extra: 983 / 891,
  28094. bottom: 8.4 / 992
  28095. }
  28096. },
  28097. head: {
  28098. height: math.unit(1.92, "feet"),
  28099. name: "Head",
  28100. image: {
  28101. source: "./media/characters/acidrenamon/head.svg"
  28102. }
  28103. },
  28104. rump: {
  28105. height: math.unit(1.72, "feet"),
  28106. name: "Rump",
  28107. image: {
  28108. source: "./media/characters/acidrenamon/rump.svg"
  28109. }
  28110. },
  28111. tail: {
  28112. height: math.unit(4.2, "feet"),
  28113. name: "Tail",
  28114. image: {
  28115. source: "./media/characters/acidrenamon/tail.svg"
  28116. }
  28117. },
  28118. },
  28119. [
  28120. {
  28121. name: "Normal",
  28122. height: math.unit(2, "meters"),
  28123. default: true
  28124. },
  28125. {
  28126. name: "Minimacro",
  28127. height: math.unit(7, "meters")
  28128. },
  28129. {
  28130. name: "Macro",
  28131. height: math.unit(200, "meters")
  28132. },
  28133. {
  28134. name: "Gigamacro",
  28135. height: math.unit(0.2, "earths")
  28136. },
  28137. ]
  28138. ))
  28139. characterMakers.push(() => makeCharacter(
  28140. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28141. {
  28142. front: {
  28143. height: math.unit(152, "feet"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/kenzie-lee/front.svg",
  28147. extra: 1869/1774,
  28148. bottom: 128/1997
  28149. }
  28150. },
  28151. side: {
  28152. height: math.unit(86, "feet"),
  28153. name: "Side",
  28154. image: {
  28155. source: "./media/characters/kenzie-lee/side.svg",
  28156. extra: 930/815,
  28157. bottom: 177/1107
  28158. }
  28159. },
  28160. paw: {
  28161. height: math.unit(15, "feet"),
  28162. name: "Paw",
  28163. image: {
  28164. source: "./media/characters/kenzie-lee/paw.svg"
  28165. }
  28166. },
  28167. },
  28168. [
  28169. {
  28170. name: "Micro",
  28171. height: math.unit(1.5, "inches")
  28172. },
  28173. {
  28174. name: "Normal",
  28175. height: math.unit(152, "feet"),
  28176. default: true
  28177. },
  28178. {
  28179. name: "Megamacro",
  28180. height: math.unit(7, "miles")
  28181. },
  28182. {
  28183. name: "Gigamacro",
  28184. height: math.unit(8000, "miles")
  28185. },
  28186. ]
  28187. ))
  28188. characterMakers.push(() => makeCharacter(
  28189. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28190. {
  28191. side: {
  28192. height: math.unit(6, "feet"),
  28193. weight: math.unit(150, "lb"),
  28194. name: "Side",
  28195. image: {
  28196. source: "./media/characters/withers/side.svg",
  28197. extra: 1830 / 1728,
  28198. bottom: 96 / 1927
  28199. }
  28200. },
  28201. front: {
  28202. height: math.unit(6, "feet"),
  28203. weight: math.unit(150, "lb"),
  28204. name: "Front",
  28205. image: {
  28206. source: "./media/characters/withers/front.svg",
  28207. extra: 1514 / 1438,
  28208. bottom: 118 / 1632
  28209. }
  28210. },
  28211. },
  28212. [
  28213. {
  28214. name: "Macro",
  28215. height: math.unit(168, "feet"),
  28216. default: true
  28217. },
  28218. {
  28219. name: "Megamacro",
  28220. height: math.unit(15, "miles")
  28221. }
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28226. {
  28227. front: {
  28228. height: math.unit(6 + 7 / 12, "feet"),
  28229. weight: math.unit(250, "lb"),
  28230. name: "Front",
  28231. image: {
  28232. source: "./media/characters/nemoskii/front.svg",
  28233. extra: 2270 / 1734,
  28234. bottom: 86 / 2354
  28235. }
  28236. },
  28237. back: {
  28238. height: math.unit(6 + 7 / 12, "feet"),
  28239. weight: math.unit(250, "lb"),
  28240. name: "Back",
  28241. image: {
  28242. source: "./media/characters/nemoskii/back.svg",
  28243. extra: 1845 / 1788,
  28244. bottom: 10.5 / 1852
  28245. }
  28246. },
  28247. head: {
  28248. height: math.unit(1.31, "feet"),
  28249. name: "Head",
  28250. image: {
  28251. source: "./media/characters/nemoskii/head.svg"
  28252. }
  28253. },
  28254. },
  28255. [
  28256. {
  28257. name: "Micro",
  28258. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28259. },
  28260. {
  28261. name: "Normal",
  28262. height: math.unit(6 + 7 / 12, "feet"),
  28263. default: true
  28264. },
  28265. {
  28266. name: "Macro",
  28267. height: math.unit((6 + 7 / 12) * 150, "feet")
  28268. },
  28269. {
  28270. name: "Macro+",
  28271. height: math.unit((6 + 7 / 12) * 500, "feet")
  28272. },
  28273. {
  28274. name: "Megamacro",
  28275. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28276. },
  28277. ]
  28278. ))
  28279. characterMakers.push(() => makeCharacter(
  28280. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28281. {
  28282. front: {
  28283. height: math.unit(1, "mile"),
  28284. weight: math.unit(265261.9, "lb"),
  28285. name: "Front",
  28286. image: {
  28287. source: "./media/characters/shui/front.svg",
  28288. extra: 1633 / 1564,
  28289. bottom: 91.5 / 1726
  28290. }
  28291. },
  28292. },
  28293. [
  28294. {
  28295. name: "Macro",
  28296. height: math.unit(1, "mile"),
  28297. default: true
  28298. },
  28299. ]
  28300. ))
  28301. characterMakers.push(() => makeCharacter(
  28302. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28303. {
  28304. front: {
  28305. height: math.unit(12 + 6 / 12, "feet"),
  28306. weight: math.unit(1342, "lb"),
  28307. name: "Front",
  28308. image: {
  28309. source: "./media/characters/arokh-takakura/front.svg",
  28310. extra: 1089 / 1043,
  28311. bottom: 77.4 / 1176.7
  28312. }
  28313. },
  28314. back: {
  28315. height: math.unit(12 + 6 / 12, "feet"),
  28316. weight: math.unit(1342, "lb"),
  28317. name: "Back",
  28318. image: {
  28319. source: "./media/characters/arokh-takakura/back.svg",
  28320. extra: 1046 / 1019,
  28321. bottom: 102 / 1150
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Big",
  28328. height: math.unit(12 + 6 / 12, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(5 + 6 / 12, "feet"),
  28338. weight: math.unit(150, "lb"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/theo/front.svg",
  28342. extra: 1184 / 1131,
  28343. bottom: 7.4 / 1191
  28344. }
  28345. },
  28346. },
  28347. [
  28348. {
  28349. name: "Micro",
  28350. height: math.unit(5, "inches")
  28351. },
  28352. {
  28353. name: "Normal",
  28354. height: math.unit(5 + 6 / 12, "feet"),
  28355. default: true
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28361. {
  28362. front: {
  28363. height: math.unit(5 + 9 / 12, "feet"),
  28364. weight: math.unit(130, "lb"),
  28365. name: "Front",
  28366. image: {
  28367. source: "./media/characters/cecelia-swift/front.svg",
  28368. extra: 502 / 484,
  28369. bottom: 23 / 523
  28370. }
  28371. },
  28372. back: {
  28373. height: math.unit(5 + 9 / 12, "feet"),
  28374. weight: math.unit(130, "lb"),
  28375. name: "Back",
  28376. image: {
  28377. source: "./media/characters/cecelia-swift/back.svg",
  28378. extra: 499 / 485,
  28379. bottom: 12 / 511
  28380. }
  28381. },
  28382. head: {
  28383. height: math.unit(0.90, "feet"),
  28384. name: "Head",
  28385. image: {
  28386. source: "./media/characters/cecelia-swift/head.svg"
  28387. }
  28388. },
  28389. rump: {
  28390. height: math.unit(1.75, "feet"),
  28391. name: "Rump",
  28392. image: {
  28393. source: "./media/characters/cecelia-swift/rump.svg"
  28394. }
  28395. },
  28396. },
  28397. [
  28398. {
  28399. name: "Normal",
  28400. height: math.unit(5 + 9 / 12, "feet"),
  28401. default: true
  28402. },
  28403. {
  28404. name: "Big",
  28405. height: math.unit(50, "feet")
  28406. },
  28407. {
  28408. name: "Macro",
  28409. height: math.unit(100, "feet")
  28410. },
  28411. {
  28412. name: "Macro+",
  28413. height: math.unit(500, "feet")
  28414. },
  28415. {
  28416. name: "Macro++",
  28417. height: math.unit(1000, "feet")
  28418. },
  28419. ]
  28420. ))
  28421. characterMakers.push(() => makeCharacter(
  28422. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28423. {
  28424. front: {
  28425. height: math.unit(6, "feet"),
  28426. weight: math.unit(150, "lb"),
  28427. name: "Front",
  28428. image: {
  28429. source: "./media/characters/kaunan/front.svg",
  28430. extra: 2890 / 2523,
  28431. bottom: 49 / 2939
  28432. }
  28433. },
  28434. },
  28435. [
  28436. {
  28437. name: "Macro",
  28438. height: math.unit(150, "feet"),
  28439. default: true
  28440. },
  28441. ]
  28442. ))
  28443. characterMakers.push(() => makeCharacter(
  28444. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28445. {
  28446. front: {
  28447. height: math.unit(175, "cm"),
  28448. weight: math.unit(60, "kg"),
  28449. name: "Front",
  28450. image: {
  28451. source: "./media/characters/fei/front.svg",
  28452. extra: 1873/1723,
  28453. bottom: 53/1926
  28454. }
  28455. },
  28456. },
  28457. [
  28458. {
  28459. name: "Mortal",
  28460. height: math.unit(175, "cm")
  28461. },
  28462. {
  28463. name: "Normal",
  28464. height: math.unit(3500, "m"),
  28465. default: true
  28466. },
  28467. {
  28468. name: "Stroll",
  28469. height: math.unit(17.5, "km")
  28470. },
  28471. {
  28472. name: "Showoff",
  28473. height: math.unit(175, "km")
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(7, "feet"),
  28482. weight: math.unit(1000, "kg"),
  28483. name: "Front",
  28484. image: {
  28485. source: "./media/characters/edrax/front.svg",
  28486. extra: 2838 / 2550,
  28487. bottom: 130 / 2968
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Small",
  28494. height: math.unit(7, "feet")
  28495. },
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(1500, "meters")
  28499. },
  28500. {
  28501. name: "Mega",
  28502. height: math.unit(12000000, "km"),
  28503. default: true
  28504. },
  28505. {
  28506. name: "Megamacro",
  28507. height: math.unit(10600000, "lightyears")
  28508. },
  28509. {
  28510. name: "Hypermacro",
  28511. height: math.unit(256, "yottameters")
  28512. },
  28513. ]
  28514. ))
  28515. characterMakers.push(() => makeCharacter(
  28516. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28517. {
  28518. front: {
  28519. height: math.unit(10, "feet"),
  28520. weight: math.unit(750, "lb"),
  28521. name: "Front",
  28522. image: {
  28523. source: "./media/characters/clove/front.svg",
  28524. extra: 1918/1751,
  28525. bottom: 52/1970
  28526. }
  28527. },
  28528. back: {
  28529. height: math.unit(10, "feet"),
  28530. weight: math.unit(750, "lb"),
  28531. name: "Back",
  28532. image: {
  28533. source: "./media/characters/clove/back.svg",
  28534. extra: 1912/1747,
  28535. bottom: 50/1962
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(10, "feet"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(4, "feet"),
  28552. weight: math.unit(50, "lb"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/alex-rabbit/front.svg",
  28556. extra: 507 / 458,
  28557. bottom: 18.5 / 527
  28558. }
  28559. },
  28560. back: {
  28561. height: math.unit(4, "feet"),
  28562. weight: math.unit(50, "lb"),
  28563. name: "Back",
  28564. image: {
  28565. source: "./media/characters/alex-rabbit/back.svg",
  28566. extra: 502 / 460,
  28567. bottom: 18.9 / 521
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Normal",
  28574. height: math.unit(4, "feet"),
  28575. default: true
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(1 + 3 / 12, "feet"),
  28584. weight: math.unit(80, "lb"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/zander-rose/front.svg",
  28588. extra: 916 / 797,
  28589. bottom: 17 / 933
  28590. }
  28591. },
  28592. back: {
  28593. height: math.unit(1 + 3 / 12, "feet"),
  28594. weight: math.unit(80, "lb"),
  28595. name: "Back",
  28596. image: {
  28597. source: "./media/characters/zander-rose/back.svg",
  28598. extra: 903 / 779,
  28599. bottom: 31 / 934
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(1 + 3 / 12, "feet"),
  28607. default: true
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28613. {
  28614. anthro: {
  28615. height: math.unit(6, "feet"),
  28616. weight: math.unit(150, "lb"),
  28617. name: "Anthro",
  28618. image: {
  28619. source: "./media/characters/razz/anthro.svg",
  28620. extra: 1437 / 1343,
  28621. bottom: 48 / 1485
  28622. }
  28623. },
  28624. feral: {
  28625. height: math.unit(6, "feet"),
  28626. weight: math.unit(150, "lb"),
  28627. name: "Feral",
  28628. image: {
  28629. source: "./media/characters/razz/feral.svg",
  28630. extra: 2569 / 1385,
  28631. bottom: 95 / 2664
  28632. }
  28633. },
  28634. },
  28635. [
  28636. {
  28637. name: "Normal",
  28638. height: math.unit(6, "feet"),
  28639. default: true
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(9 + 4 / 12, "feet"),
  28648. weight: math.unit(500, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/morrigan/front.svg",
  28652. extra: 2707 / 2579,
  28653. bottom: 156 / 2863
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Normal",
  28660. height: math.unit(9 + 4 / 12, "feet"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28667. {
  28668. front: {
  28669. height: math.unit(5, "stories"),
  28670. weight: math.unit(4000, "lb"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/jenene/front.svg",
  28674. extra: 1780 / 1710,
  28675. bottom: 57 / 1837
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(5, "stories"),
  28683. default: true
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28689. {
  28690. taurSfw: {
  28691. height: math.unit(10, "meters"),
  28692. weight: math.unit(17500, "kg"),
  28693. name: "Taur",
  28694. image: {
  28695. source: "./media/characters/faey/taur-sfw.svg",
  28696. extra: 1200 / 968,
  28697. bottom: 41 / 1241
  28698. }
  28699. },
  28700. chestmaw: {
  28701. height: math.unit(2.01, "meters"),
  28702. name: "Chestmaw",
  28703. image: {
  28704. source: "./media/characters/faey/chestmaw.svg"
  28705. }
  28706. },
  28707. foot: {
  28708. height: math.unit(2.43, "meters"),
  28709. name: "Foot",
  28710. image: {
  28711. source: "./media/characters/faey/foot.svg"
  28712. }
  28713. },
  28714. jaws: {
  28715. height: math.unit(1.66, "meters"),
  28716. name: "Jaws",
  28717. image: {
  28718. source: "./media/characters/faey/jaws.svg"
  28719. }
  28720. },
  28721. tongues: {
  28722. height: math.unit(2.01, "meters"),
  28723. name: "Tongues",
  28724. image: {
  28725. source: "./media/characters/faey/tongues.svg"
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Small",
  28732. height: math.unit(10, "meters"),
  28733. default: true
  28734. },
  28735. {
  28736. name: "Big",
  28737. height: math.unit(500000, "km")
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28743. {
  28744. front: {
  28745. height: math.unit(7, "feet"),
  28746. weight: math.unit(275, "lb"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/roku/front.svg",
  28750. extra: 903 / 878,
  28751. bottom: 37 / 940
  28752. }
  28753. },
  28754. },
  28755. [
  28756. {
  28757. name: "Normal",
  28758. height: math.unit(7, "feet"),
  28759. default: true
  28760. },
  28761. {
  28762. name: "Macro",
  28763. height: math.unit(500, "feet")
  28764. },
  28765. {
  28766. name: "Megamacro",
  28767. height: math.unit(200, "miles")
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(6 + 2 / 12, "feet"),
  28776. weight: math.unit(150, "lb"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/lira/front.svg",
  28780. extra: 1727 / 1605,
  28781. bottom: 26 / 1753
  28782. }
  28783. },
  28784. back: {
  28785. height: math.unit(6 + 2 / 12, "feet"),
  28786. weight: math.unit(150, "lb"),
  28787. name: "Back",
  28788. image: {
  28789. source: "./media/characters/lira/back.svg",
  28790. extra: 1713/1621,
  28791. bottom: 20/1733
  28792. }
  28793. },
  28794. hand: {
  28795. height: math.unit(0.75, "feet"),
  28796. name: "Hand",
  28797. image: {
  28798. source: "./media/characters/lira/hand.svg"
  28799. }
  28800. },
  28801. maw: {
  28802. height: math.unit(0.65, "feet"),
  28803. name: "Maw",
  28804. image: {
  28805. source: "./media/characters/lira/maw.svg"
  28806. }
  28807. },
  28808. pawDigi: {
  28809. height: math.unit(1.6, "feet"),
  28810. name: "Paw Digi",
  28811. image: {
  28812. source: "./media/characters/lira/paw-digi.svg"
  28813. }
  28814. },
  28815. pawPlanti: {
  28816. height: math.unit(1.4, "feet"),
  28817. name: "Paw Planti",
  28818. image: {
  28819. source: "./media/characters/lira/paw-planti.svg"
  28820. }
  28821. },
  28822. },
  28823. [
  28824. {
  28825. name: "Normal",
  28826. height: math.unit(6 + 2 / 12, "feet"),
  28827. default: true
  28828. },
  28829. {
  28830. name: "Macro",
  28831. height: math.unit(100, "feet")
  28832. },
  28833. {
  28834. name: "Macro²",
  28835. height: math.unit(1600, "feet")
  28836. },
  28837. {
  28838. name: "Planetary",
  28839. height: math.unit(20, "earths")
  28840. },
  28841. ]
  28842. ))
  28843. characterMakers.push(() => makeCharacter(
  28844. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28845. {
  28846. front: {
  28847. height: math.unit(6, "feet"),
  28848. weight: math.unit(150, "lb"),
  28849. name: "Front",
  28850. image: {
  28851. source: "./media/characters/hadjet/front.svg",
  28852. extra: 1480 / 1346,
  28853. bottom: 26 / 1506
  28854. }
  28855. },
  28856. frontNsfw: {
  28857. height: math.unit(6, "feet"),
  28858. weight: math.unit(150, "lb"),
  28859. name: "Front (NSFW)",
  28860. image: {
  28861. source: "./media/characters/hadjet/front-nsfw.svg",
  28862. extra: 1440 / 1358,
  28863. bottom: 52 / 1492
  28864. }
  28865. },
  28866. },
  28867. [
  28868. {
  28869. name: "Macro",
  28870. height: math.unit(10, "stories"),
  28871. default: true
  28872. },
  28873. {
  28874. name: "Megamacro",
  28875. height: math.unit(1.5, "miles")
  28876. },
  28877. {
  28878. name: "Megamacro+",
  28879. height: math.unit(5, "miles")
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28885. {
  28886. side: {
  28887. height: math.unit(106, "feet"),
  28888. weight: math.unit(500, "tonnes"),
  28889. name: "Side",
  28890. image: {
  28891. source: "./media/characters/kodran/side.svg",
  28892. extra: 553 / 480,
  28893. bottom: 33 / 586
  28894. }
  28895. },
  28896. front: {
  28897. height: math.unit(132, "feet"),
  28898. weight: math.unit(500, "tonnes"),
  28899. name: "Front",
  28900. image: {
  28901. source: "./media/characters/kodran/front.svg",
  28902. extra: 667 / 643,
  28903. bottom: 42 / 709
  28904. }
  28905. },
  28906. flying: {
  28907. height: math.unit(350, "feet"),
  28908. weight: math.unit(500, "tonnes"),
  28909. name: "Flying",
  28910. image: {
  28911. source: "./media/characters/kodran/flying.svg"
  28912. }
  28913. },
  28914. foot: {
  28915. height: math.unit(33, "feet"),
  28916. name: "Foot",
  28917. image: {
  28918. source: "./media/characters/kodran/foot.svg"
  28919. }
  28920. },
  28921. footFront: {
  28922. height: math.unit(19, "feet"),
  28923. name: "Foot (Front)",
  28924. image: {
  28925. source: "./media/characters/kodran/foot-front.svg",
  28926. extra: 261 / 261,
  28927. bottom: 91 / 352
  28928. }
  28929. },
  28930. headFront: {
  28931. height: math.unit(53, "feet"),
  28932. name: "Head (Front)",
  28933. image: {
  28934. source: "./media/characters/kodran/head-front.svg"
  28935. }
  28936. },
  28937. headSide: {
  28938. height: math.unit(65, "feet"),
  28939. name: "Head (Side)",
  28940. image: {
  28941. source: "./media/characters/kodran/head-side.svg"
  28942. }
  28943. },
  28944. throat: {
  28945. height: math.unit(79, "feet"),
  28946. name: "Throat",
  28947. image: {
  28948. source: "./media/characters/kodran/throat.svg"
  28949. }
  28950. },
  28951. },
  28952. [
  28953. {
  28954. name: "Large",
  28955. height: math.unit(106, "feet"),
  28956. default: true
  28957. },
  28958. ]
  28959. ))
  28960. characterMakers.push(() => makeCharacter(
  28961. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28962. {
  28963. side: {
  28964. height: math.unit(11, "feet"),
  28965. weight: math.unit(150, "lb"),
  28966. name: "Side",
  28967. image: {
  28968. source: "./media/characters/pyxaron/side.svg",
  28969. extra: 305 / 195,
  28970. bottom: 17 / 322
  28971. }
  28972. },
  28973. },
  28974. [
  28975. {
  28976. name: "Normal",
  28977. height: math.unit(11, "feet"),
  28978. default: true
  28979. },
  28980. ]
  28981. ))
  28982. characterMakers.push(() => makeCharacter(
  28983. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28984. {
  28985. front: {
  28986. height: math.unit(6, "feet"),
  28987. weight: math.unit(150, "lb"),
  28988. name: "Front",
  28989. image: {
  28990. source: "./media/characters/meep/front.svg",
  28991. extra: 88 / 80,
  28992. bottom: 6 / 94
  28993. }
  28994. },
  28995. },
  28996. [
  28997. {
  28998. name: "Fun Sized",
  28999. height: math.unit(2, "inches"),
  29000. default: true
  29001. },
  29002. {
  29003. name: "Friend Sized",
  29004. height: math.unit(8, "inches")
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(15, "feet"),
  29013. weight: math.unit(2500, "lb"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/holly-rabbit/front.svg",
  29017. extra: 1433 / 1233,
  29018. bottom: 125 / 1558
  29019. }
  29020. },
  29021. dick: {
  29022. height: math.unit(4.6, "feet"),
  29023. name: "Dick",
  29024. image: {
  29025. source: "./media/characters/holly-rabbit/dick.svg"
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Normal",
  29032. height: math.unit(15, "feet"),
  29033. default: true
  29034. },
  29035. {
  29036. name: "Macro",
  29037. height: math.unit(250, "feet")
  29038. },
  29039. {
  29040. name: "Macro+",
  29041. height: math.unit(2500, "feet")
  29042. },
  29043. ]
  29044. ))
  29045. characterMakers.push(() => makeCharacter(
  29046. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29047. {
  29048. front: {
  29049. height: math.unit(3.02, "meters"),
  29050. weight: math.unit(500, "kg"),
  29051. name: "Front",
  29052. image: {
  29053. source: "./media/characters/drena/front.svg",
  29054. extra: 282 / 243,
  29055. bottom: 8 / 290
  29056. }
  29057. },
  29058. side: {
  29059. height: math.unit(3.02, "meters"),
  29060. weight: math.unit(500, "kg"),
  29061. name: "Side",
  29062. image: {
  29063. source: "./media/characters/drena/side.svg",
  29064. extra: 280 / 245,
  29065. bottom: 10 / 290
  29066. }
  29067. },
  29068. back: {
  29069. height: math.unit(3.02, "meters"),
  29070. weight: math.unit(500, "kg"),
  29071. name: "Back",
  29072. image: {
  29073. source: "./media/characters/drena/back.svg",
  29074. extra: 278 / 243,
  29075. bottom: 2 / 280
  29076. }
  29077. },
  29078. foot: {
  29079. height: math.unit(0.75, "meters"),
  29080. name: "Foot",
  29081. image: {
  29082. source: "./media/characters/drena/foot.svg"
  29083. }
  29084. },
  29085. maw: {
  29086. height: math.unit(0.82, "meters"),
  29087. name: "Maw",
  29088. image: {
  29089. source: "./media/characters/drena/maw.svg"
  29090. }
  29091. },
  29092. rump: {
  29093. height: math.unit(0.93, "meters"),
  29094. name: "Rump",
  29095. image: {
  29096. source: "./media/characters/drena/rump.svg"
  29097. }
  29098. },
  29099. },
  29100. [
  29101. {
  29102. name: "Normal",
  29103. height: math.unit(3.02, "meters"),
  29104. default: true
  29105. },
  29106. ]
  29107. ))
  29108. characterMakers.push(() => makeCharacter(
  29109. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29110. {
  29111. front: {
  29112. height: math.unit(6 + 4 / 12, "feet"),
  29113. weight: math.unit(250, "lb"),
  29114. name: "Front",
  29115. image: {
  29116. source: "./media/characters/remmyzilla/front.svg",
  29117. extra: 4033 / 3588,
  29118. bottom: 123 / 4156
  29119. }
  29120. },
  29121. back: {
  29122. height: math.unit(6 + 4 / 12, "feet"),
  29123. weight: math.unit(250, "lb"),
  29124. name: "Back",
  29125. image: {
  29126. source: "./media/characters/remmyzilla/back.svg",
  29127. extra: 2687 / 2555,
  29128. bottom: 48 / 2735
  29129. }
  29130. },
  29131. paw: {
  29132. height: math.unit(1.73, "feet"),
  29133. name: "Paw",
  29134. image: {
  29135. source: "./media/characters/remmyzilla/paw.svg"
  29136. }
  29137. },
  29138. maw: {
  29139. height: math.unit(1.73, "feet"),
  29140. name: "Maw",
  29141. image: {
  29142. source: "./media/characters/remmyzilla/maw.svg"
  29143. }
  29144. },
  29145. },
  29146. [
  29147. {
  29148. name: "Normal",
  29149. height: math.unit(6 + 4 / 12, "feet")
  29150. },
  29151. {
  29152. name: "Minimacro",
  29153. height: math.unit(12 + 8 / 12, "feet")
  29154. },
  29155. {
  29156. name: "Normal",
  29157. height: math.unit(640, "feet"),
  29158. default: true
  29159. },
  29160. {
  29161. name: "Megamacro",
  29162. height: math.unit(6400, "feet")
  29163. },
  29164. {
  29165. name: "Gigamacro",
  29166. height: math.unit(64000, "miles")
  29167. },
  29168. ]
  29169. ))
  29170. characterMakers.push(() => makeCharacter(
  29171. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29172. {
  29173. front: {
  29174. height: math.unit(2.5, "meters"),
  29175. weight: math.unit(300, "lb"),
  29176. name: "Front",
  29177. image: {
  29178. source: "./media/characters/lawrence/front.svg",
  29179. extra: 357 / 335,
  29180. bottom: 30 / 387
  29181. }
  29182. },
  29183. back: {
  29184. height: math.unit(2.5, "meters"),
  29185. weight: math.unit(300, "lb"),
  29186. name: "Back",
  29187. image: {
  29188. source: "./media/characters/lawrence/back.svg",
  29189. extra: 357 / 338,
  29190. bottom: 16 / 373
  29191. }
  29192. },
  29193. head: {
  29194. height: math.unit(0.9, "meter"),
  29195. name: "Head",
  29196. image: {
  29197. source: "./media/characters/lawrence/head.svg"
  29198. }
  29199. },
  29200. maw: {
  29201. height: math.unit(0.7, "meter"),
  29202. name: "Maw",
  29203. image: {
  29204. source: "./media/characters/lawrence/maw.svg"
  29205. }
  29206. },
  29207. footBottom: {
  29208. height: math.unit(0.5, "meter"),
  29209. name: "Foot (Bottom)",
  29210. image: {
  29211. source: "./media/characters/lawrence/foot-bottom.svg"
  29212. }
  29213. },
  29214. footTop: {
  29215. height: math.unit(0.5, "meter"),
  29216. name: "Foot (Top)",
  29217. image: {
  29218. source: "./media/characters/lawrence/foot-top.svg"
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Normal",
  29225. height: math.unit(2.5, "meters"),
  29226. default: true
  29227. },
  29228. {
  29229. name: "Macro",
  29230. height: math.unit(95, "meters")
  29231. },
  29232. {
  29233. name: "Megamacro",
  29234. height: math.unit(150, "km")
  29235. },
  29236. ]
  29237. ))
  29238. characterMakers.push(() => makeCharacter(
  29239. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29240. {
  29241. front: {
  29242. height: math.unit(4.2, "meters"),
  29243. name: "Front",
  29244. image: {
  29245. source: "./media/characters/sydney/front.svg",
  29246. extra: 1323 / 1277,
  29247. bottom: 111 / 1434
  29248. }
  29249. },
  29250. },
  29251. [
  29252. {
  29253. name: "Normal",
  29254. height: math.unit(4.2, "meters"),
  29255. default: true
  29256. },
  29257. ]
  29258. ))
  29259. characterMakers.push(() => makeCharacter(
  29260. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29261. {
  29262. back: {
  29263. height: math.unit(201, "feet"),
  29264. name: "Back",
  29265. image: {
  29266. source: "./media/characters/jessica/back.svg",
  29267. extra: 273 / 259,
  29268. bottom: 7 / 280
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Normal",
  29275. height: math.unit(201, "feet"),
  29276. default: true
  29277. },
  29278. {
  29279. name: "Megamacro",
  29280. height: math.unit(8, "miles")
  29281. },
  29282. ]
  29283. ))
  29284. characterMakers.push(() => makeCharacter(
  29285. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29286. {
  29287. side: {
  29288. height: math.unit(5.6, "m"),
  29289. weight: math.unit(8000, "kg"),
  29290. name: "Side",
  29291. image: {
  29292. source: "./media/characters/victoria/side.svg",
  29293. extra: 1542/1229,
  29294. bottom: 124/1666
  29295. }
  29296. },
  29297. maw: {
  29298. height: math.unit(7.14, "feet"),
  29299. name: "Maw",
  29300. image: {
  29301. source: "./media/characters/victoria/maw.svg"
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(5.6, "m"),
  29309. default: true
  29310. },
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29315. {
  29316. front: {
  29317. height: math.unit(5 + 6 / 12, "feet"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/cat/front.svg",
  29321. extra: 1449/1295,
  29322. bottom: 34/1483
  29323. },
  29324. form: "cat",
  29325. default: true
  29326. },
  29327. back: {
  29328. height: math.unit(5 + 6 / 12, "feet"),
  29329. name: "Back",
  29330. image: {
  29331. source: "./media/characters/cat/back.svg",
  29332. extra: 1466/1301,
  29333. bottom: 19/1485
  29334. },
  29335. form: "cat"
  29336. },
  29337. taur: {
  29338. height: math.unit(7, "feet"),
  29339. name: "Taur",
  29340. image: {
  29341. source: "./media/characters/cat/taur.svg",
  29342. extra: 1389/1233,
  29343. bottom: 83/1472
  29344. },
  29345. form: "taur",
  29346. default: true
  29347. },
  29348. lucarioFront: {
  29349. height: math.unit(4, "feet"),
  29350. name: "Lucario (Front)",
  29351. image: {
  29352. source: "./media/characters/cat/lucario-front.svg",
  29353. extra: 1149/1019,
  29354. bottom: 84/1233
  29355. },
  29356. form: "lucario",
  29357. default: true
  29358. },
  29359. lucarioBack: {
  29360. height: math.unit(4, "feet"),
  29361. name: "Lucario (Back)",
  29362. image: {
  29363. source: "./media/characters/cat/lucario-back.svg",
  29364. extra: 1190/1059,
  29365. bottom: 33/1223
  29366. },
  29367. form: "lucario"
  29368. },
  29369. megaLucario: {
  29370. height: math.unit(4, "feet"),
  29371. name: "Mega Lucario",
  29372. image: {
  29373. source: "./media/characters/cat/mega-lucario.svg",
  29374. extra: 1515 / 1319,
  29375. bottom: 63 / 1578
  29376. },
  29377. form: "lucario"
  29378. },
  29379. nickit: {
  29380. height: math.unit(2, "feet"),
  29381. name: "Nickit",
  29382. image: {
  29383. source: "./media/characters/cat/nickit.svg",
  29384. extra: 1980 / 1585,
  29385. bottom: 102 / 2082
  29386. },
  29387. form: "nickit",
  29388. default: true
  29389. },
  29390. lopunnyFront: {
  29391. height: math.unit(5, "feet"),
  29392. name: "Lopunny (Front)",
  29393. image: {
  29394. source: "./media/characters/cat/lopunny-front.svg",
  29395. extra: 1782 / 1469,
  29396. bottom: 38 / 1820
  29397. },
  29398. form: "lopunny",
  29399. default: true
  29400. },
  29401. lopunnyBack: {
  29402. height: math.unit(5, "feet"),
  29403. name: "Lopunny (Back)",
  29404. image: {
  29405. source: "./media/characters/cat/lopunny-back.svg",
  29406. extra: 1660 / 1490,
  29407. bottom: 25 / 1685
  29408. },
  29409. form: "lopunny"
  29410. },
  29411. },
  29412. [
  29413. {
  29414. name: "Really small",
  29415. height: math.unit(1, "nm")
  29416. },
  29417. {
  29418. name: "Micro",
  29419. height: math.unit(5, "inches")
  29420. },
  29421. {
  29422. name: "Normal",
  29423. height: math.unit(5 + 6 / 12, "feet"),
  29424. default: true
  29425. },
  29426. {
  29427. name: "Macro",
  29428. height: math.unit(50, "feet")
  29429. },
  29430. {
  29431. name: "Macro+",
  29432. height: math.unit(150, "feet")
  29433. },
  29434. {
  29435. name: "Megamacro",
  29436. height: math.unit(100, "miles")
  29437. },
  29438. ]
  29439. ))
  29440. characterMakers.push(() => makeCharacter(
  29441. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29442. {
  29443. front: {
  29444. height: math.unit(63.4, "meters"),
  29445. weight: math.unit(3.28349e+6, "kilograms"),
  29446. name: "Front",
  29447. image: {
  29448. source: "./media/characters/kirina-violet/front.svg",
  29449. extra: 2812 / 2725,
  29450. bottom: 0 / 2812
  29451. }
  29452. },
  29453. back: {
  29454. height: math.unit(63.4, "meters"),
  29455. weight: math.unit(3.28349e+6, "kilograms"),
  29456. name: "Back",
  29457. image: {
  29458. source: "./media/characters/kirina-violet/back.svg",
  29459. extra: 2812 / 2725,
  29460. bottom: 0 / 2812
  29461. }
  29462. },
  29463. mouth: {
  29464. height: math.unit(4.35, "meters"),
  29465. name: "Mouth",
  29466. image: {
  29467. source: "./media/characters/kirina-violet/mouth.svg"
  29468. }
  29469. },
  29470. paw: {
  29471. height: math.unit(5.6, "meters"),
  29472. name: "Paw",
  29473. image: {
  29474. source: "./media/characters/kirina-violet/paw.svg"
  29475. }
  29476. },
  29477. tail: {
  29478. height: math.unit(18, "meters"),
  29479. name: "Tail",
  29480. image: {
  29481. source: "./media/characters/kirina-violet/tail.svg"
  29482. }
  29483. },
  29484. },
  29485. [
  29486. {
  29487. name: "Macro",
  29488. height: math.unit(63.4, "meters"),
  29489. default: true
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(75, "feet"),
  29498. name: "Front",
  29499. image: {
  29500. source: "./media/characters/cat-gigachu/front.svg",
  29501. extra: 1239/1027,
  29502. bottom: 32/1271
  29503. }
  29504. },
  29505. back: {
  29506. height: math.unit(75, "feet"),
  29507. name: "Back",
  29508. image: {
  29509. source: "./media/characters/cat-gigachu/back.svg",
  29510. extra: 1229/1030,
  29511. bottom: 9/1238
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Dynamax",
  29518. height: math.unit(75, "feet"),
  29519. default: true
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29525. {
  29526. front: {
  29527. height: math.unit(6, "feet"),
  29528. weight: math.unit(150, "lb"),
  29529. name: "Front",
  29530. image: {
  29531. source: "./media/characters/sfaiyan/front.svg",
  29532. extra: 999 / 978,
  29533. bottom: 5 / 1004
  29534. }
  29535. },
  29536. },
  29537. [
  29538. {
  29539. name: "Normal",
  29540. height: math.unit(1.82, "meters")
  29541. },
  29542. {
  29543. name: "Giant",
  29544. height: math.unit(2.27, "km"),
  29545. default: true
  29546. },
  29547. ]
  29548. ))
  29549. characterMakers.push(() => makeCharacter(
  29550. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29551. {
  29552. front: {
  29553. height: math.unit(179, "cm"),
  29554. weight: math.unit(100, "kg"),
  29555. name: "Front",
  29556. image: {
  29557. source: "./media/characters/raunehkeli/front.svg",
  29558. extra: 1934 / 1926,
  29559. bottom: 0 / 1934
  29560. }
  29561. },
  29562. },
  29563. [
  29564. {
  29565. name: "Normal",
  29566. height: math.unit(179, "cm")
  29567. },
  29568. {
  29569. name: "Maximum",
  29570. height: math.unit(575, "meters"),
  29571. default: true
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29577. {
  29578. front: {
  29579. height: math.unit(6, "feet"),
  29580. weight: math.unit(150, "lb"),
  29581. name: "Front",
  29582. image: {
  29583. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29584. extra: 2625 / 2518,
  29585. bottom: 60 / 2685
  29586. }
  29587. },
  29588. },
  29589. [
  29590. {
  29591. name: "Normal",
  29592. height: math.unit(6 + 2 / 12, "feet")
  29593. },
  29594. {
  29595. name: "Macro",
  29596. height: math.unit(1180, "feet"),
  29597. default: true
  29598. },
  29599. ]
  29600. ))
  29601. characterMakers.push(() => makeCharacter(
  29602. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29603. {
  29604. front: {
  29605. height: math.unit(5 + 6 / 12, "feet"),
  29606. weight: math.unit(108, "lb"),
  29607. name: "Front",
  29608. image: {
  29609. source: "./media/characters/lilith-zott/front.svg",
  29610. extra: 2510 / 2238,
  29611. bottom: 100 / 2610
  29612. }
  29613. },
  29614. frontDressed: {
  29615. height: math.unit(5 + 6 / 12, "feet"),
  29616. weight: math.unit(108, "lb"),
  29617. name: "Front (Dressed)",
  29618. image: {
  29619. source: "./media/characters/lilith-zott/front-dressed.svg",
  29620. extra: 2510 / 2238,
  29621. bottom: 100 / 2610
  29622. }
  29623. },
  29624. },
  29625. [
  29626. {
  29627. name: "Normal",
  29628. height: math.unit(5 + 6 / 12, "feet")
  29629. },
  29630. {
  29631. name: "Macro",
  29632. height: math.unit(1030, "feet"),
  29633. default: true
  29634. },
  29635. ]
  29636. ))
  29637. characterMakers.push(() => makeCharacter(
  29638. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29639. {
  29640. front: {
  29641. height: math.unit(6, "feet"),
  29642. weight: math.unit(150, "lb"),
  29643. name: "Front",
  29644. image: {
  29645. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29646. extra: 2567 / 2435,
  29647. bottom: 39 / 2606
  29648. }
  29649. },
  29650. frontSuper: {
  29651. height: math.unit(6, "feet"),
  29652. name: "Front (Super)",
  29653. image: {
  29654. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29655. extra: 2567 / 2435,
  29656. bottom: 39 / 2606
  29657. }
  29658. },
  29659. },
  29660. [
  29661. {
  29662. name: "Normal",
  29663. height: math.unit(5 + 10 / 12, "feet")
  29664. },
  29665. {
  29666. name: "Macro",
  29667. height: math.unit(1100, "feet"),
  29668. default: true
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29674. {
  29675. front: {
  29676. height: math.unit(100, "miles"),
  29677. name: "Front",
  29678. image: {
  29679. source: "./media/characters/sona/front.svg",
  29680. extra: 2433 / 2201,
  29681. bottom: 53 / 2486
  29682. }
  29683. },
  29684. foot: {
  29685. height: math.unit(16.1, "miles"),
  29686. name: "Foot",
  29687. image: {
  29688. source: "./media/characters/sona/foot.svg"
  29689. }
  29690. },
  29691. },
  29692. [
  29693. {
  29694. name: "Macro",
  29695. height: math.unit(100, "miles"),
  29696. default: true
  29697. },
  29698. ]
  29699. ))
  29700. characterMakers.push(() => makeCharacter(
  29701. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29702. {
  29703. front: {
  29704. height: math.unit(6, "feet"),
  29705. weight: math.unit(150, "lb"),
  29706. name: "Front",
  29707. image: {
  29708. source: "./media/characters/bailey/front.svg",
  29709. extra: 1778 / 1724,
  29710. bottom: 30 / 1808
  29711. }
  29712. },
  29713. },
  29714. [
  29715. {
  29716. name: "Micro",
  29717. height: math.unit(4, "inches")
  29718. },
  29719. {
  29720. name: "Normal",
  29721. height: math.unit(5 + 5 / 12, "feet"),
  29722. default: true
  29723. },
  29724. {
  29725. name: "Macro",
  29726. height: math.unit(250, "feet")
  29727. },
  29728. {
  29729. name: "Megamacro",
  29730. height: math.unit(100, "miles")
  29731. },
  29732. ]
  29733. ))
  29734. characterMakers.push(() => makeCharacter(
  29735. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29736. {
  29737. front: {
  29738. height: math.unit(5 + 2 / 12, "feet"),
  29739. weight: math.unit(120, "lb"),
  29740. name: "Front",
  29741. image: {
  29742. source: "./media/characters/snaps/front.svg",
  29743. extra: 2370 / 2177,
  29744. bottom: 48 / 2418
  29745. }
  29746. },
  29747. back: {
  29748. height: math.unit(5 + 2 / 12, "feet"),
  29749. weight: math.unit(120, "lb"),
  29750. name: "Back",
  29751. image: {
  29752. source: "./media/characters/snaps/back.svg",
  29753. extra: 2408 / 2258,
  29754. bottom: 15 / 2423
  29755. }
  29756. },
  29757. },
  29758. [
  29759. {
  29760. name: "Micro",
  29761. height: math.unit(9, "inches")
  29762. },
  29763. {
  29764. name: "Normal",
  29765. height: math.unit(5 + 2 / 12, "feet"),
  29766. default: true
  29767. },
  29768. {
  29769. name: "Mini Macro",
  29770. height: math.unit(10, "feet")
  29771. },
  29772. ]
  29773. ))
  29774. characterMakers.push(() => makeCharacter(
  29775. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29776. {
  29777. front: {
  29778. height: math.unit(1.8, "meters"),
  29779. weight: math.unit(85, "kg"),
  29780. name: "Front",
  29781. image: {
  29782. source: "./media/characters/azteck/front.svg",
  29783. extra: 2815 / 2625,
  29784. bottom: 89 / 2904
  29785. }
  29786. },
  29787. back: {
  29788. height: math.unit(1.8, "meters"),
  29789. weight: math.unit(85, "kg"),
  29790. name: "Back",
  29791. image: {
  29792. source: "./media/characters/azteck/back.svg",
  29793. extra: 2856 / 2648,
  29794. bottom: 85 / 2941
  29795. }
  29796. },
  29797. frontDressed: {
  29798. height: math.unit(1.8, "meters"),
  29799. weight: math.unit(85, "kg"),
  29800. name: "Front (Dressed)",
  29801. image: {
  29802. source: "./media/characters/azteck/front-dressed.svg",
  29803. extra: 2147 / 2003,
  29804. bottom: 68 / 2215
  29805. }
  29806. },
  29807. head: {
  29808. height: math.unit(0.47, "meters"),
  29809. weight: math.unit(85, "kg"),
  29810. name: "Head",
  29811. image: {
  29812. source: "./media/characters/azteck/head.svg"
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Bite sized",
  29819. height: math.unit(16, "cm")
  29820. },
  29821. {
  29822. name: "Normal",
  29823. height: math.unit(1.8, "meters"),
  29824. default: true
  29825. },
  29826. ]
  29827. ))
  29828. characterMakers.push(() => makeCharacter(
  29829. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29830. {
  29831. front: {
  29832. height: math.unit(6, "feet"),
  29833. weight: math.unit(150, "lb"),
  29834. name: "Front",
  29835. image: {
  29836. source: "./media/characters/pidge/front.svg",
  29837. extra: 620 / 588,
  29838. bottom: 9 / 629
  29839. }
  29840. },
  29841. back: {
  29842. height: math.unit(6, "feet"),
  29843. weight: math.unit(150, "lb"),
  29844. name: "Back",
  29845. image: {
  29846. source: "./media/characters/pidge/back.svg",
  29847. extra: 620 / 588,
  29848. bottom: 9 / 629
  29849. }
  29850. },
  29851. },
  29852. [
  29853. {
  29854. name: "Macro",
  29855. height: math.unit(1, "mile"),
  29856. default: true
  29857. },
  29858. ]
  29859. ))
  29860. characterMakers.push(() => makeCharacter(
  29861. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29862. {
  29863. front: {
  29864. height: math.unit(6, "feet"),
  29865. weight: math.unit(150, "lb"),
  29866. name: "Front",
  29867. image: {
  29868. source: "./media/characters/en/front.svg",
  29869. extra: 1697 / 1563,
  29870. bottom: 103 / 1800
  29871. }
  29872. },
  29873. back: {
  29874. height: math.unit(6, "feet"),
  29875. weight: math.unit(150, "lb"),
  29876. name: "Back",
  29877. image: {
  29878. source: "./media/characters/en/back.svg",
  29879. extra: 1700 / 1570,
  29880. bottom: 51 / 1751
  29881. }
  29882. },
  29883. frontDressed: {
  29884. height: math.unit(6, "feet"),
  29885. weight: math.unit(150, "lb"),
  29886. name: "Front (Dressed)",
  29887. image: {
  29888. source: "./media/characters/en/front-dressed.svg",
  29889. extra: 1697 / 1563,
  29890. bottom: 103 / 1800
  29891. }
  29892. },
  29893. backDressed: {
  29894. height: math.unit(6, "feet"),
  29895. weight: math.unit(150, "lb"),
  29896. name: "Back (Dressed)",
  29897. image: {
  29898. source: "./media/characters/en/back-dressed.svg",
  29899. extra: 1700 / 1570,
  29900. bottom: 51 / 1751
  29901. }
  29902. },
  29903. },
  29904. [
  29905. {
  29906. name: "Macro",
  29907. height: math.unit(210, "feet"),
  29908. default: true
  29909. },
  29910. ]
  29911. ))
  29912. characterMakers.push(() => makeCharacter(
  29913. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29914. {
  29915. front: {
  29916. height: math.unit(6, "feet"),
  29917. weight: math.unit(150, "lb"),
  29918. name: "Front",
  29919. image: {
  29920. source: "./media/characters/haze-orris/front.svg",
  29921. extra: 3975 / 3525,
  29922. bottom: 137 / 4112
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Micro",
  29929. height: math.unit(150, "mm"),
  29930. default: true
  29931. },
  29932. ]
  29933. ))
  29934. characterMakers.push(() => makeCharacter(
  29935. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29936. {
  29937. front: {
  29938. height: math.unit(6, "feet"),
  29939. weight: math.unit(150, "lb"),
  29940. name: "Front",
  29941. image: {
  29942. source: "./media/characters/casselene-yaro/front.svg",
  29943. extra: 4721 / 4541,
  29944. bottom: 82 / 4803
  29945. }
  29946. },
  29947. back: {
  29948. height: math.unit(6, "feet"),
  29949. weight: math.unit(150, "lb"),
  29950. name: "Back",
  29951. image: {
  29952. source: "./media/characters/casselene-yaro/back.svg",
  29953. extra: 4569 / 4377,
  29954. bottom: 69 / 4638
  29955. }
  29956. },
  29957. frontDressed: {
  29958. height: math.unit(6, "feet"),
  29959. weight: math.unit(150, "lb"),
  29960. name: "Front-dressed",
  29961. image: {
  29962. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29963. extra: 4721 / 4541,
  29964. bottom: 82 / 4803
  29965. }
  29966. },
  29967. },
  29968. [
  29969. {
  29970. name: "Macro",
  29971. height: math.unit(190, "feet"),
  29972. default: true
  29973. },
  29974. ]
  29975. ))
  29976. characterMakers.push(() => makeCharacter(
  29977. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29978. {
  29979. front: {
  29980. height: math.unit(6, "feet"),
  29981. weight: math.unit(150, "lb"),
  29982. name: "Front",
  29983. image: {
  29984. source: "./media/characters/myra-rue-delore/front.svg",
  29985. extra: 1340 / 1308,
  29986. bottom: 67 / 1407
  29987. }
  29988. },
  29989. back: {
  29990. height: math.unit(6, "feet"),
  29991. weight: math.unit(150, "lb"),
  29992. name: "Back",
  29993. image: {
  29994. source: "./media/characters/myra-rue-delore/back.svg",
  29995. extra: 1341 / 1310,
  29996. bottom: 40 / 1381
  29997. }
  29998. },
  29999. frontDressed: {
  30000. height: math.unit(6, "feet"),
  30001. weight: math.unit(150, "lb"),
  30002. name: "Front (Dressed)",
  30003. image: {
  30004. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30005. extra: 1340 / 1308,
  30006. bottom: 67 / 1407
  30007. }
  30008. },
  30009. },
  30010. [
  30011. {
  30012. name: "Macro",
  30013. height: math.unit(150, "feet"),
  30014. default: true
  30015. },
  30016. ]
  30017. ))
  30018. characterMakers.push(() => makeCharacter(
  30019. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30020. {
  30021. front: {
  30022. height: math.unit(10, "feet"),
  30023. weight: math.unit(15015, "lb"),
  30024. name: "Front",
  30025. image: {
  30026. source: "./media/characters/fem!plat/front.svg",
  30027. extra: 2799 / 2604,
  30028. bottom: 149 / 2948
  30029. }
  30030. },
  30031. },
  30032. [
  30033. {
  30034. name: "Normal",
  30035. height: math.unit(10, "feet"),
  30036. default: true
  30037. },
  30038. {
  30039. name: "Macro",
  30040. height: math.unit(100, "feet")
  30041. },
  30042. {
  30043. name: "Megamacro",
  30044. height: math.unit(1000, "feet")
  30045. },
  30046. ]
  30047. ))
  30048. characterMakers.push(() => makeCharacter(
  30049. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30050. {
  30051. front: {
  30052. height: math.unit(15 + 5 / 12, "feet"),
  30053. weight: math.unit(4600, "lb"),
  30054. name: "Front",
  30055. image: {
  30056. source: "./media/characters/neapolitan-ananassa/front.svg",
  30057. extra: 2903 / 2736,
  30058. bottom: 0 / 2903
  30059. }
  30060. },
  30061. side: {
  30062. height: math.unit(15 + 5 / 12, "feet"),
  30063. weight: math.unit(4600, "lb"),
  30064. name: "Side",
  30065. image: {
  30066. source: "./media/characters/neapolitan-ananassa/side.svg",
  30067. extra: 2925 / 2719,
  30068. bottom: 0 / 2925
  30069. }
  30070. },
  30071. back: {
  30072. height: math.unit(15 + 5 / 12, "feet"),
  30073. weight: math.unit(4600, "lb"),
  30074. name: "Back",
  30075. image: {
  30076. source: "./media/characters/neapolitan-ananassa/back.svg",
  30077. extra: 2903 / 2736,
  30078. bottom: 0 / 2903
  30079. }
  30080. },
  30081. },
  30082. [
  30083. {
  30084. name: "Normal",
  30085. height: math.unit(15 + 5 / 12, "feet"),
  30086. default: true
  30087. },
  30088. {
  30089. name: "Post-Millenium",
  30090. height: math.unit(35 + 5 / 12, "feet")
  30091. },
  30092. {
  30093. name: "Post-Era",
  30094. height: math.unit(450 + 5 / 12, "feet")
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(300, "meters"),
  30103. weight: math.unit(125000, "tonnes"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/pazuzu/front.svg",
  30107. extra: 877 / 794,
  30108. bottom: 47 / 924
  30109. }
  30110. },
  30111. },
  30112. [
  30113. {
  30114. name: "Macro",
  30115. height: math.unit(300, "meters"),
  30116. default: true
  30117. },
  30118. ]
  30119. ))
  30120. characterMakers.push(() => makeCharacter(
  30121. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30122. {
  30123. side: {
  30124. height: math.unit(10 + 7 / 12, "feet"),
  30125. weight: math.unit(2.5, "tons"),
  30126. name: "Side",
  30127. image: {
  30128. source: "./media/characters/aasha/side.svg",
  30129. extra: 1345 / 1245,
  30130. bottom: 111 / 1456
  30131. }
  30132. },
  30133. back: {
  30134. height: math.unit(10 + 7 / 12, "feet"),
  30135. weight: math.unit(2.5, "tons"),
  30136. name: "Back",
  30137. image: {
  30138. source: "./media/characters/aasha/back.svg",
  30139. extra: 1133 / 1057,
  30140. bottom: 257 / 1390
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Normal",
  30147. height: math.unit(10 + 7 / 12, "feet"),
  30148. default: true
  30149. },
  30150. ]
  30151. ))
  30152. characterMakers.push(() => makeCharacter(
  30153. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30154. {
  30155. front: {
  30156. height: math.unit(6 + 3 / 12, "feet"),
  30157. name: "Front",
  30158. image: {
  30159. source: "./media/characters/nevan/front.svg",
  30160. extra: 704 / 704,
  30161. bottom: 28 / 732
  30162. }
  30163. },
  30164. back: {
  30165. height: math.unit(6 + 3 / 12, "feet"),
  30166. name: "Back",
  30167. image: {
  30168. source: "./media/characters/nevan/back.svg",
  30169. extra: 714 / 714,
  30170. bottom: 21 / 735
  30171. }
  30172. },
  30173. frontFlaccid: {
  30174. height: math.unit(6 + 3 / 12, "feet"),
  30175. name: "Front (Flaccid)",
  30176. image: {
  30177. source: "./media/characters/nevan/front-flaccid.svg",
  30178. extra: 704 / 704,
  30179. bottom: 28 / 732
  30180. }
  30181. },
  30182. frontErect: {
  30183. height: math.unit(6 + 3 / 12, "feet"),
  30184. name: "Front (Erect)",
  30185. image: {
  30186. source: "./media/characters/nevan/front-erect.svg",
  30187. extra: 704 / 704,
  30188. bottom: 28 / 732
  30189. }
  30190. },
  30191. backFlaccid: {
  30192. height: math.unit(6 + 3 / 12, "feet"),
  30193. name: "Back (Flaccid)",
  30194. image: {
  30195. source: "./media/characters/nevan/back-flaccid.svg",
  30196. extra: 714 / 714,
  30197. bottom: 21 / 735
  30198. }
  30199. },
  30200. },
  30201. [
  30202. {
  30203. name: "Normal",
  30204. height: math.unit(6 + 3 / 12, "feet"),
  30205. default: true
  30206. },
  30207. ]
  30208. ))
  30209. characterMakers.push(() => makeCharacter(
  30210. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30211. {
  30212. front: {
  30213. height: math.unit(4, "feet"),
  30214. name: "Front",
  30215. image: {
  30216. source: "./media/characters/arhan/front.svg",
  30217. extra: 3368 / 3133,
  30218. bottom: 0 / 3368
  30219. }
  30220. },
  30221. side: {
  30222. height: math.unit(4, "feet"),
  30223. name: "Side",
  30224. image: {
  30225. source: "./media/characters/arhan/side.svg",
  30226. extra: 3347 / 3105,
  30227. bottom: 0 / 3347
  30228. }
  30229. },
  30230. tongue: {
  30231. height: math.unit(1.42, "feet"),
  30232. name: "Tongue",
  30233. image: {
  30234. source: "./media/characters/arhan/tongue.svg"
  30235. }
  30236. },
  30237. head: {
  30238. height: math.unit(0.85, "feet"),
  30239. name: "Head",
  30240. image: {
  30241. source: "./media/characters/arhan/head.svg"
  30242. }
  30243. },
  30244. },
  30245. [
  30246. {
  30247. name: "Normal",
  30248. height: math.unit(4, "feet"),
  30249. default: true
  30250. },
  30251. ]
  30252. ))
  30253. characterMakers.push(() => makeCharacter(
  30254. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30255. {
  30256. front: {
  30257. height: math.unit(5 + 7.5 / 12, "feet"),
  30258. weight: math.unit(120, "lb"),
  30259. name: "Front",
  30260. image: {
  30261. source: "./media/characters/digi-duncan/front.svg",
  30262. extra: 330 / 326,
  30263. bottom: 16 / 346
  30264. }
  30265. },
  30266. side: {
  30267. height: math.unit(5 + 7.5 / 12, "feet"),
  30268. weight: math.unit(120, "lb"),
  30269. name: "Side",
  30270. image: {
  30271. source: "./media/characters/digi-duncan/side.svg",
  30272. extra: 341 / 337,
  30273. bottom: 1 / 342
  30274. }
  30275. },
  30276. back: {
  30277. height: math.unit(5 + 7.5 / 12, "feet"),
  30278. weight: math.unit(120, "lb"),
  30279. name: "Back",
  30280. image: {
  30281. source: "./media/characters/digi-duncan/back.svg",
  30282. extra: 330 / 326,
  30283. bottom: 12 / 342
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Speck",
  30290. height: math.unit(0.25, "mm")
  30291. },
  30292. {
  30293. name: "Micro",
  30294. height: math.unit(5, "mm")
  30295. },
  30296. {
  30297. name: "Tiny",
  30298. height: math.unit(0.5, "inches"),
  30299. default: true
  30300. },
  30301. {
  30302. name: "Human",
  30303. height: math.unit(5 + 7.5 / 12, "feet")
  30304. },
  30305. {
  30306. name: "Minigiant",
  30307. height: math.unit(8 + 5.25, "feet")
  30308. },
  30309. {
  30310. name: "Giant",
  30311. height: math.unit(2000, "feet")
  30312. },
  30313. {
  30314. name: "Mega",
  30315. height: math.unit(371.1, "miles")
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30321. {
  30322. front: {
  30323. height: math.unit(2, "meters"),
  30324. weight: math.unit(350, "kg"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30328. extra: 898 / 838,
  30329. bottom: 9 / 907
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Micro",
  30336. height: math.unit(8, "meters")
  30337. },
  30338. {
  30339. name: "Normal",
  30340. height: math.unit(50, "meters"),
  30341. default: true
  30342. },
  30343. {
  30344. name: "Macro",
  30345. height: math.unit(500, "meters")
  30346. },
  30347. ]
  30348. ))
  30349. characterMakers.push(() => makeCharacter(
  30350. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30351. {
  30352. front: {
  30353. height: math.unit(6 + 6 / 12, "feet"),
  30354. name: "Front",
  30355. image: {
  30356. source: "./media/characters/khardesh/front.svg",
  30357. extra: 1788/1596,
  30358. bottom: 66/1854
  30359. }
  30360. },
  30361. back: {
  30362. height: math.unit(6 + 6 / 12, "feet"),
  30363. name: "Back",
  30364. image: {
  30365. source: "./media/characters/khardesh/back.svg",
  30366. extra: 1781/1584,
  30367. bottom: 68/1849
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Normal",
  30374. height: math.unit(6 + 6 / 12, "feet"),
  30375. default: true
  30376. },
  30377. {
  30378. name: "Normal+",
  30379. height: math.unit(4, "meters")
  30380. },
  30381. {
  30382. name: "Macro",
  30383. height: math.unit(50, "meters")
  30384. },
  30385. {
  30386. name: "Macro+",
  30387. height: math.unit(100, "meters")
  30388. },
  30389. {
  30390. name: "Megamacro",
  30391. height: math.unit(20, "km")
  30392. },
  30393. ]
  30394. ))
  30395. characterMakers.push(() => makeCharacter(
  30396. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30397. {
  30398. front: {
  30399. height: math.unit(6, "feet"),
  30400. weight: math.unit(150, "lb"),
  30401. name: "Front",
  30402. image: {
  30403. source: "./media/characters/kosho/front.svg",
  30404. extra: 1847 / 1847,
  30405. bottom: 86 / 1933
  30406. }
  30407. },
  30408. },
  30409. [
  30410. {
  30411. name: "Second-stage micro",
  30412. height: math.unit(0.5, "inches")
  30413. },
  30414. {
  30415. name: "First-stage micro",
  30416. height: math.unit(6, "inches")
  30417. },
  30418. {
  30419. name: "Normal",
  30420. height: math.unit(6, "feet"),
  30421. default: true
  30422. },
  30423. {
  30424. name: "First-stage macro",
  30425. height: math.unit(72, "feet")
  30426. },
  30427. {
  30428. name: "Second-stage macro",
  30429. height: math.unit(864, "feet")
  30430. },
  30431. ]
  30432. ))
  30433. characterMakers.push(() => makeCharacter(
  30434. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30435. {
  30436. normal: {
  30437. height: math.unit(4 + 6 / 12, "feet"),
  30438. name: "Normal",
  30439. image: {
  30440. source: "./media/characters/hydra/normal.svg",
  30441. extra: 2833 / 2634,
  30442. bottom: 68 / 2901
  30443. }
  30444. },
  30445. smol: {
  30446. height: math.unit(0.705, "inches"),
  30447. name: "Smol",
  30448. image: {
  30449. source: "./media/characters/hydra/smol.svg",
  30450. extra: 2715 / 2540,
  30451. bottom: 0 / 2715
  30452. }
  30453. },
  30454. },
  30455. [
  30456. {
  30457. name: "Normal",
  30458. height: math.unit(4 + 6 / 12, "feet"),
  30459. default: true
  30460. }
  30461. ]
  30462. ))
  30463. characterMakers.push(() => makeCharacter(
  30464. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30465. {
  30466. front: {
  30467. height: math.unit(0.6, "cm"),
  30468. name: "Front",
  30469. image: {
  30470. source: "./media/characters/daz/front.svg",
  30471. extra: 1682 / 1164,
  30472. bottom: 42 / 1724
  30473. }
  30474. },
  30475. },
  30476. [
  30477. {
  30478. name: "Normal",
  30479. height: math.unit(0.6, "cm"),
  30480. default: true
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(6, "feet"),
  30489. weight: math.unit(235, "lb"),
  30490. name: "Front",
  30491. image: {
  30492. source: "./media/characters/theo-pangolin/front.svg",
  30493. extra: 1996 / 1969,
  30494. bottom: 115 / 2111
  30495. }
  30496. },
  30497. back: {
  30498. height: math.unit(6, "feet"),
  30499. weight: math.unit(235, "lb"),
  30500. name: "Back",
  30501. image: {
  30502. source: "./media/characters/theo-pangolin/back.svg",
  30503. extra: 1979 / 1979,
  30504. bottom: 40 / 2019
  30505. }
  30506. },
  30507. feral: {
  30508. height: math.unit(2, "feet"),
  30509. weight: math.unit(30, "lb"),
  30510. name: "Feral",
  30511. image: {
  30512. source: "./media/characters/theo-pangolin/feral.svg",
  30513. extra: 803 / 791,
  30514. bottom: 181 / 984
  30515. }
  30516. },
  30517. footFive: {
  30518. height: math.unit(1.43, "feet"),
  30519. name: "Foot (Five Toes)",
  30520. image: {
  30521. source: "./media/characters/theo-pangolin/foot-five.svg"
  30522. }
  30523. },
  30524. footFour: {
  30525. height: math.unit(1.43, "feet"),
  30526. name: "Foot (Four Toes)",
  30527. image: {
  30528. source: "./media/characters/theo-pangolin/foot-four.svg"
  30529. }
  30530. },
  30531. handFour: {
  30532. height: math.unit(0.81, "feet"),
  30533. name: "Hand (Four Fingers)",
  30534. image: {
  30535. source: "./media/characters/theo-pangolin/hand-four.svg"
  30536. }
  30537. },
  30538. handThree: {
  30539. height: math.unit(0.81, "feet"),
  30540. name: "Hand (Three Fingers)",
  30541. image: {
  30542. source: "./media/characters/theo-pangolin/hand-three.svg"
  30543. }
  30544. },
  30545. headFront: {
  30546. height: math.unit(1.37, "feet"),
  30547. name: "Head (Front)",
  30548. image: {
  30549. source: "./media/characters/theo-pangolin/head-front.svg"
  30550. }
  30551. },
  30552. headSide: {
  30553. height: math.unit(1.43, "feet"),
  30554. name: "Head (Side)",
  30555. image: {
  30556. source: "./media/characters/theo-pangolin/head-side.svg"
  30557. }
  30558. },
  30559. tongue: {
  30560. height: math.unit(2.29, "feet"),
  30561. name: "Tongue",
  30562. image: {
  30563. source: "./media/characters/theo-pangolin/tongue.svg"
  30564. }
  30565. },
  30566. },
  30567. [
  30568. {
  30569. name: "Normal",
  30570. height: math.unit(6, "feet")
  30571. },
  30572. {
  30573. name: "Macro",
  30574. height: math.unit(400, "feet"),
  30575. default: true
  30576. },
  30577. ]
  30578. ))
  30579. characterMakers.push(() => makeCharacter(
  30580. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30581. {
  30582. front: {
  30583. height: math.unit(6, "inches"),
  30584. weight: math.unit(0.036, "kg"),
  30585. name: "Front",
  30586. image: {
  30587. source: "./media/characters/renée/front.svg",
  30588. extra: 900 / 886,
  30589. bottom: 8 / 908
  30590. }
  30591. },
  30592. },
  30593. [
  30594. {
  30595. name: "Nano",
  30596. height: math.unit(1, "nm")
  30597. },
  30598. {
  30599. name: "Micro",
  30600. height: math.unit(1, "mm")
  30601. },
  30602. {
  30603. name: "Normal",
  30604. height: math.unit(6, "inches")
  30605. },
  30606. {
  30607. name: "Macro",
  30608. height: math.unit(2000, "feet"),
  30609. default: true
  30610. },
  30611. {
  30612. name: "Megamacro",
  30613. height: math.unit(2, "km")
  30614. },
  30615. {
  30616. name: "Gigamacro",
  30617. height: math.unit(2000, "km")
  30618. },
  30619. {
  30620. name: "Teramacro",
  30621. height: math.unit(250000, "km")
  30622. },
  30623. ]
  30624. ))
  30625. characterMakers.push(() => makeCharacter(
  30626. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30627. {
  30628. front: {
  30629. height: math.unit(4, "meters"),
  30630. weight: math.unit(150, "kg"),
  30631. name: "Front",
  30632. image: {
  30633. source: "./media/characters/caledvwlch/front.svg",
  30634. extra: 1760 / 1551,
  30635. bottom: 28 / 1788
  30636. }
  30637. },
  30638. side: {
  30639. height: math.unit(4, "meters"),
  30640. weight: math.unit(150, "kg"),
  30641. name: "Side",
  30642. image: {
  30643. source: "./media/characters/caledvwlch/side.svg",
  30644. extra: 1605 / 1536,
  30645. bottom: 31 / 1636
  30646. }
  30647. },
  30648. back: {
  30649. height: math.unit(4, "meters"),
  30650. weight: math.unit(150, "kg"),
  30651. name: "Back",
  30652. image: {
  30653. source: "./media/characters/caledvwlch/back.svg",
  30654. extra: 1635 / 1565,
  30655. bottom: 27 / 1662
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "\"Incognito\"",
  30662. height: math.unit(4, "meters")
  30663. },
  30664. {
  30665. name: "Small rampage",
  30666. height: math.unit(600, "meters")
  30667. },
  30668. {
  30669. name: "Mega",
  30670. height: math.unit(30, "km")
  30671. },
  30672. {
  30673. name: "Home-size",
  30674. height: math.unit(50, "km"),
  30675. default: true
  30676. },
  30677. {
  30678. name: "Giga",
  30679. height: math.unit(300, "km")
  30680. },
  30681. {
  30682. name: "Lounging",
  30683. height: math.unit(11000, "km")
  30684. },
  30685. {
  30686. name: "Planet snacking",
  30687. height: math.unit(2000000, "km")
  30688. },
  30689. ]
  30690. ))
  30691. characterMakers.push(() => makeCharacter(
  30692. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30693. {
  30694. front: {
  30695. height: math.unit(6, "feet"),
  30696. weight: math.unit(215, "lb"),
  30697. name: "Front",
  30698. image: {
  30699. source: "./media/characters/sapphire-svell/front.svg",
  30700. extra: 495 / 455,
  30701. bottom: 20 / 515
  30702. }
  30703. },
  30704. back: {
  30705. height: math.unit(6, "feet"),
  30706. weight: math.unit(216, "lb"),
  30707. name: "Back",
  30708. image: {
  30709. source: "./media/characters/sapphire-svell/back.svg",
  30710. extra: 497 / 477,
  30711. bottom: 7 / 504
  30712. }
  30713. },
  30714. maw: {
  30715. height: math.unit(1.57, "feet"),
  30716. name: "Maw",
  30717. image: {
  30718. source: "./media/characters/sapphire-svell/maw.svg"
  30719. }
  30720. },
  30721. foot: {
  30722. height: math.unit(1.07, "feet"),
  30723. name: "Foot",
  30724. image: {
  30725. source: "./media/characters/sapphire-svell/foot.svg"
  30726. }
  30727. },
  30728. toering: {
  30729. height: math.unit(1.7, "inch"),
  30730. name: "Toering",
  30731. image: {
  30732. source: "./media/characters/sapphire-svell/toering.svg"
  30733. }
  30734. },
  30735. },
  30736. [
  30737. {
  30738. name: "Normal",
  30739. height: math.unit(300, "feet"),
  30740. default: true
  30741. },
  30742. {
  30743. name: "Augmented",
  30744. height: math.unit(1250, "feet")
  30745. },
  30746. {
  30747. name: "Unleashed",
  30748. height: math.unit(3000, "feet")
  30749. },
  30750. ]
  30751. ))
  30752. characterMakers.push(() => makeCharacter(
  30753. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30754. {
  30755. side: {
  30756. height: math.unit(2 + 3 / 12, "feet"),
  30757. weight: math.unit(110, "lb"),
  30758. name: "Side",
  30759. image: {
  30760. source: "./media/characters/glitch-flux/side.svg",
  30761. extra: 997 / 805,
  30762. bottom: 20 / 1017
  30763. }
  30764. },
  30765. },
  30766. [
  30767. {
  30768. name: "Normal",
  30769. height: math.unit(2 + 3 / 12, "feet"),
  30770. default: true
  30771. },
  30772. ]
  30773. ))
  30774. characterMakers.push(() => makeCharacter(
  30775. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30776. {
  30777. front: {
  30778. height: math.unit(4, "meters"),
  30779. name: "Front",
  30780. image: {
  30781. source: "./media/characters/mid/front.svg",
  30782. extra: 507 / 476,
  30783. bottom: 17 / 524
  30784. }
  30785. },
  30786. back: {
  30787. height: math.unit(4, "meters"),
  30788. name: "Back",
  30789. image: {
  30790. source: "./media/characters/mid/back.svg",
  30791. extra: 519 / 487,
  30792. bottom: 7 / 526
  30793. }
  30794. },
  30795. stuck: {
  30796. height: math.unit(2.2, "meters"),
  30797. name: "Stuck",
  30798. image: {
  30799. source: "./media/characters/mid/stuck.svg",
  30800. extra: 1951 / 1869,
  30801. bottom: 88 / 2039
  30802. }
  30803. }
  30804. },
  30805. [
  30806. {
  30807. name: "Normal",
  30808. height: math.unit(4, "meters"),
  30809. default: true
  30810. },
  30811. {
  30812. name: "Big",
  30813. height: math.unit(10, "meters")
  30814. },
  30815. {
  30816. name: "Macro",
  30817. height: math.unit(800, "meters")
  30818. },
  30819. {
  30820. name: "Megamacro",
  30821. height: math.unit(100, "km")
  30822. },
  30823. {
  30824. name: "Overgrown",
  30825. height: math.unit(1, "parsec")
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30831. {
  30832. front: {
  30833. height: math.unit(2.5, "meters"),
  30834. weight: math.unit(225, "kg"),
  30835. name: "Front",
  30836. image: {
  30837. source: "./media/characters/iris/front.svg",
  30838. extra: 3348 / 3251,
  30839. bottom: 205 / 3553
  30840. }
  30841. },
  30842. maw: {
  30843. height: math.unit(0.56, "meter"),
  30844. name: "Maw",
  30845. image: {
  30846. source: "./media/characters/iris/maw.svg"
  30847. }
  30848. },
  30849. },
  30850. [
  30851. {
  30852. name: "Mewter cat",
  30853. height: math.unit(1.2, "meters")
  30854. },
  30855. {
  30856. name: "Minimacro",
  30857. height: math.unit(2.5, "meters"),
  30858. default: true
  30859. },
  30860. {
  30861. name: "Macro",
  30862. height: math.unit(180, "meters")
  30863. },
  30864. {
  30865. name: "Megamacro",
  30866. height: math.unit(2746, "meters")
  30867. },
  30868. ]
  30869. ))
  30870. characterMakers.push(() => makeCharacter(
  30871. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30872. {
  30873. front: {
  30874. height: math.unit(6, "feet"),
  30875. weight: math.unit(135, "lb"),
  30876. name: "Front",
  30877. image: {
  30878. source: "./media/characters/axel/front.svg",
  30879. extra: 908 / 908,
  30880. bottom: 58 / 966
  30881. }
  30882. },
  30883. side: {
  30884. height: math.unit(6, "feet"),
  30885. weight: math.unit(135, "lb"),
  30886. name: "Side",
  30887. image: {
  30888. source: "./media/characters/axel/side.svg",
  30889. extra: 958 / 958,
  30890. bottom: 11 / 969
  30891. }
  30892. },
  30893. back: {
  30894. height: math.unit(6, "feet"),
  30895. weight: math.unit(135, "lb"),
  30896. name: "Back",
  30897. image: {
  30898. source: "./media/characters/axel/back.svg",
  30899. extra: 887 / 887,
  30900. bottom: 34 / 921
  30901. }
  30902. },
  30903. head: {
  30904. height: math.unit(1.07, "feet"),
  30905. name: "Head",
  30906. image: {
  30907. source: "./media/characters/axel/head.svg"
  30908. }
  30909. },
  30910. beak: {
  30911. height: math.unit(1.4, "feet"),
  30912. name: "Beak",
  30913. image: {
  30914. source: "./media/characters/axel/beak.svg"
  30915. }
  30916. },
  30917. beakSide: {
  30918. height: math.unit(1.4, "feet"),
  30919. name: "Beak Side",
  30920. image: {
  30921. source: "./media/characters/axel/beak-side.svg"
  30922. }
  30923. },
  30924. sheath: {
  30925. height: math.unit(0.5, "feet"),
  30926. name: "Sheath",
  30927. image: {
  30928. source: "./media/characters/axel/sheath.svg"
  30929. }
  30930. },
  30931. dick: {
  30932. height: math.unit(0.98, "feet"),
  30933. name: "Dick",
  30934. image: {
  30935. source: "./media/characters/axel/dick.svg"
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Macro",
  30942. height: math.unit(68, "meters"),
  30943. default: true
  30944. },
  30945. ]
  30946. ))
  30947. characterMakers.push(() => makeCharacter(
  30948. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30949. {
  30950. front: {
  30951. height: math.unit(3.5, "meters"),
  30952. weight: math.unit(1200, "kg"),
  30953. name: "Front",
  30954. image: {
  30955. source: "./media/characters/joanna/front.svg",
  30956. extra: 1596 / 1488,
  30957. bottom: 29 / 1625
  30958. }
  30959. },
  30960. back: {
  30961. height: math.unit(3.5, "meters"),
  30962. weight: math.unit(1200, "kg"),
  30963. name: "Back",
  30964. image: {
  30965. source: "./media/characters/joanna/back.svg",
  30966. extra: 1594 / 1495,
  30967. bottom: 26 / 1620
  30968. }
  30969. },
  30970. frontShorts: {
  30971. height: math.unit(3.5, "meters"),
  30972. weight: math.unit(1200, "kg"),
  30973. name: "Front (Shorts)",
  30974. image: {
  30975. source: "./media/characters/joanna/front-shorts.svg",
  30976. extra: 1596 / 1488,
  30977. bottom: 29 / 1625
  30978. }
  30979. },
  30980. frontBiker: {
  30981. height: math.unit(3.5, "meters"),
  30982. weight: math.unit(1200, "kg"),
  30983. name: "Front (Biker)",
  30984. image: {
  30985. source: "./media/characters/joanna/front-biker.svg",
  30986. extra: 1596 / 1488,
  30987. bottom: 29 / 1625
  30988. }
  30989. },
  30990. backBiker: {
  30991. height: math.unit(3.5, "meters"),
  30992. weight: math.unit(1200, "kg"),
  30993. name: "Back (Biker)",
  30994. image: {
  30995. source: "./media/characters/joanna/back-biker.svg",
  30996. extra: 1594 / 1495,
  30997. bottom: 88 / 1682
  30998. }
  30999. },
  31000. bikeLeft: {
  31001. height: math.unit(2.4, "meters"),
  31002. weight: math.unit(1600, "kg"),
  31003. name: "Bike (Left)",
  31004. image: {
  31005. source: "./media/characters/joanna/bike-left.svg",
  31006. extra: 720 / 720,
  31007. bottom: 8 / 728
  31008. }
  31009. },
  31010. bikeRight: {
  31011. height: math.unit(2.4, "meters"),
  31012. weight: math.unit(1600, "kg"),
  31013. name: "Bike (Right)",
  31014. image: {
  31015. source: "./media/characters/joanna/bike-right.svg",
  31016. extra: 720 / 720,
  31017. bottom: 8 / 728
  31018. }
  31019. },
  31020. },
  31021. [
  31022. {
  31023. name: "Incognito",
  31024. height: math.unit(3.5, "meters")
  31025. },
  31026. {
  31027. name: "Casual Big",
  31028. height: math.unit(200, "meters")
  31029. },
  31030. {
  31031. name: "Macro",
  31032. height: math.unit(600, "meters")
  31033. },
  31034. {
  31035. name: "Original",
  31036. height: math.unit(20, "km"),
  31037. default: true
  31038. },
  31039. {
  31040. name: "Giga",
  31041. height: math.unit(400, "km")
  31042. },
  31043. {
  31044. name: "Lounging",
  31045. height: math.unit(1500, "km")
  31046. },
  31047. {
  31048. name: "Planetary",
  31049. height: math.unit(200000, "km")
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31055. {
  31056. front: {
  31057. height: math.unit(6, "feet"),
  31058. weight: math.unit(150, "lb"),
  31059. name: "Front",
  31060. image: {
  31061. source: "./media/characters/hugo-sigil/front.svg",
  31062. extra: 522 / 500,
  31063. bottom: 2 / 524
  31064. }
  31065. },
  31066. back: {
  31067. height: math.unit(6, "feet"),
  31068. weight: math.unit(150, "lb"),
  31069. name: "Back",
  31070. image: {
  31071. source: "./media/characters/hugo-sigil/back.svg",
  31072. extra: 519 / 495,
  31073. bottom: 5 / 524
  31074. }
  31075. },
  31076. maw: {
  31077. height: math.unit(1.4, "feet"),
  31078. weight: math.unit(150, "lb"),
  31079. name: "Maw",
  31080. image: {
  31081. source: "./media/characters/hugo-sigil/maw.svg"
  31082. }
  31083. },
  31084. feet: {
  31085. height: math.unit(1.56, "feet"),
  31086. weight: math.unit(150, "lb"),
  31087. name: "Feet",
  31088. image: {
  31089. source: "./media/characters/hugo-sigil/feet.svg",
  31090. extra: 177 / 177,
  31091. bottom: 12 / 189
  31092. }
  31093. },
  31094. },
  31095. [
  31096. {
  31097. name: "Normal",
  31098. height: math.unit(6, "feet")
  31099. },
  31100. {
  31101. name: "Macro",
  31102. height: math.unit(200, "feet"),
  31103. default: true
  31104. },
  31105. ]
  31106. ))
  31107. characterMakers.push(() => makeCharacter(
  31108. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31109. {
  31110. front: {
  31111. height: math.unit(6, "feet"),
  31112. weight: math.unit(150, "lb"),
  31113. name: "Front",
  31114. image: {
  31115. source: "./media/characters/peri/front.svg",
  31116. extra: 2354 / 2233,
  31117. bottom: 49 / 2403
  31118. }
  31119. },
  31120. },
  31121. [
  31122. {
  31123. name: "Really Small",
  31124. height: math.unit(1, "nm")
  31125. },
  31126. {
  31127. name: "Micro",
  31128. height: math.unit(4, "inches")
  31129. },
  31130. {
  31131. name: "Normal",
  31132. height: math.unit(7, "inches"),
  31133. default: true
  31134. },
  31135. {
  31136. name: "Macro",
  31137. height: math.unit(400, "feet")
  31138. },
  31139. {
  31140. name: "Megamacro",
  31141. height: math.unit(100, "miles")
  31142. },
  31143. ]
  31144. ))
  31145. characterMakers.push(() => makeCharacter(
  31146. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31147. {
  31148. frontSlim: {
  31149. height: math.unit(7, "feet"),
  31150. name: "Front (Slim)",
  31151. image: {
  31152. source: "./media/characters/issilora/front-slim.svg",
  31153. extra: 529 / 449,
  31154. bottom: 53 / 582
  31155. }
  31156. },
  31157. sideSlim: {
  31158. height: math.unit(7, "feet"),
  31159. name: "Side (Slim)",
  31160. image: {
  31161. source: "./media/characters/issilora/side-slim.svg",
  31162. extra: 570 / 480,
  31163. bottom: 30 / 600
  31164. }
  31165. },
  31166. backSlim: {
  31167. height: math.unit(7, "feet"),
  31168. name: "Back (Slim)",
  31169. image: {
  31170. source: "./media/characters/issilora/back-slim.svg",
  31171. extra: 537 / 455,
  31172. bottom: 46 / 583
  31173. }
  31174. },
  31175. frontBuff: {
  31176. height: math.unit(7, "feet"),
  31177. name: "Front (Buff)",
  31178. image: {
  31179. source: "./media/characters/issilora/front-buff.svg",
  31180. extra: 2310 / 2035,
  31181. bottom: 335 / 2645
  31182. }
  31183. },
  31184. head: {
  31185. height: math.unit(1.94, "feet"),
  31186. name: "Head",
  31187. image: {
  31188. source: "./media/characters/issilora/head.svg"
  31189. }
  31190. },
  31191. },
  31192. [
  31193. {
  31194. name: "Minimum",
  31195. height: math.unit(7, "feet")
  31196. },
  31197. {
  31198. name: "Comfortable",
  31199. height: math.unit(17, "feet")
  31200. },
  31201. {
  31202. name: "Fun Size",
  31203. height: math.unit(47, "feet")
  31204. },
  31205. {
  31206. name: "Natural Macro",
  31207. height: math.unit(137, "feet"),
  31208. default: true
  31209. },
  31210. {
  31211. name: "Maximum Kaiju",
  31212. height: math.unit(397, "feet")
  31213. },
  31214. ]
  31215. ))
  31216. characterMakers.push(() => makeCharacter(
  31217. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31218. {
  31219. front: {
  31220. height: math.unit(50 + 9/12, "feet"),
  31221. weight: math.unit(32.8, "tons"),
  31222. name: "Front",
  31223. image: {
  31224. source: "./media/characters/irb'iiritaahn/front.svg",
  31225. extra: 1878/1826,
  31226. bottom: 326/2204
  31227. }
  31228. },
  31229. back: {
  31230. height: math.unit(50 + 9/12, "feet"),
  31231. weight: math.unit(32.8, "tons"),
  31232. name: "Back",
  31233. image: {
  31234. source: "./media/characters/irb'iiritaahn/back.svg",
  31235. extra: 2052/2018,
  31236. bottom: 152/2204
  31237. }
  31238. },
  31239. head: {
  31240. height: math.unit(12.86, "feet"),
  31241. name: "Head",
  31242. image: {
  31243. source: "./media/characters/irb'iiritaahn/head.svg"
  31244. }
  31245. },
  31246. maw: {
  31247. height: math.unit(9.66, "feet"),
  31248. name: "Maw",
  31249. image: {
  31250. source: "./media/characters/irb'iiritaahn/maw.svg"
  31251. }
  31252. },
  31253. frontDick: {
  31254. height: math.unit(8.78461, "feet"),
  31255. name: "Front Dick",
  31256. image: {
  31257. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31258. }
  31259. },
  31260. rearDick: {
  31261. height: math.unit(8.78461, "feet"),
  31262. name: "Rear Dick",
  31263. image: {
  31264. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31265. }
  31266. },
  31267. rearDickUnfolded: {
  31268. height: math.unit(8.78, "feet"),
  31269. name: "Rear Dick (Unfolded)",
  31270. image: {
  31271. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31272. }
  31273. },
  31274. wings: {
  31275. height: math.unit(43, "feet"),
  31276. name: "Wings",
  31277. image: {
  31278. source: "./media/characters/irb'iiritaahn/wings.svg"
  31279. }
  31280. },
  31281. },
  31282. [
  31283. {
  31284. name: "Macro",
  31285. height: math.unit(50 + 9/12, "feet"),
  31286. default: true
  31287. },
  31288. ]
  31289. ))
  31290. characterMakers.push(() => makeCharacter(
  31291. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31292. {
  31293. front: {
  31294. height: math.unit(205, "cm"),
  31295. weight: math.unit(102, "kg"),
  31296. name: "Front",
  31297. image: {
  31298. source: "./media/characters/irbisgreif/front.svg",
  31299. extra: 785/706,
  31300. bottom: 13/798
  31301. }
  31302. },
  31303. back: {
  31304. height: math.unit(205, "cm"),
  31305. weight: math.unit(102, "kg"),
  31306. name: "Back",
  31307. image: {
  31308. source: "./media/characters/irbisgreif/back.svg",
  31309. extra: 713/701,
  31310. bottom: 26/739
  31311. }
  31312. },
  31313. frontDressed: {
  31314. height: math.unit(216, "cm"),
  31315. weight: math.unit(102, "kg"),
  31316. name: "Front-dressed",
  31317. image: {
  31318. source: "./media/characters/irbisgreif/front-dressed.svg",
  31319. extra: 902/776,
  31320. bottom: 14/916
  31321. }
  31322. },
  31323. sideDressed: {
  31324. height: math.unit(195, "cm"),
  31325. weight: math.unit(102, "kg"),
  31326. name: "Side-dressed",
  31327. image: {
  31328. source: "./media/characters/irbisgreif/side-dressed.svg",
  31329. extra: 788/688,
  31330. bottom: 21/809
  31331. }
  31332. },
  31333. backDressed: {
  31334. height: math.unit(216, "cm"),
  31335. weight: math.unit(102, "kg"),
  31336. name: "Back-dressed",
  31337. image: {
  31338. source: "./media/characters/irbisgreif/back-dressed.svg",
  31339. extra: 901/783,
  31340. bottom: 10/911
  31341. }
  31342. },
  31343. dick: {
  31344. height: math.unit(0.49, "feet"),
  31345. name: "Dick",
  31346. image: {
  31347. source: "./media/characters/irbisgreif/dick.svg"
  31348. }
  31349. },
  31350. wingTop: {
  31351. height: math.unit(1.93 , "feet"),
  31352. name: "Wing-top",
  31353. image: {
  31354. source: "./media/characters/irbisgreif/wing-top.svg"
  31355. }
  31356. },
  31357. wingBottom: {
  31358. height: math.unit(1.93 , "feet"),
  31359. name: "Wing-bottom",
  31360. image: {
  31361. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31362. }
  31363. },
  31364. },
  31365. [
  31366. {
  31367. name: "Normal",
  31368. height: math.unit(216, "cm"),
  31369. default: true
  31370. },
  31371. ]
  31372. ))
  31373. characterMakers.push(() => makeCharacter(
  31374. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31375. {
  31376. front: {
  31377. height: math.unit(6, "feet"),
  31378. weight: math.unit(150, "lb"),
  31379. name: "Front",
  31380. image: {
  31381. source: "./media/characters/pride/front.svg",
  31382. extra: 1299/1230,
  31383. bottom: 18/1317
  31384. }
  31385. },
  31386. },
  31387. [
  31388. {
  31389. name: "Normal",
  31390. height: math.unit(7, "feet")
  31391. },
  31392. {
  31393. name: "Mini-macro",
  31394. height: math.unit(11, "feet")
  31395. },
  31396. {
  31397. name: "Macro",
  31398. height: math.unit(15, "meters"),
  31399. default: true
  31400. },
  31401. {
  31402. name: "Macro+",
  31403. height: math.unit(40, "meters")
  31404. },
  31405. ]
  31406. ))
  31407. characterMakers.push(() => makeCharacter(
  31408. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31409. {
  31410. front: {
  31411. height: math.unit(4 + 2 / 12, "feet"),
  31412. weight: math.unit(95, "lb"),
  31413. name: "Front",
  31414. image: {
  31415. source: "./media/characters/vaelophis-nyx/front.svg",
  31416. extra: 2532/2330,
  31417. bottom: 0/2532
  31418. }
  31419. },
  31420. back: {
  31421. height: math.unit(4 + 2 / 12, "feet"),
  31422. weight: math.unit(95, "lb"),
  31423. name: "Back",
  31424. image: {
  31425. source: "./media/characters/vaelophis-nyx/back.svg",
  31426. extra: 2484/2361,
  31427. bottom: 0/2484
  31428. }
  31429. },
  31430. feralSide: {
  31431. height: math.unit(2 + 1/12, "feet"),
  31432. weight: math.unit(20, "lb"),
  31433. name: "Feral (Side)",
  31434. image: {
  31435. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31436. extra: 1721/1581,
  31437. bottom: 70/1791
  31438. }
  31439. },
  31440. feralLazing: {
  31441. height: math.unit(1.08, "feet"),
  31442. weight: math.unit(20, "lb"),
  31443. name: "Feral (Lazing)",
  31444. image: {
  31445. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31446. extra: 822/822,
  31447. bottom: 248/1070
  31448. }
  31449. },
  31450. ear: {
  31451. height: math.unit(0.416, "feet"),
  31452. name: "Ear",
  31453. image: {
  31454. source: "./media/characters/vaelophis-nyx/ear.svg"
  31455. }
  31456. },
  31457. eye: {
  31458. height: math.unit(0.0748, "feet"),
  31459. name: "Eye",
  31460. image: {
  31461. source: "./media/characters/vaelophis-nyx/eye.svg"
  31462. }
  31463. },
  31464. mouth: {
  31465. height: math.unit(0.378, "feet"),
  31466. name: "Mouth",
  31467. image: {
  31468. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31469. }
  31470. },
  31471. spade: {
  31472. height: math.unit(0.55, "feet"),
  31473. name: "Spade",
  31474. image: {
  31475. source: "./media/characters/vaelophis-nyx/spade.svg"
  31476. }
  31477. },
  31478. },
  31479. [
  31480. {
  31481. name: "Normal",
  31482. height: math.unit(4 + 2/12, "feet"),
  31483. default: true
  31484. },
  31485. ]
  31486. ))
  31487. characterMakers.push(() => makeCharacter(
  31488. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31489. {
  31490. front: {
  31491. height: math.unit(7, "feet"),
  31492. weight: math.unit(231, "lb"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/flux/front.svg",
  31496. extra: 919/871,
  31497. bottom: 0/919
  31498. }
  31499. },
  31500. back: {
  31501. height: math.unit(7, "feet"),
  31502. weight: math.unit(231, "lb"),
  31503. name: "Back",
  31504. image: {
  31505. source: "./media/characters/flux/back.svg",
  31506. extra: 1040/992,
  31507. bottom: 0/1040
  31508. }
  31509. },
  31510. frontDressed: {
  31511. height: math.unit(7, "feet"),
  31512. weight: math.unit(231, "lb"),
  31513. name: "Front (Dressed)",
  31514. image: {
  31515. source: "./media/characters/flux/front-dressed.svg",
  31516. extra: 919/871,
  31517. bottom: 0/919
  31518. }
  31519. },
  31520. feralSide: {
  31521. height: math.unit(5, "feet"),
  31522. weight: math.unit(150, "lb"),
  31523. name: "Feral (Side)",
  31524. image: {
  31525. source: "./media/characters/flux/feral-side.svg",
  31526. extra: 598/528,
  31527. bottom: 28/626
  31528. }
  31529. },
  31530. head: {
  31531. height: math.unit(1.585, "feet"),
  31532. name: "Head",
  31533. image: {
  31534. source: "./media/characters/flux/head.svg"
  31535. }
  31536. },
  31537. headSide: {
  31538. height: math.unit(1.74, "feet"),
  31539. name: "Head (Side)",
  31540. image: {
  31541. source: "./media/characters/flux/head-side.svg"
  31542. }
  31543. },
  31544. headSideFire: {
  31545. height: math.unit(1.76, "feet"),
  31546. name: "Head (Side, Fire)",
  31547. image: {
  31548. source: "./media/characters/flux/head-side-fire.svg"
  31549. }
  31550. },
  31551. },
  31552. [
  31553. {
  31554. name: "Normal",
  31555. height: math.unit(7, "feet"),
  31556. default: true
  31557. },
  31558. ]
  31559. ))
  31560. characterMakers.push(() => makeCharacter(
  31561. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31562. {
  31563. front: {
  31564. height: math.unit(9, "feet"),
  31565. weight: math.unit(1012, "lb"),
  31566. name: "Front",
  31567. image: {
  31568. source: "./media/characters/ulfra-lupae/front.svg",
  31569. extra: 1083/1011,
  31570. bottom: 67/1150
  31571. }
  31572. },
  31573. },
  31574. [
  31575. {
  31576. name: "Micro",
  31577. height: math.unit(6, "inches")
  31578. },
  31579. {
  31580. name: "Socializing",
  31581. height: math.unit(6 + 5/12, "feet")
  31582. },
  31583. {
  31584. name: "Normal",
  31585. height: math.unit(9, "feet"),
  31586. default: true
  31587. },
  31588. {
  31589. name: "Macro",
  31590. height: math.unit(150, "feet")
  31591. },
  31592. ]
  31593. ))
  31594. characterMakers.push(() => makeCharacter(
  31595. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31596. {
  31597. front: {
  31598. height: math.unit(5 + 2/12, "feet"),
  31599. weight: math.unit(120, "lb"),
  31600. name: "Front",
  31601. image: {
  31602. source: "./media/characters/timber/front.svg",
  31603. extra: 2814/2705,
  31604. bottom: 181/2995
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Normal",
  31611. height: math.unit(5 + 2/12, "feet"),
  31612. default: true
  31613. },
  31614. ]
  31615. ))
  31616. characterMakers.push(() => makeCharacter(
  31617. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31618. {
  31619. front: {
  31620. height: math.unit(5 + 7/12, "feet"),
  31621. weight: math.unit(220, "lb"),
  31622. name: "Front",
  31623. image: {
  31624. source: "./media/characters/nicki/front.svg",
  31625. extra: 453/419,
  31626. bottom: 7/460
  31627. }
  31628. },
  31629. frontAlt: {
  31630. height: math.unit(5 + 7/12, "feet"),
  31631. weight: math.unit(220, "lb"),
  31632. name: "Front-alt",
  31633. image: {
  31634. source: "./media/characters/nicki/front-alt.svg",
  31635. extra: 435/411,
  31636. bottom: 12/447
  31637. }
  31638. },
  31639. back: {
  31640. height: math.unit(5 + 7/12, "feet"),
  31641. weight: math.unit(220, "lb"),
  31642. name: "Back",
  31643. image: {
  31644. source: "./media/characters/nicki/back.svg",
  31645. extra: 440/413,
  31646. bottom: 19/459
  31647. }
  31648. },
  31649. taur: {
  31650. height: math.unit(7 + 6/12, "feet"),
  31651. weight: math.unit(700, "lb"),
  31652. name: "Taur",
  31653. image: {
  31654. source: "./media/characters/nicki/taur.svg",
  31655. extra: 975/773,
  31656. bottom: 0/975
  31657. }
  31658. },
  31659. frontNsfw: {
  31660. height: math.unit(5 + 7/12, "feet"),
  31661. weight: math.unit(220, "lb"),
  31662. name: "Front (NSFW)",
  31663. image: {
  31664. source: "./media/characters/nicki/front-nsfw.svg",
  31665. extra: 453/419,
  31666. bottom: 7/460
  31667. }
  31668. },
  31669. frontNsfwAlt: {
  31670. height: math.unit(5 + 7/12, "feet"),
  31671. weight: math.unit(220, "lb"),
  31672. name: "Front (Alt, NSFW)",
  31673. image: {
  31674. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31675. extra: 435/411,
  31676. bottom: 12/447
  31677. }
  31678. },
  31679. backNsfw: {
  31680. height: math.unit(5 + 7/12, "feet"),
  31681. weight: math.unit(220, "lb"),
  31682. name: "Back (NSFW)",
  31683. image: {
  31684. source: "./media/characters/nicki/back-nsfw.svg",
  31685. extra: 440/413,
  31686. bottom: 19/459
  31687. }
  31688. },
  31689. head: {
  31690. height: math.unit(2.1, "feet"),
  31691. name: "Head",
  31692. image: {
  31693. source: "./media/characters/nicki/head.svg"
  31694. }
  31695. },
  31696. paw: {
  31697. height: math.unit(1.88, "feet"),
  31698. name: "Paw",
  31699. image: {
  31700. source: "./media/characters/nicki/paw.svg"
  31701. }
  31702. },
  31703. },
  31704. [
  31705. {
  31706. name: "Normal",
  31707. height: math.unit(5 + 7/12, "feet"),
  31708. default: true
  31709. },
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31714. {
  31715. front: {
  31716. height: math.unit(7 + 10/12, "feet"),
  31717. weight: math.unit(3.5, "tons"),
  31718. name: "Front",
  31719. image: {
  31720. source: "./media/characters/lee/front.svg",
  31721. extra: 1773/1615,
  31722. bottom: 86/1859
  31723. }
  31724. },
  31725. hand: {
  31726. height: math.unit(1.78, "feet"),
  31727. name: "Hand",
  31728. image: {
  31729. source: "./media/characters/lee/hand.svg"
  31730. }
  31731. },
  31732. maw: {
  31733. height: math.unit(1.18, "feet"),
  31734. name: "Maw",
  31735. image: {
  31736. source: "./media/characters/lee/maw.svg"
  31737. }
  31738. },
  31739. },
  31740. [
  31741. {
  31742. name: "Normal",
  31743. height: math.unit(7 + 10/12, "feet"),
  31744. default: true
  31745. },
  31746. ]
  31747. ))
  31748. characterMakers.push(() => makeCharacter(
  31749. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31750. {
  31751. front: {
  31752. height: math.unit(9, "feet"),
  31753. name: "Front",
  31754. image: {
  31755. source: "./media/characters/guti/front.svg",
  31756. extra: 4551/4355,
  31757. bottom: 123/4674
  31758. }
  31759. },
  31760. tongue: {
  31761. height: math.unit(1, "feet"),
  31762. name: "Tongue",
  31763. image: {
  31764. source: "./media/characters/guti/tongue.svg"
  31765. }
  31766. },
  31767. paw: {
  31768. height: math.unit(1.18, "feet"),
  31769. name: "Paw",
  31770. image: {
  31771. source: "./media/characters/guti/paw.svg"
  31772. }
  31773. },
  31774. },
  31775. [
  31776. {
  31777. name: "Normal",
  31778. height: math.unit(9, "feet"),
  31779. default: true
  31780. },
  31781. ]
  31782. ))
  31783. characterMakers.push(() => makeCharacter(
  31784. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31785. {
  31786. side: {
  31787. height: math.unit(5, "meters"),
  31788. name: "Side",
  31789. image: {
  31790. source: "./media/characters/vesper/side.svg",
  31791. extra: 1605/1518,
  31792. bottom: 0/1605
  31793. }
  31794. },
  31795. },
  31796. [
  31797. {
  31798. name: "Small",
  31799. height: math.unit(5, "meters")
  31800. },
  31801. {
  31802. name: "Sage",
  31803. height: math.unit(100, "meters"),
  31804. default: true
  31805. },
  31806. {
  31807. name: "Fun Size",
  31808. height: math.unit(600, "meters")
  31809. },
  31810. {
  31811. name: "Goddess",
  31812. height: math.unit(20000, "km")
  31813. },
  31814. {
  31815. name: "Maximum",
  31816. height: math.unit(5, "galaxies")
  31817. },
  31818. ]
  31819. ))
  31820. characterMakers.push(() => makeCharacter(
  31821. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31822. {
  31823. front: {
  31824. height: math.unit(6 + 3/12, "feet"),
  31825. weight: math.unit(190, "lb"),
  31826. name: "Front",
  31827. image: {
  31828. source: "./media/characters/gawain/front.svg",
  31829. extra: 2222/2139,
  31830. bottom: 90/2312
  31831. }
  31832. },
  31833. back: {
  31834. height: math.unit(6 + 3/12, "feet"),
  31835. weight: math.unit(190, "lb"),
  31836. name: "Back",
  31837. image: {
  31838. source: "./media/characters/gawain/back.svg",
  31839. extra: 2199/2111,
  31840. bottom: 73/2272
  31841. }
  31842. },
  31843. },
  31844. [
  31845. {
  31846. name: "Normal",
  31847. height: math.unit(6 + 3/12, "feet"),
  31848. default: true
  31849. },
  31850. ]
  31851. ))
  31852. characterMakers.push(() => makeCharacter(
  31853. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31854. {
  31855. side: {
  31856. height: math.unit(3.5, "meters"),
  31857. weight: math.unit(16000, "lb"),
  31858. name: "Side",
  31859. image: {
  31860. source: "./media/characters/dascalti/side.svg",
  31861. extra: 392/273,
  31862. bottom: 47/439
  31863. }
  31864. },
  31865. breath: {
  31866. height: math.unit(7.4, "feet"),
  31867. name: "Breath",
  31868. image: {
  31869. source: "./media/characters/dascalti/breath.svg"
  31870. }
  31871. },
  31872. fed: {
  31873. height: math.unit(3.6, "meters"),
  31874. weight: math.unit(16000, "lb"),
  31875. name: "Fed",
  31876. image: {
  31877. source: "./media/characters/dascalti/fed.svg",
  31878. extra: 1419/820,
  31879. bottom: 95/1514
  31880. }
  31881. },
  31882. },
  31883. [
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(3.5, "meters"),
  31887. default: true
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31893. {
  31894. front: {
  31895. height: math.unit(3 + 5/12, "feet"),
  31896. name: "Front",
  31897. image: {
  31898. source: "./media/characters/mauve/front.svg",
  31899. extra: 1126/1033,
  31900. bottom: 65/1191
  31901. }
  31902. },
  31903. side: {
  31904. height: math.unit(3 + 5/12, "feet"),
  31905. name: "Side",
  31906. image: {
  31907. source: "./media/characters/mauve/side.svg",
  31908. extra: 1089/1001,
  31909. bottom: 29/1118
  31910. }
  31911. },
  31912. back: {
  31913. height: math.unit(3 + 5/12, "feet"),
  31914. name: "Back",
  31915. image: {
  31916. source: "./media/characters/mauve/back.svg",
  31917. extra: 1173/1053,
  31918. bottom: 109/1282
  31919. }
  31920. },
  31921. },
  31922. [
  31923. {
  31924. name: "Normal",
  31925. height: math.unit(3 + 5/12, "feet"),
  31926. default: true
  31927. },
  31928. ]
  31929. ))
  31930. characterMakers.push(() => makeCharacter(
  31931. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31932. {
  31933. front: {
  31934. height: math.unit(6 + 3/12, "feet"),
  31935. weight: math.unit(430, "lb"),
  31936. name: "Front",
  31937. image: {
  31938. source: "./media/characters/carlos/front.svg",
  31939. extra: 1964/1913,
  31940. bottom: 70/2034
  31941. }
  31942. },
  31943. },
  31944. [
  31945. {
  31946. name: "Normal",
  31947. height: math.unit(6 + 3/12, "feet"),
  31948. default: true
  31949. },
  31950. ]
  31951. ))
  31952. characterMakers.push(() => makeCharacter(
  31953. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31954. {
  31955. back: {
  31956. height: math.unit(5 + 10/12, "feet"),
  31957. weight: math.unit(200, "lb"),
  31958. name: "Back",
  31959. image: {
  31960. source: "./media/characters/jax/back.svg",
  31961. extra: 764/739,
  31962. bottom: 25/789
  31963. }
  31964. },
  31965. },
  31966. [
  31967. {
  31968. name: "Normal",
  31969. height: math.unit(5 + 10/12, "feet"),
  31970. default: true
  31971. },
  31972. ]
  31973. ))
  31974. characterMakers.push(() => makeCharacter(
  31975. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31976. {
  31977. front: {
  31978. height: math.unit(8, "feet"),
  31979. weight: math.unit(250, "lb"),
  31980. name: "Front",
  31981. image: {
  31982. source: "./media/characters/eikthynir/front.svg",
  31983. extra: 1332/1166,
  31984. bottom: 82/1414
  31985. }
  31986. },
  31987. back: {
  31988. height: math.unit(8, "feet"),
  31989. weight: math.unit(250, "lb"),
  31990. name: "Back",
  31991. image: {
  31992. source: "./media/characters/eikthynir/back.svg",
  31993. extra: 1342/1190,
  31994. bottom: 19/1361
  31995. }
  31996. },
  31997. dick: {
  31998. height: math.unit(2.35, "feet"),
  31999. name: "Dick",
  32000. image: {
  32001. source: "./media/characters/eikthynir/dick.svg"
  32002. }
  32003. },
  32004. },
  32005. [
  32006. {
  32007. name: "Normal",
  32008. height: math.unit(8, "feet"),
  32009. default: true
  32010. },
  32011. ]
  32012. ))
  32013. characterMakers.push(() => makeCharacter(
  32014. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32015. {
  32016. front: {
  32017. height: math.unit(99, "meters"),
  32018. weight: math.unit(13000, "tons"),
  32019. name: "Front",
  32020. image: {
  32021. source: "./media/characters/zlmos/front.svg",
  32022. extra: 2202/1992,
  32023. bottom: 315/2517
  32024. }
  32025. },
  32026. },
  32027. [
  32028. {
  32029. name: "Macro",
  32030. height: math.unit(99, "meters"),
  32031. default: true
  32032. },
  32033. ]
  32034. ))
  32035. characterMakers.push(() => makeCharacter(
  32036. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32037. {
  32038. front: {
  32039. height: math.unit(6 + 5/12, "feet"),
  32040. name: "Front",
  32041. image: {
  32042. source: "./media/characters/purri/front.svg",
  32043. extra: 1698/1610,
  32044. bottom: 32/1730
  32045. }
  32046. },
  32047. frontAlt: {
  32048. height: math.unit(6 + 5/12, "feet"),
  32049. name: "Front (Alt)",
  32050. image: {
  32051. source: "./media/characters/purri/front-alt.svg",
  32052. extra: 450/420,
  32053. bottom: 26/476
  32054. }
  32055. },
  32056. boots: {
  32057. height: math.unit(5.5, "feet"),
  32058. name: "Boots",
  32059. image: {
  32060. source: "./media/characters/purri/boots.svg",
  32061. extra: 905/853,
  32062. bottom: 18/923
  32063. }
  32064. },
  32065. lying: {
  32066. height: math.unit(2, "feet"),
  32067. name: "Lying",
  32068. image: {
  32069. source: "./media/characters/purri/lying.svg",
  32070. extra: 940/843,
  32071. bottom: 146/1086
  32072. }
  32073. },
  32074. devious: {
  32075. height: math.unit(1.77, "feet"),
  32076. name: "Devious",
  32077. image: {
  32078. source: "./media/characters/purri/devious.svg",
  32079. extra: 1440/1155,
  32080. bottom: 147/1587
  32081. }
  32082. },
  32083. bean: {
  32084. height: math.unit(1.94, "feet"),
  32085. name: "Bean",
  32086. image: {
  32087. source: "./media/characters/purri/bean.svg"
  32088. }
  32089. },
  32090. },
  32091. [
  32092. {
  32093. name: "Micro",
  32094. height: math.unit(1, "mm")
  32095. },
  32096. {
  32097. name: "Normal",
  32098. height: math.unit(6 + 5/12, "feet"),
  32099. default: true
  32100. },
  32101. {
  32102. name: "Macro :3c",
  32103. height: math.unit(2, "miles")
  32104. },
  32105. ]
  32106. ))
  32107. characterMakers.push(() => makeCharacter(
  32108. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32109. {
  32110. front: {
  32111. height: math.unit(6 + 2/12, "feet"),
  32112. weight: math.unit(250, "lb"),
  32113. name: "Front",
  32114. image: {
  32115. source: "./media/characters/moonlight/front.svg",
  32116. extra: 1044/908,
  32117. bottom: 56/1100
  32118. }
  32119. },
  32120. feral: {
  32121. height: math.unit(3 + 1/12, "feet"),
  32122. weight: math.unit(50, "kg"),
  32123. name: "Feral",
  32124. image: {
  32125. source: "./media/characters/moonlight/feral.svg",
  32126. extra: 3705/2791,
  32127. bottom: 145/3850
  32128. }
  32129. },
  32130. paw: {
  32131. height: math.unit(1, "feet"),
  32132. name: "Paw",
  32133. image: {
  32134. source: "./media/characters/moonlight/paw.svg"
  32135. }
  32136. },
  32137. paws: {
  32138. height: math.unit(0.98, "feet"),
  32139. name: "Paws",
  32140. image: {
  32141. source: "./media/characters/moonlight/paws.svg",
  32142. extra: 939/939,
  32143. bottom: 50/989
  32144. }
  32145. },
  32146. mouth: {
  32147. height: math.unit(0.48, "feet"),
  32148. name: "Mouth",
  32149. image: {
  32150. source: "./media/characters/moonlight/mouth.svg"
  32151. }
  32152. },
  32153. dick: {
  32154. height: math.unit(1.46, "feet"),
  32155. name: "Dick",
  32156. image: {
  32157. source: "./media/characters/moonlight/dick.svg"
  32158. }
  32159. },
  32160. },
  32161. [
  32162. {
  32163. name: "Normal",
  32164. height: math.unit(6 + 2/12, "feet"),
  32165. default: true
  32166. },
  32167. {
  32168. name: "Macro",
  32169. height: math.unit(300, "feet")
  32170. },
  32171. {
  32172. name: "Macro+",
  32173. height: math.unit(1, "mile")
  32174. },
  32175. {
  32176. name: "Mt. Moon",
  32177. height: math.unit(5, "miles")
  32178. },
  32179. {
  32180. name: "Megamacro",
  32181. height: math.unit(15, "miles")
  32182. },
  32183. ]
  32184. ))
  32185. characterMakers.push(() => makeCharacter(
  32186. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32187. {
  32188. back: {
  32189. height: math.unit(6, "feet"),
  32190. weight: math.unit(150, "lb"),
  32191. name: "Back",
  32192. image: {
  32193. source: "./media/characters/sylen/back.svg",
  32194. extra: 1335/1273,
  32195. bottom: 107/1442
  32196. }
  32197. },
  32198. },
  32199. [
  32200. {
  32201. name: "Normal",
  32202. height: math.unit(5 + 5/12, "feet")
  32203. },
  32204. {
  32205. name: "Megamacro",
  32206. height: math.unit(3, "miles"),
  32207. default: true
  32208. },
  32209. ]
  32210. ))
  32211. characterMakers.push(() => makeCharacter(
  32212. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32213. {
  32214. front: {
  32215. height: math.unit(6, "feet"),
  32216. weight: math.unit(190, "lb"),
  32217. name: "Front",
  32218. image: {
  32219. source: "./media/characters/huttser/front.svg",
  32220. extra: 1152/1058,
  32221. bottom: 23/1175
  32222. }
  32223. },
  32224. side: {
  32225. height: math.unit(6, "feet"),
  32226. weight: math.unit(190, "lb"),
  32227. name: "Side",
  32228. image: {
  32229. source: "./media/characters/huttser/side.svg",
  32230. extra: 1174/1065,
  32231. bottom: 18/1192
  32232. }
  32233. },
  32234. back: {
  32235. height: math.unit(6, "feet"),
  32236. weight: math.unit(190, "lb"),
  32237. name: "Back",
  32238. image: {
  32239. source: "./media/characters/huttser/back.svg",
  32240. extra: 1158/1056,
  32241. bottom: 12/1170
  32242. }
  32243. },
  32244. },
  32245. [
  32246. ]
  32247. ))
  32248. characterMakers.push(() => makeCharacter(
  32249. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32250. {
  32251. side: {
  32252. height: math.unit(12 + 9/12, "feet"),
  32253. weight: math.unit(15000, "lb"),
  32254. name: "Side",
  32255. image: {
  32256. source: "./media/characters/faan/side.svg",
  32257. extra: 2747/2697,
  32258. bottom: 0/2747
  32259. }
  32260. },
  32261. front: {
  32262. height: math.unit(12 + 9/12, "feet"),
  32263. weight: math.unit(15000, "lb"),
  32264. name: "Front",
  32265. image: {
  32266. source: "./media/characters/faan/front.svg",
  32267. extra: 607/571,
  32268. bottom: 24/631
  32269. }
  32270. },
  32271. head: {
  32272. height: math.unit(2.85, "feet"),
  32273. name: "Head",
  32274. image: {
  32275. source: "./media/characters/faan/head.svg"
  32276. }
  32277. },
  32278. headAlt: {
  32279. height: math.unit(3.13, "feet"),
  32280. name: "Head-alt",
  32281. image: {
  32282. source: "./media/characters/faan/head-alt.svg"
  32283. }
  32284. },
  32285. },
  32286. [
  32287. {
  32288. name: "Normal",
  32289. height: math.unit(12 + 9/12, "feet"),
  32290. default: true
  32291. },
  32292. ]
  32293. ))
  32294. characterMakers.push(() => makeCharacter(
  32295. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32296. {
  32297. front: {
  32298. height: math.unit(6, "feet"),
  32299. weight: math.unit(300, "lb"),
  32300. name: "Front",
  32301. image: {
  32302. source: "./media/characters/tanio/front.svg",
  32303. extra: 711/673,
  32304. bottom: 25/736
  32305. }
  32306. },
  32307. },
  32308. [
  32309. {
  32310. name: "Normal",
  32311. height: math.unit(6, "feet"),
  32312. default: true
  32313. },
  32314. ]
  32315. ))
  32316. characterMakers.push(() => makeCharacter(
  32317. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32318. {
  32319. front: {
  32320. height: math.unit(3, "inches"),
  32321. name: "Front",
  32322. image: {
  32323. source: "./media/characters/noboru/front.svg",
  32324. extra: 1039/932,
  32325. bottom: 18/1057
  32326. }
  32327. },
  32328. },
  32329. [
  32330. {
  32331. name: "Micro",
  32332. height: math.unit(3, "inches"),
  32333. default: true
  32334. },
  32335. ]
  32336. ))
  32337. characterMakers.push(() => makeCharacter(
  32338. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32339. {
  32340. front: {
  32341. height: math.unit(1.85, "meters"),
  32342. weight: math.unit(80, "kg"),
  32343. name: "Front",
  32344. image: {
  32345. source: "./media/characters/daniel-barrett/front.svg",
  32346. extra: 355/337,
  32347. bottom: 9/364
  32348. }
  32349. },
  32350. },
  32351. [
  32352. {
  32353. name: "Pico",
  32354. height: math.unit(0.0433, "mm")
  32355. },
  32356. {
  32357. name: "Nano",
  32358. height: math.unit(1.5, "mm")
  32359. },
  32360. {
  32361. name: "Micro",
  32362. height: math.unit(5.3, "cm"),
  32363. default: true
  32364. },
  32365. {
  32366. name: "Normal",
  32367. height: math.unit(1.85, "meters")
  32368. },
  32369. {
  32370. name: "Macro",
  32371. height: math.unit(64.7, "meters")
  32372. },
  32373. {
  32374. name: "Megamacro",
  32375. height: math.unit(2.26, "km")
  32376. },
  32377. {
  32378. name: "Gigamacro",
  32379. height: math.unit(79, "km")
  32380. },
  32381. {
  32382. name: "Teramacro",
  32383. height: math.unit(2765, "km")
  32384. },
  32385. {
  32386. name: "Petamacro",
  32387. height: math.unit(96678, "km")
  32388. },
  32389. ]
  32390. ))
  32391. characterMakers.push(() => makeCharacter(
  32392. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32393. {
  32394. front: {
  32395. height: math.unit(30, "meters"),
  32396. weight: math.unit(400, "tons"),
  32397. name: "Front",
  32398. image: {
  32399. source: "./media/characters/zeel/front.svg",
  32400. extra: 2599/2599,
  32401. bottom: 226/2825
  32402. }
  32403. },
  32404. },
  32405. [
  32406. {
  32407. name: "Macro",
  32408. height: math.unit(30, "meters"),
  32409. default: true
  32410. },
  32411. ]
  32412. ))
  32413. characterMakers.push(() => makeCharacter(
  32414. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32415. {
  32416. front: {
  32417. height: math.unit(6 + 7/12, "feet"),
  32418. weight: math.unit(210, "lb"),
  32419. name: "Front",
  32420. image: {
  32421. source: "./media/characters/tarn/front.svg",
  32422. extra: 3517/3220,
  32423. bottom: 91/3608
  32424. }
  32425. },
  32426. back: {
  32427. height: math.unit(6 + 7/12, "feet"),
  32428. weight: math.unit(210, "lb"),
  32429. name: "Back",
  32430. image: {
  32431. source: "./media/characters/tarn/back.svg",
  32432. extra: 3566/3241,
  32433. bottom: 34/3600
  32434. }
  32435. },
  32436. dick: {
  32437. height: math.unit(1.65, "feet"),
  32438. name: "Dick",
  32439. image: {
  32440. source: "./media/characters/tarn/dick.svg"
  32441. }
  32442. },
  32443. paw: {
  32444. height: math.unit(1.80, "feet"),
  32445. name: "Paw",
  32446. image: {
  32447. source: "./media/characters/tarn/paw.svg"
  32448. }
  32449. },
  32450. tongue: {
  32451. height: math.unit(0.97, "feet"),
  32452. name: "Tongue",
  32453. image: {
  32454. source: "./media/characters/tarn/tongue.svg"
  32455. }
  32456. },
  32457. },
  32458. [
  32459. {
  32460. name: "Micro",
  32461. height: math.unit(4, "inches")
  32462. },
  32463. {
  32464. name: "Normal",
  32465. height: math.unit(6 + 7/12, "feet"),
  32466. default: true
  32467. },
  32468. {
  32469. name: "Macro",
  32470. height: math.unit(300, "feet")
  32471. },
  32472. ]
  32473. ))
  32474. characterMakers.push(() => makeCharacter(
  32475. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32476. {
  32477. front: {
  32478. height: math.unit(5 + 7/12, "feet"),
  32479. weight: math.unit(80, "kg"),
  32480. name: "Front",
  32481. image: {
  32482. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32483. extra: 3023/2865,
  32484. bottom: 33/3056
  32485. }
  32486. },
  32487. back: {
  32488. height: math.unit(5 + 7/12, "feet"),
  32489. weight: math.unit(80, "kg"),
  32490. name: "Back",
  32491. image: {
  32492. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32493. extra: 3020/2886,
  32494. bottom: 30/3050
  32495. }
  32496. },
  32497. dick: {
  32498. height: math.unit(0.98, "feet"),
  32499. name: "Dick",
  32500. image: {
  32501. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32502. }
  32503. },
  32504. anatomy: {
  32505. height: math.unit(2.86, "feet"),
  32506. name: "Anatomy",
  32507. image: {
  32508. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32509. }
  32510. },
  32511. },
  32512. [
  32513. {
  32514. name: "Really Small",
  32515. height: math.unit(2, "inches")
  32516. },
  32517. {
  32518. name: "Micro",
  32519. height: math.unit(5.583, "inches")
  32520. },
  32521. {
  32522. name: "Normal",
  32523. height: math.unit(5 + 7/12, "feet"),
  32524. default: true
  32525. },
  32526. {
  32527. name: "Macro",
  32528. height: math.unit(67, "feet")
  32529. },
  32530. {
  32531. name: "Megamacro",
  32532. height: math.unit(134, "feet")
  32533. },
  32534. ]
  32535. ))
  32536. characterMakers.push(() => makeCharacter(
  32537. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32538. {
  32539. front: {
  32540. height: math.unit(9, "feet"),
  32541. weight: math.unit(120, "lb"),
  32542. name: "Front",
  32543. image: {
  32544. source: "./media/characters/sally/front.svg",
  32545. extra: 1506/1349,
  32546. bottom: 66/1572
  32547. }
  32548. },
  32549. },
  32550. [
  32551. {
  32552. name: "Normal",
  32553. height: math.unit(9, "feet"),
  32554. default: true
  32555. },
  32556. ]
  32557. ))
  32558. characterMakers.push(() => makeCharacter(
  32559. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32560. {
  32561. front: {
  32562. height: math.unit(8, "feet"),
  32563. weight: math.unit(900, "lb"),
  32564. name: "Front",
  32565. image: {
  32566. source: "./media/characters/owen/front.svg",
  32567. extra: 1761/1657,
  32568. bottom: 74/1835
  32569. }
  32570. },
  32571. side: {
  32572. height: math.unit(8, "feet"),
  32573. weight: math.unit(900, "lb"),
  32574. name: "Side",
  32575. image: {
  32576. source: "./media/characters/owen/side.svg",
  32577. extra: 1797/1734,
  32578. bottom: 30/1827
  32579. }
  32580. },
  32581. back: {
  32582. height: math.unit(8, "feet"),
  32583. weight: math.unit(900, "lb"),
  32584. name: "Back",
  32585. image: {
  32586. source: "./media/characters/owen/back.svg",
  32587. extra: 1796/1706,
  32588. bottom: 59/1855
  32589. }
  32590. },
  32591. maw: {
  32592. height: math.unit(1.76, "feet"),
  32593. name: "Maw",
  32594. image: {
  32595. source: "./media/characters/owen/maw.svg"
  32596. }
  32597. },
  32598. },
  32599. [
  32600. {
  32601. name: "Normal",
  32602. height: math.unit(8, "feet"),
  32603. default: true
  32604. },
  32605. ]
  32606. ))
  32607. characterMakers.push(() => makeCharacter(
  32608. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32609. {
  32610. front: {
  32611. height: math.unit(4, "feet"),
  32612. weight: math.unit(400, "lb"),
  32613. name: "Front",
  32614. image: {
  32615. source: "./media/characters/ryth/front.svg",
  32616. extra: 1920/1748,
  32617. bottom: 42/1962
  32618. }
  32619. },
  32620. back: {
  32621. height: math.unit(4, "feet"),
  32622. weight: math.unit(400, "lb"),
  32623. name: "Back",
  32624. image: {
  32625. source: "./media/characters/ryth/back.svg",
  32626. extra: 1897/1690,
  32627. bottom: 89/1986
  32628. }
  32629. },
  32630. mouth: {
  32631. height: math.unit(1.39, "feet"),
  32632. name: "Mouth",
  32633. image: {
  32634. source: "./media/characters/ryth/mouth.svg"
  32635. }
  32636. },
  32637. tailmaw: {
  32638. height: math.unit(1.23, "feet"),
  32639. name: "Tailmaw",
  32640. image: {
  32641. source: "./media/characters/ryth/tailmaw.svg"
  32642. }
  32643. },
  32644. goia: {
  32645. height: math.unit(4, "meters"),
  32646. weight: math.unit(10800, "lb"),
  32647. name: "Goia",
  32648. image: {
  32649. source: "./media/characters/ryth/goia.svg",
  32650. extra: 745/640,
  32651. bottom: 107/852
  32652. }
  32653. },
  32654. goiaFront: {
  32655. height: math.unit(4, "meters"),
  32656. weight: math.unit(10800, "lb"),
  32657. name: "Goia (Front)",
  32658. image: {
  32659. source: "./media/characters/ryth/goia-front.svg",
  32660. extra: 750/586,
  32661. bottom: 114/864
  32662. }
  32663. },
  32664. goiaMaw: {
  32665. height: math.unit(5.55, "feet"),
  32666. name: "Goia Maw",
  32667. image: {
  32668. source: "./media/characters/ryth/goia-maw.svg"
  32669. }
  32670. },
  32671. goiaForepaw: {
  32672. height: math.unit(3.5, "feet"),
  32673. name: "Goia Forepaw",
  32674. image: {
  32675. source: "./media/characters/ryth/goia-forepaw.svg"
  32676. }
  32677. },
  32678. goiaHindpaw: {
  32679. height: math.unit(5.55, "feet"),
  32680. name: "Goia Hindpaw",
  32681. image: {
  32682. source: "./media/characters/ryth/goia-hindpaw.svg"
  32683. }
  32684. },
  32685. },
  32686. [
  32687. {
  32688. name: "Normal",
  32689. height: math.unit(4, "feet"),
  32690. default: true
  32691. },
  32692. ]
  32693. ))
  32694. characterMakers.push(() => makeCharacter(
  32695. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32696. {
  32697. front: {
  32698. height: math.unit(7, "feet"),
  32699. weight: math.unit(180, "lb"),
  32700. name: "Front",
  32701. image: {
  32702. source: "./media/characters/necrolance/front.svg",
  32703. extra: 1062/947,
  32704. bottom: 41/1103
  32705. }
  32706. },
  32707. back: {
  32708. height: math.unit(7, "feet"),
  32709. weight: math.unit(180, "lb"),
  32710. name: "Back",
  32711. image: {
  32712. source: "./media/characters/necrolance/back.svg",
  32713. extra: 1045/984,
  32714. bottom: 14/1059
  32715. }
  32716. },
  32717. wing: {
  32718. height: math.unit(2.67, "feet"),
  32719. name: "Wing",
  32720. image: {
  32721. source: "./media/characters/necrolance/wing.svg"
  32722. }
  32723. },
  32724. },
  32725. [
  32726. {
  32727. name: "Normal",
  32728. height: math.unit(7, "feet"),
  32729. default: true
  32730. },
  32731. ]
  32732. ))
  32733. characterMakers.push(() => makeCharacter(
  32734. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32735. {
  32736. front: {
  32737. height: math.unit(76, "meters"),
  32738. weight: math.unit(30000, "tons"),
  32739. name: "Front",
  32740. image: {
  32741. source: "./media/characters/tyler/front.svg",
  32742. extra: 1640/1640,
  32743. bottom: 114/1754
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Macro",
  32750. height: math.unit(76, "meters"),
  32751. default: true
  32752. },
  32753. ]
  32754. ))
  32755. characterMakers.push(() => makeCharacter(
  32756. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32757. {
  32758. front: {
  32759. height: math.unit(4 + 11/12, "feet"),
  32760. weight: math.unit(132, "lb"),
  32761. name: "Front",
  32762. image: {
  32763. source: "./media/characters/icey/front.svg",
  32764. extra: 2750/2550,
  32765. bottom: 33/2783
  32766. }
  32767. },
  32768. back: {
  32769. height: math.unit(4 + 11/12, "feet"),
  32770. weight: math.unit(132, "lb"),
  32771. name: "Back",
  32772. image: {
  32773. source: "./media/characters/icey/back.svg",
  32774. extra: 2624/2481,
  32775. bottom: 35/2659
  32776. }
  32777. },
  32778. },
  32779. [
  32780. {
  32781. name: "Normal",
  32782. height: math.unit(4 + 11/12, "feet"),
  32783. default: true
  32784. },
  32785. ]
  32786. ))
  32787. characterMakers.push(() => makeCharacter(
  32788. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32789. {
  32790. front: {
  32791. height: math.unit(100, "feet"),
  32792. weight: math.unit(0, "lb"),
  32793. name: "Front",
  32794. image: {
  32795. source: "./media/characters/smile/front.svg",
  32796. extra: 2983/2912,
  32797. bottom: 162/3145
  32798. }
  32799. },
  32800. back: {
  32801. height: math.unit(100, "feet"),
  32802. weight: math.unit(0, "lb"),
  32803. name: "Back",
  32804. image: {
  32805. source: "./media/characters/smile/back.svg",
  32806. extra: 3143/3031,
  32807. bottom: 91/3234
  32808. }
  32809. },
  32810. head: {
  32811. height: math.unit(26.3, "feet"),
  32812. weight: math.unit(0, "lb"),
  32813. name: "Head",
  32814. image: {
  32815. source: "./media/characters/smile/head.svg"
  32816. }
  32817. },
  32818. collar: {
  32819. height: math.unit(5.3, "feet"),
  32820. weight: math.unit(0, "lb"),
  32821. name: "Collar",
  32822. image: {
  32823. source: "./media/characters/smile/collar.svg"
  32824. }
  32825. },
  32826. },
  32827. [
  32828. {
  32829. name: "Macro",
  32830. height: math.unit(100, "feet"),
  32831. default: true
  32832. },
  32833. ]
  32834. ))
  32835. characterMakers.push(() => makeCharacter(
  32836. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32837. {
  32838. dragon: {
  32839. height: math.unit(26, "feet"),
  32840. weight: math.unit(36, "tons"),
  32841. name: "Dragon",
  32842. image: {
  32843. source: "./media/characters/arimphae/dragon.svg",
  32844. extra: 1574/983,
  32845. bottom: 357/1931
  32846. }
  32847. },
  32848. drake: {
  32849. height: math.unit(9, "feet"),
  32850. weight: math.unit(1.5, "tons"),
  32851. name: "Drake",
  32852. image: {
  32853. source: "./media/characters/arimphae/drake.svg",
  32854. extra: 1120/925,
  32855. bottom: 435/1555
  32856. }
  32857. },
  32858. },
  32859. [
  32860. {
  32861. name: "Small",
  32862. height: math.unit(26*5/9, "feet")
  32863. },
  32864. {
  32865. name: "Normal",
  32866. height: math.unit(26, "feet"),
  32867. default: true
  32868. },
  32869. ]
  32870. ))
  32871. characterMakers.push(() => makeCharacter(
  32872. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32873. {
  32874. front: {
  32875. height: math.unit(8 + 9/12, "feet"),
  32876. name: "Front",
  32877. image: {
  32878. source: "./media/characters/xander/front.svg",
  32879. extra: 1237/974,
  32880. bottom: 94/1331
  32881. }
  32882. },
  32883. },
  32884. [
  32885. {
  32886. name: "Normal",
  32887. height: math.unit(8 + 9/12, "feet"),
  32888. default: true
  32889. },
  32890. {
  32891. name: "Gaze Grabber",
  32892. height: math.unit(13 + 8/12, "feet")
  32893. },
  32894. {
  32895. name: "Jaw Dropper",
  32896. height: math.unit(27, "feet")
  32897. },
  32898. {
  32899. name: "Show Stopper",
  32900. height: math.unit(136, "feet")
  32901. },
  32902. {
  32903. name: "Superstar",
  32904. height: math.unit(1.9e6, "miles")
  32905. },
  32906. ]
  32907. ))
  32908. characterMakers.push(() => makeCharacter(
  32909. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32910. {
  32911. side: {
  32912. height: math.unit(2100, "feet"),
  32913. name: "Side",
  32914. image: {
  32915. source: "./media/characters/osiris/side.svg",
  32916. extra: 1105/939,
  32917. bottom: 167/1272
  32918. }
  32919. },
  32920. },
  32921. [
  32922. {
  32923. name: "Macro",
  32924. height: math.unit(2100, "feet"),
  32925. default: true
  32926. },
  32927. ]
  32928. ))
  32929. characterMakers.push(() => makeCharacter(
  32930. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32931. {
  32932. front: {
  32933. height: math.unit(6 + 8/12, "feet"),
  32934. weight: math.unit(225, "lb"),
  32935. name: "Front",
  32936. image: {
  32937. source: "./media/characters/rhys-londe/front.svg",
  32938. extra: 2258/2141,
  32939. bottom: 188/2446
  32940. }
  32941. },
  32942. back: {
  32943. height: math.unit(6 + 8/12, "feet"),
  32944. weight: math.unit(225, "lb"),
  32945. name: "Back",
  32946. image: {
  32947. source: "./media/characters/rhys-londe/back.svg",
  32948. extra: 2237/2137,
  32949. bottom: 63/2300
  32950. }
  32951. },
  32952. frontNsfw: {
  32953. height: math.unit(6 + 8/12, "feet"),
  32954. weight: math.unit(225, "lb"),
  32955. name: "Front (NSFW)",
  32956. image: {
  32957. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32958. extra: 2258/2141,
  32959. bottom: 188/2446
  32960. }
  32961. },
  32962. backNsfw: {
  32963. height: math.unit(6 + 8/12, "feet"),
  32964. weight: math.unit(225, "lb"),
  32965. name: "Back (NSFW)",
  32966. image: {
  32967. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32968. extra: 2237/2137,
  32969. bottom: 63/2300
  32970. }
  32971. },
  32972. dick: {
  32973. height: math.unit(30, "inches"),
  32974. name: "Dick",
  32975. image: {
  32976. source: "./media/characters/rhys-londe/dick.svg"
  32977. }
  32978. },
  32979. maw: {
  32980. height: math.unit(1.6, "feet"),
  32981. name: "Maw",
  32982. image: {
  32983. source: "./media/characters/rhys-londe/maw.svg"
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Normal",
  32990. height: math.unit(6 + 8/12, "feet"),
  32991. default: true
  32992. },
  32993. ]
  32994. ))
  32995. characterMakers.push(() => makeCharacter(
  32996. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32997. {
  32998. front: {
  32999. height: math.unit(3 + 10/12, "feet"),
  33000. weight: math.unit(90, "lb"),
  33001. name: "Front",
  33002. image: {
  33003. source: "./media/characters/taivas-ensim/front.svg",
  33004. extra: 1327/1216,
  33005. bottom: 96/1423
  33006. }
  33007. },
  33008. back: {
  33009. height: math.unit(3 + 10/12, "feet"),
  33010. weight: math.unit(90, "lb"),
  33011. name: "Back",
  33012. image: {
  33013. source: "./media/characters/taivas-ensim/back.svg",
  33014. extra: 1355/1247,
  33015. bottom: 11/1366
  33016. }
  33017. },
  33018. frontNsfw: {
  33019. height: math.unit(3 + 10/12, "feet"),
  33020. weight: math.unit(90, "lb"),
  33021. name: "Front (NSFW)",
  33022. image: {
  33023. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33024. extra: 1327/1216,
  33025. bottom: 96/1423
  33026. }
  33027. },
  33028. backNsfw: {
  33029. height: math.unit(3 + 10/12, "feet"),
  33030. weight: math.unit(90, "lb"),
  33031. name: "Back (NSFW)",
  33032. image: {
  33033. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33034. extra: 1355/1247,
  33035. bottom: 11/1366
  33036. }
  33037. },
  33038. },
  33039. [
  33040. {
  33041. name: "Normal",
  33042. height: math.unit(3 + 10/12, "feet"),
  33043. default: true
  33044. },
  33045. ]
  33046. ))
  33047. characterMakers.push(() => makeCharacter(
  33048. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33049. {
  33050. front: {
  33051. height: math.unit(9 + 6/12, "feet"),
  33052. weight: math.unit(940, "lb"),
  33053. name: "Front",
  33054. image: {
  33055. source: "./media/characters/byliss/front.svg",
  33056. extra: 1327/1290,
  33057. bottom: 82/1409
  33058. }
  33059. },
  33060. back: {
  33061. height: math.unit(9 + 6/12, "feet"),
  33062. weight: math.unit(940, "lb"),
  33063. name: "Back",
  33064. image: {
  33065. source: "./media/characters/byliss/back.svg",
  33066. extra: 1376/1349,
  33067. bottom: 9/1385
  33068. }
  33069. },
  33070. frontNsfw: {
  33071. height: math.unit(9 + 6/12, "feet"),
  33072. weight: math.unit(940, "lb"),
  33073. name: "Front (NSFW)",
  33074. image: {
  33075. source: "./media/characters/byliss/front-nsfw.svg",
  33076. extra: 1327/1290,
  33077. bottom: 82/1409
  33078. }
  33079. },
  33080. backNsfw: {
  33081. height: math.unit(9 + 6/12, "feet"),
  33082. weight: math.unit(940, "lb"),
  33083. name: "Back (NSFW)",
  33084. image: {
  33085. source: "./media/characters/byliss/back-nsfw.svg",
  33086. extra: 1376/1349,
  33087. bottom: 9/1385
  33088. }
  33089. },
  33090. },
  33091. [
  33092. {
  33093. name: "Normal",
  33094. height: math.unit(9 + 6/12, "feet"),
  33095. default: true
  33096. },
  33097. ]
  33098. ))
  33099. characterMakers.push(() => makeCharacter(
  33100. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33101. {
  33102. front: {
  33103. height: math.unit(5 + 2/12, "feet"),
  33104. weight: math.unit(200, "lb"),
  33105. name: "Front",
  33106. image: {
  33107. source: "./media/characters/noraly/front.svg",
  33108. extra: 4985/4773,
  33109. bottom: 150/5135
  33110. }
  33111. },
  33112. full: {
  33113. height: math.unit(5 + 2/12, "feet"),
  33114. weight: math.unit(164, "lb"),
  33115. name: "Full",
  33116. image: {
  33117. source: "./media/characters/noraly/full.svg",
  33118. extra: 1114/1059,
  33119. bottom: 35/1149
  33120. }
  33121. },
  33122. fuller: {
  33123. height: math.unit(5 + 2/12, "feet"),
  33124. weight: math.unit(230, "lb"),
  33125. name: "Fuller",
  33126. image: {
  33127. source: "./media/characters/noraly/fuller.svg",
  33128. extra: 1114/1059,
  33129. bottom: 35/1149
  33130. }
  33131. },
  33132. fullest: {
  33133. height: math.unit(5 + 2/12, "feet"),
  33134. weight: math.unit(300, "lb"),
  33135. name: "Fullest",
  33136. image: {
  33137. source: "./media/characters/noraly/fullest.svg",
  33138. extra: 1114/1059,
  33139. bottom: 35/1149
  33140. }
  33141. },
  33142. },
  33143. [
  33144. {
  33145. name: "Normal",
  33146. height: math.unit(5 + 2/12, "feet"),
  33147. default: true
  33148. },
  33149. ]
  33150. ))
  33151. characterMakers.push(() => makeCharacter(
  33152. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33153. {
  33154. front: {
  33155. height: math.unit(5 + 2/12, "feet"),
  33156. weight: math.unit(210, "lb"),
  33157. name: "Front",
  33158. image: {
  33159. source: "./media/characters/pera/front.svg",
  33160. extra: 1560/1531,
  33161. bottom: 165/1725
  33162. }
  33163. },
  33164. back: {
  33165. height: math.unit(5 + 2/12, "feet"),
  33166. weight: math.unit(210, "lb"),
  33167. name: "Back",
  33168. image: {
  33169. source: "./media/characters/pera/back.svg",
  33170. extra: 1523/1493,
  33171. bottom: 152/1675
  33172. }
  33173. },
  33174. dick: {
  33175. height: math.unit(2.4, "feet"),
  33176. name: "Dick",
  33177. image: {
  33178. source: "./media/characters/pera/dick.svg"
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(5 + 2/12, "feet"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(12, "feet"),
  33195. weight: math.unit(3200, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/julian/front.svg",
  33199. extra: 2962/2701,
  33200. bottom: 184/3146
  33201. }
  33202. },
  33203. maw: {
  33204. height: math.unit(5.35, "feet"),
  33205. name: "Maw",
  33206. image: {
  33207. source: "./media/characters/julian/maw.svg"
  33208. }
  33209. },
  33210. paw: {
  33211. height: math.unit(3.07, "feet"),
  33212. name: "Paw",
  33213. image: {
  33214. source: "./media/characters/julian/paw.svg"
  33215. }
  33216. },
  33217. },
  33218. [
  33219. {
  33220. name: "Default",
  33221. height: math.unit(12, "feet"),
  33222. default: true
  33223. },
  33224. {
  33225. name: "Big",
  33226. height: math.unit(50, "feet")
  33227. },
  33228. {
  33229. name: "Really Big",
  33230. height: math.unit(1, "mile")
  33231. },
  33232. {
  33233. name: "Extremely Big",
  33234. height: math.unit(100, "miles")
  33235. },
  33236. {
  33237. name: "Planet Hugger",
  33238. height: math.unit(200, "megameters")
  33239. },
  33240. {
  33241. name: "Unreasonably Big",
  33242. height: math.unit(1e300, "meters")
  33243. },
  33244. ]
  33245. ))
  33246. characterMakers.push(() => makeCharacter(
  33247. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33248. {
  33249. solgooleo: {
  33250. height: math.unit(4, "meters"),
  33251. weight: math.unit(6000*1.5, "kg"),
  33252. volume: math.unit(6000, "liters"),
  33253. name: "Solgooleo",
  33254. image: {
  33255. source: "./media/characters/pi/solgooleo.svg",
  33256. extra: 388/331,
  33257. bottom: 29/417
  33258. }
  33259. },
  33260. },
  33261. [
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(4, "meters"),
  33265. default: true
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33271. {
  33272. front: {
  33273. height: math.unit(8, "feet"),
  33274. weight: math.unit(4, "tons"),
  33275. name: "Front",
  33276. image: {
  33277. source: "./media/characters/shaun/front.svg",
  33278. extra: 503/495,
  33279. bottom: 20/523
  33280. }
  33281. },
  33282. back: {
  33283. height: math.unit(8, "feet"),
  33284. weight: math.unit(4, "tons"),
  33285. name: "Back",
  33286. image: {
  33287. source: "./media/characters/shaun/back.svg",
  33288. extra: 487/480,
  33289. bottom: 20/507
  33290. }
  33291. },
  33292. },
  33293. [
  33294. {
  33295. name: "Lorg",
  33296. height: math.unit(8, "feet"),
  33297. default: true
  33298. },
  33299. ]
  33300. ))
  33301. characterMakers.push(() => makeCharacter(
  33302. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33303. {
  33304. frontAnthro: {
  33305. height: math.unit(7, "feet"),
  33306. name: "Front",
  33307. image: {
  33308. source: "./media/characters/sini/front-anthro.svg",
  33309. extra: 726/678,
  33310. bottom: 35/761
  33311. },
  33312. form: "anthro",
  33313. default: true
  33314. },
  33315. backAnthro: {
  33316. height: math.unit(7, "feet"),
  33317. name: "Back",
  33318. image: {
  33319. source: "./media/characters/sini/back-anthro.svg",
  33320. extra: 743/701,
  33321. bottom: 12/755
  33322. },
  33323. form: "anthro",
  33324. },
  33325. frontAnthroNsfw: {
  33326. height: math.unit(7, "feet"),
  33327. name: "Front (NSFW)",
  33328. image: {
  33329. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33330. extra: 726/678,
  33331. bottom: 35/761
  33332. },
  33333. form: "anthro"
  33334. },
  33335. backAnthroNsfw: {
  33336. height: math.unit(7, "feet"),
  33337. name: "Back (NSFW)",
  33338. image: {
  33339. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33340. extra: 743/701,
  33341. bottom: 12/755
  33342. },
  33343. form: "anthro",
  33344. },
  33345. mawAnthro: {
  33346. height: math.unit(2.14, "feet"),
  33347. name: "Maw",
  33348. image: {
  33349. source: "./media/characters/sini/maw-anthro.svg"
  33350. },
  33351. form: "anthro"
  33352. },
  33353. dick: {
  33354. height: math.unit(1.45, "feet"),
  33355. name: "Dick",
  33356. image: {
  33357. source: "./media/characters/sini/dick-anthro.svg"
  33358. },
  33359. form: "anthro"
  33360. },
  33361. feral: {
  33362. height: math.unit(16, "feet"),
  33363. name: "Feral",
  33364. image: {
  33365. source: "./media/characters/sini/feral.svg",
  33366. extra: 814/605,
  33367. bottom: 11/825
  33368. },
  33369. form: "feral",
  33370. default: true
  33371. },
  33372. feralNsfw: {
  33373. height: math.unit(16, "feet"),
  33374. name: "Feral (NSFW)",
  33375. image: {
  33376. source: "./media/characters/sini/feral-nsfw.svg",
  33377. extra: 814/605,
  33378. bottom: 11/825
  33379. },
  33380. form: "feral"
  33381. },
  33382. mawFeral: {
  33383. height: math.unit(5.66, "feet"),
  33384. name: "Maw",
  33385. image: {
  33386. source: "./media/characters/sini/maw-feral.svg"
  33387. },
  33388. form: "feral",
  33389. },
  33390. pawFeral: {
  33391. height: math.unit(5.17, "feet"),
  33392. name: "Paw",
  33393. image: {
  33394. source: "./media/characters/sini/paw-feral.svg"
  33395. },
  33396. form: "feral",
  33397. },
  33398. rumpFeral: {
  33399. height: math.unit(13.11, "feet"),
  33400. name: "Rump",
  33401. image: {
  33402. source: "./media/characters/sini/rump-feral.svg"
  33403. },
  33404. form: "feral",
  33405. },
  33406. dickFeral: {
  33407. height: math.unit(1, "feet"),
  33408. name: "Dick",
  33409. image: {
  33410. source: "./media/characters/sini/dick-feral.svg"
  33411. },
  33412. form: "feral",
  33413. },
  33414. eyeFeral: {
  33415. height: math.unit(1.23, "feet"),
  33416. name: "Eye",
  33417. image: {
  33418. source: "./media/characters/sini/eye-feral.svg"
  33419. },
  33420. form: "feral",
  33421. },
  33422. },
  33423. [
  33424. {
  33425. name: "Normal",
  33426. height: math.unit(7, "feet"),
  33427. default: true,
  33428. form: "anthro"
  33429. },
  33430. {
  33431. name: "Normal",
  33432. height: math.unit(16, "feet"),
  33433. default: true,
  33434. form: "feral"
  33435. },
  33436. ],
  33437. {
  33438. "anthro": {
  33439. name: "Anthro",
  33440. default: true
  33441. },
  33442. "feral": {
  33443. name: "Feral",
  33444. }
  33445. }
  33446. ))
  33447. characterMakers.push(() => makeCharacter(
  33448. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33449. {
  33450. side: {
  33451. height: math.unit(13, "meters"),
  33452. weight: math.unit(9072, "kg"),
  33453. name: "Side",
  33454. image: {
  33455. source: "./media/characters/raylldo/side.svg",
  33456. extra: 403/344,
  33457. bottom: 42/445
  33458. }
  33459. },
  33460. leaping: {
  33461. height: math.unit(12.3, "meters"),
  33462. weight: math.unit(9072, "kg"),
  33463. name: "Leaping",
  33464. image: {
  33465. source: "./media/characters/raylldo/leaping.svg",
  33466. extra: 470/249,
  33467. bottom: 13/483
  33468. }
  33469. },
  33470. flying: {
  33471. height: math.unit(18, "meters"),
  33472. weight: math.unit(9072, "kg"),
  33473. name: "Flying",
  33474. image: {
  33475. source: "./media/characters/raylldo/flying.svg"
  33476. }
  33477. },
  33478. head: {
  33479. height: math.unit(5.85, "meters"),
  33480. name: "Head",
  33481. image: {
  33482. source: "./media/characters/raylldo/head.svg"
  33483. }
  33484. },
  33485. maw: {
  33486. height: math.unit(5.32, "meters"),
  33487. name: "Maw",
  33488. image: {
  33489. source: "./media/characters/raylldo/maw.svg"
  33490. }
  33491. },
  33492. eye: {
  33493. height: math.unit(0.54, "meters"),
  33494. name: "Eye",
  33495. image: {
  33496. source: "./media/characters/raylldo/eye.svg"
  33497. }
  33498. },
  33499. },
  33500. [
  33501. {
  33502. name: "Normal",
  33503. height: math.unit(13, "meters"),
  33504. default: true
  33505. },
  33506. ]
  33507. ))
  33508. characterMakers.push(() => makeCharacter(
  33509. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33510. {
  33511. anthroFront: {
  33512. height: math.unit(9, "feet"),
  33513. weight: math.unit(600, "lb"),
  33514. name: "Anthro (Front)",
  33515. image: {
  33516. source: "./media/characters/glint/anthro-front.svg",
  33517. extra: 1097/1018,
  33518. bottom: 28/1125
  33519. }
  33520. },
  33521. anthroBack: {
  33522. height: math.unit(9, "feet"),
  33523. weight: math.unit(600, "lb"),
  33524. name: "Anthro (Back)",
  33525. image: {
  33526. source: "./media/characters/glint/anthro-back.svg",
  33527. extra: 1154/997,
  33528. bottom: 36/1190
  33529. }
  33530. },
  33531. feral: {
  33532. height: math.unit(11, "feet"),
  33533. weight: math.unit(50000, "lb"),
  33534. name: "Feral",
  33535. image: {
  33536. source: "./media/characters/glint/feral.svg",
  33537. extra: 3035/1585,
  33538. bottom: 1169/4204
  33539. }
  33540. },
  33541. dickAnthro: {
  33542. height: math.unit(0.7, "meters"),
  33543. name: "Dick (Anthro)",
  33544. image: {
  33545. source: "./media/characters/glint/dick-anthro.svg"
  33546. }
  33547. },
  33548. dickFeral: {
  33549. height: math.unit(2.65, "meters"),
  33550. name: "Dick (Feral)",
  33551. image: {
  33552. source: "./media/characters/glint/dick-feral.svg"
  33553. }
  33554. },
  33555. slitHidden: {
  33556. height: math.unit(5.85, "meters"),
  33557. name: "Slit (Hidden)",
  33558. image: {
  33559. source: "./media/characters/glint/slit-hidden.svg"
  33560. }
  33561. },
  33562. slitErect: {
  33563. height: math.unit(5.85, "meters"),
  33564. name: "Slit (Erect)",
  33565. image: {
  33566. source: "./media/characters/glint/slit-erect.svg"
  33567. }
  33568. },
  33569. mawAnthro: {
  33570. height: math.unit(0.63, "meters"),
  33571. name: "Maw (Anthro)",
  33572. image: {
  33573. source: "./media/characters/glint/maw.svg"
  33574. }
  33575. },
  33576. mawFeral: {
  33577. height: math.unit(2.89, "meters"),
  33578. name: "Maw (Feral)",
  33579. image: {
  33580. source: "./media/characters/glint/maw.svg"
  33581. }
  33582. },
  33583. },
  33584. [
  33585. {
  33586. name: "Normal",
  33587. height: math.unit(9, "feet"),
  33588. default: true
  33589. },
  33590. ]
  33591. ))
  33592. characterMakers.push(() => makeCharacter(
  33593. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33594. {
  33595. side: {
  33596. height: math.unit(15, "feet"),
  33597. weight: math.unit(5000, "kg"),
  33598. name: "Side",
  33599. image: {
  33600. source: "./media/characters/kairne/side.svg",
  33601. extra: 979/811,
  33602. bottom: 13/992
  33603. }
  33604. },
  33605. front: {
  33606. height: math.unit(15, "feet"),
  33607. weight: math.unit(5000, "kg"),
  33608. name: "Front",
  33609. image: {
  33610. source: "./media/characters/kairne/front.svg",
  33611. extra: 908/814,
  33612. bottom: 26/934
  33613. }
  33614. },
  33615. sideNsfw: {
  33616. height: math.unit(15, "feet"),
  33617. weight: math.unit(5000, "kg"),
  33618. name: "Side (NSFW)",
  33619. image: {
  33620. source: "./media/characters/kairne/side-nsfw.svg",
  33621. extra: 979/811,
  33622. bottom: 13/992
  33623. }
  33624. },
  33625. frontNsfw: {
  33626. height: math.unit(15, "feet"),
  33627. weight: math.unit(5000, "kg"),
  33628. name: "Front (NSFW)",
  33629. image: {
  33630. source: "./media/characters/kairne/front-nsfw.svg",
  33631. extra: 908/814,
  33632. bottom: 26/934
  33633. }
  33634. },
  33635. dickCaged: {
  33636. height: math.unit(0.65, "meters"),
  33637. name: "Dick-caged",
  33638. image: {
  33639. source: "./media/characters/kairne/dick-caged.svg"
  33640. }
  33641. },
  33642. dick: {
  33643. height: math.unit(0.79, "meters"),
  33644. name: "Dick",
  33645. image: {
  33646. source: "./media/characters/kairne/dick.svg"
  33647. }
  33648. },
  33649. genitals: {
  33650. height: math.unit(1.29, "meters"),
  33651. name: "Genitals",
  33652. image: {
  33653. source: "./media/characters/kairne/genitals.svg"
  33654. }
  33655. },
  33656. maw: {
  33657. height: math.unit(1.73, "meters"),
  33658. name: "Maw",
  33659. image: {
  33660. source: "./media/characters/kairne/maw.svg"
  33661. }
  33662. },
  33663. },
  33664. [
  33665. {
  33666. name: "Normal",
  33667. height: math.unit(15, "feet"),
  33668. default: true
  33669. },
  33670. ]
  33671. ))
  33672. characterMakers.push(() => makeCharacter(
  33673. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33674. {
  33675. front: {
  33676. height: math.unit(5 + 8/12, "feet"),
  33677. weight: math.unit(139, "lb"),
  33678. name: "Front",
  33679. image: {
  33680. source: "./media/characters/biscuit-jackal/front.svg",
  33681. extra: 2106/1961,
  33682. bottom: 58/2164
  33683. }
  33684. },
  33685. back: {
  33686. height: math.unit(5 + 8/12, "feet"),
  33687. weight: math.unit(139, "lb"),
  33688. name: "Back",
  33689. image: {
  33690. source: "./media/characters/biscuit-jackal/back.svg",
  33691. extra: 2132/1976,
  33692. bottom: 57/2189
  33693. }
  33694. },
  33695. werejackal: {
  33696. height: math.unit(6 + 3/12, "feet"),
  33697. weight: math.unit(188, "lb"),
  33698. name: "Werejackal",
  33699. image: {
  33700. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33701. extra: 2373/2178,
  33702. bottom: 53/2426
  33703. }
  33704. },
  33705. },
  33706. [
  33707. {
  33708. name: "Normal",
  33709. height: math.unit(5 + 8/12, "feet"),
  33710. default: true
  33711. },
  33712. ]
  33713. ))
  33714. characterMakers.push(() => makeCharacter(
  33715. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33716. {
  33717. front: {
  33718. height: math.unit(140, "cm"),
  33719. weight: math.unit(45, "kg"),
  33720. name: "Front",
  33721. image: {
  33722. source: "./media/characters/tayra-white/front.svg",
  33723. extra: 2229/2192,
  33724. bottom: 75/2304
  33725. }
  33726. },
  33727. },
  33728. [
  33729. {
  33730. name: "Normal",
  33731. height: math.unit(140, "cm"),
  33732. default: true
  33733. },
  33734. ]
  33735. ))
  33736. characterMakers.push(() => makeCharacter(
  33737. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33738. {
  33739. front: {
  33740. height: math.unit(4 + 5/12, "feet"),
  33741. name: "Front",
  33742. image: {
  33743. source: "./media/characters/scoop/front.svg",
  33744. extra: 1257/1136,
  33745. bottom: 69/1326
  33746. }
  33747. },
  33748. back: {
  33749. height: math.unit(4 + 5/12, "feet"),
  33750. name: "Back",
  33751. image: {
  33752. source: "./media/characters/scoop/back.svg",
  33753. extra: 1321/1152,
  33754. bottom: 32/1353
  33755. }
  33756. },
  33757. maw: {
  33758. height: math.unit(0.68, "feet"),
  33759. name: "Maw",
  33760. image: {
  33761. source: "./media/characters/scoop/maw.svg"
  33762. }
  33763. },
  33764. },
  33765. [
  33766. {
  33767. name: "Really Small",
  33768. height: math.unit(1, "mm")
  33769. },
  33770. {
  33771. name: "Micro",
  33772. height: math.unit(1, "inch")
  33773. },
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(4 + 5/12, "feet"),
  33777. default: true
  33778. },
  33779. {
  33780. name: "Macro",
  33781. height: math.unit(200, "feet")
  33782. },
  33783. {
  33784. name: "Megamacro",
  33785. height: math.unit(3240, "feet")
  33786. },
  33787. {
  33788. name: "Teramacro",
  33789. height: math.unit(2500, "miles")
  33790. },
  33791. ]
  33792. ))
  33793. characterMakers.push(() => makeCharacter(
  33794. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33795. {
  33796. front: {
  33797. height: math.unit(15 + 7/12, "feet"),
  33798. name: "Front",
  33799. image: {
  33800. source: "./media/characters/saphinara/front.svg",
  33801. extra: 604/546,
  33802. bottom: 19/623
  33803. }
  33804. },
  33805. side: {
  33806. height: math.unit(15 + 7/12, "feet"),
  33807. name: "Side",
  33808. image: {
  33809. source: "./media/characters/saphinara/side.svg",
  33810. extra: 605/547,
  33811. bottom: 6/611
  33812. }
  33813. },
  33814. back: {
  33815. height: math.unit(15 + 7/12, "feet"),
  33816. name: "Back",
  33817. image: {
  33818. source: "./media/characters/saphinara/back.svg",
  33819. extra: 591/531,
  33820. bottom: 13/604
  33821. }
  33822. },
  33823. frontTail: {
  33824. height: math.unit(15 + 7/12, "feet"),
  33825. name: "Front (Full Tail)",
  33826. image: {
  33827. source: "./media/characters/saphinara/front-tail.svg",
  33828. extra: 748/547,
  33829. bottom: 66/814
  33830. }
  33831. },
  33832. },
  33833. [
  33834. {
  33835. name: "Normal",
  33836. height: math.unit(15 + 7/12, "feet"),
  33837. default: true
  33838. },
  33839. {
  33840. name: "Angry",
  33841. height: math.unit(30 + 6/12, "feet")
  33842. },
  33843. {
  33844. name: "Enraged",
  33845. height: math.unit(102 + 1/12, "feet")
  33846. },
  33847. ]
  33848. ))
  33849. characterMakers.push(() => makeCharacter(
  33850. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33851. {
  33852. front: {
  33853. height: math.unit(6 + 8/12, "feet"),
  33854. weight: math.unit(300, "lb"),
  33855. name: "Front",
  33856. image: {
  33857. source: "./media/characters/jrain/front.svg",
  33858. extra: 3039/2865,
  33859. bottom: 399/3438
  33860. }
  33861. },
  33862. back: {
  33863. height: math.unit(6 + 8/12, "feet"),
  33864. weight: math.unit(300, "lb"),
  33865. name: "Back",
  33866. image: {
  33867. source: "./media/characters/jrain/back.svg",
  33868. extra: 3089/2938,
  33869. bottom: 172/3261
  33870. }
  33871. },
  33872. head: {
  33873. height: math.unit(2.14, "feet"),
  33874. name: "Head",
  33875. image: {
  33876. source: "./media/characters/jrain/head.svg"
  33877. }
  33878. },
  33879. maw: {
  33880. height: math.unit(1.77, "feet"),
  33881. name: "Maw",
  33882. image: {
  33883. source: "./media/characters/jrain/maw.svg"
  33884. }
  33885. },
  33886. leftHand: {
  33887. height: math.unit(1.1, "feet"),
  33888. name: "Left Hand",
  33889. image: {
  33890. source: "./media/characters/jrain/left-hand.svg"
  33891. }
  33892. },
  33893. rightHand: {
  33894. height: math.unit(1.1, "feet"),
  33895. name: "Right Hand",
  33896. image: {
  33897. source: "./media/characters/jrain/right-hand.svg"
  33898. }
  33899. },
  33900. eye: {
  33901. height: math.unit(0.35, "feet"),
  33902. name: "Eye",
  33903. image: {
  33904. source: "./media/characters/jrain/eye.svg"
  33905. }
  33906. },
  33907. },
  33908. [
  33909. {
  33910. name: "Normal",
  33911. height: math.unit(6 + 8/12, "feet"),
  33912. default: true
  33913. },
  33914. {
  33915. name: "Casually Large",
  33916. height: math.unit(25, "feet")
  33917. },
  33918. {
  33919. name: "Giant",
  33920. height: math.unit(100, "feet")
  33921. },
  33922. {
  33923. name: "Kaiju",
  33924. height: math.unit(300, "feet")
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33930. {
  33931. dragon: {
  33932. height: math.unit(5, "meters"),
  33933. name: "Dragon",
  33934. image: {
  33935. source: "./media/characters/sabrina/dragon.svg",
  33936. extra: 3670 / 2365,
  33937. bottom: 333 / 4003
  33938. }
  33939. },
  33940. gryphon: {
  33941. height: math.unit(3, "meters"),
  33942. name: "Gryphon",
  33943. image: {
  33944. source: "./media/characters/sabrina/gryphon.svg",
  33945. extra: 1576 / 945,
  33946. bottom: 71 / 1647
  33947. }
  33948. },
  33949. snake: {
  33950. height: math.unit(12, "meters"),
  33951. name: "Snake",
  33952. image: {
  33953. source: "./media/characters/sabrina/snake.svg",
  33954. extra: 1758 / 1320,
  33955. bottom: 186 / 1944
  33956. }
  33957. },
  33958. collar: {
  33959. height: math.unit(1.86, "meters"),
  33960. name: "Collar",
  33961. image: {
  33962. source: "./media/characters/sabrina/collar.svg"
  33963. }
  33964. },
  33965. eye: {
  33966. height: math.unit(0.53, "meters"),
  33967. name: "Eye",
  33968. image: {
  33969. source: "./media/characters/sabrina/eye.svg"
  33970. }
  33971. },
  33972. foot: {
  33973. height: math.unit(1.86, "meters"),
  33974. name: "Foot",
  33975. image: {
  33976. source: "./media/characters/sabrina/foot.svg"
  33977. }
  33978. },
  33979. hand: {
  33980. height: math.unit(1.32, "meters"),
  33981. name: "Hand",
  33982. image: {
  33983. source: "./media/characters/sabrina/hand.svg"
  33984. }
  33985. },
  33986. head: {
  33987. height: math.unit(2.44, "meters"),
  33988. name: "Head",
  33989. image: {
  33990. source: "./media/characters/sabrina/head.svg"
  33991. }
  33992. },
  33993. headAngry: {
  33994. height: math.unit(2.44, "meters"),
  33995. name: "Head (Angry))",
  33996. image: {
  33997. source: "./media/characters/sabrina/head-angry.svg"
  33998. }
  33999. },
  34000. maw: {
  34001. height: math.unit(1.65, "meters"),
  34002. name: "Maw",
  34003. image: {
  34004. source: "./media/characters/sabrina/maw.svg"
  34005. }
  34006. },
  34007. spikes: {
  34008. height: math.unit(1.69, "meters"),
  34009. name: "Spikes",
  34010. image: {
  34011. source: "./media/characters/sabrina/spikes.svg"
  34012. }
  34013. },
  34014. stomach: {
  34015. height: math.unit(1.15, "meters"),
  34016. name: "Stomach",
  34017. image: {
  34018. source: "./media/characters/sabrina/stomach.svg"
  34019. }
  34020. },
  34021. tongue: {
  34022. height: math.unit(1.27, "meters"),
  34023. name: "Tongue",
  34024. image: {
  34025. source: "./media/characters/sabrina/tongue.svg"
  34026. }
  34027. },
  34028. wingDorsal: {
  34029. height: math.unit(4.85, "meters"),
  34030. name: "Wing (Dorsal)",
  34031. image: {
  34032. source: "./media/characters/sabrina/wing-dorsal.svg"
  34033. }
  34034. },
  34035. wingVentral: {
  34036. height: math.unit(4.85, "meters"),
  34037. name: "Wing (Ventral)",
  34038. image: {
  34039. source: "./media/characters/sabrina/wing-ventral.svg"
  34040. }
  34041. },
  34042. },
  34043. [
  34044. {
  34045. name: "Normal",
  34046. height: math.unit(5, "meters"),
  34047. default: true
  34048. },
  34049. ]
  34050. ))
  34051. characterMakers.push(() => makeCharacter(
  34052. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34053. {
  34054. frontMaid: {
  34055. height: math.unit(5 + 5/12, "feet"),
  34056. weight: math.unit(130, "lb"),
  34057. name: "Front (Maid)",
  34058. image: {
  34059. source: "./media/characters/midnight-tales/front-maid.svg",
  34060. extra: 489/454,
  34061. bottom: 61/550
  34062. }
  34063. },
  34064. frontFormal: {
  34065. height: math.unit(5 + 5/12, "feet"),
  34066. weight: math.unit(130, "lb"),
  34067. name: "Front (Formal)",
  34068. image: {
  34069. source: "./media/characters/midnight-tales/front-formal.svg",
  34070. extra: 489/454,
  34071. bottom: 61/550
  34072. }
  34073. },
  34074. back: {
  34075. height: math.unit(5 + 5/12, "feet"),
  34076. weight: math.unit(130, "lb"),
  34077. name: "Back",
  34078. image: {
  34079. source: "./media/characters/midnight-tales/back.svg",
  34080. extra: 498/456,
  34081. bottom: 33/531
  34082. }
  34083. },
  34084. frontBeast: {
  34085. height: math.unit(40, "feet"),
  34086. weight: math.unit(64000, "lb"),
  34087. name: "Front (Beast)",
  34088. image: {
  34089. source: "./media/characters/midnight-tales/front-beast.svg",
  34090. extra: 927/860,
  34091. bottom: 53/980
  34092. }
  34093. },
  34094. backBeast: {
  34095. height: math.unit(40, "feet"),
  34096. weight: math.unit(64000, "lb"),
  34097. name: "Back (Beast)",
  34098. image: {
  34099. source: "./media/characters/midnight-tales/back-beast.svg",
  34100. extra: 929/855,
  34101. bottom: 16/945
  34102. }
  34103. },
  34104. footBeast: {
  34105. height: math.unit(6.7, "feet"),
  34106. name: "Foot (Beast)",
  34107. image: {
  34108. source: "./media/characters/midnight-tales/foot-beast.svg"
  34109. }
  34110. },
  34111. headBeast: {
  34112. height: math.unit(8, "feet"),
  34113. name: "Head (Beast)",
  34114. image: {
  34115. source: "./media/characters/midnight-tales/head-beast.svg"
  34116. }
  34117. },
  34118. },
  34119. [
  34120. {
  34121. name: "Normal",
  34122. height: math.unit(5 + 5 / 12, "feet"),
  34123. default: true
  34124. },
  34125. {
  34126. name: "Macro",
  34127. height: math.unit(25, "feet")
  34128. },
  34129. ]
  34130. ))
  34131. characterMakers.push(() => makeCharacter(
  34132. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34133. {
  34134. front: {
  34135. height: math.unit(5 + 10/12, "feet"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/argon/front.svg",
  34139. extra: 2009/1935,
  34140. bottom: 118/2127
  34141. }
  34142. },
  34143. back: {
  34144. height: math.unit(5 + 10/12, "feet"),
  34145. name: "Back",
  34146. image: {
  34147. source: "./media/characters/argon/back.svg",
  34148. extra: 2047/1992,
  34149. bottom: 20/2067
  34150. }
  34151. },
  34152. frontDressed: {
  34153. height: math.unit(5 + 10/12, "feet"),
  34154. name: "Front (Dressed)",
  34155. image: {
  34156. source: "./media/characters/argon/front-dressed.svg",
  34157. extra: 2009/1935,
  34158. bottom: 118/2127
  34159. }
  34160. },
  34161. },
  34162. [
  34163. {
  34164. name: "Normal",
  34165. height: math.unit(5 + 10/12, "feet"),
  34166. default: true
  34167. },
  34168. ]
  34169. ))
  34170. characterMakers.push(() => makeCharacter(
  34171. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34172. {
  34173. front: {
  34174. height: math.unit(8 + 6/12, "feet"),
  34175. weight: math.unit(1150, "lb"),
  34176. name: "Front",
  34177. image: {
  34178. source: "./media/characters/kichi/front.svg",
  34179. extra: 1267/1164,
  34180. bottom: 61/1328
  34181. }
  34182. },
  34183. back: {
  34184. height: math.unit(8 + 6/12, "feet"),
  34185. weight: math.unit(1150, "lb"),
  34186. name: "Back",
  34187. image: {
  34188. source: "./media/characters/kichi/back.svg",
  34189. extra: 1273/1166,
  34190. bottom: 33/1306
  34191. }
  34192. },
  34193. },
  34194. [
  34195. {
  34196. name: "Normal",
  34197. height: math.unit(8 + 6/12, "feet"),
  34198. default: true
  34199. },
  34200. ]
  34201. ))
  34202. characterMakers.push(() => makeCharacter(
  34203. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34204. {
  34205. front: {
  34206. height: math.unit(6, "feet"),
  34207. weight: math.unit(210, "lb"),
  34208. name: "Front",
  34209. image: {
  34210. source: "./media/characters/manetel-greyscale/front.svg",
  34211. extra: 350/312,
  34212. bottom: 8/358
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Micro",
  34219. height: math.unit(2, "inches")
  34220. },
  34221. {
  34222. name: "Normal",
  34223. height: math.unit(6, "feet"),
  34224. default: true
  34225. },
  34226. {
  34227. name: "Minimacro",
  34228. height: math.unit(17, "feet")
  34229. },
  34230. {
  34231. name: "Macro",
  34232. height: math.unit(117, "feet")
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34238. {
  34239. side: {
  34240. height: math.unit(5 + 1/12, "feet"),
  34241. weight: math.unit(418, "lb"),
  34242. name: "Side",
  34243. image: {
  34244. source: "./media/characters/softpurr/side.svg",
  34245. extra: 1993/1945,
  34246. bottom: 134/2127
  34247. }
  34248. },
  34249. front: {
  34250. height: math.unit(5 + 1/12, "feet"),
  34251. weight: math.unit(418, "lb"),
  34252. name: "Front",
  34253. image: {
  34254. source: "./media/characters/softpurr/front.svg",
  34255. extra: 1950/1856,
  34256. bottom: 174/2124
  34257. }
  34258. },
  34259. paw: {
  34260. height: math.unit(1, "feet"),
  34261. name: "Paw",
  34262. image: {
  34263. source: "./media/characters/softpurr/paw.svg"
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Normal",
  34270. height: math.unit(5 + 1/12, "feet"),
  34271. default: true
  34272. },
  34273. ]
  34274. ))
  34275. characterMakers.push(() => makeCharacter(
  34276. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34277. {
  34278. front: {
  34279. height: math.unit(260, "meters"),
  34280. name: "Front",
  34281. image: {
  34282. source: "./media/characters/anahita/front.svg",
  34283. extra: 665/635,
  34284. bottom: 89/754
  34285. }
  34286. },
  34287. },
  34288. [
  34289. {
  34290. name: "Macro",
  34291. height: math.unit(260, "meters"),
  34292. default: true
  34293. },
  34294. ]
  34295. ))
  34296. characterMakers.push(() => makeCharacter(
  34297. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34298. {
  34299. front: {
  34300. height: math.unit(4 + 10/12, "feet"),
  34301. weight: math.unit(160, "lb"),
  34302. name: "Front",
  34303. image: {
  34304. source: "./media/characters/chip-mouse/front.svg",
  34305. extra: 3528/3408,
  34306. bottom: 0/3528
  34307. }
  34308. },
  34309. frontNsfw: {
  34310. height: math.unit(4 + 10/12, "feet"),
  34311. weight: math.unit(160, "lb"),
  34312. name: "Front (NSFW)",
  34313. image: {
  34314. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34315. extra: 3528/3408,
  34316. bottom: 0/3528
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(4 + 10/12, "feet"),
  34324. default: true
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34330. {
  34331. side: {
  34332. height: math.unit(10, "feet"),
  34333. weight: math.unit(14000, "lb"),
  34334. name: "Side",
  34335. image: {
  34336. source: "./media/characters/kremm/side.svg",
  34337. extra: 1390/1053,
  34338. bottom: 90/1480
  34339. }
  34340. },
  34341. gut: {
  34342. height: math.unit(5.8, "feet"),
  34343. name: "Gut",
  34344. image: {
  34345. source: "./media/characters/kremm/gut.svg"
  34346. }
  34347. },
  34348. ass: {
  34349. height: math.unit(6.1, "feet"),
  34350. name: "Ass",
  34351. image: {
  34352. source: "./media/characters/kremm/ass.svg"
  34353. }
  34354. },
  34355. jaws: {
  34356. height: math.unit(2.2, "feet"),
  34357. name: "Jaws",
  34358. image: {
  34359. source: "./media/characters/kremm/jaws.svg"
  34360. }
  34361. },
  34362. dick: {
  34363. height: math.unit(4.26, "feet"),
  34364. name: "Dick",
  34365. image: {
  34366. source: "./media/characters/kremm/dick.svg"
  34367. }
  34368. },
  34369. },
  34370. [
  34371. {
  34372. name: "Normal",
  34373. height: math.unit(10, "feet"),
  34374. default: true
  34375. },
  34376. ]
  34377. ))
  34378. characterMakers.push(() => makeCharacter(
  34379. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34380. {
  34381. front: {
  34382. height: math.unit(30, "stories"),
  34383. name: "Front",
  34384. image: {
  34385. source: "./media/characters/kai/front.svg",
  34386. extra: 1892/1718,
  34387. bottom: 162/2054
  34388. }
  34389. },
  34390. },
  34391. [
  34392. {
  34393. name: "Macro",
  34394. height: math.unit(30, "stories"),
  34395. default: true
  34396. },
  34397. ]
  34398. ))
  34399. characterMakers.push(() => makeCharacter(
  34400. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34401. {
  34402. front: {
  34403. height: math.unit(6 + 4/12, "feet"),
  34404. weight: math.unit(145, "lb"),
  34405. name: "Front",
  34406. image: {
  34407. source: "./media/characters/sykes/front.svg",
  34408. extra: 1321 / 1187,
  34409. bottom: 66 / 1387
  34410. }
  34411. },
  34412. back: {
  34413. height: math.unit(6 + 4/12, "feet"),
  34414. weight: math.unit(145, "lb"),
  34415. name: "Back",
  34416. image: {
  34417. source: "./media/characters/sykes/back.svg",
  34418. extra: 1326/1181,
  34419. bottom: 31/1357
  34420. }
  34421. },
  34422. handBack: {
  34423. height: math.unit(0.9, "feet"),
  34424. name: "Hand (Back)",
  34425. image: {
  34426. source: "./media/characters/sykes/hand-back.svg"
  34427. }
  34428. },
  34429. handFront: {
  34430. height: math.unit(0.839, "feet"),
  34431. name: "Hand (Front)",
  34432. image: {
  34433. source: "./media/characters/sykes/hand-front.svg"
  34434. }
  34435. },
  34436. leftFoot: {
  34437. height: math.unit(1.2, "feet"),
  34438. name: "Foot (Left)",
  34439. image: {
  34440. source: "./media/characters/sykes/foot-left.svg"
  34441. }
  34442. },
  34443. rightFoot: {
  34444. height: math.unit(1.2, "feet"),
  34445. name: "Foot (Right)",
  34446. image: {
  34447. source: "./media/characters/sykes/foot-right.svg"
  34448. }
  34449. },
  34450. maw: {
  34451. height: math.unit(1.93, "feet"),
  34452. name: "Maw",
  34453. image: {
  34454. source: "./media/characters/sykes/maw.svg"
  34455. }
  34456. },
  34457. teeth: {
  34458. height: math.unit(0.51, "feet"),
  34459. name: "Teeth",
  34460. image: {
  34461. source: "./media/characters/sykes/teeth.svg"
  34462. }
  34463. },
  34464. tongue: {
  34465. height: math.unit(2.13, "feet"),
  34466. name: "Tongue",
  34467. image: {
  34468. source: "./media/characters/sykes/tongue.svg"
  34469. }
  34470. },
  34471. uvula: {
  34472. height: math.unit(0.16, "feet"),
  34473. name: "Uvula",
  34474. image: {
  34475. source: "./media/characters/sykes/uvula.svg"
  34476. }
  34477. },
  34478. collar: {
  34479. height: math.unit(0.287, "feet"),
  34480. name: "Collar",
  34481. image: {
  34482. source: "./media/characters/sykes/collar.svg"
  34483. }
  34484. },
  34485. },
  34486. [
  34487. {
  34488. name: "Shrunken",
  34489. height: math.unit(5, "inches")
  34490. },
  34491. {
  34492. name: "Normal",
  34493. height: math.unit(6 + 4 / 12, "feet"),
  34494. default: true
  34495. },
  34496. {
  34497. name: "Big",
  34498. height: math.unit(15, "feet")
  34499. },
  34500. ]
  34501. ))
  34502. characterMakers.push(() => makeCharacter(
  34503. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34504. {
  34505. front: {
  34506. height: math.unit(5 + 8/12, "feet"),
  34507. weight: math.unit(190, "lb"),
  34508. name: "Front",
  34509. image: {
  34510. source: "./media/characters/oven-otter/front.svg",
  34511. extra: 1809/1740,
  34512. bottom: 181/1990
  34513. }
  34514. },
  34515. back: {
  34516. height: math.unit(5 + 8/12, "feet"),
  34517. weight: math.unit(190, "lb"),
  34518. name: "Back",
  34519. image: {
  34520. source: "./media/characters/oven-otter/back.svg",
  34521. extra: 1709/1635,
  34522. bottom: 118/1827
  34523. }
  34524. },
  34525. hand: {
  34526. height: math.unit(1.07, "feet"),
  34527. name: "Hand",
  34528. image: {
  34529. source: "./media/characters/oven-otter/hand.svg"
  34530. }
  34531. },
  34532. beans: {
  34533. height: math.unit(1.74, "feet"),
  34534. name: "Beans",
  34535. image: {
  34536. source: "./media/characters/oven-otter/beans.svg"
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Micro",
  34543. height: math.unit(0.5, "inches")
  34544. },
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(5 + 8/12, "feet"),
  34548. default: true
  34549. },
  34550. {
  34551. name: "Macro",
  34552. height: math.unit(250, "feet")
  34553. },
  34554. {
  34555. name: "Really High",
  34556. height: math.unit(420, "feet")
  34557. },
  34558. ]
  34559. ))
  34560. characterMakers.push(() => makeCharacter(
  34561. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34562. {
  34563. front: {
  34564. height: math.unit(5, "meters"),
  34565. weight: math.unit(292000000000000, "kg"),
  34566. name: "Front",
  34567. image: {
  34568. source: "./media/characters/devourer/front.svg",
  34569. extra: 1800/1733,
  34570. bottom: 211/2011
  34571. }
  34572. },
  34573. maw: {
  34574. height: math.unit(1.1, "meter"),
  34575. name: "Maw",
  34576. image: {
  34577. source: "./media/characters/devourer/maw.svg"
  34578. }
  34579. },
  34580. },
  34581. [
  34582. {
  34583. name: "Small",
  34584. height: math.unit(3, "meters")
  34585. },
  34586. {
  34587. name: "Large",
  34588. height: math.unit(5, "meters"),
  34589. default: true
  34590. },
  34591. ]
  34592. ))
  34593. characterMakers.push(() => makeCharacter(
  34594. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34595. {
  34596. front: {
  34597. height: math.unit(6, "feet"),
  34598. weight: math.unit(400, "lb"),
  34599. name: "Front",
  34600. image: {
  34601. source: "./media/characters/ellarby/front.svg",
  34602. extra: 1909/1763,
  34603. bottom: 80/1989
  34604. }
  34605. },
  34606. back: {
  34607. height: math.unit(6, "feet"),
  34608. weight: math.unit(400, "lb"),
  34609. name: "Back",
  34610. image: {
  34611. source: "./media/characters/ellarby/back.svg",
  34612. extra: 1914/1784,
  34613. bottom: 172/2086
  34614. }
  34615. },
  34616. },
  34617. [
  34618. {
  34619. name: "Mischief",
  34620. height: math.unit(18, "inches")
  34621. },
  34622. {
  34623. name: "Trouble",
  34624. height: math.unit(12, "feet")
  34625. },
  34626. {
  34627. name: "Havoc",
  34628. height: math.unit(200, "feet"),
  34629. default: true
  34630. },
  34631. {
  34632. name: "Pandemonium",
  34633. height: math.unit(1, "mile")
  34634. },
  34635. {
  34636. name: "Catastrophe",
  34637. height: math.unit(100, "miles")
  34638. },
  34639. ]
  34640. ))
  34641. characterMakers.push(() => makeCharacter(
  34642. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34643. {
  34644. front: {
  34645. height: math.unit(4.7, "meters"),
  34646. weight: math.unit(6500, "kg"),
  34647. name: "Front",
  34648. image: {
  34649. source: "./media/characters/vex/front.svg",
  34650. extra: 1288/1140,
  34651. bottom: 100/1388
  34652. }
  34653. },
  34654. },
  34655. [
  34656. {
  34657. name: "Normal",
  34658. height: math.unit(4.7, "meters"),
  34659. default: true
  34660. },
  34661. ]
  34662. ))
  34663. characterMakers.push(() => makeCharacter(
  34664. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34665. {
  34666. normal: {
  34667. height: math.unit(6, "feet"),
  34668. weight: math.unit(350, "lb"),
  34669. name: "Normal",
  34670. image: {
  34671. source: "./media/characters/teshy/normal.svg",
  34672. extra: 1795/1735,
  34673. bottom: 16/1811
  34674. }
  34675. },
  34676. monsterFront: {
  34677. height: math.unit(12, "feet"),
  34678. weight: math.unit(4700, "lb"),
  34679. name: "Monster (Front)",
  34680. image: {
  34681. source: "./media/characters/teshy/monster-front.svg",
  34682. extra: 2042/2034,
  34683. bottom: 128/2170
  34684. }
  34685. },
  34686. monsterSide: {
  34687. height: math.unit(12, "feet"),
  34688. weight: math.unit(4700, "lb"),
  34689. name: "Monster (Side)",
  34690. image: {
  34691. source: "./media/characters/teshy/monster-side.svg",
  34692. extra: 2067/2056,
  34693. bottom: 70/2137
  34694. }
  34695. },
  34696. monsterBack: {
  34697. height: math.unit(12, "feet"),
  34698. weight: math.unit(4700, "lb"),
  34699. name: "Monster (Back)",
  34700. image: {
  34701. source: "./media/characters/teshy/monster-back.svg",
  34702. extra: 1921/1914,
  34703. bottom: 171/2092
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Normal",
  34710. height: math.unit(6, "feet"),
  34711. default: true
  34712. },
  34713. ]
  34714. ))
  34715. characterMakers.push(() => makeCharacter(
  34716. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34717. {
  34718. front: {
  34719. height: math.unit(6, "feet"),
  34720. name: "Front",
  34721. image: {
  34722. source: "./media/characters/ramey/front.svg",
  34723. extra: 790/787,
  34724. bottom: 27/817
  34725. }
  34726. },
  34727. },
  34728. [
  34729. {
  34730. name: "Normal",
  34731. height: math.unit(6, "feet"),
  34732. default: true
  34733. },
  34734. ]
  34735. ))
  34736. characterMakers.push(() => makeCharacter(
  34737. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34738. {
  34739. front: {
  34740. height: math.unit(5 + 5/12, "feet"),
  34741. weight: math.unit(120, "lb"),
  34742. name: "Front",
  34743. image: {
  34744. source: "./media/characters/phirae/front.svg",
  34745. extra: 2491/2436,
  34746. bottom: 38/2529
  34747. }
  34748. },
  34749. },
  34750. [
  34751. {
  34752. name: "Normal",
  34753. height: math.unit(5 + 5/12, "feet"),
  34754. default: true
  34755. },
  34756. ]
  34757. ))
  34758. characterMakers.push(() => makeCharacter(
  34759. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34760. {
  34761. front: {
  34762. height: math.unit(5 + 3/12, "feet"),
  34763. name: "Front",
  34764. image: {
  34765. source: "./media/characters/stagglas/front.svg",
  34766. extra: 962/882,
  34767. bottom: 53/1015
  34768. }
  34769. },
  34770. feral: {
  34771. height: math.unit(335, "cm"),
  34772. name: "Feral",
  34773. image: {
  34774. source: "./media/characters/stagglas/feral.svg",
  34775. extra: 1732/1090,
  34776. bottom: 48/1780
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Normal",
  34783. height: math.unit(5 + 3/12, "feet"),
  34784. default: true
  34785. },
  34786. ]
  34787. ))
  34788. characterMakers.push(() => makeCharacter(
  34789. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34790. {
  34791. front: {
  34792. height: math.unit(5 + 4/12, "feet"),
  34793. weight: math.unit(145, "lb"),
  34794. name: "Front",
  34795. image: {
  34796. source: "./media/characters/starra/front.svg",
  34797. extra: 1790/1691,
  34798. bottom: 91/1881
  34799. }
  34800. },
  34801. },
  34802. [
  34803. {
  34804. name: "Normal",
  34805. height: math.unit(5 + 4/12, "feet"),
  34806. default: true
  34807. },
  34808. ]
  34809. ))
  34810. characterMakers.push(() => makeCharacter(
  34811. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34812. {
  34813. front: {
  34814. height: math.unit(2.2, "meters"),
  34815. name: "Front",
  34816. image: {
  34817. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34818. extra: 1194/1005,
  34819. bottom: 25/1219
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(2.2, "meters"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34833. {
  34834. side: {
  34835. height: math.unit(8 + 2/12, "feet"),
  34836. weight: math.unit(1240, "lb"),
  34837. name: "Side",
  34838. image: {
  34839. source: "./media/characters/mika-valentine/side.svg",
  34840. extra: 2670/2501,
  34841. bottom: 250/2920
  34842. }
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Normal",
  34848. height: math.unit(8 + 2/12, "feet"),
  34849. default: true
  34850. },
  34851. ]
  34852. ))
  34853. characterMakers.push(() => makeCharacter(
  34854. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34855. {
  34856. front: {
  34857. height: math.unit(7 + 2/12, "feet"),
  34858. name: "Front",
  34859. image: {
  34860. source: "./media/characters/xoltol/front.svg",
  34861. extra: 2212/2124,
  34862. bottom: 84/2296
  34863. }
  34864. },
  34865. side: {
  34866. height: math.unit(7 + 2/12, "feet"),
  34867. name: "Side",
  34868. image: {
  34869. source: "./media/characters/xoltol/side.svg",
  34870. extra: 2273/2197,
  34871. bottom: 26/2299
  34872. }
  34873. },
  34874. hand: {
  34875. height: math.unit(2.5, "feet"),
  34876. name: "Hand",
  34877. image: {
  34878. source: "./media/characters/xoltol/hand.svg"
  34879. }
  34880. },
  34881. },
  34882. [
  34883. {
  34884. name: "Small-ish",
  34885. height: math.unit(5 + 11/12, "feet")
  34886. },
  34887. {
  34888. name: "Normal",
  34889. height: math.unit(7 + 2/12, "feet")
  34890. },
  34891. {
  34892. name: "\"Macro\"",
  34893. height: math.unit(14 + 9/12, "feet"),
  34894. default: true
  34895. },
  34896. {
  34897. name: "Alternate Height",
  34898. height: math.unit(20, "feet")
  34899. },
  34900. {
  34901. name: "Actually Macro",
  34902. height: math.unit(100, "feet")
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(5 + 2/12, "feet"),
  34911. name: "Front",
  34912. image: {
  34913. source: "./media/characters/kotetsu-redwood/front.svg",
  34914. extra: 1053/942,
  34915. bottom: 60/1113
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Normal",
  34922. height: math.unit(5 + 2/12, "feet"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34929. {
  34930. front: {
  34931. height: math.unit(2.4, "meters"),
  34932. weight: math.unit(125, "kg"),
  34933. name: "Front",
  34934. image: {
  34935. source: "./media/characters/lilith/front.svg",
  34936. extra: 1590/1513,
  34937. bottom: 203/1793
  34938. }
  34939. },
  34940. },
  34941. [
  34942. {
  34943. name: "Humanoid",
  34944. height: math.unit(2.4, "meters")
  34945. },
  34946. {
  34947. name: "Normal",
  34948. height: math.unit(6, "meters"),
  34949. default: true
  34950. },
  34951. {
  34952. name: "Largest",
  34953. height: math.unit(55, "meters")
  34954. },
  34955. ]
  34956. ))
  34957. characterMakers.push(() => makeCharacter(
  34958. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34959. {
  34960. front: {
  34961. height: math.unit(8 + 4/12, "feet"),
  34962. weight: math.unit(535, "lb"),
  34963. name: "Front",
  34964. image: {
  34965. source: "./media/characters/beh'kah-bolger/front.svg",
  34966. extra: 1660/1603,
  34967. bottom: 37/1697
  34968. }
  34969. },
  34970. },
  34971. [
  34972. {
  34973. name: "Normal",
  34974. height: math.unit(8 + 4/12, "feet"),
  34975. default: true
  34976. },
  34977. {
  34978. name: "Kaiju",
  34979. height: math.unit(250, "feet")
  34980. },
  34981. {
  34982. name: "Still Growing",
  34983. height: math.unit(10, "miles")
  34984. },
  34985. {
  34986. name: "Continental",
  34987. height: math.unit(5000, "miles")
  34988. },
  34989. {
  34990. name: "Final Form",
  34991. height: math.unit(2500000, "miles")
  34992. },
  34993. ]
  34994. ))
  34995. characterMakers.push(() => makeCharacter(
  34996. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34997. {
  34998. front: {
  34999. height: math.unit(7 + 2/12, "feet"),
  35000. weight: math.unit(230, "kg"),
  35001. name: "Front",
  35002. image: {
  35003. source: "./media/characters/tatyana-milewska/front.svg",
  35004. extra: 1199/1150,
  35005. bottom: 86/1285
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(7 + 2/12, "feet"),
  35013. default: true
  35014. },
  35015. {
  35016. name: "Big",
  35017. height: math.unit(12, "feet")
  35018. },
  35019. {
  35020. name: "Minimacro",
  35021. height: math.unit(20, "feet")
  35022. },
  35023. {
  35024. name: "Macro",
  35025. height: math.unit(120, "feet")
  35026. },
  35027. ]
  35028. ))
  35029. characterMakers.push(() => makeCharacter(
  35030. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35031. {
  35032. front: {
  35033. height: math.unit(7 + 8/12, "feet"),
  35034. weight: math.unit(152, "kg"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/helen-arri/front.svg",
  35038. extra: 440/423,
  35039. bottom: 14/454
  35040. }
  35041. },
  35042. back: {
  35043. height: math.unit(7 + 8/12, "feet"),
  35044. weight: math.unit(152, "kg"),
  35045. name: "Back",
  35046. image: {
  35047. source: "./media/characters/helen-arri/back.svg",
  35048. extra: 443/426,
  35049. bottom: 8/451
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Normal",
  35056. height: math.unit(7 + 8/12, "feet"),
  35057. default: true
  35058. },
  35059. {
  35060. name: "Big",
  35061. height: math.unit(14, "feet")
  35062. },
  35063. {
  35064. name: "Minimacro",
  35065. height: math.unit(24, "feet")
  35066. },
  35067. {
  35068. name: "Macro",
  35069. height: math.unit(140, "feet")
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35075. {
  35076. front: {
  35077. height: math.unit(6, "meters"),
  35078. name: "Front",
  35079. image: {
  35080. source: "./media/characters/ehanu-rehu/front.svg",
  35081. extra: 1800/1800,
  35082. bottom: 59/1859
  35083. }
  35084. },
  35085. },
  35086. [
  35087. {
  35088. name: "Normal",
  35089. height: math.unit(6, "meters"),
  35090. default: true
  35091. },
  35092. ]
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35096. {
  35097. front: {
  35098. height: math.unit(7 + 3/12, "feet"),
  35099. name: "Front",
  35100. image: {
  35101. source: "./media/characters/renholder/front.svg",
  35102. extra: 3096/2960,
  35103. bottom: 250/3346
  35104. }
  35105. },
  35106. },
  35107. [
  35108. {
  35109. name: "Normal Bat",
  35110. height: math.unit(7 + 3/12, "feet"),
  35111. default: true
  35112. },
  35113. {
  35114. name: "Slightly Tall Bat",
  35115. height: math.unit(100, "feet")
  35116. },
  35117. {
  35118. name: "Big Bat",
  35119. height: math.unit(1000, "feet")
  35120. },
  35121. {
  35122. name: "City-Sized Bat",
  35123. height: math.unit(200000, "feet")
  35124. },
  35125. {
  35126. name: "Bigger Bat",
  35127. height: math.unit(10000, "miles")
  35128. },
  35129. {
  35130. name: "Solar Sized Bat",
  35131. height: math.unit(100, "AU")
  35132. },
  35133. {
  35134. name: "Galactic Bat",
  35135. height: math.unit(200000, "lightyears")
  35136. },
  35137. {
  35138. name: "Universally Known Bat",
  35139. height: math.unit(1, "universe")
  35140. },
  35141. ]
  35142. ))
  35143. characterMakers.push(() => makeCharacter(
  35144. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35145. {
  35146. front: {
  35147. height: math.unit(6 + 11/12, "feet"),
  35148. weight: math.unit(250, "lb"),
  35149. name: "Front",
  35150. image: {
  35151. source: "./media/characters/cookiecat/front.svg",
  35152. extra: 893/827,
  35153. bottom: 14/907
  35154. }
  35155. },
  35156. },
  35157. [
  35158. {
  35159. name: "Micro",
  35160. height: math.unit(3, "inches")
  35161. },
  35162. {
  35163. name: "Normal",
  35164. height: math.unit(6 + 11/12, "feet"),
  35165. default: true
  35166. },
  35167. {
  35168. name: "Macro",
  35169. height: math.unit(100, "feet")
  35170. },
  35171. {
  35172. name: "Macro+",
  35173. height: math.unit(404, "feet")
  35174. },
  35175. {
  35176. name: "Megamacro",
  35177. height: math.unit(165, "miles")
  35178. },
  35179. {
  35180. name: "Planetary",
  35181. height: math.unit(4600, "miles")
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35187. {
  35188. front: {
  35189. height: math.unit(10 + 3/12, "feet"),
  35190. weight: math.unit(1500, "lb"),
  35191. name: "Front",
  35192. image: {
  35193. source: "./media/characters/tux-kusanagi/front.svg",
  35194. extra: 944/840,
  35195. bottom: 39/983
  35196. }
  35197. },
  35198. back: {
  35199. height: math.unit(10 + 3/12, "feet"),
  35200. weight: math.unit(1500, "lb"),
  35201. name: "Back",
  35202. image: {
  35203. source: "./media/characters/tux-kusanagi/back.svg",
  35204. extra: 941/842,
  35205. bottom: 28/969
  35206. }
  35207. },
  35208. rump: {
  35209. height: math.unit(5.25, "feet"),
  35210. name: "Rump",
  35211. image: {
  35212. source: "./media/characters/tux-kusanagi/rump.svg"
  35213. }
  35214. },
  35215. beak: {
  35216. height: math.unit(1.54, "feet"),
  35217. name: "Beak",
  35218. image: {
  35219. source: "./media/characters/tux-kusanagi/beak.svg"
  35220. }
  35221. },
  35222. },
  35223. [
  35224. {
  35225. name: "Normal",
  35226. height: math.unit(10 + 3/12, "feet"),
  35227. default: true
  35228. },
  35229. ]
  35230. ))
  35231. characterMakers.push(() => makeCharacter(
  35232. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35233. {
  35234. front: {
  35235. height: math.unit(58, "feet"),
  35236. weight: math.unit(200, "tons"),
  35237. name: "Front",
  35238. image: {
  35239. source: "./media/characters/uzarmazari/front.svg",
  35240. extra: 1575/1455,
  35241. bottom: 152/1727
  35242. }
  35243. },
  35244. back: {
  35245. height: math.unit(58, "feet"),
  35246. weight: math.unit(200, "tons"),
  35247. name: "Back",
  35248. image: {
  35249. source: "./media/characters/uzarmazari/back.svg",
  35250. extra: 1585/1510,
  35251. bottom: 157/1742
  35252. }
  35253. },
  35254. head: {
  35255. height: math.unit(26, "feet"),
  35256. name: "Head",
  35257. image: {
  35258. source: "./media/characters/uzarmazari/head.svg"
  35259. }
  35260. },
  35261. },
  35262. [
  35263. {
  35264. name: "Normal",
  35265. height: math.unit(58, "feet"),
  35266. default: true
  35267. },
  35268. ]
  35269. ))
  35270. characterMakers.push(() => makeCharacter(
  35271. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35272. {
  35273. side: {
  35274. height: math.unit(15, "feet"),
  35275. name: "Side",
  35276. image: {
  35277. source: "./media/characters/akitu/side.svg",
  35278. extra: 1421/1321,
  35279. bottom: 157/1578
  35280. }
  35281. },
  35282. front: {
  35283. height: math.unit(15, "feet"),
  35284. name: "Front",
  35285. image: {
  35286. source: "./media/characters/akitu/front.svg",
  35287. extra: 1435/1326,
  35288. bottom: 232/1667
  35289. }
  35290. },
  35291. },
  35292. [
  35293. {
  35294. name: "Normal",
  35295. height: math.unit(15, "feet"),
  35296. default: true
  35297. },
  35298. ]
  35299. ))
  35300. characterMakers.push(() => makeCharacter(
  35301. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35302. {
  35303. front: {
  35304. height: math.unit(10 + 8/12, "feet"),
  35305. name: "Front",
  35306. image: {
  35307. source: "./media/characters/azalie-croixland/front.svg",
  35308. extra: 1972/1856,
  35309. bottom: 31/2003
  35310. }
  35311. },
  35312. },
  35313. [
  35314. {
  35315. name: "Original Height",
  35316. height: math.unit(5 + 4/12, "feet")
  35317. },
  35318. {
  35319. name: "Normal Height",
  35320. height: math.unit(10 + 8/12, "feet"),
  35321. default: true
  35322. },
  35323. ]
  35324. ))
  35325. characterMakers.push(() => makeCharacter(
  35326. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35327. {
  35328. side: {
  35329. height: math.unit(7 + 1/12, "feet"),
  35330. weight: math.unit(245, "lb"),
  35331. name: "Side",
  35332. image: {
  35333. source: "./media/characters/kavus-kazian/side.svg",
  35334. extra: 349/342,
  35335. bottom: 15/364
  35336. }
  35337. },
  35338. },
  35339. [
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(7 + 1/12, "feet"),
  35343. default: true
  35344. },
  35345. ]
  35346. ))
  35347. characterMakers.push(() => makeCharacter(
  35348. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35349. {
  35350. normalFront: {
  35351. height: math.unit(5 + 11/12, "feet"),
  35352. name: "Front",
  35353. image: {
  35354. source: "./media/characters/moonlight-rose/normal-front.svg",
  35355. extra: 1980/1825,
  35356. bottom: 18/1998
  35357. },
  35358. form: "normal",
  35359. default: true
  35360. },
  35361. normalBack: {
  35362. height: math.unit(5 + 11/12, "feet"),
  35363. name: "Back",
  35364. image: {
  35365. source: "./media/characters/moonlight-rose/normal-back.svg",
  35366. extra: 2010/1839,
  35367. bottom: 10/2020
  35368. },
  35369. form: "normal"
  35370. },
  35371. demonFront: {
  35372. height: math.unit(1.5, "earths"),
  35373. name: "Front",
  35374. image: {
  35375. source: "./media/characters/moonlight-rose/demon.svg",
  35376. extra: 1400/1294,
  35377. bottom: 45/1445
  35378. },
  35379. form: "demon",
  35380. default: true
  35381. },
  35382. terraFront: {
  35383. height: math.unit(1.5, "earths"),
  35384. name: "Front",
  35385. image: {
  35386. source: "./media/characters/moonlight-rose/terra.svg"
  35387. },
  35388. form: "terra",
  35389. default: true
  35390. },
  35391. jupiterFront: {
  35392. height: math.unit(69911*2, "km"),
  35393. name: "Front",
  35394. image: {
  35395. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35396. extra: 1367/1286,
  35397. bottom: 55/1422
  35398. },
  35399. form: "jupiter",
  35400. default: true
  35401. },
  35402. neptuneFront: {
  35403. height: math.unit(24622*2, "feet"),
  35404. name: "Front",
  35405. image: {
  35406. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35407. extra: 1851/1712,
  35408. bottom: 0/1851
  35409. },
  35410. form: "neptune",
  35411. default: true
  35412. },
  35413. },
  35414. [
  35415. {
  35416. name: "\"Natural\" Height",
  35417. height: math.unit(5 + 11/12, "feet"),
  35418. form: "normal"
  35419. },
  35420. {
  35421. name: "Smallest comfortable size",
  35422. height: math.unit(40, "meters"),
  35423. form: "normal"
  35424. },
  35425. {
  35426. name: "Common size",
  35427. height: math.unit(50, "km"),
  35428. form: "normal",
  35429. default: true
  35430. },
  35431. {
  35432. name: "Normal",
  35433. height: math.unit(1.5, "earths"),
  35434. form: "demon",
  35435. default: true
  35436. },
  35437. {
  35438. name: "Universal",
  35439. height: math.unit(15, "universes"),
  35440. form: "demon"
  35441. },
  35442. {
  35443. name: "Earth",
  35444. height: math.unit(1.5, "earths"),
  35445. form: "terra",
  35446. default: true
  35447. },
  35448. {
  35449. name: "Super Earth",
  35450. height: math.unit(67.5, "earths"),
  35451. form: "terra"
  35452. },
  35453. {
  35454. name: "Doesn't fit in a solar system...",
  35455. height: math.unit(1, "galaxy"),
  35456. form: "terra"
  35457. },
  35458. {
  35459. name: "Saturn",
  35460. height: math.unit(58232*2, "km"),
  35461. form: "jupiter"
  35462. },
  35463. {
  35464. name: "Jupiter",
  35465. height: math.unit(69911*2, "km"),
  35466. form: "jupiter",
  35467. default: true
  35468. },
  35469. {
  35470. name: "HD 100546 b",
  35471. height: math.unit(482938, "km"),
  35472. form: "jupiter"
  35473. },
  35474. {
  35475. name: "Enceladus",
  35476. height: math.unit(513*2, "km"),
  35477. form: "neptune"
  35478. },
  35479. {
  35480. name: "Europe",
  35481. height: math.unit(1560*2, "km"),
  35482. form: "neptune"
  35483. },
  35484. {
  35485. name: "Neptune",
  35486. height: math.unit(24622*2, "km"),
  35487. form: "neptune",
  35488. default: true
  35489. },
  35490. {
  35491. name: "CoRoT-9b",
  35492. height: math.unit(75067*2, "km"),
  35493. form: "neptune"
  35494. },
  35495. ],
  35496. {
  35497. "normal": {
  35498. name: "Normal",
  35499. default: true
  35500. },
  35501. "demon": {
  35502. name: "Demon"
  35503. },
  35504. "terra": {
  35505. name: "Terra"
  35506. },
  35507. "jupiter": {
  35508. name: "Jupiter"
  35509. },
  35510. "neptune": {
  35511. name: "Neptune"
  35512. }
  35513. }
  35514. ))
  35515. characterMakers.push(() => makeCharacter(
  35516. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35517. {
  35518. front: {
  35519. height: math.unit(16, "feet"),
  35520. weight: math.unit(610, "kg"),
  35521. name: "Front",
  35522. image: {
  35523. source: "./media/characters/huckle/front.svg",
  35524. extra: 1731/1625,
  35525. bottom: 33/1764
  35526. }
  35527. },
  35528. back: {
  35529. height: math.unit(16, "feet"),
  35530. weight: math.unit(610, "kg"),
  35531. name: "Back",
  35532. image: {
  35533. source: "./media/characters/huckle/back.svg",
  35534. extra: 1738/1651,
  35535. bottom: 37/1775
  35536. }
  35537. },
  35538. laughing: {
  35539. height: math.unit(3.75, "feet"),
  35540. name: "Laughing",
  35541. image: {
  35542. source: "./media/characters/huckle/laughing.svg"
  35543. }
  35544. },
  35545. angry: {
  35546. height: math.unit(4.15, "feet"),
  35547. name: "Angry",
  35548. image: {
  35549. source: "./media/characters/huckle/angry.svg"
  35550. }
  35551. },
  35552. },
  35553. [
  35554. {
  35555. name: "Normal",
  35556. height: math.unit(16, "feet"),
  35557. default: true
  35558. },
  35559. {
  35560. name: "Mini Macro",
  35561. height: math.unit(463, "feet")
  35562. },
  35563. {
  35564. name: "Macro",
  35565. height: math.unit(1680, "meters")
  35566. },
  35567. {
  35568. name: "Mega Macro",
  35569. height: math.unit(175, "km")
  35570. },
  35571. {
  35572. name: "Terra Macro",
  35573. height: math.unit(32, "gigameters")
  35574. },
  35575. {
  35576. name: "Multiverse+",
  35577. height: math.unit(2.56e23, "yottameters")
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(6 + 9/12, "feet"),
  35586. weight: math.unit(280, "lb"),
  35587. name: "Front",
  35588. image: {
  35589. source: "./media/characters/candy/front.svg",
  35590. extra: 234/217,
  35591. bottom: 11/245
  35592. }
  35593. },
  35594. },
  35595. [
  35596. {
  35597. name: "Really Small",
  35598. height: math.unit(0.1, "nm")
  35599. },
  35600. {
  35601. name: "Micro",
  35602. height: math.unit(2, "inches")
  35603. },
  35604. {
  35605. name: "Normal",
  35606. height: math.unit(6 + 9/12, "feet"),
  35607. default: true
  35608. },
  35609. {
  35610. name: "Small Macro",
  35611. height: math.unit(69, "feet")
  35612. },
  35613. {
  35614. name: "Macro",
  35615. height: math.unit(160, "feet")
  35616. },
  35617. {
  35618. name: "Megamacro",
  35619. height: math.unit(22000, "miles")
  35620. },
  35621. {
  35622. name: "Gigamacro",
  35623. height: math.unit(50000, "miles")
  35624. },
  35625. ]
  35626. ))
  35627. characterMakers.push(() => makeCharacter(
  35628. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35629. {
  35630. front: {
  35631. height: math.unit(4, "feet"),
  35632. weight: math.unit(90, "lb"),
  35633. name: "Front",
  35634. image: {
  35635. source: "./media/characters/joey-mcdonald/front.svg",
  35636. extra: 1059/852,
  35637. bottom: 33/1092
  35638. }
  35639. },
  35640. back: {
  35641. height: math.unit(4, "feet"),
  35642. weight: math.unit(90, "lb"),
  35643. name: "Back",
  35644. image: {
  35645. source: "./media/characters/joey-mcdonald/back.svg",
  35646. extra: 1077/879,
  35647. bottom: 5/1082
  35648. }
  35649. },
  35650. frontKobold: {
  35651. height: math.unit(4, "feet"),
  35652. weight: math.unit(100, "lb"),
  35653. name: "Front-kobold",
  35654. image: {
  35655. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35656. extra: 1480/1367,
  35657. bottom: 0/1480
  35658. }
  35659. },
  35660. backKobold: {
  35661. height: math.unit(4, "feet"),
  35662. weight: math.unit(100, "lb"),
  35663. name: "Back-kobold",
  35664. image: {
  35665. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35666. extra: 1449/1361,
  35667. bottom: 0/1449
  35668. }
  35669. },
  35670. },
  35671. [
  35672. {
  35673. name: "Normal",
  35674. height: math.unit(4, "feet"),
  35675. default: true
  35676. },
  35677. ]
  35678. ))
  35679. characterMakers.push(() => makeCharacter(
  35680. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35681. {
  35682. front: {
  35683. height: math.unit(12 + 6/12, "feet"),
  35684. name: "Front",
  35685. image: {
  35686. source: "./media/characters/kass-lockheed/front.svg",
  35687. extra: 354/343,
  35688. bottom: 9/363
  35689. }
  35690. },
  35691. back: {
  35692. height: math.unit(12 + 6/12, "feet"),
  35693. name: "Back",
  35694. image: {
  35695. source: "./media/characters/kass-lockheed/back.svg",
  35696. extra: 364/352,
  35697. bottom: 3/367
  35698. }
  35699. },
  35700. dick: {
  35701. height: math.unit(3.12, "feet"),
  35702. name: "Dick",
  35703. image: {
  35704. source: "./media/characters/kass-lockheed/dick.svg"
  35705. }
  35706. },
  35707. head: {
  35708. height: math.unit(2.6, "feet"),
  35709. name: "Head",
  35710. image: {
  35711. source: "./media/characters/kass-lockheed/head.svg"
  35712. }
  35713. },
  35714. bleh: {
  35715. height: math.unit(2.85, "feet"),
  35716. name: "Bleh",
  35717. image: {
  35718. source: "./media/characters/kass-lockheed/bleh.svg"
  35719. }
  35720. },
  35721. smug: {
  35722. height: math.unit(2.85, "feet"),
  35723. name: "Smug",
  35724. image: {
  35725. source: "./media/characters/kass-lockheed/smug.svg"
  35726. }
  35727. },
  35728. },
  35729. [
  35730. {
  35731. name: "Normal",
  35732. height: math.unit(12 + 6/12, "feet"),
  35733. default: true
  35734. },
  35735. ]
  35736. ))
  35737. characterMakers.push(() => makeCharacter(
  35738. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35739. {
  35740. front: {
  35741. height: math.unit(6 + 2/12, "feet"),
  35742. name: "Front",
  35743. image: {
  35744. source: "./media/characters/taylor/front.svg",
  35745. extra: 639/495,
  35746. bottom: 12/651
  35747. }
  35748. },
  35749. },
  35750. [
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(6 + 2/12, "feet"),
  35754. default: true
  35755. },
  35756. {
  35757. name: "Big",
  35758. height: math.unit(15, "feet")
  35759. },
  35760. {
  35761. name: "Lorg",
  35762. height: math.unit(80, "feet")
  35763. },
  35764. {
  35765. name: "Too Lorg",
  35766. height: math.unit(120, "feet")
  35767. },
  35768. ]
  35769. ))
  35770. characterMakers.push(() => makeCharacter(
  35771. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35772. {
  35773. front: {
  35774. height: math.unit(15, "feet"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/kaizer/front.svg",
  35778. extra: 1612/1436,
  35779. bottom: 43/1655
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Normal",
  35786. height: math.unit(15, "feet"),
  35787. default: true
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35793. {
  35794. front: {
  35795. height: math.unit(2, "feet"),
  35796. weight: math.unit(30, "lb"),
  35797. name: "Front",
  35798. image: {
  35799. source: "./media/characters/sandy/front.svg",
  35800. extra: 1439/1307,
  35801. bottom: 194/1633
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(2, "feet"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35815. {
  35816. front: {
  35817. height: math.unit(3, "feet"),
  35818. name: "Front",
  35819. image: {
  35820. source: "./media/characters/mellvi/front.svg",
  35821. extra: 1831/1630,
  35822. bottom: 58/1889
  35823. }
  35824. },
  35825. },
  35826. [
  35827. {
  35828. name: "Normal",
  35829. height: math.unit(3, "feet"),
  35830. default: true
  35831. },
  35832. ]
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35836. {
  35837. front: {
  35838. height: math.unit(5 + 11/12, "feet"),
  35839. weight: math.unit(200, "lb"),
  35840. name: "Front",
  35841. image: {
  35842. source: "./media/characters/shirou/front.svg",
  35843. extra: 2491/2383,
  35844. bottom: 189/2680
  35845. }
  35846. },
  35847. back: {
  35848. height: math.unit(5 + 11/12, "feet"),
  35849. weight: math.unit(200, "lb"),
  35850. name: "Back",
  35851. image: {
  35852. source: "./media/characters/shirou/back.svg",
  35853. extra: 2554/2450,
  35854. bottom: 76/2630
  35855. }
  35856. },
  35857. },
  35858. [
  35859. {
  35860. name: "Normal",
  35861. height: math.unit(5 + 11/12, "feet"),
  35862. default: true
  35863. },
  35864. ]
  35865. ))
  35866. characterMakers.push(() => makeCharacter(
  35867. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35868. {
  35869. front: {
  35870. height: math.unit(6 + 3/12, "feet"),
  35871. weight: math.unit(177, "lb"),
  35872. name: "Front",
  35873. image: {
  35874. source: "./media/characters/noryu/front.svg",
  35875. extra: 973/885,
  35876. bottom: 10/983
  35877. }
  35878. },
  35879. },
  35880. [
  35881. {
  35882. name: "Normal",
  35883. height: math.unit(6 + 3/12, "feet"),
  35884. default: true
  35885. },
  35886. ]
  35887. ))
  35888. characterMakers.push(() => makeCharacter(
  35889. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35890. {
  35891. front: {
  35892. height: math.unit(5 + 6/12, "feet"),
  35893. weight: math.unit(170, "lb"),
  35894. name: "Front",
  35895. image: {
  35896. source: "./media/characters/mevolas-rubenido/front.svg",
  35897. extra: 2109/1901,
  35898. bottom: 96/2205
  35899. }
  35900. },
  35901. },
  35902. [
  35903. {
  35904. name: "Normal",
  35905. height: math.unit(5 + 6/12, "feet"),
  35906. default: true
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35912. {
  35913. front: {
  35914. height: math.unit(100, "feet"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/dee/front.svg",
  35918. extra: 2153/2036,
  35919. bottom: 59/2212
  35920. }
  35921. },
  35922. back: {
  35923. height: math.unit(100, "feet"),
  35924. name: "Back",
  35925. image: {
  35926. source: "./media/characters/dee/back.svg",
  35927. extra: 2183/2058,
  35928. bottom: 75/2258
  35929. }
  35930. },
  35931. foot: {
  35932. height: math.unit(19.43, "feet"),
  35933. name: "Foot",
  35934. image: {
  35935. source: "./media/characters/dee/foot.svg"
  35936. }
  35937. },
  35938. hoof: {
  35939. height: math.unit(20.6, "feet"),
  35940. name: "Hoof",
  35941. image: {
  35942. source: "./media/characters/dee/hoof.svg"
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Macro",
  35949. height: math.unit(100, "feet"),
  35950. default: true
  35951. },
  35952. ]
  35953. ))
  35954. characterMakers.push(() => makeCharacter(
  35955. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35956. {
  35957. front: {
  35958. height: math.unit(5 + 6/12, "feet"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/teh/front.svg",
  35962. extra: 1002/847,
  35963. bottom: 62/1064
  35964. }
  35965. },
  35966. },
  35967. [
  35968. {
  35969. name: "Normal",
  35970. height: math.unit(5 + 6/12, "feet"),
  35971. default: true
  35972. },
  35973. ]
  35974. ))
  35975. characterMakers.push(() => makeCharacter(
  35976. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35977. {
  35978. side: {
  35979. height: math.unit(6 + 1/12, "feet"),
  35980. weight: math.unit(204, "lb"),
  35981. name: "Side",
  35982. image: {
  35983. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35984. extra: 974/775,
  35985. bottom: 169/1143
  35986. }
  35987. },
  35988. sitting: {
  35989. height: math.unit(6 + 2/12, "feet"),
  35990. weight: math.unit(204, "lb"),
  35991. name: "Sitting",
  35992. image: {
  35993. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35994. extra: 1175/964,
  35995. bottom: 378/1553
  35996. }
  35997. },
  35998. },
  35999. [
  36000. {
  36001. name: "Normal",
  36002. height: math.unit(6 + 1/12, "feet"),
  36003. default: true
  36004. },
  36005. ]
  36006. ))
  36007. characterMakers.push(() => makeCharacter(
  36008. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36009. {
  36010. front: {
  36011. height: math.unit(6, "inches"),
  36012. name: "Front",
  36013. image: {
  36014. source: "./media/characters/tululi/front.svg",
  36015. extra: 1997/1876,
  36016. bottom: 20/2017
  36017. }
  36018. },
  36019. },
  36020. [
  36021. {
  36022. name: "Normal",
  36023. height: math.unit(6, "inches"),
  36024. default: true
  36025. },
  36026. ]
  36027. ))
  36028. characterMakers.push(() => makeCharacter(
  36029. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36030. {
  36031. front: {
  36032. height: math.unit(4 + 1/12, "feet"),
  36033. name: "Front",
  36034. image: {
  36035. source: "./media/characters/star/front.svg",
  36036. extra: 1493/1189,
  36037. bottom: 48/1541
  36038. }
  36039. },
  36040. },
  36041. [
  36042. {
  36043. name: "Normal",
  36044. height: math.unit(4 + 1/12, "feet"),
  36045. default: true
  36046. },
  36047. ]
  36048. ))
  36049. characterMakers.push(() => makeCharacter(
  36050. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36051. {
  36052. front: {
  36053. height: math.unit(6 + 3/12, "feet"),
  36054. name: "Front",
  36055. image: {
  36056. source: "./media/characters/comet/front.svg",
  36057. extra: 1681/1462,
  36058. bottom: 26/1707
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(6 + 3/12, "feet"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36072. {
  36073. front: {
  36074. height: math.unit(950, "feet"),
  36075. name: "Front",
  36076. image: {
  36077. source: "./media/characters/vortex/front.svg",
  36078. extra: 1497/1434,
  36079. bottom: 56/1553
  36080. }
  36081. },
  36082. maw: {
  36083. height: math.unit(285, "feet"),
  36084. name: "Maw",
  36085. image: {
  36086. source: "./media/characters/vortex/maw.svg"
  36087. }
  36088. },
  36089. },
  36090. [
  36091. {
  36092. name: "Macro",
  36093. height: math.unit(950, "feet"),
  36094. default: true
  36095. },
  36096. ]
  36097. ))
  36098. characterMakers.push(() => makeCharacter(
  36099. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36100. {
  36101. front: {
  36102. height: math.unit(600, "feet"),
  36103. weight: math.unit(0.02, "grams"),
  36104. name: "Front",
  36105. image: {
  36106. source: "./media/characters/doodle/front.svg",
  36107. extra: 1578/1413,
  36108. bottom: 37/1615
  36109. }
  36110. },
  36111. },
  36112. [
  36113. {
  36114. name: "Macro",
  36115. height: math.unit(600, "feet"),
  36116. default: true
  36117. },
  36118. ]
  36119. ))
  36120. characterMakers.push(() => makeCharacter(
  36121. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36122. {
  36123. front: {
  36124. height: math.unit(6 + 6/12, "feet"),
  36125. name: "Front",
  36126. image: {
  36127. source: "./media/characters/jai/front.svg",
  36128. extra: 1645/1534,
  36129. bottom: 115/1760
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Normal",
  36136. height: math.unit(6 + 6/12, "feet"),
  36137. default: true
  36138. },
  36139. ]
  36140. ))
  36141. characterMakers.push(() => makeCharacter(
  36142. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36143. {
  36144. front: {
  36145. height: math.unit(6 + 8/12, "feet"),
  36146. name: "Front",
  36147. image: {
  36148. source: "./media/characters/pixel/front.svg",
  36149. extra: 1900/1735,
  36150. bottom: 63/1963
  36151. }
  36152. },
  36153. },
  36154. [
  36155. {
  36156. name: "Normal",
  36157. height: math.unit(6 + 8/12, "feet"),
  36158. default: true
  36159. },
  36160. ]
  36161. ))
  36162. characterMakers.push(() => makeCharacter(
  36163. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36164. {
  36165. back: {
  36166. height: math.unit(4 + 1/12, "feet"),
  36167. weight: math.unit(75, "lb"),
  36168. name: "Back",
  36169. image: {
  36170. source: "./media/characters/rhett/back.svg",
  36171. extra: 930/878,
  36172. bottom: 25/955
  36173. }
  36174. },
  36175. front: {
  36176. height: math.unit(4 + 1/12, "feet"),
  36177. weight: math.unit(75, "lb"),
  36178. name: "Front",
  36179. image: {
  36180. source: "./media/characters/rhett/front.svg",
  36181. extra: 1682/1586,
  36182. bottom: 92/1774
  36183. }
  36184. },
  36185. },
  36186. [
  36187. {
  36188. name: "Micro",
  36189. height: math.unit(8, "inches")
  36190. },
  36191. {
  36192. name: "Tiny",
  36193. height: math.unit(2, "feet")
  36194. },
  36195. {
  36196. name: "Normal",
  36197. height: math.unit(4 + 1/12, "feet"),
  36198. default: true
  36199. },
  36200. ]
  36201. ))
  36202. characterMakers.push(() => makeCharacter(
  36203. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36204. {
  36205. front: {
  36206. height: math.unit(3 + 3/12, "feet"),
  36207. name: "Front",
  36208. image: {
  36209. source: "./media/characters/penny/front.svg",
  36210. extra: 1406/1311,
  36211. bottom: 26/1432
  36212. }
  36213. },
  36214. },
  36215. [
  36216. {
  36217. name: "Normal",
  36218. height: math.unit(3 + 3/12, "feet"),
  36219. default: true
  36220. },
  36221. ]
  36222. ))
  36223. characterMakers.push(() => makeCharacter(
  36224. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36225. {
  36226. front: {
  36227. height: math.unit(4 + 11/12, "feet"),
  36228. name: "Front",
  36229. image: {
  36230. source: "./media/characters/monty/front.svg",
  36231. extra: 1479/1209,
  36232. bottom: 0/1479
  36233. }
  36234. },
  36235. },
  36236. [
  36237. {
  36238. name: "Normal",
  36239. height: math.unit(4 + 11/12, "feet"),
  36240. default: true
  36241. },
  36242. ]
  36243. ))
  36244. characterMakers.push(() => makeCharacter(
  36245. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36246. {
  36247. front: {
  36248. height: math.unit(8 + 4/12, "feet"),
  36249. name: "Front",
  36250. image: {
  36251. source: "./media/characters/sterling/front.svg",
  36252. extra: 1420/1236,
  36253. bottom: 27/1447
  36254. }
  36255. },
  36256. },
  36257. [
  36258. {
  36259. name: "Normal",
  36260. height: math.unit(8 + 4/12, "feet"),
  36261. default: true
  36262. },
  36263. ]
  36264. ))
  36265. characterMakers.push(() => makeCharacter(
  36266. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36267. {
  36268. front: {
  36269. height: math.unit(15, "feet"),
  36270. name: "Front",
  36271. image: {
  36272. source: "./media/characters/marble/front.svg",
  36273. extra: 973/937,
  36274. bottom: 32/1005
  36275. }
  36276. },
  36277. },
  36278. [
  36279. {
  36280. name: "Normal",
  36281. height: math.unit(15, "feet"),
  36282. default: true
  36283. },
  36284. ]
  36285. ))
  36286. characterMakers.push(() => makeCharacter(
  36287. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36288. {
  36289. front: {
  36290. height: math.unit(3, "inches"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/powder/front.svg",
  36294. extra: 1504/1334,
  36295. bottom: 518/2022
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(3, "inches"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36309. {
  36310. front: {
  36311. height: math.unit(4 + 5/12, "feet"),
  36312. name: "Front",
  36313. image: {
  36314. source: "./media/characters/joey-raccoon/front.svg",
  36315. extra: 1273/1197,
  36316. bottom: 0/1273
  36317. }
  36318. },
  36319. },
  36320. [
  36321. {
  36322. name: "Normal",
  36323. height: math.unit(4 + 5/12, "feet"),
  36324. default: true
  36325. },
  36326. ]
  36327. ))
  36328. characterMakers.push(() => makeCharacter(
  36329. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36330. {
  36331. front: {
  36332. height: math.unit(8 + 4/12, "feet"),
  36333. name: "Front",
  36334. image: {
  36335. source: "./media/characters/vick/front.svg",
  36336. extra: 2187/2118,
  36337. bottom: 47/2234
  36338. }
  36339. },
  36340. },
  36341. [
  36342. {
  36343. name: "Normal",
  36344. height: math.unit(8 + 4/12, "feet"),
  36345. default: true
  36346. },
  36347. ]
  36348. ))
  36349. characterMakers.push(() => makeCharacter(
  36350. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36351. {
  36352. front: {
  36353. height: math.unit(5 + 5/12, "feet"),
  36354. name: "Front",
  36355. image: {
  36356. source: "./media/characters/mitsy/front.svg",
  36357. extra: 1842/1695,
  36358. bottom: 0/1842
  36359. }
  36360. },
  36361. },
  36362. [
  36363. {
  36364. name: "Normal",
  36365. height: math.unit(5 + 5/12, "feet"),
  36366. default: true
  36367. },
  36368. ]
  36369. ))
  36370. characterMakers.push(() => makeCharacter(
  36371. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36372. {
  36373. front: {
  36374. height: math.unit(6 + 3/12, "feet"),
  36375. name: "Front",
  36376. image: {
  36377. source: "./media/characters/silvy/front.svg",
  36378. extra: 1995/1836,
  36379. bottom: 225/2220
  36380. }
  36381. },
  36382. },
  36383. [
  36384. {
  36385. name: "Normal",
  36386. height: math.unit(6 + 3/12, "feet"),
  36387. default: true
  36388. },
  36389. ]
  36390. ))
  36391. characterMakers.push(() => makeCharacter(
  36392. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36393. {
  36394. front: {
  36395. height: math.unit(3 + 8/12, "feet"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/rodney/front.svg",
  36399. extra: 1956/1747,
  36400. bottom: 31/1987
  36401. }
  36402. },
  36403. frontDressed: {
  36404. height: math.unit(2.9, "feet"),
  36405. name: "Front (Dressed)",
  36406. image: {
  36407. source: "./media/characters/rodney/front-dressed.svg",
  36408. extra: 1382/1241,
  36409. bottom: 385/1767
  36410. }
  36411. },
  36412. },
  36413. [
  36414. {
  36415. name: "Normal",
  36416. height: math.unit(3 + 8/12, "feet"),
  36417. default: true
  36418. },
  36419. ]
  36420. ))
  36421. characterMakers.push(() => makeCharacter(
  36422. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36423. {
  36424. front: {
  36425. height: math.unit(5 + 9/12, "feet"),
  36426. weight: math.unit(194, "lbs"),
  36427. name: "Front",
  36428. image: {
  36429. source: "./media/characters/zakail-sudekai/front.svg",
  36430. extra: 2696/2533,
  36431. bottom: 248/2944
  36432. }
  36433. },
  36434. maw: {
  36435. height: math.unit(1.35, "feet"),
  36436. name: "Maw",
  36437. image: {
  36438. source: "./media/characters/zakail-sudekai/maw.svg"
  36439. }
  36440. },
  36441. },
  36442. [
  36443. {
  36444. name: "Normal",
  36445. height: math.unit(5 + 9/12, "feet"),
  36446. default: true
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36452. {
  36453. front: {
  36454. height: math.unit(8 + 4/12, "feet"),
  36455. weight: math.unit(1200, "lb"),
  36456. name: "Front",
  36457. image: {
  36458. source: "./media/characters/eleanor/front.svg",
  36459. extra: 1226/1192,
  36460. bottom: 52/1278
  36461. }
  36462. },
  36463. back: {
  36464. height: math.unit(8 + 4/12, "feet"),
  36465. weight: math.unit(1200, "lb"),
  36466. name: "Back",
  36467. image: {
  36468. source: "./media/characters/eleanor/back.svg",
  36469. extra: 1242/1184,
  36470. bottom: 60/1302
  36471. }
  36472. },
  36473. head: {
  36474. height: math.unit(2.62, "feet"),
  36475. name: "Head",
  36476. image: {
  36477. source: "./media/characters/eleanor/head.svg"
  36478. }
  36479. },
  36480. },
  36481. [
  36482. {
  36483. name: "Normal",
  36484. height: math.unit(8 + 4/12, "feet"),
  36485. default: true
  36486. },
  36487. ]
  36488. ))
  36489. characterMakers.push(() => makeCharacter(
  36490. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36491. {
  36492. front: {
  36493. height: math.unit(8 + 4/12, "feet"),
  36494. weight: math.unit(750, "lb"),
  36495. name: "Front",
  36496. image: {
  36497. source: "./media/characters/tanya/front.svg",
  36498. extra: 1749/1615,
  36499. bottom: 33/1782
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(8 + 4/12, "feet"),
  36507. default: true
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(5, "feet"),
  36516. weight: math.unit(225, "lb"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/cindy/front.svg",
  36520. extra: 1320/1250,
  36521. bottom: 42/1362
  36522. }
  36523. },
  36524. frontDressed: {
  36525. height: math.unit(5, "feet"),
  36526. weight: math.unit(225, "lb"),
  36527. name: "Front (Dressed)",
  36528. image: {
  36529. source: "./media/characters/cindy/front-dressed.svg",
  36530. extra: 1320/1250,
  36531. bottom: 42/1362
  36532. }
  36533. },
  36534. back: {
  36535. height: math.unit(5, "feet"),
  36536. weight: math.unit(225, "lb"),
  36537. name: "Back",
  36538. image: {
  36539. source: "./media/characters/cindy/back.svg",
  36540. extra: 1384/1346,
  36541. bottom: 14/1398
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Normal",
  36548. height: math.unit(5, "feet"),
  36549. default: true
  36550. },
  36551. ]
  36552. ))
  36553. characterMakers.push(() => makeCharacter(
  36554. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36555. {
  36556. front: {
  36557. height: math.unit(6 + 9/12, "feet"),
  36558. weight: math.unit(440, "lb"),
  36559. name: "Front",
  36560. image: {
  36561. source: "./media/characters/wilbur-owen/front.svg",
  36562. extra: 1575/1448,
  36563. bottom: 72/1647
  36564. }
  36565. },
  36566. back: {
  36567. height: math.unit(6 + 9/12, "feet"),
  36568. weight: math.unit(440, "lb"),
  36569. name: "Back",
  36570. image: {
  36571. source: "./media/characters/wilbur-owen/back.svg",
  36572. extra: 1578/1445,
  36573. bottom: 36/1614
  36574. }
  36575. },
  36576. },
  36577. [
  36578. {
  36579. name: "Normal",
  36580. height: math.unit(6 + 9/12, "feet"),
  36581. default: true
  36582. },
  36583. ]
  36584. ))
  36585. characterMakers.push(() => makeCharacter(
  36586. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36587. {
  36588. front: {
  36589. height: math.unit(6 + 5/12, "feet"),
  36590. weight: math.unit(650, "lb"),
  36591. name: "Front",
  36592. image: {
  36593. source: "./media/characters/keegan/front.svg",
  36594. extra: 2387/2198,
  36595. bottom: 33/2420
  36596. }
  36597. },
  36598. side: {
  36599. height: math.unit(6 + 5/12, "feet"),
  36600. weight: math.unit(650, "lb"),
  36601. name: "Side",
  36602. image: {
  36603. source: "./media/characters/keegan/side.svg",
  36604. extra: 2390/2202,
  36605. bottom: 47/2437
  36606. }
  36607. },
  36608. back: {
  36609. height: math.unit(6 + 5/12, "feet"),
  36610. weight: math.unit(650, "lb"),
  36611. name: "Back",
  36612. image: {
  36613. source: "./media/characters/keegan/back.svg",
  36614. extra: 2418/2268,
  36615. bottom: 15/2433
  36616. }
  36617. },
  36618. frontSfw: {
  36619. height: math.unit(6 + 5/12, "feet"),
  36620. weight: math.unit(650, "lb"),
  36621. name: "Front (SFW)",
  36622. image: {
  36623. source: "./media/characters/keegan/front-sfw.svg",
  36624. extra: 2387/2198,
  36625. bottom: 33/2420
  36626. }
  36627. },
  36628. beans: {
  36629. height: math.unit(1.85, "feet"),
  36630. name: "Beans",
  36631. image: {
  36632. source: "./media/characters/keegan/beans.svg"
  36633. }
  36634. },
  36635. },
  36636. [
  36637. {
  36638. name: "Normal",
  36639. height: math.unit(6 + 5/12, "feet"),
  36640. default: true
  36641. },
  36642. ]
  36643. ))
  36644. characterMakers.push(() => makeCharacter(
  36645. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36646. {
  36647. front: {
  36648. height: math.unit(9, "feet"),
  36649. name: "Front",
  36650. image: {
  36651. source: "./media/characters/colton/front.svg",
  36652. extra: 1589/1326,
  36653. bottom: 139/1728
  36654. }
  36655. },
  36656. },
  36657. [
  36658. {
  36659. name: "Normal",
  36660. height: math.unit(9, "feet"),
  36661. default: true
  36662. },
  36663. ]
  36664. ))
  36665. characterMakers.push(() => makeCharacter(
  36666. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36667. {
  36668. front: {
  36669. height: math.unit(2 + 9/12, "feet"),
  36670. name: "Front",
  36671. image: {
  36672. source: "./media/characters/bora/front.svg",
  36673. extra: 1265/1250,
  36674. bottom: 24/1289
  36675. }
  36676. },
  36677. },
  36678. [
  36679. {
  36680. name: "Normal",
  36681. height: math.unit(2 + 9/12, "feet"),
  36682. default: true
  36683. },
  36684. ]
  36685. ))
  36686. characterMakers.push(() => makeCharacter(
  36687. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36688. {
  36689. front: {
  36690. height: math.unit(8, "feet"),
  36691. name: "Front",
  36692. image: {
  36693. source: "./media/characters/myu-myu/front.svg",
  36694. extra: 1949/1857,
  36695. bottom: 90/2039
  36696. }
  36697. },
  36698. },
  36699. [
  36700. {
  36701. name: "Normal",
  36702. height: math.unit(8, "feet"),
  36703. default: true
  36704. },
  36705. {
  36706. name: "Big",
  36707. height: math.unit(15, "feet")
  36708. },
  36709. {
  36710. name: "BIG",
  36711. height: math.unit(25, "feet")
  36712. },
  36713. ]
  36714. ))
  36715. characterMakers.push(() => makeCharacter(
  36716. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36717. {
  36718. side: {
  36719. height: math.unit(7 + 5/12, "feet"),
  36720. weight: math.unit(2800, "lb"),
  36721. name: "Side",
  36722. image: {
  36723. source: "./media/characters/haloren/side.svg",
  36724. extra: 1793/409,
  36725. bottom: 59/1852
  36726. }
  36727. },
  36728. frontPaw: {
  36729. height: math.unit(2.36, "feet"),
  36730. name: "Front paw",
  36731. image: {
  36732. source: "./media/characters/haloren/front-paw.svg"
  36733. }
  36734. },
  36735. hindPaw: {
  36736. height: math.unit(3.18, "feet"),
  36737. name: "Hind paw",
  36738. image: {
  36739. source: "./media/characters/haloren/hind-paw.svg"
  36740. }
  36741. },
  36742. maw: {
  36743. height: math.unit(5.05, "feet"),
  36744. name: "Maw",
  36745. image: {
  36746. source: "./media/characters/haloren/maw.svg"
  36747. }
  36748. },
  36749. dick: {
  36750. height: math.unit(2.90, "feet"),
  36751. name: "Dick",
  36752. image: {
  36753. source: "./media/characters/haloren/dick.svg"
  36754. }
  36755. },
  36756. },
  36757. [
  36758. {
  36759. name: "Normal",
  36760. height: math.unit(7 + 5/12, "feet"),
  36761. default: true
  36762. },
  36763. {
  36764. name: "Enhanced",
  36765. height: math.unit(14 + 3/12, "feet")
  36766. },
  36767. ]
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36771. {
  36772. front: {
  36773. height: math.unit(171, "cm"),
  36774. name: "Front",
  36775. image: {
  36776. source: "./media/characters/kimmy/front.svg",
  36777. extra: 1491/1435,
  36778. bottom: 53/1544
  36779. }
  36780. },
  36781. },
  36782. [
  36783. {
  36784. name: "Small",
  36785. height: math.unit(9, "cm")
  36786. },
  36787. {
  36788. name: "Normal",
  36789. height: math.unit(171, "cm"),
  36790. default: true
  36791. },
  36792. ]
  36793. ))
  36794. characterMakers.push(() => makeCharacter(
  36795. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36796. {
  36797. front: {
  36798. height: math.unit(8, "feet"),
  36799. weight: math.unit(300, "lb"),
  36800. name: "Front",
  36801. image: {
  36802. source: "./media/characters/galeboomer/front.svg",
  36803. extra: 4651/4415,
  36804. bottom: 162/4813
  36805. }
  36806. },
  36807. back: {
  36808. height: math.unit(8, "feet"),
  36809. weight: math.unit(300, "lb"),
  36810. name: "Back",
  36811. image: {
  36812. source: "./media/characters/galeboomer/back.svg",
  36813. extra: 4544/4314,
  36814. bottom: 16/4560
  36815. }
  36816. },
  36817. frontAlt: {
  36818. height: math.unit(8, "feet"),
  36819. weight: math.unit(300, "lb"),
  36820. name: "Front (Alt)",
  36821. image: {
  36822. source: "./media/characters/galeboomer/front-alt.svg",
  36823. extra: 4458/4228,
  36824. bottom: 68/4526
  36825. }
  36826. },
  36827. maw: {
  36828. height: math.unit(1.2, "feet"),
  36829. name: "Maw",
  36830. image: {
  36831. source: "./media/characters/galeboomer/maw.svg"
  36832. }
  36833. },
  36834. },
  36835. [
  36836. {
  36837. name: "Normal",
  36838. height: math.unit(8, "feet"),
  36839. default: true
  36840. },
  36841. ]
  36842. ))
  36843. characterMakers.push(() => makeCharacter(
  36844. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36845. {
  36846. front: {
  36847. height: math.unit(5 + 9/12, "feet"),
  36848. weight: math.unit(120, "lb"),
  36849. name: "Front",
  36850. image: {
  36851. source: "./media/characters/chyr/front.svg",
  36852. extra: 1323/1254,
  36853. bottom: 63/1386
  36854. }
  36855. },
  36856. back: {
  36857. height: math.unit(5 + 9/12, "feet"),
  36858. weight: math.unit(120, "lb"),
  36859. name: "Back",
  36860. image: {
  36861. source: "./media/characters/chyr/back.svg",
  36862. extra: 1323/1252,
  36863. bottom: 48/1371
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(5 + 9/12, "feet"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36877. {
  36878. front: {
  36879. height: math.unit(7, "feet"),
  36880. weight: math.unit(310, "lb"),
  36881. name: "Front",
  36882. image: {
  36883. source: "./media/characters/solarus/front.svg",
  36884. extra: 2415/2021,
  36885. bottom: 103/2518
  36886. }
  36887. },
  36888. back: {
  36889. height: math.unit(7, "feet"),
  36890. weight: math.unit(310, "lb"),
  36891. name: "Back",
  36892. image: {
  36893. source: "./media/characters/solarus/back.svg",
  36894. extra: 2463/2089,
  36895. bottom: 79/2542
  36896. }
  36897. },
  36898. },
  36899. [
  36900. {
  36901. name: "Normal",
  36902. height: math.unit(7, "feet"),
  36903. default: true
  36904. },
  36905. ]
  36906. ))
  36907. characterMakers.push(() => makeCharacter(
  36908. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36909. {
  36910. front: {
  36911. height: math.unit(16, "feet"),
  36912. name: "Front",
  36913. image: {
  36914. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36915. extra: 1844/1780,
  36916. bottom: 58/1902
  36917. }
  36918. },
  36919. winterCoat: {
  36920. height: math.unit(16, "feet"),
  36921. name: "Winter Coat",
  36922. image: {
  36923. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36924. extra: 1807/1775,
  36925. bottom: 69/1876
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(16, "feet"),
  36933. default: true
  36934. },
  36935. {
  36936. name: "Chicago Size",
  36937. height: math.unit(560, "feet")
  36938. },
  36939. ]
  36940. ))
  36941. characterMakers.push(() => makeCharacter(
  36942. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36943. {
  36944. front: {
  36945. height: math.unit(11 + 6/12, "feet"),
  36946. weight: math.unit(1366, "lb"),
  36947. name: "Front",
  36948. image: {
  36949. source: "./media/characters/lexor/front.svg",
  36950. extra: 1560/1481,
  36951. bottom: 211/1771
  36952. }
  36953. },
  36954. back: {
  36955. height: math.unit(11 + 6/12, "feet"),
  36956. weight: math.unit(1366, "lb"),
  36957. name: "Back",
  36958. image: {
  36959. source: "./media/characters/lexor/back.svg",
  36960. extra: 1614/1533,
  36961. bottom: 76/1690
  36962. }
  36963. },
  36964. maw: {
  36965. height: math.unit(3, "feet"),
  36966. name: "Maw",
  36967. image: {
  36968. source: "./media/characters/lexor/maw.svg"
  36969. }
  36970. },
  36971. dick: {
  36972. height: math.unit(2.59, "feet"),
  36973. name: "Dick",
  36974. image: {
  36975. source: "./media/characters/lexor/dick.svg"
  36976. }
  36977. },
  36978. },
  36979. [
  36980. {
  36981. name: "Normal",
  36982. height: math.unit(11 + 6/12, "feet"),
  36983. default: true
  36984. },
  36985. ]
  36986. ))
  36987. characterMakers.push(() => makeCharacter(
  36988. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36989. {
  36990. front: {
  36991. height: math.unit(5 + 8/12, "feet"),
  36992. name: "Front",
  36993. image: {
  36994. source: "./media/characters/magnum/front.svg",
  36995. extra: 942/855,
  36996. bottom: 26/968
  36997. }
  36998. },
  36999. },
  37000. [
  37001. {
  37002. name: "Normal",
  37003. height: math.unit(5 + 8/12, "feet"),
  37004. default: true
  37005. },
  37006. ]
  37007. ))
  37008. characterMakers.push(() => makeCharacter(
  37009. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37010. {
  37011. front: {
  37012. height: math.unit(18 + 4/12, "feet"),
  37013. weight: math.unit(1500, "kg"),
  37014. name: "Front",
  37015. image: {
  37016. source: "./media/characters/solas-sharpsman/front.svg",
  37017. extra: 1698/1589,
  37018. bottom: 0/1698
  37019. }
  37020. },
  37021. },
  37022. [
  37023. {
  37024. name: "Normal",
  37025. height: math.unit(18 + 4/12, "feet"),
  37026. default: true
  37027. },
  37028. ]
  37029. ))
  37030. characterMakers.push(() => makeCharacter(
  37031. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37032. {
  37033. front: {
  37034. height: math.unit(5 + 5/12, "feet"),
  37035. weight: math.unit(180, "lb"),
  37036. name: "Front",
  37037. image: {
  37038. source: "./media/characters/october/front.svg",
  37039. extra: 1800/1650,
  37040. bottom: 0/1800
  37041. }
  37042. },
  37043. frontNsfw: {
  37044. height: math.unit(5 + 5/12, "feet"),
  37045. weight: math.unit(180, "lb"),
  37046. name: "Front (NSFW)",
  37047. image: {
  37048. source: "./media/characters/october/front-nsfw.svg",
  37049. extra: 1392/1307,
  37050. bottom: 42/1434
  37051. }
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "Normal",
  37057. height: math.unit(5 + 5/12, "feet"),
  37058. default: true
  37059. },
  37060. ]
  37061. ))
  37062. characterMakers.push(() => makeCharacter(
  37063. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37064. {
  37065. front: {
  37066. height: math.unit(8 + 6/12, "feet"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/essynkardi/front.svg",
  37070. extra: 1914/1846,
  37071. bottom: 22/1936
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Normal",
  37078. height: math.unit(8 + 6/12, "feet"),
  37079. default: true
  37080. },
  37081. ]
  37082. ))
  37083. characterMakers.push(() => makeCharacter(
  37084. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37085. {
  37086. front: {
  37087. height: math.unit(6 + 6/12, "feet"),
  37088. weight: math.unit(7, "lb"),
  37089. name: "Front",
  37090. image: {
  37091. source: "./media/characters/icky/front.svg",
  37092. extra: 813/782,
  37093. bottom: 66/879
  37094. }
  37095. },
  37096. back: {
  37097. height: math.unit(6 + 6/12, "feet"),
  37098. weight: math.unit(7, "lb"),
  37099. name: "Back",
  37100. image: {
  37101. source: "./media/characters/icky/back.svg",
  37102. extra: 754/735,
  37103. bottom: 56/810
  37104. }
  37105. },
  37106. },
  37107. [
  37108. {
  37109. name: "Normal",
  37110. height: math.unit(6 + 6/12, "feet"),
  37111. default: true
  37112. },
  37113. ]
  37114. ))
  37115. characterMakers.push(() => makeCharacter(
  37116. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37117. {
  37118. front: {
  37119. height: math.unit(15, "feet"),
  37120. name: "Front",
  37121. image: {
  37122. source: "./media/characters/rojas/front.svg",
  37123. extra: 1462/1408,
  37124. bottom: 95/1557
  37125. }
  37126. },
  37127. back: {
  37128. height: math.unit(15, "feet"),
  37129. name: "Back",
  37130. image: {
  37131. source: "./media/characters/rojas/back.svg",
  37132. extra: 1023/954,
  37133. bottom: 28/1051
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Normal",
  37140. height: math.unit(15, "feet"),
  37141. default: true
  37142. },
  37143. ]
  37144. ))
  37145. characterMakers.push(() => makeCharacter(
  37146. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37147. {
  37148. frontHuman: {
  37149. height: math.unit(5 + 7/12, "feet"),
  37150. name: "Front (Human)",
  37151. image: {
  37152. source: "./media/characters/alek-dryagan/front-human.svg",
  37153. extra: 1687/1667,
  37154. bottom: 69/1756
  37155. }
  37156. },
  37157. backHuman: {
  37158. height: math.unit(5 + 7/12, "feet"),
  37159. name: "Back (Human)",
  37160. image: {
  37161. source: "./media/characters/alek-dryagan/back-human.svg",
  37162. extra: 1670/1649,
  37163. bottom: 65/1735
  37164. }
  37165. },
  37166. frontDemi: {
  37167. height: math.unit(65, "feet"),
  37168. name: "Front (Demi)",
  37169. image: {
  37170. source: "./media/characters/alek-dryagan/front-demi.svg",
  37171. extra: 1669/1642,
  37172. bottom: 49/1718
  37173. }
  37174. },
  37175. backDemi: {
  37176. height: math.unit(65, "feet"),
  37177. name: "Back (Demi)",
  37178. image: {
  37179. source: "./media/characters/alek-dryagan/back-demi.svg",
  37180. extra: 1658/1637,
  37181. bottom: 40/1698
  37182. }
  37183. },
  37184. mawHuman: {
  37185. height: math.unit(0.3, "feet"),
  37186. name: "Maw (Human)",
  37187. image: {
  37188. source: "./media/characters/alek-dryagan/maw-human.svg"
  37189. }
  37190. },
  37191. mawDemi: {
  37192. height: math.unit(3.8, "feet"),
  37193. name: "Maw (Demi)",
  37194. image: {
  37195. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37196. }
  37197. },
  37198. },
  37199. [
  37200. {
  37201. name: "Normal",
  37202. height: math.unit(5 + 7/12, "feet"),
  37203. default: true
  37204. },
  37205. ]
  37206. ))
  37207. characterMakers.push(() => makeCharacter(
  37208. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37209. {
  37210. frontHuman: {
  37211. height: math.unit(5 + 2/12, "feet"),
  37212. name: "Front (Human)",
  37213. image: {
  37214. source: "./media/characters/gen/front-human.svg",
  37215. extra: 1627/1538,
  37216. bottom: 71/1698
  37217. }
  37218. },
  37219. backHuman: {
  37220. height: math.unit(5 + 2/12, "feet"),
  37221. name: "Back (Human)",
  37222. image: {
  37223. source: "./media/characters/gen/back-human.svg",
  37224. extra: 1638/1548,
  37225. bottom: 69/1707
  37226. }
  37227. },
  37228. frontDemi: {
  37229. height: math.unit(5 + 2/12, "feet"),
  37230. name: "Front (Demi)",
  37231. image: {
  37232. source: "./media/characters/gen/front-demi.svg",
  37233. extra: 1627/1538,
  37234. bottom: 71/1698
  37235. }
  37236. },
  37237. backDemi: {
  37238. height: math.unit(5 + 2/12, "feet"),
  37239. name: "Back (Demi)",
  37240. image: {
  37241. source: "./media/characters/gen/back-demi.svg",
  37242. extra: 1638/1548,
  37243. bottom: 69/1707
  37244. }
  37245. },
  37246. },
  37247. [
  37248. {
  37249. name: "Normal",
  37250. height: math.unit(5 + 2/12, "feet"),
  37251. default: true
  37252. },
  37253. ]
  37254. ))
  37255. characterMakers.push(() => makeCharacter(
  37256. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37257. {
  37258. frontImp: {
  37259. height: math.unit(1 + 11/12, "feet"),
  37260. name: "Front (Imp)",
  37261. image: {
  37262. source: "./media/characters/max-kobold/front-imp.svg",
  37263. extra: 1238/1134,
  37264. bottom: 81/1319
  37265. }
  37266. },
  37267. backImp: {
  37268. height: math.unit(1 + 11/12, "feet"),
  37269. name: "Back (Imp)",
  37270. image: {
  37271. source: "./media/characters/max-kobold/back-imp.svg",
  37272. extra: 1334/1175,
  37273. bottom: 34/1368
  37274. }
  37275. },
  37276. frontDemi: {
  37277. height: math.unit(5 + 9/12, "feet"),
  37278. name: "Front (Demi)",
  37279. image: {
  37280. source: "./media/characters/max-kobold/front-demi.svg",
  37281. extra: 1715/1685,
  37282. bottom: 54/1769
  37283. }
  37284. },
  37285. backDemi: {
  37286. height: math.unit(5 + 9/12, "feet"),
  37287. name: "Back (Demi)",
  37288. image: {
  37289. source: "./media/characters/max-kobold/back-demi.svg",
  37290. extra: 1752/1729,
  37291. bottom: 41/1793
  37292. }
  37293. },
  37294. handImp: {
  37295. height: math.unit(0.45, "feet"),
  37296. name: "Hand (Imp)",
  37297. image: {
  37298. source: "./media/characters/max-kobold/hand.svg"
  37299. }
  37300. },
  37301. pawImp: {
  37302. height: math.unit(0.46, "feet"),
  37303. name: "Paw (Imp)",
  37304. image: {
  37305. source: "./media/characters/max-kobold/paw.svg"
  37306. }
  37307. },
  37308. handDemi: {
  37309. height: math.unit(0.80, "feet"),
  37310. name: "Hand (Demi)",
  37311. image: {
  37312. source: "./media/characters/max-kobold/hand.svg"
  37313. }
  37314. },
  37315. pawDemi: {
  37316. height: math.unit(1.1, "feet"),
  37317. name: "Paw (Demi)",
  37318. image: {
  37319. source: "./media/characters/max-kobold/paw.svg"
  37320. }
  37321. },
  37322. headImp: {
  37323. height: math.unit(1.33, "feet"),
  37324. name: "Head (Imp)",
  37325. image: {
  37326. source: "./media/characters/max-kobold/head-imp.svg"
  37327. }
  37328. },
  37329. mawImp: {
  37330. height: math.unit(0.75, "feet"),
  37331. name: "Maw (Imp)",
  37332. image: {
  37333. source: "./media/characters/max-kobold/maw-imp.svg"
  37334. }
  37335. },
  37336. mawDemi: {
  37337. height: math.unit(0.42, "feet"),
  37338. name: "Maw (Demi)",
  37339. image: {
  37340. source: "./media/characters/max-kobold/maw-demi.svg"
  37341. }
  37342. },
  37343. },
  37344. [
  37345. {
  37346. name: "Normal",
  37347. height: math.unit(1 + 11/12, "feet"),
  37348. default: true
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37354. {
  37355. front: {
  37356. height: math.unit(7 + 5/12, "feet"),
  37357. name: "Front",
  37358. image: {
  37359. source: "./media/characters/carbon/front.svg",
  37360. extra: 1754/1689,
  37361. bottom: 65/1819
  37362. }
  37363. },
  37364. back: {
  37365. height: math.unit(7 + 5/12, "feet"),
  37366. name: "Back",
  37367. image: {
  37368. source: "./media/characters/carbon/back.svg",
  37369. extra: 1762/1695,
  37370. bottom: 24/1786
  37371. }
  37372. },
  37373. frontGigantamax: {
  37374. height: math.unit(150, "feet"),
  37375. name: "Front (Gigantamax)",
  37376. image: {
  37377. source: "./media/characters/carbon/front-gigantamax.svg",
  37378. extra: 1826/1669,
  37379. bottom: 59/1885
  37380. }
  37381. },
  37382. backGigantamax: {
  37383. height: math.unit(150, "feet"),
  37384. name: "Back (Gigantamax)",
  37385. image: {
  37386. source: "./media/characters/carbon/back-gigantamax.svg",
  37387. extra: 1796/1653,
  37388. bottom: 53/1849
  37389. }
  37390. },
  37391. maw: {
  37392. height: math.unit(0.48, "feet"),
  37393. name: "Maw",
  37394. image: {
  37395. source: "./media/characters/carbon/maw.svg"
  37396. }
  37397. },
  37398. mawGigantamax: {
  37399. height: math.unit(7.5, "feet"),
  37400. name: "Maw (Gigantamax)",
  37401. image: {
  37402. source: "./media/characters/carbon/maw-gigantamax.svg"
  37403. }
  37404. },
  37405. },
  37406. [
  37407. {
  37408. name: "Normal",
  37409. height: math.unit(7 + 5/12, "feet"),
  37410. default: true
  37411. },
  37412. ]
  37413. ))
  37414. characterMakers.push(() => makeCharacter(
  37415. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37416. {
  37417. front: {
  37418. height: math.unit(6, "feet"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/maverick/front.svg",
  37422. extra: 1672/1661,
  37423. bottom: 85/1757
  37424. }
  37425. },
  37426. back: {
  37427. height: math.unit(6, "feet"),
  37428. name: "Back",
  37429. image: {
  37430. source: "./media/characters/maverick/back.svg",
  37431. extra: 1642/1631,
  37432. bottom: 38/1680
  37433. }
  37434. },
  37435. },
  37436. [
  37437. {
  37438. name: "Normal",
  37439. height: math.unit(6, "feet"),
  37440. default: true
  37441. },
  37442. ]
  37443. ))
  37444. characterMakers.push(() => makeCharacter(
  37445. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37446. {
  37447. front: {
  37448. height: math.unit(15, "feet"),
  37449. weight: math.unit(615, "lb"),
  37450. name: "Front",
  37451. image: {
  37452. source: "./media/characters/grockle/front.svg",
  37453. extra: 1535/1427,
  37454. bottom: 56/1591
  37455. }
  37456. },
  37457. },
  37458. [
  37459. {
  37460. name: "Normal",
  37461. height: math.unit(15, "feet"),
  37462. default: true
  37463. },
  37464. {
  37465. name: "Large",
  37466. height: math.unit(150, "feet")
  37467. },
  37468. {
  37469. name: "Macro",
  37470. height: math.unit(1876, "feet")
  37471. },
  37472. {
  37473. name: "Mega Macro",
  37474. height: math.unit(121940, "feet")
  37475. },
  37476. {
  37477. name: "Giga Macro",
  37478. height: math.unit(750, "km")
  37479. },
  37480. {
  37481. name: "Tera Macro",
  37482. height: math.unit(750000, "km")
  37483. },
  37484. {
  37485. name: "Galactic",
  37486. height: math.unit(1.4e5, "km")
  37487. },
  37488. {
  37489. name: "Godlike",
  37490. height: math.unit(9.8e280, "galaxies")
  37491. },
  37492. ]
  37493. ))
  37494. characterMakers.push(() => makeCharacter(
  37495. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37496. {
  37497. front: {
  37498. height: math.unit(11, "meters"),
  37499. weight: math.unit(20, "tonnes"),
  37500. name: "Front",
  37501. image: {
  37502. source: "./media/characters/alistair/front.svg",
  37503. extra: 1265/1009,
  37504. bottom: 93/1358
  37505. }
  37506. },
  37507. },
  37508. [
  37509. {
  37510. name: "Normal",
  37511. height: math.unit(11, "meters"),
  37512. default: true
  37513. },
  37514. ]
  37515. ))
  37516. characterMakers.push(() => makeCharacter(
  37517. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37518. {
  37519. front: {
  37520. height: math.unit(5 + 8/12, "feet"),
  37521. name: "Front",
  37522. image: {
  37523. source: "./media/characters/haruka/front.svg",
  37524. extra: 2012/1952,
  37525. bottom: 0/2012
  37526. }
  37527. },
  37528. },
  37529. [
  37530. {
  37531. name: "Normal",
  37532. height: math.unit(5 + 8/12, "feet"),
  37533. default: true
  37534. },
  37535. ]
  37536. ))
  37537. characterMakers.push(() => makeCharacter(
  37538. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37539. {
  37540. back: {
  37541. height: math.unit(9, "feet"),
  37542. name: "Back",
  37543. image: {
  37544. source: "./media/characters/vivian-sylveon/back.svg",
  37545. extra: 1853/1714,
  37546. bottom: 0/1853
  37547. }
  37548. },
  37549. },
  37550. [
  37551. {
  37552. name: "Normal",
  37553. height: math.unit(9, "feet"),
  37554. default: true
  37555. },
  37556. {
  37557. name: "Macro",
  37558. height: math.unit(500, "feet")
  37559. },
  37560. {
  37561. name: "Megamacro",
  37562. height: math.unit(600, "miles")
  37563. },
  37564. {
  37565. name: "Gigamacro",
  37566. height: math.unit(30000, "miles")
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37572. {
  37573. anthro: {
  37574. height: math.unit(5 + 10/12, "feet"),
  37575. weight: math.unit(100, "lb"),
  37576. name: "Anthro",
  37577. image: {
  37578. source: "./media/characters/daiki/anthro.svg",
  37579. extra: 1115/1027,
  37580. bottom: 69/1184
  37581. }
  37582. },
  37583. feral: {
  37584. height: math.unit(200, "feet"),
  37585. name: "Feral",
  37586. image: {
  37587. source: "./media/characters/daiki/feral.svg",
  37588. extra: 1256/313,
  37589. bottom: 39/1295
  37590. }
  37591. },
  37592. feralHead: {
  37593. height: math.unit(171, "feet"),
  37594. name: "Feral Head",
  37595. image: {
  37596. source: "./media/characters/daiki/feral-head.svg"
  37597. }
  37598. },
  37599. manaDragon: {
  37600. height: math.unit(170, "meters"),
  37601. name: "Mana-dragon",
  37602. image: {
  37603. source: "./media/characters/daiki/mana-dragon.svg",
  37604. extra: 763/420,
  37605. bottom: 97/860
  37606. }
  37607. },
  37608. },
  37609. [
  37610. {
  37611. name: "Normal",
  37612. height: math.unit(5 + 10/12, "feet"),
  37613. default: true
  37614. },
  37615. ]
  37616. ))
  37617. characterMakers.push(() => makeCharacter(
  37618. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37619. {
  37620. fullyEquippedFront: {
  37621. height: math.unit(3 + 1/12, "feet"),
  37622. weight: math.unit(24, "lb"),
  37623. name: "Fully Equipped (Front)",
  37624. image: {
  37625. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37626. extra: 687/605,
  37627. bottom: 18/705
  37628. }
  37629. },
  37630. fullyEquippedBack: {
  37631. height: math.unit(3 + 1/12, "feet"),
  37632. weight: math.unit(24, "lb"),
  37633. name: "Fully Equipped (Back)",
  37634. image: {
  37635. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37636. extra: 689/590,
  37637. bottom: 18/707
  37638. }
  37639. },
  37640. dailyWear: {
  37641. height: math.unit(3 + 1/12, "feet"),
  37642. weight: math.unit(24, "lb"),
  37643. name: "Daily Wear",
  37644. image: {
  37645. source: "./media/characters/tea-spot/daily-wear.svg",
  37646. extra: 701/620,
  37647. bottom: 21/722
  37648. }
  37649. },
  37650. maidWork: {
  37651. height: math.unit(3 + 1/12, "feet"),
  37652. weight: math.unit(24, "lb"),
  37653. name: "Maid Work",
  37654. image: {
  37655. source: "./media/characters/tea-spot/maid-work.svg",
  37656. extra: 693/609,
  37657. bottom: 15/708
  37658. }
  37659. },
  37660. },
  37661. [
  37662. {
  37663. name: "Normal",
  37664. height: math.unit(3 + 1/12, "feet"),
  37665. default: true
  37666. },
  37667. ]
  37668. ))
  37669. characterMakers.push(() => makeCharacter(
  37670. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37671. {
  37672. front: {
  37673. height: math.unit(175, "cm"),
  37674. weight: math.unit(75, "kg"),
  37675. name: "Front",
  37676. image: {
  37677. source: "./media/characters/chee/front.svg",
  37678. extra: 1796/1740,
  37679. bottom: 40/1836
  37680. }
  37681. },
  37682. },
  37683. [
  37684. {
  37685. name: "Micro-Micro",
  37686. height: math.unit(1, "nm")
  37687. },
  37688. {
  37689. name: "Micro-erst",
  37690. height: math.unit(1, "micrometer")
  37691. },
  37692. {
  37693. name: "Micro-er",
  37694. height: math.unit(1, "cm")
  37695. },
  37696. {
  37697. name: "Normal",
  37698. height: math.unit(175, "cm"),
  37699. default: true
  37700. },
  37701. {
  37702. name: "Macro",
  37703. height: math.unit(100, "m")
  37704. },
  37705. {
  37706. name: "Macro-er",
  37707. height: math.unit(1, "km")
  37708. },
  37709. {
  37710. name: "Macro-erst",
  37711. height: math.unit(10, "km")
  37712. },
  37713. {
  37714. name: "Macro-Macro",
  37715. height: math.unit(100, "km")
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37721. {
  37722. front: {
  37723. height: math.unit(11 + 9/12, "feet"),
  37724. weight: math.unit(935, "lb"),
  37725. name: "Front",
  37726. image: {
  37727. source: "./media/characters/kingsley/front.svg",
  37728. extra: 1803/1674,
  37729. bottom: 127/1930
  37730. }
  37731. },
  37732. frontNude: {
  37733. height: math.unit(11 + 9/12, "feet"),
  37734. weight: math.unit(935, "lb"),
  37735. name: "Front (Nude)",
  37736. image: {
  37737. source: "./media/characters/kingsley/front-nude.svg",
  37738. extra: 1803/1674,
  37739. bottom: 127/1930
  37740. }
  37741. },
  37742. },
  37743. [
  37744. {
  37745. name: "Normal",
  37746. height: math.unit(11 + 9/12, "feet"),
  37747. default: true
  37748. },
  37749. ]
  37750. ))
  37751. characterMakers.push(() => makeCharacter(
  37752. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37753. {
  37754. side: {
  37755. height: math.unit(9, "feet"),
  37756. name: "Side",
  37757. image: {
  37758. source: "./media/characters/rymel/side.svg",
  37759. extra: 792/469,
  37760. bottom: 121/913
  37761. }
  37762. },
  37763. maw: {
  37764. height: math.unit(2.4, "meters"),
  37765. name: "Maw",
  37766. image: {
  37767. source: "./media/characters/rymel/maw.svg"
  37768. }
  37769. },
  37770. },
  37771. [
  37772. {
  37773. name: "House Drake",
  37774. height: math.unit(2, "feet")
  37775. },
  37776. {
  37777. name: "Reduced",
  37778. height: math.unit(4.5, "feet")
  37779. },
  37780. {
  37781. name: "Normal",
  37782. height: math.unit(9, "feet"),
  37783. default: true
  37784. },
  37785. ]
  37786. ))
  37787. characterMakers.push(() => makeCharacter(
  37788. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37789. {
  37790. front: {
  37791. height: math.unit(1.74, "meters"),
  37792. weight: math.unit(55, "kg"),
  37793. name: "Front",
  37794. image: {
  37795. source: "./media/characters/rubus/front.svg",
  37796. extra: 1894/1742,
  37797. bottom: 44/1938
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(1.74, "meters"),
  37805. default: true
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37811. {
  37812. front: {
  37813. height: math.unit(5 + 2/12, "feet"),
  37814. weight: math.unit(112, "lb"),
  37815. name: "Front",
  37816. image: {
  37817. source: "./media/characters/cassie-kingston/front.svg",
  37818. extra: 1438/1390,
  37819. bottom: 47/1485
  37820. }
  37821. },
  37822. },
  37823. [
  37824. {
  37825. name: "Normal",
  37826. height: math.unit(5 + 2/12, "feet"),
  37827. default: true
  37828. },
  37829. {
  37830. name: "Macro",
  37831. height: math.unit(128, "feet")
  37832. },
  37833. {
  37834. name: "Megamacro",
  37835. height: math.unit(2.56, "miles")
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(7, "feet"),
  37844. name: "Front",
  37845. image: {
  37846. source: "./media/characters/fox/front.svg",
  37847. extra: 1798/1703,
  37848. bottom: 55/1853
  37849. }
  37850. },
  37851. back: {
  37852. height: math.unit(7, "feet"),
  37853. name: "Back",
  37854. image: {
  37855. source: "./media/characters/fox/back.svg",
  37856. extra: 1748/1649,
  37857. bottom: 32/1780
  37858. }
  37859. },
  37860. head: {
  37861. height: math.unit(1.95, "feet"),
  37862. name: "Head",
  37863. image: {
  37864. source: "./media/characters/fox/head.svg"
  37865. }
  37866. },
  37867. dick: {
  37868. height: math.unit(1.33, "feet"),
  37869. name: "Dick",
  37870. image: {
  37871. source: "./media/characters/fox/dick.svg"
  37872. }
  37873. },
  37874. foot: {
  37875. height: math.unit(1, "feet"),
  37876. name: "Foot",
  37877. image: {
  37878. source: "./media/characters/fox/foot.svg"
  37879. }
  37880. },
  37881. paw: {
  37882. height: math.unit(0.92, "feet"),
  37883. name: "Paw",
  37884. image: {
  37885. source: "./media/characters/fox/paw.svg"
  37886. }
  37887. },
  37888. },
  37889. [
  37890. {
  37891. name: "Small",
  37892. height: math.unit(3, "inches")
  37893. },
  37894. {
  37895. name: "\"Realistic\"",
  37896. height: math.unit(7, "feet")
  37897. },
  37898. {
  37899. name: "Normal",
  37900. height: math.unit(150, "feet"),
  37901. default: true
  37902. },
  37903. {
  37904. name: "BIG",
  37905. height: math.unit(1200, "feet")
  37906. },
  37907. {
  37908. name: "👀",
  37909. height: math.unit(5, "miles")
  37910. },
  37911. {
  37912. name: "👀👀👀",
  37913. height: math.unit(64, "miles")
  37914. },
  37915. ]
  37916. ))
  37917. characterMakers.push(() => makeCharacter(
  37918. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37919. {
  37920. front: {
  37921. height: math.unit(625, "feet"),
  37922. name: "Front",
  37923. image: {
  37924. source: "./media/characters/asonja-rossa/front.svg",
  37925. extra: 1833/1686,
  37926. bottom: 24/1857
  37927. }
  37928. },
  37929. back: {
  37930. height: math.unit(625, "feet"),
  37931. name: "Back",
  37932. image: {
  37933. source: "./media/characters/asonja-rossa/back.svg",
  37934. extra: 1852/1753,
  37935. bottom: 26/1878
  37936. }
  37937. },
  37938. },
  37939. [
  37940. {
  37941. name: "Macro",
  37942. height: math.unit(625, "feet"),
  37943. default: true
  37944. },
  37945. ]
  37946. ))
  37947. characterMakers.push(() => makeCharacter(
  37948. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37949. {
  37950. side: {
  37951. height: math.unit(8, "feet"),
  37952. name: "Side",
  37953. image: {
  37954. source: "./media/characters/rezukii/side.svg",
  37955. extra: 979/542,
  37956. bottom: 87/1066
  37957. }
  37958. },
  37959. sitting: {
  37960. height: math.unit(14.6, "feet"),
  37961. name: "Sitting",
  37962. image: {
  37963. source: "./media/characters/rezukii/sitting.svg",
  37964. extra: 1023/813,
  37965. bottom: 45/1068
  37966. }
  37967. },
  37968. },
  37969. [
  37970. {
  37971. name: "Tiny",
  37972. height: math.unit(2, "feet")
  37973. },
  37974. {
  37975. name: "Smol",
  37976. height: math.unit(4, "feet")
  37977. },
  37978. {
  37979. name: "Normal",
  37980. height: math.unit(8, "feet"),
  37981. default: true
  37982. },
  37983. {
  37984. name: "Big",
  37985. height: math.unit(12, "feet")
  37986. },
  37987. {
  37988. name: "Macro",
  37989. height: math.unit(30, "feet")
  37990. },
  37991. ]
  37992. ))
  37993. characterMakers.push(() => makeCharacter(
  37994. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37995. {
  37996. front: {
  37997. height: math.unit(14, "feet"),
  37998. weight: math.unit(9.5, "tonnes"),
  37999. name: "Front",
  38000. image: {
  38001. source: "./media/characters/dawnheart/front.svg",
  38002. extra: 2792/2675,
  38003. bottom: 64/2856
  38004. }
  38005. },
  38006. },
  38007. [
  38008. {
  38009. name: "Normal",
  38010. height: math.unit(14, "feet"),
  38011. default: true
  38012. },
  38013. ]
  38014. ))
  38015. characterMakers.push(() => makeCharacter(
  38016. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38017. {
  38018. front: {
  38019. height: math.unit(1.7, "m"),
  38020. name: "Front",
  38021. image: {
  38022. source: "./media/characters/gladi/front.svg",
  38023. extra: 1460/1362,
  38024. bottom: 19/1479
  38025. }
  38026. },
  38027. back: {
  38028. height: math.unit(1.7, "m"),
  38029. name: "Back",
  38030. image: {
  38031. source: "./media/characters/gladi/back.svg",
  38032. extra: 1459/1357,
  38033. bottom: 12/1471
  38034. }
  38035. },
  38036. feral: {
  38037. height: math.unit(2.05, "m"),
  38038. name: "Feral",
  38039. image: {
  38040. source: "./media/characters/gladi/feral.svg",
  38041. extra: 821/557,
  38042. bottom: 91/912
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Shortest",
  38049. height: math.unit(70, "cm")
  38050. },
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(1.7, "m")
  38054. },
  38055. {
  38056. name: "Macro",
  38057. height: math.unit(10, "m"),
  38058. default: true
  38059. },
  38060. {
  38061. name: "Tallest",
  38062. height: math.unit(200, "m")
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(5 + 7/12, "feet"),
  38071. weight: math.unit(2, "tons"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/erdno/front.svg",
  38075. extra: 1234/1129,
  38076. bottom: 35/1269
  38077. }
  38078. },
  38079. angled: {
  38080. height: math.unit(5 + 7/12, "feet"),
  38081. weight: math.unit(2, "tons"),
  38082. name: "Angled",
  38083. image: {
  38084. source: "./media/characters/erdno/angled.svg",
  38085. extra: 1185/1139,
  38086. bottom: 36/1221
  38087. }
  38088. },
  38089. side: {
  38090. height: math.unit(5 + 7/12, "feet"),
  38091. weight: math.unit(2, "tons"),
  38092. name: "Side",
  38093. image: {
  38094. source: "./media/characters/erdno/side.svg",
  38095. extra: 1191/1144,
  38096. bottom: 40/1231
  38097. }
  38098. },
  38099. back: {
  38100. height: math.unit(5 + 7/12, "feet"),
  38101. weight: math.unit(2, "tons"),
  38102. name: "Back",
  38103. image: {
  38104. source: "./media/characters/erdno/back.svg",
  38105. extra: 1202/1146,
  38106. bottom: 17/1219
  38107. }
  38108. },
  38109. frontNsfw: {
  38110. height: math.unit(5 + 7/12, "feet"),
  38111. weight: math.unit(2, "tons"),
  38112. name: "Front (NSFW)",
  38113. image: {
  38114. source: "./media/characters/erdno/front-nsfw.svg",
  38115. extra: 1234/1129,
  38116. bottom: 35/1269
  38117. }
  38118. },
  38119. angledNsfw: {
  38120. height: math.unit(5 + 7/12, "feet"),
  38121. weight: math.unit(2, "tons"),
  38122. name: "Angled (NSFW)",
  38123. image: {
  38124. source: "./media/characters/erdno/angled-nsfw.svg",
  38125. extra: 1185/1139,
  38126. bottom: 36/1221
  38127. }
  38128. },
  38129. sideNsfw: {
  38130. height: math.unit(5 + 7/12, "feet"),
  38131. weight: math.unit(2, "tons"),
  38132. name: "Side (NSFW)",
  38133. image: {
  38134. source: "./media/characters/erdno/side-nsfw.svg",
  38135. extra: 1191/1144,
  38136. bottom: 40/1231
  38137. }
  38138. },
  38139. backNsfw: {
  38140. height: math.unit(5 + 7/12, "feet"),
  38141. weight: math.unit(2, "tons"),
  38142. name: "Back (NSFW)",
  38143. image: {
  38144. source: "./media/characters/erdno/back-nsfw.svg",
  38145. extra: 1202/1146,
  38146. bottom: 17/1219
  38147. }
  38148. },
  38149. frontHyper: {
  38150. height: math.unit(5 + 7/12, "feet"),
  38151. weight: math.unit(2, "tons"),
  38152. name: "Front (Hyper)",
  38153. image: {
  38154. source: "./media/characters/erdno/front-hyper.svg",
  38155. extra: 1298/1136,
  38156. bottom: 35/1333
  38157. }
  38158. },
  38159. },
  38160. [
  38161. {
  38162. name: "Normal",
  38163. height: math.unit(5 + 7/12, "feet"),
  38164. default: true
  38165. },
  38166. {
  38167. name: "Big",
  38168. height: math.unit(5.7, "meters")
  38169. },
  38170. {
  38171. name: "Macro",
  38172. height: math.unit(5.7, "kilometers")
  38173. },
  38174. {
  38175. name: "Megamacro",
  38176. height: math.unit(5.7, "earths")
  38177. },
  38178. ]
  38179. ))
  38180. characterMakers.push(() => makeCharacter(
  38181. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38182. {
  38183. front: {
  38184. height: math.unit(5 + 10/12, "feet"),
  38185. weight: math.unit(150, "lb"),
  38186. name: "Front",
  38187. image: {
  38188. source: "./media/characters/jamie/front.svg",
  38189. extra: 1908/1768,
  38190. bottom: 19/1927
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Minimum",
  38197. height: math.unit(2, "cm")
  38198. },
  38199. {
  38200. name: "Micro",
  38201. height: math.unit(3, "inches")
  38202. },
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(5 + 10/12, "feet"),
  38206. default: true
  38207. },
  38208. {
  38209. name: "Macro",
  38210. height: math.unit(150, "feet")
  38211. },
  38212. {
  38213. name: "Megamacro",
  38214. height: math.unit(10000, "m")
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38220. {
  38221. front: {
  38222. height: math.unit(2, "meters"),
  38223. weight: math.unit(100, "kg"),
  38224. name: "Front",
  38225. image: {
  38226. source: "./media/characters/shiron/front.svg",
  38227. extra: 2103/1985,
  38228. bottom: 98/2201
  38229. }
  38230. },
  38231. back: {
  38232. height: math.unit(2, "meters"),
  38233. weight: math.unit(100, "kg"),
  38234. name: "Back",
  38235. image: {
  38236. source: "./media/characters/shiron/back.svg",
  38237. extra: 2110/2015,
  38238. bottom: 89/2199
  38239. }
  38240. },
  38241. hand: {
  38242. height: math.unit(0.96, "feet"),
  38243. name: "Hand",
  38244. image: {
  38245. source: "./media/characters/shiron/hand.svg"
  38246. }
  38247. },
  38248. foot: {
  38249. height: math.unit(1.464, "feet"),
  38250. name: "Foot",
  38251. image: {
  38252. source: "./media/characters/shiron/foot.svg"
  38253. }
  38254. },
  38255. },
  38256. [
  38257. {
  38258. name: "Normal",
  38259. height: math.unit(2, "meters")
  38260. },
  38261. {
  38262. name: "Macro",
  38263. height: math.unit(500, "meters"),
  38264. default: true
  38265. },
  38266. {
  38267. name: "Megamacro",
  38268. height: math.unit(20, "km")
  38269. },
  38270. ]
  38271. ))
  38272. characterMakers.push(() => makeCharacter(
  38273. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38274. {
  38275. front: {
  38276. height: math.unit(6, "feet"),
  38277. name: "Front",
  38278. image: {
  38279. source: "./media/characters/sam/front.svg",
  38280. extra: 849/826,
  38281. bottom: 19/868
  38282. }
  38283. },
  38284. },
  38285. [
  38286. {
  38287. name: "Normal",
  38288. height: math.unit(6, "feet"),
  38289. default: true
  38290. },
  38291. ]
  38292. ))
  38293. characterMakers.push(() => makeCharacter(
  38294. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38295. {
  38296. front: {
  38297. height: math.unit(8 + 4/12, "feet"),
  38298. weight: math.unit(122, "kg"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/namori-kurogawa/front.svg",
  38302. extra: 1894/1576,
  38303. bottom: 34/1928
  38304. }
  38305. },
  38306. },
  38307. [
  38308. {
  38309. name: "Normal",
  38310. height: math.unit(8 + 4/12, "feet"),
  38311. default: true
  38312. },
  38313. ]
  38314. ))
  38315. characterMakers.push(() => makeCharacter(
  38316. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38317. {
  38318. front: {
  38319. height: math.unit(9, "feet"),
  38320. weight: math.unit(621, "lb"),
  38321. name: "Front",
  38322. image: {
  38323. source: "./media/characters/unmru/front.svg",
  38324. extra: 1853/1747,
  38325. bottom: 73/1926
  38326. }
  38327. },
  38328. side: {
  38329. height: math.unit(9, "feet"),
  38330. weight: math.unit(621, "lb"),
  38331. name: "Side",
  38332. image: {
  38333. source: "./media/characters/unmru/side.svg",
  38334. extra: 1781/1671,
  38335. bottom: 127/1908
  38336. }
  38337. },
  38338. back: {
  38339. height: math.unit(9, "feet"),
  38340. weight: math.unit(621, "lb"),
  38341. name: "Back",
  38342. image: {
  38343. source: "./media/characters/unmru/back.svg",
  38344. extra: 1894/1765,
  38345. bottom: 75/1969
  38346. }
  38347. },
  38348. dick: {
  38349. height: math.unit(3, "feet"),
  38350. weight: math.unit(35, "lb"),
  38351. name: "Dick",
  38352. image: {
  38353. source: "./media/characters/unmru/dick.svg"
  38354. }
  38355. },
  38356. },
  38357. [
  38358. {
  38359. name: "Normal",
  38360. height: math.unit(9, "feet")
  38361. },
  38362. {
  38363. name: "Natural",
  38364. height: math.unit(27, "feet"),
  38365. default: true
  38366. },
  38367. {
  38368. name: "Giant",
  38369. height: math.unit(90, "feet")
  38370. },
  38371. {
  38372. name: "Kaiju",
  38373. height: math.unit(270, "feet")
  38374. },
  38375. {
  38376. name: "Macro",
  38377. height: math.unit(900, "feet")
  38378. },
  38379. {
  38380. name: "Macro+",
  38381. height: math.unit(2700, "feet")
  38382. },
  38383. {
  38384. name: "Megamacro",
  38385. height: math.unit(9000, "feet")
  38386. },
  38387. {
  38388. name: "City-Crushing",
  38389. height: math.unit(27000, "feet")
  38390. },
  38391. {
  38392. name: "Mountain-Mashing",
  38393. height: math.unit(90000, "feet")
  38394. },
  38395. {
  38396. name: "Earth-Eclipsing",
  38397. height: math.unit(2.7e8, "feet")
  38398. },
  38399. {
  38400. name: "Sol-Swallowing",
  38401. height: math.unit(9e10, "feet")
  38402. },
  38403. {
  38404. name: "Majoris-Munching",
  38405. height: math.unit(2.7e13, "feet")
  38406. },
  38407. ]
  38408. ))
  38409. characterMakers.push(() => makeCharacter(
  38410. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38411. {
  38412. front: {
  38413. height: math.unit(1, "inch"),
  38414. name: "Front",
  38415. image: {
  38416. source: "./media/characters/squeaks-mouse/front.svg",
  38417. extra: 352/308,
  38418. bottom: 25/377
  38419. }
  38420. },
  38421. },
  38422. [
  38423. {
  38424. name: "Micro",
  38425. height: math.unit(1, "inch"),
  38426. default: true
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38432. {
  38433. side: {
  38434. height: math.unit(35, "feet"),
  38435. name: "Side",
  38436. image: {
  38437. source: "./media/characters/sayko/side.svg",
  38438. extra: 1697/1021,
  38439. bottom: 82/1779
  38440. }
  38441. },
  38442. head: {
  38443. height: math.unit(16, "feet"),
  38444. name: "Head",
  38445. image: {
  38446. source: "./media/characters/sayko/head.svg"
  38447. }
  38448. },
  38449. forepaw: {
  38450. height: math.unit(7.85, "feet"),
  38451. name: "Forepaw",
  38452. image: {
  38453. source: "./media/characters/sayko/forepaw.svg"
  38454. }
  38455. },
  38456. hindpaw: {
  38457. height: math.unit(8.8, "feet"),
  38458. name: "Hindpaw",
  38459. image: {
  38460. source: "./media/characters/sayko/hindpaw.svg"
  38461. }
  38462. },
  38463. },
  38464. [
  38465. {
  38466. name: "Normal",
  38467. height: math.unit(35, "feet"),
  38468. default: true
  38469. },
  38470. {
  38471. name: "Colossus",
  38472. height: math.unit(100, "meters")
  38473. },
  38474. {
  38475. name: "\"Small\" Deity",
  38476. height: math.unit(1, "km")
  38477. },
  38478. {
  38479. name: "\"Large\" Deity",
  38480. height: math.unit(15, "km")
  38481. },
  38482. ]
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38486. {
  38487. front: {
  38488. height: math.unit(6, "feet"),
  38489. weight: math.unit(250, "lb"),
  38490. name: "Front",
  38491. image: {
  38492. source: "./media/characters/mukiro/front.svg",
  38493. extra: 1368/1310,
  38494. bottom: 34/1402
  38495. }
  38496. },
  38497. },
  38498. [
  38499. {
  38500. name: "Normal",
  38501. height: math.unit(6, "feet"),
  38502. default: true
  38503. },
  38504. ]
  38505. ))
  38506. characterMakers.push(() => makeCharacter(
  38507. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38508. {
  38509. front: {
  38510. height: math.unit(12 + 4/12, "feet"),
  38511. name: "Front",
  38512. image: {
  38513. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38514. extra: 1346/1311,
  38515. bottom: 65/1411
  38516. }
  38517. },
  38518. },
  38519. [
  38520. {
  38521. name: "Base",
  38522. height: math.unit(12 + 4/12, "feet"),
  38523. default: true
  38524. },
  38525. {
  38526. name: "Macro",
  38527. height: math.unit(150, "feet")
  38528. },
  38529. {
  38530. name: "Mega",
  38531. height: math.unit(2, "miles")
  38532. },
  38533. {
  38534. name: "Demi God",
  38535. height: math.unit(4, "AU")
  38536. },
  38537. {
  38538. name: "God Size",
  38539. height: math.unit(1, "universe")
  38540. },
  38541. ]
  38542. ))
  38543. characterMakers.push(() => makeCharacter(
  38544. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38545. {
  38546. front: {
  38547. height: math.unit(3 + 3/12, "feet"),
  38548. weight: math.unit(88, "lb"),
  38549. name: "Front",
  38550. image: {
  38551. source: "./media/characters/trey/front.svg",
  38552. extra: 1815/1509,
  38553. bottom: 60/1875
  38554. }
  38555. },
  38556. },
  38557. [
  38558. {
  38559. name: "Normal",
  38560. height: math.unit(3 + 3/12, "feet"),
  38561. default: true
  38562. },
  38563. ]
  38564. ))
  38565. characterMakers.push(() => makeCharacter(
  38566. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38567. {
  38568. front: {
  38569. height: math.unit(4, "meters"),
  38570. name: "Front",
  38571. image: {
  38572. source: "./media/characters/adelonda/front.svg",
  38573. extra: 1077/982,
  38574. bottom: 39/1116
  38575. }
  38576. },
  38577. back: {
  38578. height: math.unit(4, "meters"),
  38579. name: "Back",
  38580. image: {
  38581. source: "./media/characters/adelonda/back.svg",
  38582. extra: 1105/1003,
  38583. bottom: 25/1130
  38584. }
  38585. },
  38586. feral: {
  38587. height: math.unit(40/1.5, "meters"),
  38588. name: "Feral",
  38589. image: {
  38590. source: "./media/characters/adelonda/feral.svg",
  38591. extra: 597/271,
  38592. bottom: 387/984
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(4, "meters"),
  38600. default: true
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38606. {
  38607. front: {
  38608. height: math.unit(8 + 4/12, "feet"),
  38609. weight: math.unit(670, "lb"),
  38610. name: "Front",
  38611. image: {
  38612. source: "./media/characters/acadiel/front.svg",
  38613. extra: 1901/1595,
  38614. bottom: 142/2043
  38615. }
  38616. },
  38617. },
  38618. [
  38619. {
  38620. name: "Normal",
  38621. height: math.unit(8 + 4/12, "feet"),
  38622. default: true
  38623. },
  38624. {
  38625. name: "Macro",
  38626. height: math.unit(200, "feet")
  38627. },
  38628. ]
  38629. ))
  38630. characterMakers.push(() => makeCharacter(
  38631. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38632. {
  38633. front: {
  38634. height: math.unit(6 + 2/12, "feet"),
  38635. weight: math.unit(185, "lb"),
  38636. name: "Front",
  38637. image: {
  38638. source: "./media/characters/kayne-ein/front.svg",
  38639. extra: 1780/1560,
  38640. bottom: 81/1861
  38641. }
  38642. },
  38643. },
  38644. [
  38645. {
  38646. name: "Normal",
  38647. height: math.unit(6 + 2/12, "feet"),
  38648. default: true
  38649. },
  38650. {
  38651. name: "Transformation Stage",
  38652. height: math.unit(15, "feet")
  38653. },
  38654. {
  38655. name: "Macro",
  38656. height: math.unit(150, "feet")
  38657. },
  38658. {
  38659. name: "Earth's Shadow",
  38660. height: math.unit(6200, "miles")
  38661. },
  38662. {
  38663. name: "Universal Demon",
  38664. height: math.unit(28e9, "parsecs")
  38665. },
  38666. {
  38667. name: "Multiverse God",
  38668. height: math.unit(3, "multiverses")
  38669. },
  38670. ]
  38671. ))
  38672. characterMakers.push(() => makeCharacter(
  38673. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38674. {
  38675. front: {
  38676. height: math.unit(5 + 5/12, "feet"),
  38677. name: "Front",
  38678. image: {
  38679. source: "./media/characters/fawn/front.svg",
  38680. extra: 1873/1731,
  38681. bottom: 95/1968
  38682. }
  38683. },
  38684. back: {
  38685. height: math.unit(5 + 5/12, "feet"),
  38686. name: "Back",
  38687. image: {
  38688. source: "./media/characters/fawn/back.svg",
  38689. extra: 1813/1700,
  38690. bottom: 14/1827
  38691. }
  38692. },
  38693. hoof: {
  38694. height: math.unit(1.45, "feet"),
  38695. name: "Hoof",
  38696. image: {
  38697. source: "./media/characters/fawn/hoof.svg"
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Normal",
  38704. height: math.unit(5 + 5/12, "feet"),
  38705. default: true
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38711. {
  38712. front: {
  38713. height: math.unit(2 + 5/12, "feet"),
  38714. name: "Front",
  38715. image: {
  38716. source: "./media/characters/orion/front.svg",
  38717. extra: 1366/1304,
  38718. bottom: 43/1409
  38719. }
  38720. },
  38721. paw: {
  38722. height: math.unit(0.52, "feet"),
  38723. name: "Paw",
  38724. image: {
  38725. source: "./media/characters/orion/paw.svg"
  38726. }
  38727. },
  38728. },
  38729. [
  38730. {
  38731. name: "Normal",
  38732. height: math.unit(2 + 5/12, "feet"),
  38733. default: true
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38739. {
  38740. front: {
  38741. height: math.unit(5 + 10/12, "feet"),
  38742. name: "Front",
  38743. image: {
  38744. source: "./media/characters/vera/front.svg",
  38745. extra: 1680/1575,
  38746. bottom: 49/1729
  38747. }
  38748. },
  38749. back: {
  38750. height: math.unit(5 + 10/12, "feet"),
  38751. name: "Back",
  38752. image: {
  38753. source: "./media/characters/vera/back.svg",
  38754. extra: 1700/1588,
  38755. bottom: 18/1718
  38756. }
  38757. },
  38758. arcanine: {
  38759. height: math.unit(6 + 8/12, "feet"),
  38760. name: "Arcanine",
  38761. image: {
  38762. source: "./media/characters/vera/arcanine.svg",
  38763. extra: 1590/1511,
  38764. bottom: 71/1661
  38765. }
  38766. },
  38767. maw: {
  38768. height: math.unit(0.82, "feet"),
  38769. name: "Maw",
  38770. image: {
  38771. source: "./media/characters/vera/maw.svg"
  38772. }
  38773. },
  38774. mawArcanine: {
  38775. height: math.unit(0.97, "feet"),
  38776. name: "Maw (Arcanine)",
  38777. image: {
  38778. source: "./media/characters/vera/maw-arcanine.svg"
  38779. }
  38780. },
  38781. paw: {
  38782. height: math.unit(0.75, "feet"),
  38783. name: "Paw",
  38784. image: {
  38785. source: "./media/characters/vera/paw.svg"
  38786. }
  38787. },
  38788. pawprint: {
  38789. height: math.unit(0.52, "feet"),
  38790. name: "Pawprint",
  38791. image: {
  38792. source: "./media/characters/vera/pawprint.svg"
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Normal",
  38799. height: math.unit(5 + 10/12, "feet"),
  38800. default: true
  38801. },
  38802. {
  38803. name: "Macro",
  38804. height: math.unit(75, "feet")
  38805. },
  38806. ]
  38807. ))
  38808. characterMakers.push(() => makeCharacter(
  38809. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38810. {
  38811. front: {
  38812. height: math.unit(4, "feet"),
  38813. weight: math.unit(40, "lb"),
  38814. name: "Front",
  38815. image: {
  38816. source: "./media/characters/orvan-rabbit/front.svg",
  38817. extra: 1896/1642,
  38818. bottom: 29/1925
  38819. }
  38820. },
  38821. },
  38822. [
  38823. {
  38824. name: "Normal",
  38825. height: math.unit(4, "feet"),
  38826. default: true
  38827. },
  38828. ]
  38829. ))
  38830. characterMakers.push(() => makeCharacter(
  38831. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38832. {
  38833. front: {
  38834. height: math.unit(6, "feet"),
  38835. weight: math.unit(168, "lb"),
  38836. name: "Front",
  38837. image: {
  38838. source: "./media/characters/lisa/front.svg",
  38839. extra: 2065/1867,
  38840. bottom: 46/2111
  38841. }
  38842. },
  38843. back: {
  38844. height: math.unit(6, "feet"),
  38845. weight: math.unit(168, "lb"),
  38846. name: "Back",
  38847. image: {
  38848. source: "./media/characters/lisa/back.svg",
  38849. extra: 1982/1838,
  38850. bottom: 29/2011
  38851. }
  38852. },
  38853. maw: {
  38854. height: math.unit(0.81, "feet"),
  38855. name: "Maw",
  38856. image: {
  38857. source: "./media/characters/lisa/maw.svg"
  38858. }
  38859. },
  38860. paw: {
  38861. height: math.unit(0.9, "feet"),
  38862. name: "Paw",
  38863. image: {
  38864. source: "./media/characters/lisa/paw.svg"
  38865. }
  38866. },
  38867. caribousune: {
  38868. height: math.unit(7 + 2/12, "feet"),
  38869. weight: math.unit(268, "lb"),
  38870. name: "Caribousune",
  38871. image: {
  38872. source: "./media/characters/lisa/caribousune.svg",
  38873. extra: 1843/1633,
  38874. bottom: 29/1872
  38875. }
  38876. },
  38877. frontCaribousune: {
  38878. height: math.unit(7 + 2/12, "feet"),
  38879. weight: math.unit(268, "lb"),
  38880. name: "Front (Caribousune)",
  38881. image: {
  38882. source: "./media/characters/lisa/front-caribousune.svg",
  38883. extra: 1818/1638,
  38884. bottom: 52/1870
  38885. }
  38886. },
  38887. sideCaribousune: {
  38888. height: math.unit(7 + 2/12, "feet"),
  38889. weight: math.unit(268, "lb"),
  38890. name: "Side (Caribousune)",
  38891. image: {
  38892. source: "./media/characters/lisa/side-caribousune.svg",
  38893. extra: 1851/1635,
  38894. bottom: 16/1867
  38895. }
  38896. },
  38897. backCaribousune: {
  38898. height: math.unit(7 + 2/12, "feet"),
  38899. weight: math.unit(268, "lb"),
  38900. name: "Back (Caribousune)",
  38901. image: {
  38902. source: "./media/characters/lisa/back-caribousune.svg",
  38903. extra: 1801/1604,
  38904. bottom: 44/1845
  38905. }
  38906. },
  38907. caribou: {
  38908. height: math.unit(7 + 2/12, "feet"),
  38909. weight: math.unit(268, "lb"),
  38910. name: "Caribou",
  38911. image: {
  38912. source: "./media/characters/lisa/caribou.svg",
  38913. extra: 1843/1633,
  38914. bottom: 29/1872
  38915. }
  38916. },
  38917. frontCaribou: {
  38918. height: math.unit(7 + 2/12, "feet"),
  38919. weight: math.unit(268, "lb"),
  38920. name: "Front (Caribou)",
  38921. image: {
  38922. source: "./media/characters/lisa/front-caribou.svg",
  38923. extra: 1818/1638,
  38924. bottom: 52/1870
  38925. }
  38926. },
  38927. sideCaribou: {
  38928. height: math.unit(7 + 2/12, "feet"),
  38929. weight: math.unit(268, "lb"),
  38930. name: "Side (Caribou)",
  38931. image: {
  38932. source: "./media/characters/lisa/side-caribou.svg",
  38933. extra: 1851/1635,
  38934. bottom: 16/1867
  38935. }
  38936. },
  38937. backCaribou: {
  38938. height: math.unit(7 + 2/12, "feet"),
  38939. weight: math.unit(268, "lb"),
  38940. name: "Back (Caribou)",
  38941. image: {
  38942. source: "./media/characters/lisa/back-caribou.svg",
  38943. extra: 1801/1604,
  38944. bottom: 44/1845
  38945. }
  38946. },
  38947. mawCaribou: {
  38948. height: math.unit(1.45, "feet"),
  38949. name: "Maw (Caribou)",
  38950. image: {
  38951. source: "./media/characters/lisa/maw-caribou.svg"
  38952. }
  38953. },
  38954. mawCaribousune: {
  38955. height: math.unit(1.45, "feet"),
  38956. name: "Maw (Caribousune)",
  38957. image: {
  38958. source: "./media/characters/lisa/maw-caribousune.svg"
  38959. }
  38960. },
  38961. pawCaribousune: {
  38962. height: math.unit(1.61, "feet"),
  38963. name: "Paw (Caribou)",
  38964. image: {
  38965. source: "./media/characters/lisa/paw-caribousune.svg"
  38966. }
  38967. },
  38968. },
  38969. [
  38970. {
  38971. name: "Normal",
  38972. height: math.unit(6, "feet")
  38973. },
  38974. {
  38975. name: "God Size",
  38976. height: math.unit(72, "feet"),
  38977. default: true
  38978. },
  38979. {
  38980. name: "Towering",
  38981. height: math.unit(288, "feet")
  38982. },
  38983. {
  38984. name: "City Size",
  38985. height: math.unit(48384, "feet")
  38986. },
  38987. {
  38988. name: "Continental",
  38989. height: math.unit(4200, "miles")
  38990. },
  38991. {
  38992. name: "Planet Eater",
  38993. height: math.unit(42, "earths")
  38994. },
  38995. {
  38996. name: "Star Swallower",
  38997. height: math.unit(42, "solarradii")
  38998. },
  38999. {
  39000. name: "System Swallower",
  39001. height: math.unit(84000, "AU")
  39002. },
  39003. {
  39004. name: "Galaxy Gobbler",
  39005. height: math.unit(42, "galaxies")
  39006. },
  39007. {
  39008. name: "Universe Devourer",
  39009. height: math.unit(42, "universes")
  39010. },
  39011. {
  39012. name: "Multiverse Muncher",
  39013. height: math.unit(42, "multiverses")
  39014. },
  39015. ]
  39016. ))
  39017. characterMakers.push(() => makeCharacter(
  39018. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39019. {
  39020. front: {
  39021. height: math.unit(36, "feet"),
  39022. name: "Front",
  39023. image: {
  39024. source: "./media/characters/shadow-rat/front.svg",
  39025. extra: 1845/1758,
  39026. bottom: 83/1928
  39027. }
  39028. },
  39029. },
  39030. [
  39031. {
  39032. name: "Macro",
  39033. height: math.unit(36, "feet"),
  39034. default: true
  39035. },
  39036. ]
  39037. ))
  39038. characterMakers.push(() => makeCharacter(
  39039. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39040. {
  39041. side: {
  39042. height: math.unit(8, "feet"),
  39043. weight: math.unit(2630, "lb"),
  39044. name: "Side",
  39045. image: {
  39046. source: "./media/characters/torallia/side.svg",
  39047. extra: 2164/2021,
  39048. bottom: 371/2535
  39049. }
  39050. },
  39051. },
  39052. [
  39053. {
  39054. name: "Mortal Interaction",
  39055. height: math.unit(8, "feet")
  39056. },
  39057. {
  39058. name: "Natural",
  39059. height: math.unit(24, "feet"),
  39060. default: true
  39061. },
  39062. {
  39063. name: "Giant",
  39064. height: math.unit(80, "feet")
  39065. },
  39066. {
  39067. name: "Kaiju",
  39068. height: math.unit(240, "feet")
  39069. },
  39070. {
  39071. name: "Macro",
  39072. height: math.unit(800, "feet")
  39073. },
  39074. {
  39075. name: "Macro+",
  39076. height: math.unit(2400, "feet")
  39077. },
  39078. {
  39079. name: "Macro++",
  39080. height: math.unit(8000, "feet")
  39081. },
  39082. {
  39083. name: "City-Crushing",
  39084. height: math.unit(24000, "feet")
  39085. },
  39086. {
  39087. name: "Mountain-Mashing",
  39088. height: math.unit(80000, "feet")
  39089. },
  39090. {
  39091. name: "District Demolisher",
  39092. height: math.unit(240000, "feet")
  39093. },
  39094. {
  39095. name: "Tri-County Terror",
  39096. height: math.unit(800000, "feet")
  39097. },
  39098. {
  39099. name: "State Smasher",
  39100. height: math.unit(2.4e6, "feet")
  39101. },
  39102. {
  39103. name: "Nation Nemesis",
  39104. height: math.unit(8e6, "feet")
  39105. },
  39106. {
  39107. name: "Continent Cracker",
  39108. height: math.unit(2.4e7, "feet")
  39109. },
  39110. {
  39111. name: "Planet-Pillaging",
  39112. height: math.unit(8e7, "feet")
  39113. },
  39114. {
  39115. name: "Earth-Eclipsing",
  39116. height: math.unit(2.4e8, "feet")
  39117. },
  39118. {
  39119. name: "Jovian-Jostling",
  39120. height: math.unit(8e8, "feet")
  39121. },
  39122. {
  39123. name: "Gas Giant Gulper",
  39124. height: math.unit(2.4e9, "feet")
  39125. },
  39126. {
  39127. name: "Astral Annihilator",
  39128. height: math.unit(8e9, "feet")
  39129. },
  39130. {
  39131. name: "Celestial Conqueror",
  39132. height: math.unit(2.4e10, "feet")
  39133. },
  39134. {
  39135. name: "Sol-Swallowing",
  39136. height: math.unit(8e10, "feet")
  39137. },
  39138. {
  39139. name: "Hunter of the Heavens",
  39140. height: math.unit(2.4e13, "feet")
  39141. },
  39142. ]
  39143. ))
  39144. characterMakers.push(() => makeCharacter(
  39145. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39146. {
  39147. front: {
  39148. height: math.unit(6 + 8/12, "feet"),
  39149. name: "Front",
  39150. image: {
  39151. source: "./media/characters/rebecca-pawlson/front.svg",
  39152. extra: 1737/1596,
  39153. bottom: 107/1844
  39154. }
  39155. },
  39156. back: {
  39157. height: math.unit(6 + 8/12, "feet"),
  39158. name: "Back",
  39159. image: {
  39160. source: "./media/characters/rebecca-pawlson/back.svg",
  39161. extra: 1702/1523,
  39162. bottom: 86/1788
  39163. }
  39164. },
  39165. },
  39166. [
  39167. {
  39168. name: "Normal",
  39169. height: math.unit(6 + 8/12, "feet")
  39170. },
  39171. {
  39172. name: "Mini Macro",
  39173. height: math.unit(10, "feet"),
  39174. default: true
  39175. },
  39176. {
  39177. name: "Macro",
  39178. height: math.unit(100, "feet")
  39179. },
  39180. {
  39181. name: "Mega Macro",
  39182. height: math.unit(2500, "feet")
  39183. },
  39184. {
  39185. name: "Giga Macro",
  39186. height: math.unit(50, "miles")
  39187. },
  39188. ]
  39189. ))
  39190. characterMakers.push(() => makeCharacter(
  39191. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39192. {
  39193. front: {
  39194. height: math.unit(7 + 6/12, "feet"),
  39195. weight: math.unit(600, "lb"),
  39196. name: "Front",
  39197. image: {
  39198. source: "./media/characters/moxie-nova/front.svg",
  39199. extra: 1734/1652,
  39200. bottom: 41/1775
  39201. }
  39202. },
  39203. },
  39204. [
  39205. {
  39206. name: "Normal",
  39207. height: math.unit(7 + 6/12, "feet"),
  39208. default: true
  39209. },
  39210. ]
  39211. ))
  39212. characterMakers.push(() => makeCharacter(
  39213. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39214. {
  39215. goat: {
  39216. height: math.unit(4, "feet"),
  39217. weight: math.unit(180, "lb"),
  39218. name: "Goat",
  39219. image: {
  39220. source: "./media/characters/tiffany/goat.svg",
  39221. extra: 1845/1595,
  39222. bottom: 106/1951
  39223. }
  39224. },
  39225. front: {
  39226. height: math.unit(5, "feet"),
  39227. weight: math.unit(150, "lb"),
  39228. name: "Foxcoon",
  39229. image: {
  39230. source: "./media/characters/tiffany/foxcoon.svg",
  39231. extra: 1941/1845,
  39232. bottom: 58/1999
  39233. }
  39234. },
  39235. },
  39236. [
  39237. {
  39238. name: "Normal",
  39239. height: math.unit(5, "feet"),
  39240. default: true
  39241. },
  39242. ]
  39243. ))
  39244. characterMakers.push(() => makeCharacter(
  39245. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39246. {
  39247. front: {
  39248. height: math.unit(8, "feet"),
  39249. weight: math.unit(300, "lb"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/raxinath/front.svg",
  39253. extra: 1407/1309,
  39254. bottom: 39/1446
  39255. }
  39256. },
  39257. back: {
  39258. height: math.unit(8, "feet"),
  39259. weight: math.unit(300, "lb"),
  39260. name: "Back",
  39261. image: {
  39262. source: "./media/characters/raxinath/back.svg",
  39263. extra: 1405/1315,
  39264. bottom: 9/1414
  39265. }
  39266. },
  39267. },
  39268. [
  39269. {
  39270. name: "Speck",
  39271. height: math.unit(0.5, "nm")
  39272. },
  39273. {
  39274. name: "Micro",
  39275. height: math.unit(3, "inches")
  39276. },
  39277. {
  39278. name: "Kobold",
  39279. height: math.unit(3, "feet")
  39280. },
  39281. {
  39282. name: "Normal",
  39283. height: math.unit(8, "feet"),
  39284. default: true
  39285. },
  39286. {
  39287. name: "Giant",
  39288. height: math.unit(50, "feet")
  39289. },
  39290. {
  39291. name: "Macro",
  39292. height: math.unit(1000, "feet")
  39293. },
  39294. {
  39295. name: "Megamacro",
  39296. height: math.unit(1, "mile")
  39297. },
  39298. ]
  39299. ))
  39300. characterMakers.push(() => makeCharacter(
  39301. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39302. {
  39303. front: {
  39304. height: math.unit(10, "feet"),
  39305. weight: math.unit(1442, "lb"),
  39306. name: "Front",
  39307. image: {
  39308. source: "./media/characters/mal-dragon/front.svg",
  39309. extra: 1515/1444,
  39310. bottom: 113/1628
  39311. }
  39312. },
  39313. back: {
  39314. height: math.unit(10, "feet"),
  39315. weight: math.unit(1442, "lb"),
  39316. name: "Back",
  39317. image: {
  39318. source: "./media/characters/mal-dragon/back.svg",
  39319. extra: 1527/1434,
  39320. bottom: 25/1552
  39321. }
  39322. },
  39323. },
  39324. [
  39325. {
  39326. name: "Mortal Interaction",
  39327. height: math.unit(10, "feet"),
  39328. default: true
  39329. },
  39330. {
  39331. name: "Large",
  39332. height: math.unit(30, "feet")
  39333. },
  39334. {
  39335. name: "Kaiju",
  39336. height: math.unit(300, "feet")
  39337. },
  39338. {
  39339. name: "Megamacro",
  39340. height: math.unit(10000, "feet")
  39341. },
  39342. {
  39343. name: "Continent Cracker",
  39344. height: math.unit(30000000, "feet")
  39345. },
  39346. {
  39347. name: "Sol-Swallowing",
  39348. height: math.unit(1e11, "feet")
  39349. },
  39350. {
  39351. name: "Light Universal",
  39352. height: math.unit(5, "universes")
  39353. },
  39354. {
  39355. name: "Universe Atoms",
  39356. height: math.unit(1.829e9, "universes")
  39357. },
  39358. {
  39359. name: "Light Multiversal",
  39360. height: math.unit(5, "multiverses")
  39361. },
  39362. {
  39363. name: "Multiverse Atoms",
  39364. height: math.unit(1.829e9, "multiverses")
  39365. },
  39366. {
  39367. name: "Fabric of Time",
  39368. height: math.unit(1e262, "multiverses")
  39369. },
  39370. ]
  39371. ))
  39372. characterMakers.push(() => makeCharacter(
  39373. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39374. {
  39375. front: {
  39376. height: math.unit(9, "feet"),
  39377. weight: math.unit(1050, "lb"),
  39378. name: "Front",
  39379. image: {
  39380. source: "./media/characters/tabitha/front.svg",
  39381. extra: 2083/1994,
  39382. bottom: 68/2151
  39383. }
  39384. },
  39385. },
  39386. [
  39387. {
  39388. name: "Baseline",
  39389. height: math.unit(9, "feet"),
  39390. default: true
  39391. },
  39392. {
  39393. name: "Giant",
  39394. height: math.unit(90, "feet")
  39395. },
  39396. {
  39397. name: "Macro",
  39398. height: math.unit(900, "feet")
  39399. },
  39400. {
  39401. name: "Megamacro",
  39402. height: math.unit(9000, "feet")
  39403. },
  39404. {
  39405. name: "City-Crushing",
  39406. height: math.unit(27000, "feet")
  39407. },
  39408. {
  39409. name: "Mountain-Mashing",
  39410. height: math.unit(90000, "feet")
  39411. },
  39412. {
  39413. name: "Nation Nemesis",
  39414. height: math.unit(9e6, "feet")
  39415. },
  39416. {
  39417. name: "Continent Cracker",
  39418. height: math.unit(27e6, "feet")
  39419. },
  39420. {
  39421. name: "Earth-Eclipsing",
  39422. height: math.unit(2.7e8, "feet")
  39423. },
  39424. {
  39425. name: "Gas Giant Gulper",
  39426. height: math.unit(2.7e9, "feet")
  39427. },
  39428. {
  39429. name: "Sol-Swallowing",
  39430. height: math.unit(9e10, "feet")
  39431. },
  39432. {
  39433. name: "Galaxy Gulper",
  39434. height: math.unit(9, "galaxies")
  39435. },
  39436. {
  39437. name: "Cosmos Churner",
  39438. height: math.unit(9, "universes")
  39439. },
  39440. ]
  39441. ))
  39442. characterMakers.push(() => makeCharacter(
  39443. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39444. {
  39445. front: {
  39446. height: math.unit(160, "cm"),
  39447. weight: math.unit(55, "kg"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/tow/front.svg",
  39451. extra: 1751/1722,
  39452. bottom: 74/1825
  39453. }
  39454. },
  39455. },
  39456. [
  39457. {
  39458. name: "Norm",
  39459. height: math.unit(160, "cm")
  39460. },
  39461. {
  39462. name: "Casual",
  39463. height: math.unit(3200, "m"),
  39464. default: true
  39465. },
  39466. {
  39467. name: "Show-Off",
  39468. height: math.unit(160, "km")
  39469. },
  39470. ]
  39471. ))
  39472. characterMakers.push(() => makeCharacter(
  39473. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39474. {
  39475. front: {
  39476. height: math.unit(7 + 11/12, "feet"),
  39477. weight: math.unit(342.8, "lb"),
  39478. name: "Front",
  39479. image: {
  39480. source: "./media/characters/vivian-orca-dragon/front.svg",
  39481. extra: 1890/1865,
  39482. bottom: 28/1918
  39483. }
  39484. },
  39485. },
  39486. [
  39487. {
  39488. name: "Micro",
  39489. height: math.unit(5, "inches")
  39490. },
  39491. {
  39492. name: "Normal",
  39493. height: math.unit(7 + 11/12, "feet"),
  39494. default: true
  39495. },
  39496. {
  39497. name: "Macro",
  39498. height: math.unit(395 + 7/12, "feet")
  39499. },
  39500. ]
  39501. ))
  39502. characterMakers.push(() => makeCharacter(
  39503. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39504. {
  39505. side: {
  39506. height: math.unit(10, "feet"),
  39507. weight: math.unit(1442, "lb"),
  39508. name: "Side",
  39509. image: {
  39510. source: "./media/characters/lotherakon/side.svg",
  39511. extra: 1604/1497,
  39512. bottom: 89/1693
  39513. }
  39514. },
  39515. },
  39516. [
  39517. {
  39518. name: "Mortal Interaction",
  39519. height: math.unit(10, "feet")
  39520. },
  39521. {
  39522. name: "Large",
  39523. height: math.unit(30, "feet"),
  39524. default: true
  39525. },
  39526. {
  39527. name: "Giant",
  39528. height: math.unit(100, "feet")
  39529. },
  39530. {
  39531. name: "Kaiju",
  39532. height: math.unit(300, "feet")
  39533. },
  39534. {
  39535. name: "Macro",
  39536. height: math.unit(1000, "feet")
  39537. },
  39538. {
  39539. name: "Macro+",
  39540. height: math.unit(3000, "feet")
  39541. },
  39542. {
  39543. name: "Megamacro",
  39544. height: math.unit(10000, "feet")
  39545. },
  39546. {
  39547. name: "City-Crushing",
  39548. height: math.unit(30000, "feet")
  39549. },
  39550. {
  39551. name: "Continent Cracker",
  39552. height: math.unit(30e6, "feet")
  39553. },
  39554. {
  39555. name: "Earth Eclipsing",
  39556. height: math.unit(3e8, "feet")
  39557. },
  39558. {
  39559. name: "Gas Giant Gulper",
  39560. height: math.unit(3e9, "feet")
  39561. },
  39562. {
  39563. name: "Sol-Swallowing",
  39564. height: math.unit(1e11, "feet")
  39565. },
  39566. {
  39567. name: "System Swallower",
  39568. height: math.unit(3e14, "feet")
  39569. },
  39570. {
  39571. name: "Galaxy Gulper",
  39572. height: math.unit(10, "galaxies")
  39573. },
  39574. {
  39575. name: "Light Universal",
  39576. height: math.unit(5, "universes")
  39577. },
  39578. {
  39579. name: "Universe Palm",
  39580. height: math.unit(20, "universes")
  39581. },
  39582. {
  39583. name: "Light Multiversal",
  39584. height: math.unit(5, "multiverses")
  39585. },
  39586. {
  39587. name: "Multiverse Palm",
  39588. height: math.unit(20, "multiverses")
  39589. },
  39590. {
  39591. name: "Inferno Incarnate",
  39592. height: math.unit(1e7, "multiverses")
  39593. },
  39594. ]
  39595. ))
  39596. characterMakers.push(() => makeCharacter(
  39597. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39598. {
  39599. front: {
  39600. height: math.unit(8, "feet"),
  39601. weight: math.unit(1200, "lb"),
  39602. name: "Front",
  39603. image: {
  39604. source: "./media/characters/malithee/front.svg",
  39605. extra: 1675/1640,
  39606. bottom: 162/1837
  39607. }
  39608. },
  39609. },
  39610. [
  39611. {
  39612. name: "Mortal Interaction",
  39613. height: math.unit(8, "feet"),
  39614. default: true
  39615. },
  39616. {
  39617. name: "Large",
  39618. height: math.unit(24, "feet")
  39619. },
  39620. {
  39621. name: "Kaiju",
  39622. height: math.unit(240, "feet")
  39623. },
  39624. {
  39625. name: "Megamacro",
  39626. height: math.unit(8000, "feet")
  39627. },
  39628. {
  39629. name: "Continent Cracker",
  39630. height: math.unit(24e6, "feet")
  39631. },
  39632. {
  39633. name: "Earth-Eclipsing",
  39634. height: math.unit(2.4e8, "feet")
  39635. },
  39636. {
  39637. name: "Sol-Swallowing",
  39638. height: math.unit(8e10, "feet")
  39639. },
  39640. {
  39641. name: "Galaxy Gulper",
  39642. height: math.unit(8, "galaxies")
  39643. },
  39644. {
  39645. name: "Light Universal",
  39646. height: math.unit(4, "universes")
  39647. },
  39648. {
  39649. name: "Universe Atoms",
  39650. height: math.unit(1.829e9, "universes")
  39651. },
  39652. {
  39653. name: "Light Multiversal",
  39654. height: math.unit(4, "multiverses")
  39655. },
  39656. {
  39657. name: "Multiverse Atoms",
  39658. height: math.unit(1.829e9, "multiverses")
  39659. },
  39660. {
  39661. name: "Nigh-Omnipresence",
  39662. height: math.unit(8e261, "multiverses")
  39663. },
  39664. ]
  39665. ))
  39666. characterMakers.push(() => makeCharacter(
  39667. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39668. {
  39669. front: {
  39670. height: math.unit(10, "feet"),
  39671. weight: math.unit(1500, "lb"),
  39672. name: "Front",
  39673. image: {
  39674. source: "./media/characters/miles-thestia/front.svg",
  39675. extra: 1812/1727,
  39676. bottom: 86/1898
  39677. }
  39678. },
  39679. back: {
  39680. height: math.unit(10, "feet"),
  39681. weight: math.unit(1500, "lb"),
  39682. name: "Back",
  39683. image: {
  39684. source: "./media/characters/miles-thestia/back.svg",
  39685. extra: 1799/1690,
  39686. bottom: 47/1846
  39687. }
  39688. },
  39689. frontNsfw: {
  39690. height: math.unit(10, "feet"),
  39691. weight: math.unit(1500, "lb"),
  39692. name: "Front (NSFW)",
  39693. image: {
  39694. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39695. extra: 1812/1727,
  39696. bottom: 86/1898
  39697. }
  39698. },
  39699. },
  39700. [
  39701. {
  39702. name: "Mini-Macro",
  39703. height: math.unit(10, "feet"),
  39704. default: true
  39705. },
  39706. ]
  39707. ))
  39708. characterMakers.push(() => makeCharacter(
  39709. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39710. {
  39711. front: {
  39712. height: math.unit(25, "feet"),
  39713. name: "Front",
  39714. image: {
  39715. source: "./media/characters/titan-s-wulf/front.svg",
  39716. extra: 1560/1484,
  39717. bottom: 76/1636
  39718. }
  39719. },
  39720. },
  39721. [
  39722. {
  39723. name: "Smallest",
  39724. height: math.unit(25, "feet"),
  39725. default: true
  39726. },
  39727. {
  39728. name: "Normal",
  39729. height: math.unit(200, "feet")
  39730. },
  39731. {
  39732. name: "Macro",
  39733. height: math.unit(200000, "feet")
  39734. },
  39735. {
  39736. name: "Multiversal Original",
  39737. height: math.unit(10000, "multiverses")
  39738. },
  39739. ]
  39740. ))
  39741. characterMakers.push(() => makeCharacter(
  39742. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39743. {
  39744. front: {
  39745. height: math.unit(8, "feet"),
  39746. weight: math.unit(553, "lb"),
  39747. name: "Front",
  39748. image: {
  39749. source: "./media/characters/tawendeh/front.svg",
  39750. extra: 2365/2268,
  39751. bottom: 83/2448
  39752. }
  39753. },
  39754. frontClothed: {
  39755. height: math.unit(8, "feet"),
  39756. weight: math.unit(553, "lb"),
  39757. name: "Front (Clothed)",
  39758. image: {
  39759. source: "./media/characters/tawendeh/front-clothed.svg",
  39760. extra: 2365/2268,
  39761. bottom: 83/2448
  39762. }
  39763. },
  39764. back: {
  39765. height: math.unit(8, "feet"),
  39766. weight: math.unit(553, "lb"),
  39767. name: "Back",
  39768. image: {
  39769. source: "./media/characters/tawendeh/back.svg",
  39770. extra: 2397/2294,
  39771. bottom: 42/2439
  39772. }
  39773. },
  39774. },
  39775. [
  39776. {
  39777. name: "Mortal Interaction",
  39778. height: math.unit(8, "feet"),
  39779. default: true
  39780. },
  39781. {
  39782. name: "Giant",
  39783. height: math.unit(80, "feet")
  39784. },
  39785. {
  39786. name: "Macro",
  39787. height: math.unit(800, "feet")
  39788. },
  39789. {
  39790. name: "Megamacro",
  39791. height: math.unit(8000, "feet")
  39792. },
  39793. {
  39794. name: "City-Crushing",
  39795. height: math.unit(24000, "feet")
  39796. },
  39797. {
  39798. name: "Mountain-Mashing",
  39799. height: math.unit(80000, "feet")
  39800. },
  39801. {
  39802. name: "Nation Nemesis",
  39803. height: math.unit(8e6, "feet")
  39804. },
  39805. {
  39806. name: "Continent Cracker",
  39807. height: math.unit(24e6, "feet")
  39808. },
  39809. {
  39810. name: "Earth-Eclipsing",
  39811. height: math.unit(2.4e8, "feet")
  39812. },
  39813. {
  39814. name: "Gas Giant Gulper",
  39815. height: math.unit(2.4e9, "feet")
  39816. },
  39817. {
  39818. name: "Sol-Swallowing",
  39819. height: math.unit(8e10, "feet")
  39820. },
  39821. {
  39822. name: "Galaxy Gulper",
  39823. height: math.unit(8, "galaxies")
  39824. },
  39825. {
  39826. name: "Cosmos Churner",
  39827. height: math.unit(8, "universes")
  39828. },
  39829. {
  39830. name: "Omnipotent Otter",
  39831. height: math.unit(80, "universes")
  39832. },
  39833. ]
  39834. ))
  39835. characterMakers.push(() => makeCharacter(
  39836. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39837. {
  39838. front: {
  39839. height: math.unit(2.6, "meters"),
  39840. weight: math.unit(900, "kg"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/neesha/front.svg",
  39844. extra: 1803/1653,
  39845. bottom: 128/1931
  39846. }
  39847. },
  39848. },
  39849. [
  39850. {
  39851. name: "Normal",
  39852. height: math.unit(2.6, "meters"),
  39853. default: true
  39854. },
  39855. {
  39856. name: "Macro",
  39857. height: math.unit(50, "meters")
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39863. {
  39864. front: {
  39865. height: math.unit(5, "feet"),
  39866. weight: math.unit(185, "lb"),
  39867. name: "Front",
  39868. image: {
  39869. source: "./media/characters/kyera/front.svg",
  39870. extra: 1875/1790,
  39871. bottom: 96/1971
  39872. }
  39873. },
  39874. },
  39875. [
  39876. {
  39877. name: "Normal",
  39878. height: math.unit(5, "feet"),
  39879. default: true
  39880. },
  39881. ]
  39882. ))
  39883. characterMakers.push(() => makeCharacter(
  39884. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39885. {
  39886. front: {
  39887. height: math.unit(7 + 6/12, "feet"),
  39888. weight: math.unit(540, "lb"),
  39889. name: "Front",
  39890. image: {
  39891. source: "./media/characters/yuko/front.svg",
  39892. extra: 1282/1222,
  39893. bottom: 101/1383
  39894. }
  39895. },
  39896. frontClothed: {
  39897. height: math.unit(7 + 6/12, "feet"),
  39898. weight: math.unit(540, "lb"),
  39899. name: "Front (Clothed)",
  39900. image: {
  39901. source: "./media/characters/yuko/front-clothed.svg",
  39902. extra: 1282/1222,
  39903. bottom: 101/1383
  39904. }
  39905. },
  39906. },
  39907. [
  39908. {
  39909. name: "Normal",
  39910. height: math.unit(7 + 6/12, "feet"),
  39911. default: true
  39912. },
  39913. {
  39914. name: "Macro",
  39915. height: math.unit(26 + 9/12, "feet")
  39916. },
  39917. {
  39918. name: "Megamacro",
  39919. height: math.unit(300, "feet")
  39920. },
  39921. {
  39922. name: "Gigamacro",
  39923. height: math.unit(5000, "feet")
  39924. },
  39925. {
  39926. name: "Planetary",
  39927. height: math.unit(10000, "miles")
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39933. {
  39934. front: {
  39935. height: math.unit(8 + 2/12, "feet"),
  39936. weight: math.unit(600, "lb"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/deam-nitrel/front.svg",
  39940. extra: 1308/1234,
  39941. bottom: 125/1433
  39942. }
  39943. },
  39944. },
  39945. [
  39946. {
  39947. name: "Normal",
  39948. height: math.unit(8 + 2/12, "feet"),
  39949. default: true
  39950. },
  39951. ]
  39952. ))
  39953. characterMakers.push(() => makeCharacter(
  39954. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39955. {
  39956. front: {
  39957. height: math.unit(6.1, "feet"),
  39958. weight: math.unit(180, "lb"),
  39959. name: "Front",
  39960. image: {
  39961. source: "./media/characters/skyress/front.svg",
  39962. extra: 1045/915,
  39963. bottom: 28/1073
  39964. }
  39965. },
  39966. maw: {
  39967. height: math.unit(1, "feet"),
  39968. name: "Maw",
  39969. image: {
  39970. source: "./media/characters/skyress/maw.svg"
  39971. }
  39972. },
  39973. },
  39974. [
  39975. {
  39976. name: "Normal",
  39977. height: math.unit(6.1, "feet"),
  39978. default: true
  39979. },
  39980. {
  39981. name: "Macro",
  39982. height: math.unit(200, "feet")
  39983. },
  39984. ]
  39985. ))
  39986. characterMakers.push(() => makeCharacter(
  39987. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39988. {
  39989. front: {
  39990. height: math.unit(4 + 2/12, "feet"),
  39991. weight: math.unit(40, "kg"),
  39992. name: "Front",
  39993. image: {
  39994. source: "./media/characters/amethyst-jones/front.svg",
  39995. extra: 1220/1150,
  39996. bottom: 101/1321
  39997. }
  39998. },
  39999. },
  40000. [
  40001. {
  40002. name: "Normal",
  40003. height: math.unit(4 + 2/12, "feet"),
  40004. default: true
  40005. },
  40006. ]
  40007. ))
  40008. characterMakers.push(() => makeCharacter(
  40009. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40010. {
  40011. front: {
  40012. height: math.unit(1.7, "m"),
  40013. weight: math.unit(135, "lb"),
  40014. name: "Front",
  40015. image: {
  40016. source: "./media/characters/jade/front.svg",
  40017. extra: 1818/1767,
  40018. bottom: 32/1850
  40019. }
  40020. },
  40021. back: {
  40022. height: math.unit(1.7, "m"),
  40023. weight: math.unit(135, "lb"),
  40024. name: "Back",
  40025. image: {
  40026. source: "./media/characters/jade/back.svg",
  40027. extra: 1869/1809,
  40028. bottom: 35/1904
  40029. }
  40030. },
  40031. hand: {
  40032. height: math.unit(0.24, "m"),
  40033. name: "Hand",
  40034. image: {
  40035. source: "./media/characters/jade/hand.svg"
  40036. }
  40037. },
  40038. foot: {
  40039. height: math.unit(0.263, "m"),
  40040. name: "Foot",
  40041. image: {
  40042. source: "./media/characters/jade/foot.svg"
  40043. }
  40044. },
  40045. dick: {
  40046. height: math.unit(0.47, "m"),
  40047. name: "Dick",
  40048. image: {
  40049. source: "./media/characters/jade/dick.svg"
  40050. }
  40051. },
  40052. },
  40053. [
  40054. {
  40055. name: "Micro",
  40056. height: math.unit(22, "cm")
  40057. },
  40058. {
  40059. name: "Normal",
  40060. height: math.unit(1.7, "m"),
  40061. default: true
  40062. },
  40063. {
  40064. name: "Macro",
  40065. height: math.unit(152, "m")
  40066. },
  40067. ]
  40068. ))
  40069. characterMakers.push(() => makeCharacter(
  40070. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40071. {
  40072. front: {
  40073. height: math.unit(100, "miles"),
  40074. weight: math.unit(20000, "tons"),
  40075. name: "Front",
  40076. image: {
  40077. source: "./media/characters/cookie/front.svg",
  40078. extra: 1125/1070,
  40079. bottom: 30/1155
  40080. }
  40081. },
  40082. },
  40083. [
  40084. {
  40085. name: "Big",
  40086. height: math.unit(50, "feet")
  40087. },
  40088. {
  40089. name: "Macro",
  40090. height: math.unit(100, "miles"),
  40091. default: true
  40092. },
  40093. {
  40094. name: "Megamacro",
  40095. height: math.unit(90000, "miles")
  40096. },
  40097. ]
  40098. ))
  40099. characterMakers.push(() => makeCharacter(
  40100. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40101. {
  40102. front: {
  40103. height: math.unit(6, "feet"),
  40104. weight: math.unit(145, "lb"),
  40105. name: "Front",
  40106. image: {
  40107. source: "./media/characters/farzian/front.svg",
  40108. extra: 1902/1693,
  40109. bottom: 108/2010
  40110. }
  40111. },
  40112. },
  40113. [
  40114. {
  40115. name: "Macro",
  40116. height: math.unit(500, "feet"),
  40117. default: true
  40118. },
  40119. ]
  40120. ))
  40121. characterMakers.push(() => makeCharacter(
  40122. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40123. {
  40124. front: {
  40125. height: math.unit(3 + 6/12, "feet"),
  40126. weight: math.unit(50, "lb"),
  40127. name: "Front",
  40128. image: {
  40129. source: "./media/characters/kimberly-tilson/front.svg",
  40130. extra: 1400/1322,
  40131. bottom: 36/1436
  40132. }
  40133. },
  40134. back: {
  40135. height: math.unit(3 + 6/12, "feet"),
  40136. weight: math.unit(50, "lb"),
  40137. name: "Back",
  40138. image: {
  40139. source: "./media/characters/kimberly-tilson/back.svg",
  40140. extra: 1370/1307,
  40141. bottom: 20/1390
  40142. }
  40143. },
  40144. },
  40145. [
  40146. {
  40147. name: "Normal",
  40148. height: math.unit(3 + 6/12, "feet"),
  40149. default: true
  40150. },
  40151. ]
  40152. ))
  40153. characterMakers.push(() => makeCharacter(
  40154. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40155. {
  40156. front: {
  40157. height: math.unit(1148, "feet"),
  40158. weight: math.unit(34057, "lb"),
  40159. name: "Front",
  40160. image: {
  40161. source: "./media/characters/harthos/front.svg",
  40162. extra: 1391/1339,
  40163. bottom: 13/1404
  40164. }
  40165. },
  40166. },
  40167. [
  40168. {
  40169. name: "Macro",
  40170. height: math.unit(1148, "feet"),
  40171. default: true
  40172. },
  40173. ]
  40174. ))
  40175. characterMakers.push(() => makeCharacter(
  40176. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40177. {
  40178. front: {
  40179. height: math.unit(15, "feet"),
  40180. name: "Front",
  40181. image: {
  40182. source: "./media/characters/hypatia/front.svg",
  40183. extra: 1653/1591,
  40184. bottom: 79/1732
  40185. }
  40186. },
  40187. },
  40188. [
  40189. {
  40190. name: "Normal",
  40191. height: math.unit(15, "feet")
  40192. },
  40193. {
  40194. name: "Small",
  40195. height: math.unit(300, "feet")
  40196. },
  40197. {
  40198. name: "Macro",
  40199. height: math.unit(2500, "feet"),
  40200. default: true
  40201. },
  40202. {
  40203. name: "Mega Macro",
  40204. height: math.unit(1500, "miles")
  40205. },
  40206. {
  40207. name: "Giga Macro",
  40208. height: math.unit(1.5e6, "miles")
  40209. },
  40210. ]
  40211. ))
  40212. characterMakers.push(() => makeCharacter(
  40213. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40214. {
  40215. front: {
  40216. height: math.unit(6, "feet"),
  40217. weight: math.unit(200, "lb"),
  40218. name: "Front",
  40219. image: {
  40220. source: "./media/characters/wulver/front.svg",
  40221. extra: 1724/1632,
  40222. bottom: 130/1854
  40223. }
  40224. },
  40225. frontNsfw: {
  40226. height: math.unit(6, "feet"),
  40227. weight: math.unit(200, "lb"),
  40228. name: "Front (NSFW)",
  40229. image: {
  40230. source: "./media/characters/wulver/front-nsfw.svg",
  40231. extra: 1724/1632,
  40232. bottom: 130/1854
  40233. }
  40234. },
  40235. },
  40236. [
  40237. {
  40238. name: "Human-Sized",
  40239. height: math.unit(6, "feet")
  40240. },
  40241. {
  40242. name: "Normal",
  40243. height: math.unit(4, "meters"),
  40244. default: true
  40245. },
  40246. {
  40247. name: "Large",
  40248. height: math.unit(6, "m")
  40249. },
  40250. ]
  40251. ))
  40252. characterMakers.push(() => makeCharacter(
  40253. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40254. {
  40255. front: {
  40256. height: math.unit(7, "feet"),
  40257. name: "Front",
  40258. image: {
  40259. source: "./media/characters/maru/front.svg",
  40260. extra: 1595/1570,
  40261. bottom: 0/1595
  40262. }
  40263. },
  40264. },
  40265. [
  40266. {
  40267. name: "Normal",
  40268. height: math.unit(7, "feet"),
  40269. default: true
  40270. },
  40271. {
  40272. name: "Macro",
  40273. height: math.unit(700, "feet")
  40274. },
  40275. {
  40276. name: "Mega Macro",
  40277. height: math.unit(25, "miles")
  40278. },
  40279. ]
  40280. ))
  40281. characterMakers.push(() => makeCharacter(
  40282. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40283. {
  40284. front: {
  40285. height: math.unit(6, "feet"),
  40286. weight: math.unit(170, "lb"),
  40287. name: "Front",
  40288. image: {
  40289. source: "./media/characters/xenon/front.svg",
  40290. extra: 1376/1305,
  40291. bottom: 56/1432
  40292. }
  40293. },
  40294. back: {
  40295. height: math.unit(6, "feet"),
  40296. weight: math.unit(170, "lb"),
  40297. name: "Back",
  40298. image: {
  40299. source: "./media/characters/xenon/back.svg",
  40300. extra: 1328/1259,
  40301. bottom: 95/1423
  40302. }
  40303. },
  40304. maw: {
  40305. height: math.unit(0.52, "feet"),
  40306. name: "Maw",
  40307. image: {
  40308. source: "./media/characters/xenon/maw.svg"
  40309. }
  40310. },
  40311. hand: {
  40312. height: math.unit(0.82, "feet"),
  40313. name: "Hand",
  40314. image: {
  40315. source: "./media/characters/xenon/hand.svg"
  40316. }
  40317. },
  40318. foot: {
  40319. height: math.unit(1.13, "feet"),
  40320. name: "Foot",
  40321. image: {
  40322. source: "./media/characters/xenon/foot.svg"
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Micro",
  40329. height: math.unit(0.8, "inches")
  40330. },
  40331. {
  40332. name: "Normal",
  40333. height: math.unit(6, "feet")
  40334. },
  40335. {
  40336. name: "Macro",
  40337. height: math.unit(50, "feet"),
  40338. default: true
  40339. },
  40340. {
  40341. name: "Macro+",
  40342. height: math.unit(250, "feet")
  40343. },
  40344. {
  40345. name: "Megamacro",
  40346. height: math.unit(1500, "feet")
  40347. },
  40348. ]
  40349. ))
  40350. characterMakers.push(() => makeCharacter(
  40351. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40352. {
  40353. front: {
  40354. height: math.unit(7 + 5/12, "feet"),
  40355. name: "Front",
  40356. image: {
  40357. source: "./media/characters/zane/front.svg",
  40358. extra: 1260/1203,
  40359. bottom: 94/1354
  40360. }
  40361. },
  40362. back: {
  40363. height: math.unit(5.05, "feet"),
  40364. name: "Back",
  40365. image: {
  40366. source: "./media/characters/zane/back.svg",
  40367. extra: 893/829,
  40368. bottom: 30/923
  40369. }
  40370. },
  40371. werewolf: {
  40372. height: math.unit(11, "feet"),
  40373. name: "Werewolf",
  40374. image: {
  40375. source: "./media/characters/zane/werewolf.svg",
  40376. extra: 1383/1323,
  40377. bottom: 89/1472
  40378. }
  40379. },
  40380. foot: {
  40381. height: math.unit(1.46, "feet"),
  40382. name: "Foot",
  40383. image: {
  40384. source: "./media/characters/zane/foot.svg"
  40385. }
  40386. },
  40387. footFront: {
  40388. height: math.unit(0.784, "feet"),
  40389. name: "Foot (Front)",
  40390. image: {
  40391. source: "./media/characters/zane/foot-front.svg"
  40392. }
  40393. },
  40394. dick: {
  40395. height: math.unit(1.95, "feet"),
  40396. name: "Dick",
  40397. image: {
  40398. source: "./media/characters/zane/dick.svg"
  40399. }
  40400. },
  40401. dickWerewolf: {
  40402. height: math.unit(3.77, "feet"),
  40403. name: "Dick (Werewolf)",
  40404. image: {
  40405. source: "./media/characters/zane/dick.svg"
  40406. }
  40407. },
  40408. },
  40409. [
  40410. {
  40411. name: "Normal",
  40412. height: math.unit(7 + 5/12, "feet"),
  40413. default: true
  40414. },
  40415. ]
  40416. ))
  40417. characterMakers.push(() => makeCharacter(
  40418. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40419. {
  40420. front: {
  40421. height: math.unit(6 + 2/12, "feet"),
  40422. weight: math.unit(284, "lb"),
  40423. name: "Front",
  40424. image: {
  40425. source: "./media/characters/benni-desparque/front.svg",
  40426. extra: 1353/1126,
  40427. bottom: 69/1422
  40428. }
  40429. },
  40430. },
  40431. [
  40432. {
  40433. name: "Civilian",
  40434. height: math.unit(6 + 2/12, "feet")
  40435. },
  40436. {
  40437. name: "Normal",
  40438. height: math.unit(98, "feet"),
  40439. default: true
  40440. },
  40441. {
  40442. name: "Kaiju Fighter",
  40443. height: math.unit(268, "feet")
  40444. },
  40445. ]
  40446. ))
  40447. characterMakers.push(() => makeCharacter(
  40448. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40449. {
  40450. front: {
  40451. height: math.unit(5, "feet"),
  40452. weight: math.unit(105, "lb"),
  40453. name: "Front",
  40454. image: {
  40455. source: "./media/characters/maxine/front.svg",
  40456. extra: 1386/1250,
  40457. bottom: 71/1457
  40458. }
  40459. },
  40460. },
  40461. [
  40462. {
  40463. name: "Normal",
  40464. height: math.unit(5, "feet"),
  40465. default: true
  40466. },
  40467. ]
  40468. ))
  40469. characterMakers.push(() => makeCharacter(
  40470. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40471. {
  40472. front: {
  40473. height: math.unit(11 + 7/12, "feet"),
  40474. weight: math.unit(9576, "lb"),
  40475. name: "Front",
  40476. image: {
  40477. source: "./media/characters/scaly/front.svg",
  40478. extra: 888/867,
  40479. bottom: 36/924
  40480. }
  40481. },
  40482. },
  40483. [
  40484. {
  40485. name: "Normal",
  40486. height: math.unit(11 + 7/12, "feet"),
  40487. default: true
  40488. },
  40489. ]
  40490. ))
  40491. characterMakers.push(() => makeCharacter(
  40492. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40493. {
  40494. front: {
  40495. height: math.unit(6 + 3/12, "feet"),
  40496. name: "Front",
  40497. image: {
  40498. source: "./media/characters/saelria/front.svg",
  40499. extra: 1243/1138,
  40500. bottom: 46/1289
  40501. }
  40502. },
  40503. },
  40504. [
  40505. {
  40506. name: "Micro",
  40507. height: math.unit(6, "inches"),
  40508. },
  40509. {
  40510. name: "Normal",
  40511. height: math.unit(6 + 3/12, "feet"),
  40512. default: true
  40513. },
  40514. {
  40515. name: "Macro",
  40516. height: math.unit(25, "feet")
  40517. },
  40518. ]
  40519. ))
  40520. characterMakers.push(() => makeCharacter(
  40521. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40522. {
  40523. front: {
  40524. height: math.unit(80, "meters"),
  40525. weight: math.unit(7000, "tonnes"),
  40526. name: "Front",
  40527. image: {
  40528. source: "./media/characters/tef/front.svg",
  40529. extra: 2036/1991,
  40530. bottom: 54/2090
  40531. }
  40532. },
  40533. back: {
  40534. height: math.unit(80, "meters"),
  40535. weight: math.unit(7000, "tonnes"),
  40536. name: "Back",
  40537. image: {
  40538. source: "./media/characters/tef/back.svg",
  40539. extra: 2036/1991,
  40540. bottom: 54/2090
  40541. }
  40542. },
  40543. },
  40544. [
  40545. {
  40546. name: "Macro",
  40547. height: math.unit(80, "meters"),
  40548. default: true
  40549. },
  40550. ]
  40551. ))
  40552. characterMakers.push(() => makeCharacter(
  40553. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40554. {
  40555. front: {
  40556. height: math.unit(13, "feet"),
  40557. weight: math.unit(6, "tons"),
  40558. name: "Front",
  40559. image: {
  40560. source: "./media/characters/rover/front.svg",
  40561. extra: 1233/1156,
  40562. bottom: 50/1283
  40563. }
  40564. },
  40565. back: {
  40566. height: math.unit(13, "feet"),
  40567. weight: math.unit(6, "tons"),
  40568. name: "Back",
  40569. image: {
  40570. source: "./media/characters/rover/back.svg",
  40571. extra: 1327/1258,
  40572. bottom: 39/1366
  40573. }
  40574. },
  40575. },
  40576. [
  40577. {
  40578. name: "Normal",
  40579. height: math.unit(13, "feet"),
  40580. default: true
  40581. },
  40582. {
  40583. name: "Macro",
  40584. height: math.unit(1300, "feet")
  40585. },
  40586. {
  40587. name: "Megamacro",
  40588. height: math.unit(1300, "miles")
  40589. },
  40590. {
  40591. name: "Gigamacro",
  40592. height: math.unit(1300000, "miles")
  40593. },
  40594. ]
  40595. ))
  40596. characterMakers.push(() => makeCharacter(
  40597. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40598. {
  40599. front: {
  40600. height: math.unit(6, "feet"),
  40601. weight: math.unit(150, "lb"),
  40602. name: "Front",
  40603. image: {
  40604. source: "./media/characters/ariz/front.svg",
  40605. extra: 1401/1346,
  40606. bottom: 5/1406
  40607. }
  40608. },
  40609. },
  40610. [
  40611. {
  40612. name: "Normal",
  40613. height: math.unit(10, "feet"),
  40614. default: true
  40615. },
  40616. ]
  40617. ))
  40618. characterMakers.push(() => makeCharacter(
  40619. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40620. {
  40621. front: {
  40622. height: math.unit(6, "feet"),
  40623. weight: math.unit(140, "lb"),
  40624. name: "Front",
  40625. image: {
  40626. source: "./media/characters/sigrun/front.svg",
  40627. extra: 1418/1359,
  40628. bottom: 27/1445
  40629. }
  40630. },
  40631. },
  40632. [
  40633. {
  40634. name: "Macro",
  40635. height: math.unit(35, "feet"),
  40636. default: true
  40637. },
  40638. ]
  40639. ))
  40640. characterMakers.push(() => makeCharacter(
  40641. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40642. {
  40643. front: {
  40644. height: math.unit(6, "feet"),
  40645. weight: math.unit(150, "lb"),
  40646. name: "Front",
  40647. image: {
  40648. source: "./media/characters/numin/front.svg",
  40649. extra: 1433/1388,
  40650. bottom: 12/1445
  40651. }
  40652. },
  40653. },
  40654. [
  40655. {
  40656. name: "Macro",
  40657. height: math.unit(21.5, "km"),
  40658. default: true
  40659. },
  40660. ]
  40661. ))
  40662. characterMakers.push(() => makeCharacter(
  40663. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40664. {
  40665. front: {
  40666. height: math.unit(6, "feet"),
  40667. weight: math.unit(463, "lb"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/melwa/front.svg",
  40671. extra: 1307/1248,
  40672. bottom: 93/1400
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Macro",
  40679. height: math.unit(50, "meters"),
  40680. default: true
  40681. },
  40682. ]
  40683. ))
  40684. characterMakers.push(() => makeCharacter(
  40685. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40686. {
  40687. front: {
  40688. height: math.unit(325, "feet"),
  40689. name: "Front",
  40690. image: {
  40691. source: "./media/characters/zorkaiju/front.svg",
  40692. extra: 1955/1814,
  40693. bottom: 40/1995
  40694. }
  40695. },
  40696. frontExtended: {
  40697. height: math.unit(325, "feet"),
  40698. name: "Front (Extended)",
  40699. image: {
  40700. source: "./media/characters/zorkaiju/front-extended.svg",
  40701. extra: 1955/1814,
  40702. bottom: 40/1995
  40703. }
  40704. },
  40705. side: {
  40706. height: math.unit(325, "feet"),
  40707. name: "Side",
  40708. image: {
  40709. source: "./media/characters/zorkaiju/side.svg",
  40710. extra: 1495/1396,
  40711. bottom: 17/1512
  40712. }
  40713. },
  40714. sideExtended: {
  40715. height: math.unit(325, "feet"),
  40716. name: "Side (Extended)",
  40717. image: {
  40718. source: "./media/characters/zorkaiju/side-extended.svg",
  40719. extra: 1495/1396,
  40720. bottom: 17/1512
  40721. }
  40722. },
  40723. back: {
  40724. height: math.unit(325, "feet"),
  40725. name: "Back",
  40726. image: {
  40727. source: "./media/characters/zorkaiju/back.svg",
  40728. extra: 1959/1821,
  40729. bottom: 31/1990
  40730. }
  40731. },
  40732. backExtended: {
  40733. height: math.unit(325, "feet"),
  40734. name: "Back (Extended)",
  40735. image: {
  40736. source: "./media/characters/zorkaiju/back-extended.svg",
  40737. extra: 1959/1821,
  40738. bottom: 31/1990
  40739. }
  40740. },
  40741. hand: {
  40742. height: math.unit(58.4, "feet"),
  40743. name: "Hand",
  40744. image: {
  40745. source: "./media/characters/zorkaiju/hand.svg"
  40746. }
  40747. },
  40748. handExtended: {
  40749. height: math.unit(61.4, "feet"),
  40750. name: "Hand (Extended)",
  40751. image: {
  40752. source: "./media/characters/zorkaiju/hand-extended.svg"
  40753. }
  40754. },
  40755. foot: {
  40756. height: math.unit(95, "feet"),
  40757. name: "Foot",
  40758. image: {
  40759. source: "./media/characters/zorkaiju/foot.svg"
  40760. }
  40761. },
  40762. leftArm: {
  40763. height: math.unit(59, "feet"),
  40764. name: "Left Arm",
  40765. image: {
  40766. source: "./media/characters/zorkaiju/left-arm.svg"
  40767. }
  40768. },
  40769. rightArm: {
  40770. height: math.unit(59, "feet"),
  40771. name: "Right Arm",
  40772. image: {
  40773. source: "./media/characters/zorkaiju/right-arm.svg"
  40774. }
  40775. },
  40776. tail: {
  40777. height: math.unit(104, "feet"),
  40778. name: "Tail",
  40779. image: {
  40780. source: "./media/characters/zorkaiju/tail.svg"
  40781. }
  40782. },
  40783. tailExtended: {
  40784. height: math.unit(104, "feet"),
  40785. name: "Tail (Extended)",
  40786. image: {
  40787. source: "./media/characters/zorkaiju/tail-extended.svg"
  40788. }
  40789. },
  40790. tailBottom: {
  40791. height: math.unit(104, "feet"),
  40792. name: "Tail Bottom",
  40793. image: {
  40794. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40795. }
  40796. },
  40797. crystal: {
  40798. height: math.unit(27.54, "feet"),
  40799. name: "Crystal",
  40800. image: {
  40801. source: "./media/characters/zorkaiju/crystal.svg"
  40802. }
  40803. },
  40804. },
  40805. [
  40806. {
  40807. name: "Kaiju",
  40808. height: math.unit(325, "feet"),
  40809. default: true
  40810. },
  40811. ]
  40812. ))
  40813. characterMakers.push(() => makeCharacter(
  40814. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40815. {
  40816. front: {
  40817. height: math.unit(6 + 1/12, "feet"),
  40818. weight: math.unit(115, "lb"),
  40819. name: "Front",
  40820. image: {
  40821. source: "./media/characters/bailey-belfry/front.svg",
  40822. extra: 1240/1121,
  40823. bottom: 101/1341
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Normal",
  40830. height: math.unit(6 + 1/12, "feet"),
  40831. default: true
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40837. {
  40838. side: {
  40839. height: math.unit(4, "meters"),
  40840. weight: math.unit(250, "kg"),
  40841. name: "Side",
  40842. image: {
  40843. source: "./media/characters/blacky/side.svg",
  40844. extra: 1027/919,
  40845. bottom: 43/1070
  40846. }
  40847. },
  40848. maw: {
  40849. height: math.unit(1, "meters"),
  40850. name: "Maw",
  40851. image: {
  40852. source: "./media/characters/blacky/maw.svg"
  40853. }
  40854. },
  40855. paw: {
  40856. height: math.unit(1, "meters"),
  40857. name: "Paw",
  40858. image: {
  40859. source: "./media/characters/blacky/paw.svg"
  40860. }
  40861. },
  40862. },
  40863. [
  40864. {
  40865. name: "Normal",
  40866. height: math.unit(4, "meters"),
  40867. default: true
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(170, "cm"),
  40876. weight: math.unit(66, "kg"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/thux-ei/front.svg",
  40880. extra: 1109/1011,
  40881. bottom: 8/1117
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Normal",
  40888. height: math.unit(170, "cm"),
  40889. default: true
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40895. {
  40896. front: {
  40897. height: math.unit(5, "feet"),
  40898. weight: math.unit(120, "lb"),
  40899. name: "Front",
  40900. image: {
  40901. source: "./media/characters/roxanne-voltaire/front.svg",
  40902. extra: 1901/1779,
  40903. bottom: 53/1954
  40904. }
  40905. },
  40906. },
  40907. [
  40908. {
  40909. name: "Normal",
  40910. height: math.unit(5, "feet"),
  40911. default: true
  40912. },
  40913. {
  40914. name: "Giant",
  40915. height: math.unit(50, "feet")
  40916. },
  40917. {
  40918. name: "Titan",
  40919. height: math.unit(500, "feet")
  40920. },
  40921. {
  40922. name: "Macro",
  40923. height: math.unit(5000, "feet")
  40924. },
  40925. {
  40926. name: "Megamacro",
  40927. height: math.unit(50000, "feet")
  40928. },
  40929. {
  40930. name: "Gigamacro",
  40931. height: math.unit(500000, "feet")
  40932. },
  40933. {
  40934. name: "Teramacro",
  40935. height: math.unit(5e6, "feet")
  40936. },
  40937. ]
  40938. ))
  40939. characterMakers.push(() => makeCharacter(
  40940. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40941. {
  40942. front: {
  40943. height: math.unit(6 + 2/12, "feet"),
  40944. name: "Front",
  40945. image: {
  40946. source: "./media/characters/squeaks/front.svg",
  40947. extra: 1823/1768,
  40948. bottom: 138/1961
  40949. }
  40950. },
  40951. },
  40952. [
  40953. {
  40954. name: "Micro",
  40955. height: math.unit(0.5, "inches")
  40956. },
  40957. {
  40958. name: "Normal",
  40959. height: math.unit(6 + 2/12, "feet"),
  40960. default: true
  40961. },
  40962. {
  40963. name: "Macro",
  40964. height: math.unit(600, "feet")
  40965. },
  40966. ]
  40967. ))
  40968. characterMakers.push(() => makeCharacter(
  40969. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40970. {
  40971. front: {
  40972. height: math.unit(1.72, "meters"),
  40973. name: "Front",
  40974. image: {
  40975. source: "./media/characters/archinger/front.svg",
  40976. extra: 1861/1675,
  40977. bottom: 125/1986
  40978. }
  40979. },
  40980. back: {
  40981. height: math.unit(1.72, "meters"),
  40982. name: "Back",
  40983. image: {
  40984. source: "./media/characters/archinger/back.svg",
  40985. extra: 1844/1701,
  40986. bottom: 104/1948
  40987. }
  40988. },
  40989. cock: {
  40990. height: math.unit(0.59, "feet"),
  40991. name: "Cock",
  40992. image: {
  40993. source: "./media/characters/archinger/cock.svg"
  40994. }
  40995. },
  40996. },
  40997. [
  40998. {
  40999. name: "Normal",
  41000. height: math.unit(1.72, "meters"),
  41001. default: true
  41002. },
  41003. {
  41004. name: "Macro",
  41005. height: math.unit(84, "meters")
  41006. },
  41007. {
  41008. name: "Macro+",
  41009. height: math.unit(112, "meters")
  41010. },
  41011. {
  41012. name: "Macro++",
  41013. height: math.unit(960, "meters")
  41014. },
  41015. {
  41016. name: "Macro+++",
  41017. height: math.unit(4, "km")
  41018. },
  41019. {
  41020. name: "Macro++++",
  41021. height: math.unit(48, "km")
  41022. },
  41023. {
  41024. name: "Macro+++++",
  41025. height: math.unit(4500, "km")
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41031. {
  41032. front: {
  41033. height: math.unit(5 + 5/12, "feet"),
  41034. name: "Front",
  41035. image: {
  41036. source: "./media/characters/alsnapz/front.svg",
  41037. extra: 1157/1065,
  41038. bottom: 42/1199
  41039. }
  41040. },
  41041. },
  41042. [
  41043. {
  41044. name: "Normal",
  41045. height: math.unit(5 + 5/12, "feet"),
  41046. default: true
  41047. },
  41048. ]
  41049. ))
  41050. characterMakers.push(() => makeCharacter(
  41051. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41052. {
  41053. side: {
  41054. height: math.unit(3.2, "earths"),
  41055. name: "Side",
  41056. image: {
  41057. source: "./media/characters/mag/side.svg",
  41058. extra: 1331/1008,
  41059. bottom: 52/1383
  41060. }
  41061. },
  41062. wing: {
  41063. height: math.unit(1.94, "earths"),
  41064. name: "Wing",
  41065. image: {
  41066. source: "./media/characters/mag/wing.svg"
  41067. }
  41068. },
  41069. dick: {
  41070. height: math.unit(1.8, "earths"),
  41071. name: "Dick",
  41072. image: {
  41073. source: "./media/characters/mag/dick.svg"
  41074. }
  41075. },
  41076. ass: {
  41077. height: math.unit(1.33, "earths"),
  41078. name: "Ass",
  41079. image: {
  41080. source: "./media/characters/mag/ass.svg"
  41081. }
  41082. },
  41083. head: {
  41084. height: math.unit(1.1, "earths"),
  41085. name: "Head",
  41086. image: {
  41087. source: "./media/characters/mag/head.svg"
  41088. }
  41089. },
  41090. maw: {
  41091. height: math.unit(1.62, "earths"),
  41092. name: "Maw",
  41093. image: {
  41094. source: "./media/characters/mag/maw.svg"
  41095. }
  41096. },
  41097. },
  41098. [
  41099. {
  41100. name: "Small",
  41101. height: math.unit(162, "feet")
  41102. },
  41103. {
  41104. name: "Normal",
  41105. height: math.unit(3.2, "earths"),
  41106. default: true
  41107. },
  41108. ]
  41109. ))
  41110. characterMakers.push(() => makeCharacter(
  41111. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41112. {
  41113. front: {
  41114. height: math.unit(512, "feet"),
  41115. weight: math.unit(63509, "tonnes"),
  41116. name: "Front",
  41117. image: {
  41118. source: "./media/characters/vorrel-harroc/front.svg",
  41119. extra: 1075/1063,
  41120. bottom: 62/1137
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Normal",
  41127. height: math.unit(10, "feet")
  41128. },
  41129. {
  41130. name: "Macro",
  41131. height: math.unit(512, "feet"),
  41132. default: true
  41133. },
  41134. {
  41135. name: "Megamacro",
  41136. height: math.unit(256, "miles")
  41137. },
  41138. {
  41139. name: "Gigamacro",
  41140. height: math.unit(4096, "miles")
  41141. },
  41142. ]
  41143. ))
  41144. characterMakers.push(() => makeCharacter(
  41145. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41146. {
  41147. side: {
  41148. height: math.unit(50, "feet"),
  41149. name: "Side",
  41150. image: {
  41151. source: "./media/characters/froimar/side.svg",
  41152. extra: 855/638,
  41153. bottom: 99/954
  41154. }
  41155. },
  41156. },
  41157. [
  41158. {
  41159. name: "Macro",
  41160. height: math.unit(50, "feet"),
  41161. default: true
  41162. },
  41163. ]
  41164. ))
  41165. characterMakers.push(() => makeCharacter(
  41166. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41167. {
  41168. front: {
  41169. height: math.unit(210, "miles"),
  41170. name: "Front",
  41171. image: {
  41172. source: "./media/characters/timothy/front.svg",
  41173. extra: 1007/943,
  41174. bottom: 62/1069
  41175. }
  41176. },
  41177. frontSkirt: {
  41178. height: math.unit(210, "miles"),
  41179. name: "Front (Skirt)",
  41180. image: {
  41181. source: "./media/characters/timothy/front-skirt.svg",
  41182. extra: 1007/943,
  41183. bottom: 62/1069
  41184. }
  41185. },
  41186. frontCoat: {
  41187. height: math.unit(210, "miles"),
  41188. name: "Front (Coat)",
  41189. image: {
  41190. source: "./media/characters/timothy/front-coat.svg",
  41191. extra: 1007/943,
  41192. bottom: 62/1069
  41193. }
  41194. },
  41195. },
  41196. [
  41197. {
  41198. name: "Macro",
  41199. height: math.unit(210, "miles"),
  41200. default: true
  41201. },
  41202. {
  41203. name: "Megamacro",
  41204. height: math.unit(210000, "miles")
  41205. },
  41206. ]
  41207. ))
  41208. characterMakers.push(() => makeCharacter(
  41209. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41210. {
  41211. front: {
  41212. height: math.unit(188, "feet"),
  41213. name: "Front",
  41214. image: {
  41215. source: "./media/characters/pyotr/front.svg",
  41216. extra: 1912/1826,
  41217. bottom: 18/1930
  41218. }
  41219. },
  41220. },
  41221. [
  41222. {
  41223. name: "Macro",
  41224. height: math.unit(188, "feet"),
  41225. default: true
  41226. },
  41227. {
  41228. name: "Megamacro",
  41229. height: math.unit(8, "miles")
  41230. },
  41231. ]
  41232. ))
  41233. characterMakers.push(() => makeCharacter(
  41234. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41235. {
  41236. side: {
  41237. height: math.unit(10, "feet"),
  41238. weight: math.unit(4500, "lb"),
  41239. name: "Side",
  41240. image: {
  41241. source: "./media/characters/ackart/side.svg",
  41242. extra: 1776/1668,
  41243. bottom: 116/1892
  41244. }
  41245. },
  41246. },
  41247. [
  41248. {
  41249. name: "Normal",
  41250. height: math.unit(10, "feet"),
  41251. default: true
  41252. },
  41253. ]
  41254. ))
  41255. characterMakers.push(() => makeCharacter(
  41256. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41257. {
  41258. side: {
  41259. height: math.unit(21, "feet"),
  41260. name: "Side",
  41261. image: {
  41262. source: "./media/characters/nolow/side.svg",
  41263. extra: 1484/1434,
  41264. bottom: 85/1569
  41265. }
  41266. },
  41267. sideErect: {
  41268. height: math.unit(21, "feet"),
  41269. name: "Side-erect",
  41270. image: {
  41271. source: "./media/characters/nolow/side-erect.svg",
  41272. extra: 1484/1434,
  41273. bottom: 85/1569
  41274. }
  41275. },
  41276. },
  41277. [
  41278. {
  41279. name: "Regular",
  41280. height: math.unit(12, "feet")
  41281. },
  41282. {
  41283. name: "Big Chee",
  41284. height: math.unit(21, "feet"),
  41285. default: true
  41286. },
  41287. ]
  41288. ))
  41289. characterMakers.push(() => makeCharacter(
  41290. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41291. {
  41292. front: {
  41293. height: math.unit(7, "feet"),
  41294. weight: math.unit(250, "lb"),
  41295. name: "Front",
  41296. image: {
  41297. source: "./media/characters/nines/front.svg",
  41298. extra: 1741/1607,
  41299. bottom: 41/1782
  41300. }
  41301. },
  41302. side: {
  41303. height: math.unit(7, "feet"),
  41304. weight: math.unit(250, "lb"),
  41305. name: "Side",
  41306. image: {
  41307. source: "./media/characters/nines/side.svg",
  41308. extra: 1854/1735,
  41309. bottom: 93/1947
  41310. }
  41311. },
  41312. back: {
  41313. height: math.unit(7, "feet"),
  41314. weight: math.unit(250, "lb"),
  41315. name: "Back",
  41316. image: {
  41317. source: "./media/characters/nines/back.svg",
  41318. extra: 1748/1615,
  41319. bottom: 20/1768
  41320. }
  41321. },
  41322. },
  41323. [
  41324. {
  41325. name: "Megamacro",
  41326. height: math.unit(99, "km"),
  41327. default: true
  41328. },
  41329. ]
  41330. ))
  41331. characterMakers.push(() => makeCharacter(
  41332. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41333. {
  41334. front: {
  41335. height: math.unit(5 + 10/12, "feet"),
  41336. weight: math.unit(210, "lb"),
  41337. name: "Front",
  41338. image: {
  41339. source: "./media/characters/zenith/front.svg",
  41340. extra: 1531/1452,
  41341. bottom: 198/1729
  41342. }
  41343. },
  41344. back: {
  41345. height: math.unit(5 + 10/12, "feet"),
  41346. weight: math.unit(210, "lb"),
  41347. name: "Back",
  41348. image: {
  41349. source: "./media/characters/zenith/back.svg",
  41350. extra: 1571/1487,
  41351. bottom: 75/1646
  41352. }
  41353. },
  41354. },
  41355. [
  41356. {
  41357. name: "Normal",
  41358. height: math.unit(5 + 10/12, "feet"),
  41359. default: true
  41360. }
  41361. ]
  41362. ))
  41363. characterMakers.push(() => makeCharacter(
  41364. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41365. {
  41366. front: {
  41367. height: math.unit(4, "feet"),
  41368. weight: math.unit(60, "lb"),
  41369. name: "Front",
  41370. image: {
  41371. source: "./media/characters/jasper/front.svg",
  41372. extra: 1450/1379,
  41373. bottom: 19/1469
  41374. }
  41375. },
  41376. },
  41377. [
  41378. {
  41379. name: "Normal",
  41380. height: math.unit(4, "feet"),
  41381. default: true
  41382. },
  41383. ]
  41384. ))
  41385. characterMakers.push(() => makeCharacter(
  41386. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41387. {
  41388. front: {
  41389. height: math.unit(6 + 5/12, "feet"),
  41390. weight: math.unit(290, "lb"),
  41391. name: "Front",
  41392. image: {
  41393. source: "./media/characters/tiberius-thyben/front.svg",
  41394. extra: 757/739,
  41395. bottom: 39/796
  41396. }
  41397. },
  41398. },
  41399. [
  41400. {
  41401. name: "Micro",
  41402. height: math.unit(1.5, "inches")
  41403. },
  41404. {
  41405. name: "Normal",
  41406. height: math.unit(6 + 5/12, "feet"),
  41407. default: true
  41408. },
  41409. {
  41410. name: "Macro",
  41411. height: math.unit(300, "feet")
  41412. },
  41413. ]
  41414. ))
  41415. characterMakers.push(() => makeCharacter(
  41416. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41417. {
  41418. front: {
  41419. height: math.unit(5 + 6/12, "feet"),
  41420. weight: math.unit(60, "kg"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/sabre/front.svg",
  41424. extra: 738/671,
  41425. bottom: 27/765
  41426. }
  41427. },
  41428. },
  41429. [
  41430. {
  41431. name: "Teeny",
  41432. height: math.unit(2, "inches")
  41433. },
  41434. {
  41435. name: "Smol",
  41436. height: math.unit(8, "inches")
  41437. },
  41438. {
  41439. name: "Normal",
  41440. height: math.unit(5 + 6/12, "feet"),
  41441. default: true
  41442. },
  41443. {
  41444. name: "Mini-Macro",
  41445. height: math.unit(15, "feet")
  41446. },
  41447. {
  41448. name: "Macro",
  41449. height: math.unit(50, "feet")
  41450. },
  41451. ]
  41452. ))
  41453. characterMakers.push(() => makeCharacter(
  41454. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41455. {
  41456. front: {
  41457. height: math.unit(6 + 4/12, "feet"),
  41458. weight: math.unit(170, "lb"),
  41459. name: "Front",
  41460. image: {
  41461. source: "./media/characters/charlie/front.svg",
  41462. extra: 1348/1228,
  41463. bottom: 15/1363
  41464. }
  41465. },
  41466. },
  41467. [
  41468. {
  41469. name: "Macro",
  41470. height: math.unit(1700, "meters"),
  41471. default: true
  41472. },
  41473. {
  41474. name: "MegaMacro",
  41475. height: math.unit(20400, "meters")
  41476. },
  41477. ]
  41478. ))
  41479. characterMakers.push(() => makeCharacter(
  41480. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41481. {
  41482. front: {
  41483. height: math.unit(6 + 3/12, "feet"),
  41484. weight: math.unit(185, "lb"),
  41485. name: "Front",
  41486. image: {
  41487. source: "./media/characters/susan-grant/front.svg",
  41488. extra: 1351/1327,
  41489. bottom: 26/1377
  41490. }
  41491. },
  41492. },
  41493. [
  41494. {
  41495. name: "Normal",
  41496. height: math.unit(6 + 3/12, "feet"),
  41497. default: true
  41498. },
  41499. {
  41500. name: "Macro",
  41501. height: math.unit(225, "feet")
  41502. },
  41503. {
  41504. name: "Macro+",
  41505. height: math.unit(900, "feet")
  41506. },
  41507. {
  41508. name: "MegaMacro",
  41509. height: math.unit(14400, "feet")
  41510. },
  41511. ]
  41512. ))
  41513. characterMakers.push(() => makeCharacter(
  41514. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41515. {
  41516. front: {
  41517. height: math.unit(5 + 4/12, "feet"),
  41518. weight: math.unit(110, "lb"),
  41519. name: "Front",
  41520. image: {
  41521. source: "./media/characters/axel-isanov/front.svg",
  41522. extra: 1096/1065,
  41523. bottom: 13/1109
  41524. }
  41525. },
  41526. },
  41527. [
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(5 + 4/12, "feet"),
  41531. default: true
  41532. },
  41533. ]
  41534. ))
  41535. characterMakers.push(() => makeCharacter(
  41536. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41537. {
  41538. front: {
  41539. height: math.unit(9, "feet"),
  41540. weight: math.unit(467, "lb"),
  41541. name: "Front",
  41542. image: {
  41543. source: "./media/characters/necahual/front.svg",
  41544. extra: 920/873,
  41545. bottom: 26/946
  41546. }
  41547. },
  41548. back: {
  41549. height: math.unit(9, "feet"),
  41550. weight: math.unit(467, "lb"),
  41551. name: "Back",
  41552. image: {
  41553. source: "./media/characters/necahual/back.svg",
  41554. extra: 930/884,
  41555. bottom: 16/946
  41556. }
  41557. },
  41558. frontUnderwear: {
  41559. height: math.unit(9, "feet"),
  41560. weight: math.unit(467, "lb"),
  41561. name: "Front (Underwear)",
  41562. image: {
  41563. source: "./media/characters/necahual/front-underwear.svg",
  41564. extra: 920/873,
  41565. bottom: 26/946
  41566. }
  41567. },
  41568. frontDressed: {
  41569. height: math.unit(9, "feet"),
  41570. weight: math.unit(467, "lb"),
  41571. name: "Front (Dressed)",
  41572. image: {
  41573. source: "./media/characters/necahual/front-dressed.svg",
  41574. extra: 920/873,
  41575. bottom: 26/946
  41576. }
  41577. },
  41578. },
  41579. [
  41580. {
  41581. name: "Comprsesed",
  41582. height: math.unit(9, "feet")
  41583. },
  41584. {
  41585. name: "Natural",
  41586. height: math.unit(15, "feet"),
  41587. default: true
  41588. },
  41589. {
  41590. name: "Boosted",
  41591. height: math.unit(50, "feet")
  41592. },
  41593. {
  41594. name: "Boosted+",
  41595. height: math.unit(150, "feet")
  41596. },
  41597. {
  41598. name: "Max",
  41599. height: math.unit(500, "feet")
  41600. },
  41601. ]
  41602. ))
  41603. characterMakers.push(() => makeCharacter(
  41604. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41605. {
  41606. front: {
  41607. height: math.unit(22 + 1/12, "feet"),
  41608. weight: math.unit(3200, "lb"),
  41609. name: "Front",
  41610. image: {
  41611. source: "./media/characters/theo-acacia/front.svg",
  41612. extra: 1796/1741,
  41613. bottom: 83/1879
  41614. }
  41615. },
  41616. frontUnderwear: {
  41617. height: math.unit(22 + 1/12, "feet"),
  41618. weight: math.unit(3200, "lb"),
  41619. name: "Front (Underwear)",
  41620. image: {
  41621. source: "./media/characters/theo-acacia/front-underwear.svg",
  41622. extra: 1796/1741,
  41623. bottom: 83/1879
  41624. }
  41625. },
  41626. frontNude: {
  41627. height: math.unit(22 + 1/12, "feet"),
  41628. weight: math.unit(3200, "lb"),
  41629. name: "Front (Nude)",
  41630. image: {
  41631. source: "./media/characters/theo-acacia/front-nude.svg",
  41632. extra: 1796/1741,
  41633. bottom: 83/1879
  41634. }
  41635. },
  41636. },
  41637. [
  41638. {
  41639. name: "Normal",
  41640. height: math.unit(22 + 1/12, "feet"),
  41641. default: true
  41642. },
  41643. ]
  41644. ))
  41645. characterMakers.push(() => makeCharacter(
  41646. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41647. {
  41648. front: {
  41649. height: math.unit(20, "feet"),
  41650. name: "Front",
  41651. image: {
  41652. source: "./media/characters/astra/front.svg",
  41653. extra: 1850/1714,
  41654. bottom: 106/1956
  41655. }
  41656. },
  41657. frontUndressed: {
  41658. height: math.unit(20, "feet"),
  41659. name: "Front (Undressed)",
  41660. image: {
  41661. source: "./media/characters/astra/front-undressed.svg",
  41662. extra: 1926/1749,
  41663. bottom: 0/1926
  41664. }
  41665. },
  41666. hand: {
  41667. height: math.unit(1.53, "feet"),
  41668. name: "Hand",
  41669. image: {
  41670. source: "./media/characters/astra/hand.svg"
  41671. }
  41672. },
  41673. paw: {
  41674. height: math.unit(1.53, "feet"),
  41675. name: "Paw",
  41676. image: {
  41677. source: "./media/characters/astra/paw.svg"
  41678. }
  41679. },
  41680. },
  41681. [
  41682. {
  41683. name: "Smallest",
  41684. height: math.unit(20, "feet")
  41685. },
  41686. {
  41687. name: "Normal",
  41688. height: math.unit(1e9, "miles"),
  41689. default: true
  41690. },
  41691. {
  41692. name: "Larger",
  41693. height: math.unit(5, "multiverses")
  41694. },
  41695. {
  41696. name: "Largest",
  41697. height: math.unit(1e9, "multiverses")
  41698. },
  41699. ]
  41700. ))
  41701. characterMakers.push(() => makeCharacter(
  41702. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41703. {
  41704. front: {
  41705. height: math.unit(8, "feet"),
  41706. name: "Front",
  41707. image: {
  41708. source: "./media/characters/breanna/front.svg",
  41709. extra: 1912/1632,
  41710. bottom: 33/1945
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Smallest",
  41717. height: math.unit(8, "feet")
  41718. },
  41719. {
  41720. name: "Normal",
  41721. height: math.unit(1, "mile"),
  41722. default: true
  41723. },
  41724. {
  41725. name: "Maximum",
  41726. height: math.unit(1500000000000, "lightyears")
  41727. },
  41728. ]
  41729. ))
  41730. characterMakers.push(() => makeCharacter(
  41731. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41732. {
  41733. front: {
  41734. height: math.unit(5 + 11/12, "feet"),
  41735. weight: math.unit(155, "lb"),
  41736. name: "Front",
  41737. image: {
  41738. source: "./media/characters/cai/front.svg",
  41739. extra: 1823/1702,
  41740. bottom: 32/1855
  41741. }
  41742. },
  41743. back: {
  41744. height: math.unit(5 + 11/12, "feet"),
  41745. weight: math.unit(155, "lb"),
  41746. name: "Back",
  41747. image: {
  41748. source: "./media/characters/cai/back.svg",
  41749. extra: 1809/1708,
  41750. bottom: 31/1840
  41751. }
  41752. },
  41753. },
  41754. [
  41755. {
  41756. name: "Normal",
  41757. height: math.unit(5 + 11/12, "feet"),
  41758. default: true
  41759. },
  41760. {
  41761. name: "Big",
  41762. height: math.unit(15, "feet")
  41763. },
  41764. {
  41765. name: "Macro",
  41766. height: math.unit(200, "feet")
  41767. },
  41768. ]
  41769. ))
  41770. characterMakers.push(() => makeCharacter(
  41771. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41772. {
  41773. front: {
  41774. height: math.unit(5 + 6/12, "feet"),
  41775. weight: math.unit(160, "lb"),
  41776. name: "Front",
  41777. image: {
  41778. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41779. extra: 1227/1174,
  41780. bottom: 37/1264
  41781. }
  41782. },
  41783. },
  41784. [
  41785. {
  41786. name: "Macro",
  41787. height: math.unit(444, "meters"),
  41788. default: true
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41794. {
  41795. front: {
  41796. height: math.unit(18 + 7/12, "feet"),
  41797. name: "Front",
  41798. image: {
  41799. source: "./media/characters/rex/front.svg",
  41800. extra: 1941/1807,
  41801. bottom: 66/2007
  41802. }
  41803. },
  41804. back: {
  41805. height: math.unit(18 + 7/12, "feet"),
  41806. name: "Back",
  41807. image: {
  41808. source: "./media/characters/rex/back.svg",
  41809. extra: 1937/1822,
  41810. bottom: 42/1979
  41811. }
  41812. },
  41813. boot: {
  41814. height: math.unit(3.45, "feet"),
  41815. name: "Boot",
  41816. image: {
  41817. source: "./media/characters/rex/boot.svg"
  41818. }
  41819. },
  41820. paw: {
  41821. height: math.unit(4.17, "feet"),
  41822. name: "Paw",
  41823. image: {
  41824. source: "./media/characters/rex/paw.svg"
  41825. }
  41826. },
  41827. head: {
  41828. height: math.unit(6.728, "feet"),
  41829. name: "Head",
  41830. image: {
  41831. source: "./media/characters/rex/head.svg"
  41832. }
  41833. },
  41834. },
  41835. [
  41836. {
  41837. name: "Nano",
  41838. height: math.unit(18 + 7/12, "feet")
  41839. },
  41840. {
  41841. name: "Micro",
  41842. height: math.unit(1.5, "megameters")
  41843. },
  41844. {
  41845. name: "Normal",
  41846. height: math.unit(440, "megameters"),
  41847. default: true
  41848. },
  41849. {
  41850. name: "Macro",
  41851. height: math.unit(2.5, "gigameters")
  41852. },
  41853. {
  41854. name: "Gigamacro",
  41855. height: math.unit(2, "galaxies")
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41861. {
  41862. side: {
  41863. height: math.unit(32, "feet"),
  41864. weight: math.unit(250000, "lb"),
  41865. name: "Side",
  41866. image: {
  41867. source: "./media/characters/silverwing/side.svg",
  41868. extra: 1100/1019,
  41869. bottom: 204/1304
  41870. }
  41871. },
  41872. },
  41873. [
  41874. {
  41875. name: "Normal",
  41876. height: math.unit(32, "feet"),
  41877. default: true
  41878. },
  41879. ]
  41880. ))
  41881. characterMakers.push(() => makeCharacter(
  41882. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  41883. {
  41884. front: {
  41885. height: math.unit(6 + 6/12, "feet"),
  41886. weight: math.unit(350, "lb"),
  41887. name: "Front",
  41888. image: {
  41889. source: "./media/characters/tristan-hawthorne/front.svg",
  41890. extra: 1159/1124,
  41891. bottom: 37/1196
  41892. },
  41893. form: "labrador",
  41894. default: true
  41895. },
  41896. skunkFront: {
  41897. height: math.unit(4 + 6/12, "feet"),
  41898. weight: math.unit(120, "lb"),
  41899. name: "Front",
  41900. image: {
  41901. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  41902. extra: 1609/1551,
  41903. bottom: 169/1778
  41904. },
  41905. form: "skunk",
  41906. default: true
  41907. },
  41908. },
  41909. [
  41910. {
  41911. name: "Normal",
  41912. height: math.unit(6 + 6/12, "feet"),
  41913. form: "labrador",
  41914. default: true
  41915. },
  41916. {
  41917. name: "Normal",
  41918. height: math.unit(4 + 6/12, "feet"),
  41919. form: "skunk",
  41920. default: true
  41921. },
  41922. ],
  41923. {
  41924. "labrador": {
  41925. name: "Labrador",
  41926. default: true
  41927. },
  41928. "skunk": {
  41929. name: "Skunk"
  41930. }
  41931. }
  41932. ))
  41933. characterMakers.push(() => makeCharacter(
  41934. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41935. {
  41936. front: {
  41937. height: math.unit(5 + 11/12, "feet"),
  41938. weight: math.unit(190, "lb"),
  41939. name: "Front",
  41940. image: {
  41941. source: "./media/characters/mizu/front.svg",
  41942. extra: 1988/1788,
  41943. bottom: 14/2002
  41944. }
  41945. },
  41946. },
  41947. [
  41948. {
  41949. name: "Normal",
  41950. height: math.unit(5 + 11/12, "feet"),
  41951. default: true
  41952. },
  41953. ]
  41954. ))
  41955. characterMakers.push(() => makeCharacter(
  41956. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41957. {
  41958. front: {
  41959. height: math.unit(1.7, "feet"),
  41960. weight: math.unit(50, "lb"),
  41961. name: "Front",
  41962. image: {
  41963. source: "./media/characters/dechroma/front.svg",
  41964. extra: 1095/859,
  41965. bottom: 64/1159
  41966. }
  41967. },
  41968. },
  41969. [
  41970. {
  41971. name: "Normal",
  41972. height: math.unit(1.7, "feet"),
  41973. default: true
  41974. },
  41975. ]
  41976. ))
  41977. characterMakers.push(() => makeCharacter(
  41978. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41979. {
  41980. side: {
  41981. height: math.unit(30, "feet"),
  41982. name: "Side",
  41983. image: {
  41984. source: "./media/characters/veluren-thanazel/side.svg",
  41985. extra: 1611/633,
  41986. bottom: 118/1729
  41987. }
  41988. },
  41989. front: {
  41990. height: math.unit(30, "feet"),
  41991. name: "Front",
  41992. image: {
  41993. source: "./media/characters/veluren-thanazel/front.svg",
  41994. extra: 1486/636,
  41995. bottom: 238/1724
  41996. }
  41997. },
  41998. head: {
  41999. height: math.unit(21.4, "feet"),
  42000. name: "Head",
  42001. image: {
  42002. source: "./media/characters/veluren-thanazel/head.svg"
  42003. }
  42004. },
  42005. genitals: {
  42006. height: math.unit(19.4, "feet"),
  42007. name: "Genitals",
  42008. image: {
  42009. source: "./media/characters/veluren-thanazel/genitals.svg"
  42010. }
  42011. },
  42012. },
  42013. [
  42014. {
  42015. name: "Social",
  42016. height: math.unit(6, "feet")
  42017. },
  42018. {
  42019. name: "Play",
  42020. height: math.unit(12, "feet")
  42021. },
  42022. {
  42023. name: "True",
  42024. height: math.unit(30, "feet"),
  42025. default: true
  42026. },
  42027. ]
  42028. ))
  42029. characterMakers.push(() => makeCharacter(
  42030. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42031. {
  42032. front: {
  42033. height: math.unit(7 + 6/12, "feet"),
  42034. weight: math.unit(500, "kg"),
  42035. name: "Front",
  42036. image: {
  42037. source: "./media/characters/arcturas/front.svg",
  42038. extra: 1700/1500,
  42039. bottom: 145/1845
  42040. }
  42041. },
  42042. },
  42043. [
  42044. {
  42045. name: "Normal",
  42046. height: math.unit(7 + 6/12, "feet"),
  42047. default: true
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42053. {
  42054. side: {
  42055. height: math.unit(6, "feet"),
  42056. weight: math.unit(2, "tons"),
  42057. name: "Side",
  42058. image: {
  42059. source: "./media/characters/vitaen/side.svg",
  42060. extra: 1157/617,
  42061. bottom: 122/1279
  42062. }
  42063. },
  42064. },
  42065. [
  42066. {
  42067. name: "Normal",
  42068. height: math.unit(6, "feet"),
  42069. default: true
  42070. },
  42071. ]
  42072. ))
  42073. characterMakers.push(() => makeCharacter(
  42074. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42075. {
  42076. front: {
  42077. height: math.unit(19, "feet"),
  42078. name: "Front",
  42079. image: {
  42080. source: "./media/characters/fia-dreamweaver/front.svg",
  42081. extra: 1630/1504,
  42082. bottom: 25/1655
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Normal",
  42089. height: math.unit(19, "feet"),
  42090. default: true
  42091. },
  42092. ]
  42093. ))
  42094. characterMakers.push(() => makeCharacter(
  42095. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42096. {
  42097. front: {
  42098. height: math.unit(5 + 4/12, "feet"),
  42099. name: "Front",
  42100. image: {
  42101. source: "./media/characters/artan/front.svg",
  42102. extra: 1618/1535,
  42103. bottom: 46/1664
  42104. }
  42105. },
  42106. back: {
  42107. height: math.unit(5 + 4/12, "feet"),
  42108. name: "Back",
  42109. image: {
  42110. source: "./media/characters/artan/back.svg",
  42111. extra: 1618/1543,
  42112. bottom: 31/1649
  42113. }
  42114. },
  42115. },
  42116. [
  42117. {
  42118. name: "Normal",
  42119. height: math.unit(5 + 4/12, "feet"),
  42120. default: true
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42126. {
  42127. side: {
  42128. height: math.unit(182, "cm"),
  42129. weight: math.unit(1000, "lb"),
  42130. name: "Side",
  42131. image: {
  42132. source: "./media/characters/silver-dragon/side.svg",
  42133. extra: 710/287,
  42134. bottom: 88/798
  42135. }
  42136. },
  42137. },
  42138. [
  42139. {
  42140. name: "Normal",
  42141. height: math.unit(182, "cm"),
  42142. default: true
  42143. },
  42144. ]
  42145. ))
  42146. characterMakers.push(() => makeCharacter(
  42147. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42148. {
  42149. side: {
  42150. height: math.unit(6 + 6/12, "feet"),
  42151. weight: math.unit(1.5, "tons"),
  42152. name: "Side",
  42153. image: {
  42154. source: "./media/characters/zephyr/side.svg",
  42155. extra: 1433/586,
  42156. bottom: 109/1542
  42157. }
  42158. },
  42159. },
  42160. [
  42161. {
  42162. name: "Normal",
  42163. height: math.unit(6 + 6/12, "feet"),
  42164. default: true
  42165. },
  42166. ]
  42167. ))
  42168. characterMakers.push(() => makeCharacter(
  42169. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42170. {
  42171. side: {
  42172. height: math.unit(1, "feet"),
  42173. name: "Side",
  42174. image: {
  42175. source: "./media/characters/vixye/side.svg",
  42176. extra: 632/541,
  42177. bottom: 0/632
  42178. }
  42179. },
  42180. },
  42181. [
  42182. {
  42183. name: "Normal",
  42184. height: math.unit(1, "feet"),
  42185. default: true
  42186. },
  42187. {
  42188. name: "True",
  42189. height: math.unit(1e15, "multiverses")
  42190. },
  42191. ]
  42192. ))
  42193. characterMakers.push(() => makeCharacter(
  42194. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42195. {
  42196. front: {
  42197. height: math.unit(8 + 2/12, "feet"),
  42198. weight: math.unit(650, "lb"),
  42199. name: "Front",
  42200. image: {
  42201. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42202. extra: 1174/1137,
  42203. bottom: 82/1256
  42204. }
  42205. },
  42206. back: {
  42207. height: math.unit(8 + 2/12, "feet"),
  42208. weight: math.unit(650, "lb"),
  42209. name: "Back",
  42210. image: {
  42211. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42212. extra: 1204/1157,
  42213. bottom: 46/1250
  42214. }
  42215. },
  42216. },
  42217. [
  42218. {
  42219. name: "Wildform",
  42220. height: math.unit(8 + 2/12, "feet"),
  42221. default: true
  42222. },
  42223. ]
  42224. ))
  42225. characterMakers.push(() => makeCharacter(
  42226. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42227. {
  42228. front: {
  42229. height: math.unit(18, "feet"),
  42230. name: "Front",
  42231. image: {
  42232. source: "./media/characters/cyphin/front.svg",
  42233. extra: 970/886,
  42234. bottom: 42/1012
  42235. }
  42236. },
  42237. back: {
  42238. height: math.unit(18, "feet"),
  42239. name: "Back",
  42240. image: {
  42241. source: "./media/characters/cyphin/back.svg",
  42242. extra: 1009/894,
  42243. bottom: 24/1033
  42244. }
  42245. },
  42246. head: {
  42247. height: math.unit(5.05, "feet"),
  42248. name: "Head",
  42249. image: {
  42250. source: "./media/characters/cyphin/head.svg"
  42251. }
  42252. },
  42253. tailbud: {
  42254. height: math.unit(5, "feet"),
  42255. name: "Tailbud",
  42256. image: {
  42257. source: "./media/characters/cyphin/tailbud.svg"
  42258. }
  42259. },
  42260. },
  42261. [
  42262. ]
  42263. ))
  42264. characterMakers.push(() => makeCharacter(
  42265. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42266. {
  42267. side: {
  42268. height: math.unit(10, "feet"),
  42269. weight: math.unit(6, "tons"),
  42270. name: "Side",
  42271. image: {
  42272. source: "./media/characters/raijin/side.svg",
  42273. extra: 1529/613,
  42274. bottom: 337/1866
  42275. }
  42276. },
  42277. },
  42278. [
  42279. {
  42280. name: "Normal",
  42281. height: math.unit(10, "feet"),
  42282. default: true
  42283. },
  42284. ]
  42285. ))
  42286. characterMakers.push(() => makeCharacter(
  42287. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42288. {
  42289. side: {
  42290. height: math.unit(9, "feet"),
  42291. name: "Side",
  42292. image: {
  42293. source: "./media/characters/nilghais/side.svg",
  42294. extra: 1047/744,
  42295. bottom: 91/1138
  42296. }
  42297. },
  42298. head: {
  42299. height: math.unit(3.14, "feet"),
  42300. name: "Head",
  42301. image: {
  42302. source: "./media/characters/nilghais/head.svg"
  42303. }
  42304. },
  42305. mouth: {
  42306. height: math.unit(4.6, "feet"),
  42307. name: "Mouth",
  42308. image: {
  42309. source: "./media/characters/nilghais/mouth.svg"
  42310. }
  42311. },
  42312. wings: {
  42313. height: math.unit(24, "feet"),
  42314. name: "Wings",
  42315. image: {
  42316. source: "./media/characters/nilghais/wings.svg"
  42317. }
  42318. },
  42319. ass: {
  42320. height: math.unit(6.12, "feet"),
  42321. name: "Ass",
  42322. image: {
  42323. source: "./media/characters/nilghais/ass.svg"
  42324. }
  42325. },
  42326. },
  42327. [
  42328. {
  42329. name: "Normal",
  42330. height: math.unit(9, "feet"),
  42331. default: true
  42332. },
  42333. ]
  42334. ))
  42335. characterMakers.push(() => makeCharacter(
  42336. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42337. {
  42338. regular: {
  42339. height: math.unit(16 + 2/12, "feet"),
  42340. weight: math.unit(2300, "lb"),
  42341. name: "Regular",
  42342. image: {
  42343. source: "./media/characters/zolgar/regular.svg",
  42344. extra: 1246/1004,
  42345. bottom: 124/1370
  42346. }
  42347. },
  42348. boxers: {
  42349. height: math.unit(16 + 2/12, "feet"),
  42350. weight: math.unit(2300, "lb"),
  42351. name: "Boxers",
  42352. image: {
  42353. source: "./media/characters/zolgar/boxers.svg",
  42354. extra: 1246/1004,
  42355. bottom: 124/1370
  42356. }
  42357. },
  42358. armored: {
  42359. height: math.unit(16 + 2/12, "feet"),
  42360. weight: math.unit(2300, "lb"),
  42361. name: "Armored",
  42362. image: {
  42363. source: "./media/characters/zolgar/armored.svg",
  42364. extra: 1246/1004,
  42365. bottom: 124/1370
  42366. }
  42367. },
  42368. goth: {
  42369. height: math.unit(16 + 2/12, "feet"),
  42370. weight: math.unit(2300, "lb"),
  42371. name: "Goth",
  42372. image: {
  42373. source: "./media/characters/zolgar/goth.svg",
  42374. extra: 1246/1004,
  42375. bottom: 124/1370
  42376. }
  42377. },
  42378. },
  42379. [
  42380. {
  42381. name: "Shrunken Down",
  42382. height: math.unit(9 + 2/12, "feet")
  42383. },
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(16 + 2/12, "feet"),
  42387. default: true
  42388. },
  42389. ]
  42390. ))
  42391. characterMakers.push(() => makeCharacter(
  42392. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42393. {
  42394. front: {
  42395. height: math.unit(6, "feet"),
  42396. weight: math.unit(168, "lb"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/luca/front.svg",
  42400. extra: 841/667,
  42401. bottom: 102/943
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Normal",
  42408. height: math.unit(6, "feet"),
  42409. default: true
  42410. },
  42411. ]
  42412. ))
  42413. characterMakers.push(() => makeCharacter(
  42414. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42415. {
  42416. side: {
  42417. height: math.unit(7 + 3/12, "feet"),
  42418. weight: math.unit(312, "lb"),
  42419. name: "Side",
  42420. image: {
  42421. source: "./media/characters/zezo/side.svg",
  42422. extra: 1192/1067,
  42423. bottom: 63/1255
  42424. }
  42425. },
  42426. },
  42427. [
  42428. {
  42429. name: "Normal",
  42430. height: math.unit(7 + 3/12, "feet"),
  42431. default: true
  42432. },
  42433. ]
  42434. ))
  42435. characterMakers.push(() => makeCharacter(
  42436. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42437. {
  42438. front: {
  42439. height: math.unit(5 + 5/12, "feet"),
  42440. weight: math.unit(170, "lb"),
  42441. name: "Front",
  42442. image: {
  42443. source: "./media/characters/mayso/front.svg",
  42444. extra: 1215/1108,
  42445. bottom: 16/1231
  42446. }
  42447. },
  42448. },
  42449. [
  42450. {
  42451. name: "Normal",
  42452. height: math.unit(5 + 5/12, "feet"),
  42453. default: true
  42454. },
  42455. ]
  42456. ))
  42457. characterMakers.push(() => makeCharacter(
  42458. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42459. {
  42460. front: {
  42461. height: math.unit(4 + 3/12, "feet"),
  42462. weight: math.unit(80, "lb"),
  42463. name: "Front",
  42464. image: {
  42465. source: "./media/characters/hess/front.svg",
  42466. extra: 1200/1123,
  42467. bottom: 16/1216
  42468. }
  42469. },
  42470. },
  42471. [
  42472. {
  42473. name: "Normal",
  42474. height: math.unit(4 + 3/12, "feet"),
  42475. default: true
  42476. },
  42477. ]
  42478. ))
  42479. characterMakers.push(() => makeCharacter(
  42480. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42481. {
  42482. front: {
  42483. height: math.unit(1.9, "meters"),
  42484. name: "Front",
  42485. image: {
  42486. source: "./media/characters/ashgar/front.svg",
  42487. extra: 1177/1146,
  42488. bottom: 99/1276
  42489. }
  42490. },
  42491. back: {
  42492. height: math.unit(1.9, "meters"),
  42493. name: "Back",
  42494. image: {
  42495. source: "./media/characters/ashgar/back.svg",
  42496. extra: 1201/1183,
  42497. bottom: 53/1254
  42498. }
  42499. },
  42500. feral: {
  42501. height: math.unit(1.4, "meters"),
  42502. name: "Feral",
  42503. image: {
  42504. source: "./media/characters/ashgar/feral.svg",
  42505. extra: 370/345,
  42506. bottom: 45/415
  42507. }
  42508. },
  42509. },
  42510. [
  42511. {
  42512. name: "Normal",
  42513. height: math.unit(1.9, "meters"),
  42514. default: true
  42515. },
  42516. ]
  42517. ))
  42518. characterMakers.push(() => makeCharacter(
  42519. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42520. {
  42521. regular: {
  42522. height: math.unit(6, "feet"),
  42523. weight: math.unit(220, "lb"),
  42524. name: "Regular",
  42525. image: {
  42526. source: "./media/characters/phillip/regular.svg",
  42527. extra: 1373/1277,
  42528. bottom: 75/1448
  42529. }
  42530. },
  42531. dressed: {
  42532. height: math.unit(6, "feet"),
  42533. weight: math.unit(220, "lb"),
  42534. name: "Dressed",
  42535. image: {
  42536. source: "./media/characters/phillip/dressed.svg",
  42537. extra: 1373/1277,
  42538. bottom: 75/1448
  42539. }
  42540. },
  42541. paw: {
  42542. height: math.unit(1.44, "feet"),
  42543. name: "Paw",
  42544. image: {
  42545. source: "./media/characters/phillip/paw.svg"
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(6, "feet"),
  42553. default: true
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42559. {
  42560. side: {
  42561. height: math.unit(42, "feet"),
  42562. name: "Side",
  42563. image: {
  42564. source: "./media/characters/uvula/side.svg",
  42565. extra: 683/586,
  42566. bottom: 60/743
  42567. }
  42568. },
  42569. front: {
  42570. height: math.unit(42, "feet"),
  42571. name: "Front",
  42572. image: {
  42573. source: "./media/characters/uvula/front.svg",
  42574. extra: 705/613,
  42575. bottom: 54/759
  42576. }
  42577. },
  42578. maw: {
  42579. height: math.unit(23.5, "feet"),
  42580. name: "Maw",
  42581. image: {
  42582. source: "./media/characters/uvula/maw.svg"
  42583. }
  42584. },
  42585. },
  42586. [
  42587. {
  42588. name: "Original Size",
  42589. height: math.unit(14, "inches")
  42590. },
  42591. {
  42592. name: "Human Size",
  42593. height: math.unit(6, "feet")
  42594. },
  42595. {
  42596. name: "Big",
  42597. height: math.unit(42, "feet"),
  42598. default: true
  42599. },
  42600. {
  42601. name: "Bigger",
  42602. height: math.unit(100, "feet")
  42603. },
  42604. ]
  42605. ))
  42606. characterMakers.push(() => makeCharacter(
  42607. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42608. {
  42609. front: {
  42610. height: math.unit(5 + 11/12, "feet"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/lannah/front.svg",
  42614. extra: 1208/1113,
  42615. bottom: 97/1305
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Normal",
  42622. height: math.unit(5 + 11/12, "feet"),
  42623. default: true
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42629. {
  42630. front: {
  42631. height: math.unit(6 + 3/12, "feet"),
  42632. weight: math.unit(3.5, "tons"),
  42633. name: "Front",
  42634. image: {
  42635. source: "./media/characters/emberflame/front.svg",
  42636. extra: 1198/672,
  42637. bottom: 82/1280
  42638. }
  42639. },
  42640. side: {
  42641. height: math.unit(6 + 3/12, "feet"),
  42642. weight: math.unit(3.5, "tons"),
  42643. name: "Side",
  42644. image: {
  42645. source: "./media/characters/emberflame/side.svg",
  42646. extra: 938/527,
  42647. bottom: 56/994
  42648. }
  42649. },
  42650. },
  42651. [
  42652. {
  42653. name: "Normal",
  42654. height: math.unit(6 + 3/12, "feet"),
  42655. default: true
  42656. },
  42657. ]
  42658. ))
  42659. characterMakers.push(() => makeCharacter(
  42660. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42661. {
  42662. side: {
  42663. height: math.unit(17.5, "feet"),
  42664. weight: math.unit(35, "tons"),
  42665. name: "Side",
  42666. image: {
  42667. source: "./media/characters/sophie-ambrose/side.svg",
  42668. extra: 1573/1242,
  42669. bottom: 71/1644
  42670. }
  42671. },
  42672. maw: {
  42673. height: math.unit(7.4, "feet"),
  42674. name: "Maw",
  42675. image: {
  42676. source: "./media/characters/sophie-ambrose/maw.svg"
  42677. }
  42678. },
  42679. },
  42680. [
  42681. {
  42682. name: "Normal",
  42683. height: math.unit(17.5, "feet"),
  42684. default: true
  42685. },
  42686. ]
  42687. ))
  42688. characterMakers.push(() => makeCharacter(
  42689. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42690. {
  42691. front: {
  42692. height: math.unit(280, "feet"),
  42693. weight: math.unit(550, "tons"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/king-mugi/front.svg",
  42697. extra: 1102/947,
  42698. bottom: 104/1206
  42699. }
  42700. },
  42701. },
  42702. [
  42703. {
  42704. name: "King Mugi",
  42705. height: math.unit(280, "feet"),
  42706. default: true
  42707. },
  42708. ]
  42709. ))
  42710. characterMakers.push(() => makeCharacter(
  42711. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42712. {
  42713. front: {
  42714. height: math.unit(64, "meters"),
  42715. name: "Front",
  42716. image: {
  42717. source: "./media/characters/nova-fox/front.svg",
  42718. extra: 1310/1246,
  42719. bottom: 65/1375
  42720. }
  42721. },
  42722. },
  42723. [
  42724. {
  42725. name: "Macro",
  42726. height: math.unit(64, "meters"),
  42727. default: true
  42728. },
  42729. ]
  42730. ))
  42731. characterMakers.push(() => makeCharacter(
  42732. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42733. {
  42734. front: {
  42735. height: math.unit(6 + 3/12, "feet"),
  42736. weight: math.unit(170, "lb"),
  42737. name: "Front",
  42738. image: {
  42739. source: "./media/characters/sam-bat/front.svg",
  42740. extra: 1601/1411,
  42741. bottom: 125/1726
  42742. }
  42743. },
  42744. back: {
  42745. height: math.unit(6 + 3/12, "feet"),
  42746. weight: math.unit(170, "lb"),
  42747. name: "Back",
  42748. image: {
  42749. source: "./media/characters/sam-bat/back.svg",
  42750. extra: 1577/1405,
  42751. bottom: 58/1635
  42752. }
  42753. },
  42754. },
  42755. [
  42756. {
  42757. name: "Normal",
  42758. height: math.unit(6 + 3/12, "feet"),
  42759. default: true
  42760. },
  42761. ]
  42762. ))
  42763. characterMakers.push(() => makeCharacter(
  42764. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42765. {
  42766. front: {
  42767. height: math.unit(59, "feet"),
  42768. weight: math.unit(40000, "lb"),
  42769. name: "Front",
  42770. image: {
  42771. source: "./media/characters/inari/front.svg",
  42772. extra: 1884/1350,
  42773. bottom: 95/1979
  42774. }
  42775. },
  42776. },
  42777. [
  42778. {
  42779. name: "Gigantamax",
  42780. height: math.unit(59, "feet"),
  42781. default: true
  42782. },
  42783. ]
  42784. ))
  42785. characterMakers.push(() => makeCharacter(
  42786. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42787. {
  42788. front: {
  42789. height: math.unit(5 + 8/12, "feet"),
  42790. name: "Front",
  42791. image: {
  42792. source: "./media/characters/elizabeth/front.svg",
  42793. extra: 1395/1298,
  42794. bottom: 54/1449
  42795. }
  42796. },
  42797. mouth: {
  42798. height: math.unit(1.97, "feet"),
  42799. name: "Mouth",
  42800. image: {
  42801. source: "./media/characters/elizabeth/mouth.svg"
  42802. }
  42803. },
  42804. foot: {
  42805. height: math.unit(1.17, "feet"),
  42806. name: "Foot",
  42807. image: {
  42808. source: "./media/characters/elizabeth/foot.svg"
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Normal",
  42815. height: math.unit(5 + 8/12, "feet"),
  42816. default: true
  42817. },
  42818. {
  42819. name: "Minimacro",
  42820. height: math.unit(18, "feet")
  42821. },
  42822. {
  42823. name: "Macro",
  42824. height: math.unit(180, "feet")
  42825. },
  42826. ]
  42827. ))
  42828. characterMakers.push(() => makeCharacter(
  42829. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42830. {
  42831. front: {
  42832. height: math.unit(5 + 2/12, "feet"),
  42833. name: "Front",
  42834. image: {
  42835. source: "./media/characters/october-gossamer/front.svg",
  42836. extra: 505/454,
  42837. bottom: 7/512
  42838. }
  42839. },
  42840. back: {
  42841. height: math.unit(5 + 2/12, "feet"),
  42842. name: "Back",
  42843. image: {
  42844. source: "./media/characters/october-gossamer/back.svg",
  42845. extra: 501/454,
  42846. bottom: 11/512
  42847. }
  42848. },
  42849. },
  42850. [
  42851. {
  42852. name: "Normal",
  42853. height: math.unit(5 + 2/12, "feet"),
  42854. default: true
  42855. },
  42856. ]
  42857. ))
  42858. characterMakers.push(() => makeCharacter(
  42859. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42860. {
  42861. front: {
  42862. height: math.unit(5, "feet"),
  42863. name: "Front",
  42864. image: {
  42865. source: "./media/characters/epiglottis/front.svg",
  42866. extra: 923/849,
  42867. bottom: 17/940
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Original Size",
  42874. height: math.unit(10, "inches")
  42875. },
  42876. {
  42877. name: "Human Size",
  42878. height: math.unit(5, "feet"),
  42879. default: true
  42880. },
  42881. {
  42882. name: "Big",
  42883. height: math.unit(25, "feet")
  42884. },
  42885. {
  42886. name: "Bigger",
  42887. height: math.unit(50, "feet")
  42888. },
  42889. {
  42890. name: "oh lawd",
  42891. height: math.unit(75, "feet")
  42892. },
  42893. ]
  42894. ))
  42895. characterMakers.push(() => makeCharacter(
  42896. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42897. {
  42898. front: {
  42899. height: math.unit(2 + 4/12, "feet"),
  42900. weight: math.unit(60, "lb"),
  42901. name: "Front",
  42902. image: {
  42903. source: "./media/characters/lerm/front.svg",
  42904. extra: 796/790,
  42905. bottom: 79/875
  42906. }
  42907. },
  42908. },
  42909. [
  42910. {
  42911. name: "Normal",
  42912. height: math.unit(2 + 4/12, "feet"),
  42913. default: true
  42914. },
  42915. ]
  42916. ))
  42917. characterMakers.push(() => makeCharacter(
  42918. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42919. {
  42920. front: {
  42921. height: math.unit(5.5, "feet"),
  42922. weight: math.unit(130, "lb"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/xena-nebadon/front.svg",
  42926. extra: 1828/1730,
  42927. bottom: 79/1907
  42928. }
  42929. },
  42930. },
  42931. [
  42932. {
  42933. name: "Tiny Puppy",
  42934. height: math.unit(3, "inches")
  42935. },
  42936. {
  42937. name: "Normal",
  42938. height: math.unit(5.5, "feet"),
  42939. default: true
  42940. },
  42941. {
  42942. name: "Lotta Lady",
  42943. height: math.unit(12, "feet")
  42944. },
  42945. {
  42946. name: "Pretty Big",
  42947. height: math.unit(100, "feet")
  42948. },
  42949. {
  42950. name: "Big",
  42951. height: math.unit(500, "feet")
  42952. },
  42953. {
  42954. name: "Skyscraper Toys",
  42955. height: math.unit(2500, "feet")
  42956. },
  42957. {
  42958. name: "Plane Catcher",
  42959. height: math.unit(8, "miles")
  42960. },
  42961. {
  42962. name: "Planet Toys",
  42963. height: math.unit(15, "earths")
  42964. },
  42965. {
  42966. name: "Stardust",
  42967. height: math.unit(0.25, "galaxies")
  42968. },
  42969. {
  42970. name: "Snacks",
  42971. height: math.unit(70, "universes")
  42972. },
  42973. ]
  42974. ))
  42975. characterMakers.push(() => makeCharacter(
  42976. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42977. {
  42978. front: {
  42979. height: math.unit(1.6, "meters"),
  42980. weight: math.unit(60, "kg"),
  42981. name: "Front",
  42982. image: {
  42983. source: "./media/characters/bounty/front.svg",
  42984. extra: 1426/1308,
  42985. bottom: 15/1441
  42986. }
  42987. },
  42988. back: {
  42989. height: math.unit(1.6, "meters"),
  42990. weight: math.unit(60, "kg"),
  42991. name: "Back",
  42992. image: {
  42993. source: "./media/characters/bounty/back.svg",
  42994. extra: 1417/1307,
  42995. bottom: 8/1425
  42996. }
  42997. },
  42998. },
  42999. [
  43000. {
  43001. name: "Normal",
  43002. height: math.unit(1.6, "meters"),
  43003. default: true
  43004. },
  43005. {
  43006. name: "Macro",
  43007. height: math.unit(300, "meters")
  43008. },
  43009. ]
  43010. ))
  43011. characterMakers.push(() => makeCharacter(
  43012. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43013. {
  43014. front: {
  43015. height: math.unit(2 + 8/12, "feet"),
  43016. weight: math.unit(15, "lb"),
  43017. name: "Front",
  43018. image: {
  43019. source: "./media/characters/mochi/front.svg",
  43020. extra: 1022/852,
  43021. bottom: 435/1457
  43022. }
  43023. },
  43024. back: {
  43025. height: math.unit(2 + 8/12, "feet"),
  43026. weight: math.unit(15, "lb"),
  43027. name: "Back",
  43028. image: {
  43029. source: "./media/characters/mochi/back.svg",
  43030. extra: 1335/1119,
  43031. bottom: 39/1374
  43032. }
  43033. },
  43034. bird: {
  43035. height: math.unit(2 + 8/12, "feet"),
  43036. weight: math.unit(15, "lb"),
  43037. name: "Bird",
  43038. image: {
  43039. source: "./media/characters/mochi/bird.svg",
  43040. extra: 1251/1113,
  43041. bottom: 178/1429
  43042. }
  43043. },
  43044. kaiju: {
  43045. height: math.unit(154, "feet"),
  43046. weight: math.unit(1e7, "lb"),
  43047. name: "Kaiju",
  43048. image: {
  43049. source: "./media/characters/mochi/kaiju.svg",
  43050. extra: 460/324,
  43051. bottom: 40/500
  43052. }
  43053. },
  43054. head: {
  43055. height: math.unit(1.21, "feet"),
  43056. name: "Head",
  43057. image: {
  43058. source: "./media/characters/mochi/head.svg"
  43059. }
  43060. },
  43061. alternateTail: {
  43062. height: math.unit(2 + 8/12, "feet"),
  43063. weight: math.unit(45, "lb"),
  43064. name: "Alternate Tail",
  43065. image: {
  43066. source: "./media/characters/mochi/alternate-tail.svg",
  43067. extra: 139/76,
  43068. bottom: 45/184
  43069. }
  43070. },
  43071. },
  43072. [
  43073. {
  43074. name: "Micro",
  43075. height: math.unit(2, "inches")
  43076. },
  43077. {
  43078. name: "Normal",
  43079. height: math.unit(2 + 8/12, "feet"),
  43080. default: true
  43081. },
  43082. {
  43083. name: "Macro",
  43084. height: math.unit(106, "feet")
  43085. },
  43086. ]
  43087. ))
  43088. characterMakers.push(() => makeCharacter(
  43089. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43090. {
  43091. front: {
  43092. height: math.unit(5.67, "feet"),
  43093. weight: math.unit(135, "lb"),
  43094. name: "Front",
  43095. image: {
  43096. source: "./media/characters/sarel/front.svg",
  43097. extra: 865/788,
  43098. bottom: 97/962
  43099. }
  43100. },
  43101. back: {
  43102. height: math.unit(5.67, "feet"),
  43103. weight: math.unit(135, "lb"),
  43104. name: "Back",
  43105. image: {
  43106. source: "./media/characters/sarel/back.svg",
  43107. extra: 857/777,
  43108. bottom: 32/889
  43109. }
  43110. },
  43111. chozoan: {
  43112. height: math.unit(5.67, "feet"),
  43113. weight: math.unit(135, "lb"),
  43114. name: "Chozoan",
  43115. image: {
  43116. source: "./media/characters/sarel/chozoan.svg",
  43117. extra: 865/788,
  43118. bottom: 97/962
  43119. }
  43120. },
  43121. current: {
  43122. height: math.unit(5.67, "feet"),
  43123. weight: math.unit(135, "lb"),
  43124. name: "Current",
  43125. image: {
  43126. source: "./media/characters/sarel/current.svg",
  43127. extra: 865/788,
  43128. bottom: 97/962
  43129. }
  43130. },
  43131. head: {
  43132. height: math.unit(1.77, "feet"),
  43133. name: "Head",
  43134. image: {
  43135. source: "./media/characters/sarel/head.svg"
  43136. }
  43137. },
  43138. claws: {
  43139. height: math.unit(1.8, "feet"),
  43140. name: "Claws",
  43141. image: {
  43142. source: "./media/characters/sarel/claws.svg"
  43143. }
  43144. },
  43145. clawsAlt: {
  43146. height: math.unit(1.8, "feet"),
  43147. name: "Claws-alt",
  43148. image: {
  43149. source: "./media/characters/sarel/claws-alt.svg"
  43150. }
  43151. },
  43152. },
  43153. [
  43154. {
  43155. name: "Normal",
  43156. height: math.unit(5.67, "feet"),
  43157. default: true
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43163. {
  43164. front: {
  43165. height: math.unit(5500, "feet"),
  43166. name: "Front",
  43167. image: {
  43168. source: "./media/characters/alyonia/front.svg",
  43169. extra: 1200/1135,
  43170. bottom: 29/1229
  43171. }
  43172. },
  43173. back: {
  43174. height: math.unit(5500, "feet"),
  43175. name: "Back",
  43176. image: {
  43177. source: "./media/characters/alyonia/back.svg",
  43178. extra: 1205/1138,
  43179. bottom: 10/1215
  43180. }
  43181. },
  43182. },
  43183. [
  43184. {
  43185. name: "Small",
  43186. height: math.unit(10, "feet")
  43187. },
  43188. {
  43189. name: "Macro",
  43190. height: math.unit(500, "feet")
  43191. },
  43192. {
  43193. name: "Mega Macro",
  43194. height: math.unit(5500, "feet"),
  43195. default: true
  43196. },
  43197. {
  43198. name: "Mega Macro+",
  43199. height: math.unit(500000, "feet")
  43200. },
  43201. {
  43202. name: "Giga Macro",
  43203. height: math.unit(3000, "miles")
  43204. },
  43205. {
  43206. name: "Tera Macro",
  43207. height: math.unit(2.8e6, "miles")
  43208. },
  43209. {
  43210. name: "Galactic",
  43211. height: math.unit(120000, "lightyears")
  43212. },
  43213. ]
  43214. ))
  43215. characterMakers.push(() => makeCharacter(
  43216. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43217. {
  43218. werewolf: {
  43219. height: math.unit(8, "feet"),
  43220. weight: math.unit(425, "lb"),
  43221. name: "Werewolf",
  43222. image: {
  43223. source: "./media/characters/autumn/werewolf.svg",
  43224. extra: 2154/2031,
  43225. bottom: 160/2314
  43226. }
  43227. },
  43228. human: {
  43229. height: math.unit(5 + 8/12, "feet"),
  43230. weight: math.unit(150, "lb"),
  43231. name: "Human",
  43232. image: {
  43233. source: "./media/characters/autumn/human.svg",
  43234. extra: 1200/1149,
  43235. bottom: 30/1230
  43236. }
  43237. },
  43238. },
  43239. [
  43240. {
  43241. name: "Normal",
  43242. height: math.unit(8, "feet"),
  43243. default: true
  43244. },
  43245. ]
  43246. ))
  43247. characterMakers.push(() => makeCharacter(
  43248. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43249. {
  43250. front: {
  43251. height: math.unit(8 + 5/12, "feet"),
  43252. weight: math.unit(825, "lb"),
  43253. name: "Front",
  43254. image: {
  43255. source: "./media/characters/cobalt-charizard/front.svg",
  43256. extra: 1268/1155,
  43257. bottom: 122/1390
  43258. }
  43259. },
  43260. side: {
  43261. height: math.unit(8 + 5/12, "feet"),
  43262. weight: math.unit(825, "lb"),
  43263. name: "Side",
  43264. image: {
  43265. source: "./media/characters/cobalt-charizard/side.svg",
  43266. extra: 1348/1257,
  43267. bottom: 58/1406
  43268. }
  43269. },
  43270. gMax: {
  43271. height: math.unit(134 + 11/12, "feet"),
  43272. name: "G-Max",
  43273. image: {
  43274. source: "./media/characters/cobalt-charizard/g-max.svg",
  43275. extra: 1835/1541,
  43276. bottom: 151/1986
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Normal",
  43283. height: math.unit(8 + 5/12, "feet"),
  43284. default: true
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43290. {
  43291. front: {
  43292. height: math.unit(6 + 3/12, "feet"),
  43293. weight: math.unit(210, "lb"),
  43294. name: "Front",
  43295. image: {
  43296. source: "./media/characters/stella/front.svg",
  43297. extra: 3549/3335,
  43298. bottom: 51/3600
  43299. }
  43300. },
  43301. },
  43302. [
  43303. {
  43304. name: "Normal",
  43305. height: math.unit(6 + 3/12, "feet"),
  43306. default: true
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43312. {
  43313. front: {
  43314. height: math.unit(5, "feet"),
  43315. weight: math.unit(90, "lb"),
  43316. name: "Front",
  43317. image: {
  43318. source: "./media/characters/riley-bishop/front.svg",
  43319. extra: 1450/1428,
  43320. bottom: 152/1602
  43321. }
  43322. },
  43323. },
  43324. [
  43325. {
  43326. name: "Normal",
  43327. height: math.unit(5, "feet"),
  43328. default: true
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43334. {
  43335. side: {
  43336. height: math.unit(8 + 2/12, "feet"),
  43337. weight: math.unit(500, "kg"),
  43338. name: "Side",
  43339. image: {
  43340. source: "./media/characters/theo-arcanine/side.svg",
  43341. extra: 1342/1074,
  43342. bottom: 111/1453
  43343. }
  43344. },
  43345. },
  43346. [
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(8 + 2/12, "feet"),
  43350. default: true
  43351. },
  43352. ]
  43353. ))
  43354. characterMakers.push(() => makeCharacter(
  43355. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43356. {
  43357. front: {
  43358. height: math.unit(4, "feet"),
  43359. name: "Front",
  43360. image: {
  43361. source: "./media/characters/kali/front.svg",
  43362. extra: 1921/1357,
  43363. bottom: 70/1991
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Normal",
  43370. height: math.unit(4, "feet"),
  43371. default: true
  43372. },
  43373. {
  43374. name: "Macro",
  43375. height: math.unit(32, "meters")
  43376. },
  43377. {
  43378. name: "Macro+",
  43379. height: math.unit(150, "meters")
  43380. },
  43381. {
  43382. name: "Megamacro",
  43383. height: math.unit(7500, "meters")
  43384. },
  43385. {
  43386. name: "Megamacro+",
  43387. height: math.unit(80, "kilometers")
  43388. },
  43389. ]
  43390. ))
  43391. characterMakers.push(() => makeCharacter(
  43392. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43393. {
  43394. side: {
  43395. height: math.unit(5 + 11/12, "feet"),
  43396. weight: math.unit(236, "lb"),
  43397. name: "Side",
  43398. image: {
  43399. source: "./media/characters/gapp/side.svg",
  43400. extra: 775/340,
  43401. bottom: 58/833
  43402. }
  43403. },
  43404. mouth: {
  43405. height: math.unit(2.98, "feet"),
  43406. name: "Mouth",
  43407. image: {
  43408. source: "./media/characters/gapp/mouth.svg"
  43409. }
  43410. },
  43411. },
  43412. [
  43413. {
  43414. name: "Normal",
  43415. height: math.unit(5 + 1/12, "feet"),
  43416. default: true
  43417. },
  43418. ]
  43419. ))
  43420. characterMakers.push(() => makeCharacter(
  43421. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43422. {
  43423. front: {
  43424. height: math.unit(6, "feet"),
  43425. name: "Front",
  43426. image: {
  43427. source: "./media/characters/persephone/front.svg",
  43428. extra: 1895/1717,
  43429. bottom: 96/1991
  43430. }
  43431. },
  43432. back: {
  43433. height: math.unit(6, "feet"),
  43434. name: "Back",
  43435. image: {
  43436. source: "./media/characters/persephone/back.svg",
  43437. extra: 1868/1679,
  43438. bottom: 26/1894
  43439. }
  43440. },
  43441. casual: {
  43442. height: math.unit(6, "feet"),
  43443. name: "Casual",
  43444. image: {
  43445. source: "./media/characters/persephone/casual.svg",
  43446. extra: 1713/1541,
  43447. bottom: 76/1789
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "Human Size",
  43454. height: math.unit(6, "feet")
  43455. },
  43456. {
  43457. name: "Big Steppy",
  43458. height: math.unit(600, "meters"),
  43459. default: true
  43460. },
  43461. {
  43462. name: "Galaxy Brain",
  43463. height: math.unit(1, "zettameter")
  43464. },
  43465. ]
  43466. ))
  43467. characterMakers.push(() => makeCharacter(
  43468. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43469. {
  43470. front: {
  43471. height: math.unit(1.85, "meters"),
  43472. name: "Front",
  43473. image: {
  43474. source: "./media/characters/riley-foxthing/front.svg",
  43475. extra: 1495/1354,
  43476. bottom: 122/1617
  43477. }
  43478. },
  43479. frontAlt: {
  43480. height: math.unit(1.85, "meters"),
  43481. name: "Front (Alt)",
  43482. image: {
  43483. source: "./media/characters/riley-foxthing/front-alt.svg",
  43484. extra: 1572/1389,
  43485. bottom: 116/1688
  43486. }
  43487. },
  43488. },
  43489. [
  43490. {
  43491. name: "Normal Sized",
  43492. height: math.unit(1.85, "meters"),
  43493. default: true
  43494. },
  43495. {
  43496. name: "Quite Sizable",
  43497. height: math.unit(5, "meters")
  43498. },
  43499. {
  43500. name: "Rather Large",
  43501. height: math.unit(20, "meters")
  43502. },
  43503. {
  43504. name: "Macro",
  43505. height: math.unit(450, "meters")
  43506. },
  43507. {
  43508. name: "Giga",
  43509. height: math.unit(5, "km")
  43510. },
  43511. ]
  43512. ))
  43513. characterMakers.push(() => makeCharacter(
  43514. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43515. {
  43516. front: {
  43517. height: math.unit(6, "feet"),
  43518. weight: math.unit(200, "lb"),
  43519. name: "Front",
  43520. image: {
  43521. source: "./media/characters/blizzard/front.svg",
  43522. extra: 1136/990,
  43523. bottom: 136/1272
  43524. }
  43525. },
  43526. back: {
  43527. height: math.unit(6, "feet"),
  43528. weight: math.unit(200, "lb"),
  43529. name: "Back",
  43530. image: {
  43531. source: "./media/characters/blizzard/back.svg",
  43532. extra: 1175/1034,
  43533. bottom: 97/1272
  43534. }
  43535. },
  43536. sitting: {
  43537. height: math.unit(3.725, "feet"),
  43538. weight: math.unit(200, "lb"),
  43539. name: "Sitting",
  43540. image: {
  43541. source: "./media/characters/blizzard/sitting.svg",
  43542. extra: 581/485,
  43543. bottom: 90/671
  43544. }
  43545. },
  43546. frontWizard: {
  43547. height: math.unit(7.9, "feet"),
  43548. weight: math.unit(200, "lb"),
  43549. name: "Front (Wizard)",
  43550. image: {
  43551. source: "./media/characters/blizzard/front-wizard.svg"
  43552. }
  43553. },
  43554. backWizard: {
  43555. height: math.unit(7.9, "feet"),
  43556. weight: math.unit(200, "lb"),
  43557. name: "Back (Wizard)",
  43558. image: {
  43559. source: "./media/characters/blizzard/back-wizard.svg"
  43560. }
  43561. },
  43562. frontNsfw: {
  43563. height: math.unit(6, "feet"),
  43564. weight: math.unit(200, "lb"),
  43565. name: "Front (NSFW)",
  43566. image: {
  43567. source: "./media/characters/blizzard/front-nsfw.svg",
  43568. extra: 1136/990,
  43569. bottom: 136/1272
  43570. }
  43571. },
  43572. backNsfw: {
  43573. height: math.unit(6, "feet"),
  43574. weight: math.unit(200, "lb"),
  43575. name: "Back (NSFW)",
  43576. image: {
  43577. source: "./media/characters/blizzard/back-nsfw.svg",
  43578. extra: 1175/1034,
  43579. bottom: 97/1272
  43580. }
  43581. },
  43582. sittingNsfw: {
  43583. height: math.unit(3.725, "feet"),
  43584. weight: math.unit(200, "lb"),
  43585. name: "Sitting (NSFW)",
  43586. image: {
  43587. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43588. extra: 581/485,
  43589. bottom: 90/671
  43590. }
  43591. },
  43592. wizardFrontNsfw: {
  43593. height: math.unit(7.9, "feet"),
  43594. weight: math.unit(200, "lb"),
  43595. name: "Wizard (Front, NSFW)",
  43596. image: {
  43597. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43598. }
  43599. },
  43600. },
  43601. [
  43602. {
  43603. name: "Normal",
  43604. height: math.unit(6, "feet"),
  43605. default: true
  43606. },
  43607. ]
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43611. {
  43612. front: {
  43613. height: math.unit(5 + 2/12, "feet"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/lumi/front.svg",
  43617. extra: 1328/1268,
  43618. bottom: 103/1431
  43619. }
  43620. },
  43621. back: {
  43622. height: math.unit(5 + 2/12, "feet"),
  43623. name: "Back",
  43624. image: {
  43625. source: "./media/characters/lumi/back.svg",
  43626. extra: 1381/1327,
  43627. bottom: 43/1424
  43628. }
  43629. },
  43630. },
  43631. [
  43632. {
  43633. name: "Normal",
  43634. height: math.unit(5 + 2/12, "feet"),
  43635. default: true
  43636. },
  43637. ]
  43638. ))
  43639. characterMakers.push(() => makeCharacter(
  43640. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43641. {
  43642. front: {
  43643. height: math.unit(5 + 9/12, "feet"),
  43644. name: "Front",
  43645. image: {
  43646. source: "./media/characters/aliya-cotton/front.svg",
  43647. extra: 577/564,
  43648. bottom: 29/606
  43649. }
  43650. },
  43651. },
  43652. [
  43653. {
  43654. name: "Normal",
  43655. height: math.unit(5 + 9/12, "feet"),
  43656. default: true
  43657. },
  43658. ]
  43659. ))
  43660. characterMakers.push(() => makeCharacter(
  43661. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43662. {
  43663. front: {
  43664. height: math.unit(2.7, "meters"),
  43665. weight: math.unit(25000, "lb"),
  43666. name: "Front",
  43667. image: {
  43668. source: "./media/characters/noah-luxray/front.svg",
  43669. extra: 1644/825,
  43670. bottom: 339/1983
  43671. }
  43672. },
  43673. side: {
  43674. height: math.unit(2.97, "meters"),
  43675. weight: math.unit(25000, "lb"),
  43676. name: "Side",
  43677. image: {
  43678. source: "./media/characters/noah-luxray/side.svg",
  43679. extra: 1319/650,
  43680. bottom: 163/1482
  43681. }
  43682. },
  43683. dick: {
  43684. height: math.unit(7.4, "feet"),
  43685. weight: math.unit(2500, "lb"),
  43686. name: "Dick",
  43687. image: {
  43688. source: "./media/characters/noah-luxray/dick.svg"
  43689. }
  43690. },
  43691. dickAlt: {
  43692. height: math.unit(10.83, "feet"),
  43693. weight: math.unit(2500, "lb"),
  43694. name: "Dick-alt",
  43695. image: {
  43696. source: "./media/characters/noah-luxray/dick-alt.svg"
  43697. }
  43698. },
  43699. },
  43700. [
  43701. {
  43702. name: "BIG",
  43703. height: math.unit(2.7, "meters"),
  43704. default: true
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43710. {
  43711. standing: {
  43712. height: math.unit(183, "cm"),
  43713. weight: math.unit(68, "kg"),
  43714. name: "Standing",
  43715. image: {
  43716. source: "./media/characters/arion/standing.svg",
  43717. extra: 1869/1807,
  43718. bottom: 93/1962
  43719. }
  43720. },
  43721. reclining: {
  43722. height: math.unit(70.5, "cm"),
  43723. weight: math.unit(68, "lb"),
  43724. name: "Reclining",
  43725. image: {
  43726. source: "./media/characters/arion/reclining.svg",
  43727. extra: 937/870,
  43728. bottom: 63/1000
  43729. }
  43730. },
  43731. },
  43732. [
  43733. {
  43734. name: "Colossus Size, Low",
  43735. height: math.unit(33, "meters"),
  43736. default: true
  43737. },
  43738. {
  43739. name: "Colossus Size, Mid",
  43740. height: math.unit(52, "meters")
  43741. },
  43742. {
  43743. name: "Colossus Size, High",
  43744. height: math.unit(60, "meters")
  43745. },
  43746. {
  43747. name: "Titan Size, Low",
  43748. height: math.unit(91, "meters"),
  43749. },
  43750. {
  43751. name: "Titan Size, Mid",
  43752. height: math.unit(122, "meters")
  43753. },
  43754. {
  43755. name: "Titan Size, High",
  43756. height: math.unit(162, "meters")
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43762. {
  43763. front: {
  43764. height: math.unit(53, "meters"),
  43765. name: "Front",
  43766. image: {
  43767. source: "./media/characters/stellar-marbey/front.svg",
  43768. extra: 1913/1805,
  43769. bottom: 92/2005
  43770. }
  43771. },
  43772. back: {
  43773. height: math.unit(53, "meters"),
  43774. name: "Back",
  43775. image: {
  43776. source: "./media/characters/stellar-marbey/back.svg",
  43777. extra: 1960/1851,
  43778. bottom: 28/1988
  43779. }
  43780. },
  43781. mouth: {
  43782. height: math.unit(3.5, "meters"),
  43783. name: "Mouth",
  43784. image: {
  43785. source: "./media/characters/stellar-marbey/mouth.svg"
  43786. }
  43787. },
  43788. },
  43789. [
  43790. {
  43791. name: "Macro",
  43792. height: math.unit(53, "meters"),
  43793. default: true
  43794. },
  43795. ]
  43796. ))
  43797. characterMakers.push(() => makeCharacter(
  43798. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43799. {
  43800. front: {
  43801. height: math.unit(8 + 1/12, "feet"),
  43802. weight: math.unit(233, "lb"),
  43803. name: "Front",
  43804. image: {
  43805. source: "./media/characters/matsu/front.svg",
  43806. extra: 832/772,
  43807. bottom: 40/872
  43808. }
  43809. },
  43810. back: {
  43811. height: math.unit(8 + 1/12, "feet"),
  43812. weight: math.unit(233, "lb"),
  43813. name: "Back",
  43814. image: {
  43815. source: "./media/characters/matsu/back.svg",
  43816. extra: 839/780,
  43817. bottom: 47/886
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(8 + 1/12, "feet"),
  43825. default: true
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43831. {
  43832. front: {
  43833. height: math.unit(4, "feet"),
  43834. weight: math.unit(148, "lb"),
  43835. name: "Front",
  43836. image: {
  43837. source: "./media/characters/thiz/front.svg",
  43838. extra: 1913/1748,
  43839. bottom: 62/1975
  43840. }
  43841. },
  43842. },
  43843. [
  43844. {
  43845. name: "Normal",
  43846. height: math.unit(4, "feet"),
  43847. default: true
  43848. },
  43849. ]
  43850. ))
  43851. characterMakers.push(() => makeCharacter(
  43852. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43853. {
  43854. front: {
  43855. height: math.unit(7 + 6/12, "feet"),
  43856. weight: math.unit(267, "lb"),
  43857. name: "Front",
  43858. image: {
  43859. source: "./media/characters/marcel/front.svg",
  43860. extra: 1221/1096,
  43861. bottom: 76/1297
  43862. }
  43863. },
  43864. },
  43865. [
  43866. {
  43867. name: "Normal",
  43868. height: math.unit(7 + 6/12, "feet"),
  43869. default: true
  43870. },
  43871. ]
  43872. ))
  43873. characterMakers.push(() => makeCharacter(
  43874. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43875. {
  43876. side: {
  43877. height: math.unit(42, "meters"),
  43878. name: "Side",
  43879. image: {
  43880. source: "./media/characters/flake/side.svg",
  43881. extra: 1525/1306,
  43882. bottom: 209/1734
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "Normal",
  43889. height: math.unit(42, "meters"),
  43890. default: true
  43891. },
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43896. {
  43897. dressed: {
  43898. height: math.unit(6 + 4/12, "feet"),
  43899. weight: math.unit(520, "lb"),
  43900. name: "Dressed",
  43901. image: {
  43902. source: "./media/characters/someonne/dressed.svg",
  43903. extra: 1020/1010,
  43904. bottom: 178/1198
  43905. }
  43906. },
  43907. undressed: {
  43908. height: math.unit(6 + 4/12, "feet"),
  43909. weight: math.unit(520, "lb"),
  43910. name: "Undressed",
  43911. image: {
  43912. source: "./media/characters/someonne/undressed.svg",
  43913. extra: 1019/1014,
  43914. bottom: 169/1188
  43915. }
  43916. },
  43917. },
  43918. [
  43919. {
  43920. name: "Normal",
  43921. height: math.unit(6 + 4/12, "feet"),
  43922. default: true
  43923. },
  43924. ]
  43925. ))
  43926. characterMakers.push(() => makeCharacter(
  43927. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43928. {
  43929. front: {
  43930. height: math.unit(3, "feet"),
  43931. weight: math.unit(30, "lb"),
  43932. name: "Front",
  43933. image: {
  43934. source: "./media/characters/till/front.svg",
  43935. extra: 892/823,
  43936. bottom: 55/947
  43937. }
  43938. },
  43939. },
  43940. [
  43941. {
  43942. name: "Normal",
  43943. height: math.unit(3, "feet"),
  43944. default: true
  43945. },
  43946. ]
  43947. ))
  43948. characterMakers.push(() => makeCharacter(
  43949. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43950. {
  43951. front: {
  43952. height: math.unit(9 + 8/12, "feet"),
  43953. weight: math.unit(800, "lb"),
  43954. name: "Front",
  43955. image: {
  43956. source: "./media/characters/sydney-heki/front.svg",
  43957. extra: 1360/1300,
  43958. bottom: 22/1382
  43959. }
  43960. },
  43961. back: {
  43962. height: math.unit(9 + 8/12, "feet"),
  43963. weight: math.unit(800, "lb"),
  43964. name: "Back",
  43965. image: {
  43966. source: "./media/characters/sydney-heki/back.svg",
  43967. extra: 1356/1293,
  43968. bottom: 12/1368
  43969. }
  43970. },
  43971. frontDressed: {
  43972. height: math.unit(9 + 8/12, "feet"),
  43973. weight: math.unit(800, "lb"),
  43974. name: "Front-dressed",
  43975. image: {
  43976. source: "./media/characters/sydney-heki/front-dressed.svg",
  43977. extra: 1360/1300,
  43978. bottom: 22/1382
  43979. }
  43980. },
  43981. },
  43982. [
  43983. {
  43984. name: "Normal",
  43985. height: math.unit(9 + 8/12, "feet"),
  43986. default: true
  43987. },
  43988. {
  43989. name: "Macro",
  43990. height: math.unit(500, "feet")
  43991. },
  43992. {
  43993. name: "Megamacro",
  43994. height: math.unit(3.6, "miles")
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44000. {
  44001. front: {
  44002. height: math.unit(200, "cm"),
  44003. weight: math.unit(250, "lb"),
  44004. name: "Front",
  44005. image: {
  44006. source: "./media/characters/fowler-karlsson/front.svg",
  44007. extra: 897/845,
  44008. bottom: 123/1020
  44009. }
  44010. },
  44011. back: {
  44012. height: math.unit(200, "cm"),
  44013. weight: math.unit(250, "lb"),
  44014. name: "Back",
  44015. image: {
  44016. source: "./media/characters/fowler-karlsson/back.svg",
  44017. extra: 999/944,
  44018. bottom: 26/1025
  44019. }
  44020. },
  44021. dick: {
  44022. height: math.unit(1.92, "feet"),
  44023. weight: math.unit(150, "lb"),
  44024. name: "Dick",
  44025. image: {
  44026. source: "./media/characters/fowler-karlsson/dick.svg"
  44027. }
  44028. },
  44029. },
  44030. [
  44031. {
  44032. name: "Normal",
  44033. height: math.unit(200, "cm"),
  44034. default: true
  44035. },
  44036. {
  44037. name: "Smaller Macro",
  44038. height: math.unit(90, "m")
  44039. },
  44040. {
  44041. name: "Macro",
  44042. height: math.unit(150, "m")
  44043. },
  44044. {
  44045. name: "Bigger Macro",
  44046. height: math.unit(300, "m")
  44047. },
  44048. ]
  44049. ))
  44050. characterMakers.push(() => makeCharacter(
  44051. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44052. {
  44053. side: {
  44054. height: math.unit(8 + 2/12, "feet"),
  44055. weight: math.unit(1, "tonne"),
  44056. name: "Side",
  44057. image: {
  44058. source: "./media/characters/rylide/side.svg",
  44059. extra: 1318/1034,
  44060. bottom: 106/1424
  44061. }
  44062. },
  44063. sitting: {
  44064. height: math.unit(303, "cm"),
  44065. weight: math.unit(1, "tonne"),
  44066. name: "Sitting",
  44067. image: {
  44068. source: "./media/characters/rylide/sitting.svg",
  44069. extra: 1303/1103,
  44070. bottom: 36/1339
  44071. }
  44072. },
  44073. },
  44074. [
  44075. {
  44076. name: "Normal",
  44077. height: math.unit(8 + 2/12, "feet"),
  44078. default: true
  44079. },
  44080. ]
  44081. ))
  44082. characterMakers.push(() => makeCharacter(
  44083. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44084. {
  44085. front: {
  44086. height: math.unit(5 + 10/12, "feet"),
  44087. weight: math.unit(160, "lb"),
  44088. name: "Front",
  44089. image: {
  44090. source: "./media/characters/pudask/front.svg",
  44091. extra: 1616/1590,
  44092. bottom: 161/1777
  44093. }
  44094. },
  44095. },
  44096. [
  44097. {
  44098. name: "Ferret Height",
  44099. height: math.unit(2 + 5/12, "feet")
  44100. },
  44101. {
  44102. name: "Canon Height",
  44103. height: math.unit(5 + 10/12, "feet"),
  44104. default: true
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(3 + 6/12, "feet"),
  44113. weight: math.unit(60, "lb"),
  44114. name: "Front",
  44115. image: {
  44116. source: "./media/characters/ramita/front.svg",
  44117. extra: 1402/1232,
  44118. bottom: 62/1464
  44119. }
  44120. },
  44121. dressed: {
  44122. height: math.unit(3 + 6/12, "feet"),
  44123. weight: math.unit(60, "lb"),
  44124. name: "Dressed",
  44125. image: {
  44126. source: "./media/characters/ramita/dressed.svg",
  44127. extra: 1534/1249,
  44128. bottom: 50/1584
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Normal",
  44135. height: math.unit(3 + 6/12, "feet"),
  44136. default: true
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44142. {
  44143. front: {
  44144. height: math.unit(8, "feet"),
  44145. name: "Front",
  44146. image: {
  44147. source: "./media/characters/ark/front.svg",
  44148. extra: 772/693,
  44149. bottom: 45/817
  44150. }
  44151. },
  44152. },
  44153. [
  44154. {
  44155. name: "Normal",
  44156. height: math.unit(8, "feet"),
  44157. default: true
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(6, "feet"),
  44166. weight: math.unit(250, "lb"),
  44167. volume: math.unit(5/8, "gallons"),
  44168. name: "Front",
  44169. image: {
  44170. source: "./media/characters/ludwig-horn/front.svg",
  44171. extra: 1782/1635,
  44172. bottom: 96/1878
  44173. }
  44174. },
  44175. back: {
  44176. height: math.unit(6, "feet"),
  44177. weight: math.unit(250, "lb"),
  44178. volume: math.unit(5/8, "gallons"),
  44179. name: "Back",
  44180. image: {
  44181. source: "./media/characters/ludwig-horn/back.svg",
  44182. extra: 1874/1729,
  44183. bottom: 27/1901
  44184. }
  44185. },
  44186. dick: {
  44187. height: math.unit(1.05, "feet"),
  44188. weight: math.unit(15, "lb"),
  44189. volume: math.unit(5/8, "gallons"),
  44190. name: "Dick",
  44191. image: {
  44192. source: "./media/characters/ludwig-horn/dick.svg"
  44193. }
  44194. },
  44195. },
  44196. [
  44197. {
  44198. name: "Small",
  44199. height: math.unit(6, "feet")
  44200. },
  44201. {
  44202. name: "Typical",
  44203. height: math.unit(12, "feet"),
  44204. default: true
  44205. },
  44206. {
  44207. name: "Building",
  44208. height: math.unit(80, "feet")
  44209. },
  44210. {
  44211. name: "Town",
  44212. height: math.unit(800, "feet")
  44213. },
  44214. {
  44215. name: "Kingdom",
  44216. height: math.unit(80000, "feet")
  44217. },
  44218. {
  44219. name: "Planet",
  44220. height: math.unit(8000000, "feet")
  44221. },
  44222. {
  44223. name: "Universe",
  44224. height: math.unit(8000000000, "feet")
  44225. },
  44226. {
  44227. name: "Transcended",
  44228. height: math.unit(8e27, "feet")
  44229. },
  44230. ]
  44231. ))
  44232. characterMakers.push(() => makeCharacter(
  44233. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44234. {
  44235. front: {
  44236. height: math.unit(5, "feet"),
  44237. weight: math.unit(50, "kg"),
  44238. name: "Front",
  44239. image: {
  44240. source: "./media/characters/biot-avery/front.svg",
  44241. extra: 1295/1232,
  44242. bottom: 86/1381
  44243. }
  44244. },
  44245. },
  44246. [
  44247. {
  44248. name: "Normal",
  44249. height: math.unit(5, "feet"),
  44250. default: true
  44251. },
  44252. ]
  44253. ))
  44254. characterMakers.push(() => makeCharacter(
  44255. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44256. {
  44257. front: {
  44258. height: math.unit(6, "feet"),
  44259. name: "Front",
  44260. image: {
  44261. source: "./media/characters/kitsune-kiro/front.svg",
  44262. extra: 1270/1158,
  44263. bottom: 42/1312
  44264. }
  44265. },
  44266. frontAlt: {
  44267. height: math.unit(6, "feet"),
  44268. name: "Front-alt",
  44269. image: {
  44270. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44271. extra: 1130/1081,
  44272. bottom: 36/1166
  44273. }
  44274. },
  44275. },
  44276. [
  44277. {
  44278. name: "Smol",
  44279. height: math.unit(3, "feet")
  44280. },
  44281. {
  44282. name: "Normal",
  44283. height: math.unit(6, "feet"),
  44284. default: true
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44290. {
  44291. front: {
  44292. height: math.unit(6, "feet"),
  44293. weight: math.unit(125, "lb"),
  44294. name: "Front",
  44295. image: {
  44296. source: "./media/characters/jack-thatcher/front.svg",
  44297. extra: 1474/1370,
  44298. bottom: 26/1500
  44299. }
  44300. },
  44301. back: {
  44302. height: math.unit(6, "feet"),
  44303. weight: math.unit(125, "lb"),
  44304. name: "Back",
  44305. image: {
  44306. source: "./media/characters/jack-thatcher/back.svg",
  44307. extra: 1489/1384,
  44308. bottom: 18/1507
  44309. }
  44310. },
  44311. },
  44312. [
  44313. {
  44314. name: "Normal",
  44315. height: math.unit(6, "feet"),
  44316. default: true
  44317. },
  44318. {
  44319. name: "Macro",
  44320. height: math.unit(75, "feet")
  44321. },
  44322. {
  44323. name: "Macro-er",
  44324. height: math.unit(250, "feet")
  44325. },
  44326. ]
  44327. ))
  44328. characterMakers.push(() => makeCharacter(
  44329. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44330. {
  44331. front: {
  44332. height: math.unit(7, "feet"),
  44333. weight: math.unit(110, "kg"),
  44334. name: "Front",
  44335. image: {
  44336. source: "./media/characters/max-hyper/front.svg",
  44337. extra: 1969/1881,
  44338. bottom: 49/2018
  44339. }
  44340. },
  44341. },
  44342. [
  44343. {
  44344. name: "Normal",
  44345. height: math.unit(7, "feet"),
  44346. default: true
  44347. },
  44348. ]
  44349. ))
  44350. characterMakers.push(() => makeCharacter(
  44351. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44352. {
  44353. front: {
  44354. height: math.unit(5 + 5/12, "feet"),
  44355. weight: math.unit(160, "lb"),
  44356. name: "Front",
  44357. image: {
  44358. source: "./media/characters/spook/front.svg",
  44359. extra: 794/791,
  44360. bottom: 54/848
  44361. }
  44362. },
  44363. back: {
  44364. height: math.unit(5 + 5/12, "feet"),
  44365. weight: math.unit(160, "lb"),
  44366. name: "Back",
  44367. image: {
  44368. source: "./media/characters/spook/back.svg",
  44369. extra: 812/798,
  44370. bottom: 32/844
  44371. }
  44372. },
  44373. },
  44374. [
  44375. {
  44376. name: "Normal",
  44377. height: math.unit(5 + 5/12, "feet"),
  44378. default: true
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44384. {
  44385. front: {
  44386. height: math.unit(18, "feet"),
  44387. name: "Front",
  44388. image: {
  44389. source: "./media/characters/xeaduulix/front.svg",
  44390. extra: 1380/1166,
  44391. bottom: 110/1490
  44392. }
  44393. },
  44394. back: {
  44395. height: math.unit(18, "feet"),
  44396. name: "Back",
  44397. image: {
  44398. source: "./media/characters/xeaduulix/back.svg",
  44399. extra: 1592/1170,
  44400. bottom: 128/1720
  44401. }
  44402. },
  44403. frontNsfw: {
  44404. height: math.unit(18, "feet"),
  44405. name: "Front (NSFW)",
  44406. image: {
  44407. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44408. extra: 1380/1166,
  44409. bottom: 110/1490
  44410. }
  44411. },
  44412. backNsfw: {
  44413. height: math.unit(18, "feet"),
  44414. name: "Back (NSFW)",
  44415. image: {
  44416. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44417. extra: 1592/1170,
  44418. bottom: 128/1720
  44419. }
  44420. },
  44421. },
  44422. [
  44423. {
  44424. name: "Normal",
  44425. height: math.unit(18, "feet"),
  44426. default: true
  44427. },
  44428. ]
  44429. ))
  44430. characterMakers.push(() => makeCharacter(
  44431. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44432. {
  44433. spreadWings: {
  44434. height: math.unit(20, "feet"),
  44435. name: "Spread Wings",
  44436. image: {
  44437. source: "./media/characters/fledge/spread-wings.svg",
  44438. extra: 693/635,
  44439. bottom: 26/719
  44440. }
  44441. },
  44442. front: {
  44443. height: math.unit(20, "feet"),
  44444. name: "Front",
  44445. image: {
  44446. source: "./media/characters/fledge/front.svg",
  44447. extra: 684/637,
  44448. bottom: 18/702
  44449. }
  44450. },
  44451. frontAlt: {
  44452. height: math.unit(20, "feet"),
  44453. name: "Front (Alt)",
  44454. image: {
  44455. source: "./media/characters/fledge/front-alt.svg",
  44456. extra: 708/664,
  44457. bottom: 13/721
  44458. }
  44459. },
  44460. back: {
  44461. height: math.unit(20, "feet"),
  44462. name: "Back",
  44463. image: {
  44464. source: "./media/characters/fledge/back.svg",
  44465. extra: 718/634,
  44466. bottom: 22/740
  44467. }
  44468. },
  44469. head: {
  44470. height: math.unit(5.55, "feet"),
  44471. name: "Head",
  44472. image: {
  44473. source: "./media/characters/fledge/head.svg"
  44474. }
  44475. },
  44476. headAlt: {
  44477. height: math.unit(5.1, "feet"),
  44478. name: "Head (Alt)",
  44479. image: {
  44480. source: "./media/characters/fledge/head-alt.svg"
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Small",
  44487. height: math.unit(6 + 2/12, "feet")
  44488. },
  44489. {
  44490. name: "Big",
  44491. height: math.unit(20, "feet"),
  44492. default: true
  44493. },
  44494. {
  44495. name: "Giant",
  44496. height: math.unit(100, "feet")
  44497. },
  44498. {
  44499. name: "Macro",
  44500. height: math.unit(200, "feet")
  44501. },
  44502. ]
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44506. {
  44507. front: {
  44508. height: math.unit(1, "meter"),
  44509. name: "Front",
  44510. image: {
  44511. source: "./media/characters/atlas-morenai/front.svg",
  44512. extra: 1275/1043,
  44513. bottom: 19/1294
  44514. }
  44515. },
  44516. back: {
  44517. height: math.unit(1, "meter"),
  44518. name: "Back",
  44519. image: {
  44520. source: "./media/characters/atlas-morenai/back.svg",
  44521. extra: 1141/1001,
  44522. bottom: 25/1166
  44523. }
  44524. },
  44525. },
  44526. [
  44527. {
  44528. name: "Normal",
  44529. height: math.unit(1, "meter"),
  44530. default: true
  44531. },
  44532. {
  44533. name: "Magic-Infused",
  44534. height: math.unit(5, "meters")
  44535. },
  44536. ]
  44537. ))
  44538. characterMakers.push(() => makeCharacter(
  44539. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44540. {
  44541. front: {
  44542. height: math.unit(5, "meters"),
  44543. name: "Front",
  44544. image: {
  44545. source: "./media/characters/cintia/front.svg",
  44546. extra: 1312/1228,
  44547. bottom: 38/1350
  44548. }
  44549. },
  44550. back: {
  44551. height: math.unit(5, "meters"),
  44552. name: "Back",
  44553. image: {
  44554. source: "./media/characters/cintia/back.svg",
  44555. extra: 1260/1166,
  44556. bottom: 98/1358
  44557. }
  44558. },
  44559. frontDick: {
  44560. height: math.unit(5, "meters"),
  44561. name: "Front (Dick)",
  44562. image: {
  44563. source: "./media/characters/cintia/front-dick.svg",
  44564. extra: 1312/1228,
  44565. bottom: 38/1350
  44566. }
  44567. },
  44568. backDick: {
  44569. height: math.unit(5, "meters"),
  44570. name: "Back (Dick)",
  44571. image: {
  44572. source: "./media/characters/cintia/back-dick.svg",
  44573. extra: 1260/1166,
  44574. bottom: 98/1358
  44575. }
  44576. },
  44577. bust: {
  44578. height: math.unit(1.97, "meters"),
  44579. name: "Bust",
  44580. image: {
  44581. source: "./media/characters/cintia/bust.svg",
  44582. extra: 617/565,
  44583. bottom: 0/617
  44584. }
  44585. },
  44586. },
  44587. [
  44588. {
  44589. name: "Normal",
  44590. height: math.unit(5, "meters"),
  44591. default: true
  44592. },
  44593. ]
  44594. ))
  44595. characterMakers.push(() => makeCharacter(
  44596. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44597. {
  44598. side: {
  44599. height: math.unit(100, "feet"),
  44600. name: "Side",
  44601. image: {
  44602. source: "./media/characters/denora/side.svg",
  44603. extra: 875/803,
  44604. bottom: 9/884
  44605. }
  44606. },
  44607. },
  44608. [
  44609. {
  44610. name: "Standard",
  44611. height: math.unit(100, "feet"),
  44612. default: true
  44613. },
  44614. {
  44615. name: "Grand",
  44616. height: math.unit(1000, "feet")
  44617. },
  44618. {
  44619. name: "Conquering",
  44620. height: math.unit(10000, "feet")
  44621. },
  44622. ]
  44623. ))
  44624. characterMakers.push(() => makeCharacter(
  44625. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44626. {
  44627. dressed: {
  44628. height: math.unit(8 + 5/12, "feet"),
  44629. weight: math.unit(700, "lb"),
  44630. name: "Dressed",
  44631. image: {
  44632. source: "./media/characters/kiva/dressed.svg",
  44633. extra: 1102/1055,
  44634. bottom: 60/1162
  44635. }
  44636. },
  44637. nude: {
  44638. height: math.unit(8 + 5/12, "feet"),
  44639. weight: math.unit(700, "lb"),
  44640. name: "Nude",
  44641. image: {
  44642. source: "./media/characters/kiva/nude.svg",
  44643. extra: 1102/1055,
  44644. bottom: 60/1162
  44645. }
  44646. },
  44647. },
  44648. [
  44649. {
  44650. name: "Base Height",
  44651. height: math.unit(8 + 5/12, "feet"),
  44652. default: true
  44653. },
  44654. {
  44655. name: "Macro",
  44656. height: math.unit(100, "feet")
  44657. },
  44658. {
  44659. name: "Max",
  44660. height: math.unit(3280, "feet")
  44661. },
  44662. ]
  44663. ))
  44664. characterMakers.push(() => makeCharacter(
  44665. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44666. {
  44667. front: {
  44668. height: math.unit(6 + 8/12, "feet"),
  44669. weight: math.unit(250, "lb"),
  44670. name: "Front",
  44671. image: {
  44672. source: "./media/characters/ztragon/front.svg",
  44673. extra: 1825/1684,
  44674. bottom: 98/1923
  44675. }
  44676. },
  44677. },
  44678. [
  44679. {
  44680. name: "Normal",
  44681. height: math.unit(6 + 8/12, "feet"),
  44682. default: true
  44683. },
  44684. {
  44685. name: "Macro",
  44686. height: math.unit(80, "feet")
  44687. },
  44688. ]
  44689. ))
  44690. characterMakers.push(() => makeCharacter(
  44691. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44692. {
  44693. front: {
  44694. height: math.unit(10.4, "feet"),
  44695. weight: math.unit(2, "tons"),
  44696. name: "Front",
  44697. image: {
  44698. source: "./media/characters/yesenia/front.svg",
  44699. extra: 1479/1474,
  44700. bottom: 233/1712
  44701. }
  44702. },
  44703. },
  44704. [
  44705. {
  44706. name: "Normal",
  44707. height: math.unit(10.4, "feet"),
  44708. default: true
  44709. },
  44710. ]
  44711. ))
  44712. characterMakers.push(() => makeCharacter(
  44713. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44714. {
  44715. normal: {
  44716. height: math.unit(6 + 1/12, "feet"),
  44717. weight: math.unit(180, "lb"),
  44718. name: "Normal",
  44719. image: {
  44720. source: "./media/characters/leanne-lycheborne/normal.svg",
  44721. extra: 1748/1660,
  44722. bottom: 98/1846
  44723. }
  44724. },
  44725. were: {
  44726. height: math.unit(12, "feet"),
  44727. weight: math.unit(1600, "lb"),
  44728. name: "Were",
  44729. image: {
  44730. source: "./media/characters/leanne-lycheborne/were.svg",
  44731. extra: 1485/1432,
  44732. bottom: 66/1551
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Normal",
  44739. height: math.unit(6 + 1/12, "feet"),
  44740. default: true
  44741. },
  44742. ]
  44743. ))
  44744. characterMakers.push(() => makeCharacter(
  44745. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44746. {
  44747. side: {
  44748. height: math.unit(13, "feet"),
  44749. name: "Side",
  44750. image: {
  44751. source: "./media/characters/kira-tyler/side.svg",
  44752. extra: 693/393,
  44753. bottom: 58/751
  44754. }
  44755. },
  44756. },
  44757. [
  44758. {
  44759. name: "Normal",
  44760. height: math.unit(13, "feet"),
  44761. default: true
  44762. },
  44763. ]
  44764. ))
  44765. characterMakers.push(() => makeCharacter(
  44766. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44767. {
  44768. front: {
  44769. height: math.unit(10.3, "feet"),
  44770. weight: math.unit(150, "lb"),
  44771. name: "Front",
  44772. image: {
  44773. source: "./media/characters/blaze/front.svg",
  44774. extra: 1378/1286,
  44775. bottom: 172/1550
  44776. }
  44777. },
  44778. },
  44779. [
  44780. {
  44781. name: "Normal",
  44782. height: math.unit(10.3, "feet"),
  44783. default: true
  44784. },
  44785. ]
  44786. ))
  44787. characterMakers.push(() => makeCharacter(
  44788. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44789. {
  44790. side: {
  44791. height: math.unit(2, "meters"),
  44792. weight: math.unit(400, "kg"),
  44793. name: "Side",
  44794. image: {
  44795. source: "./media/characters/anu/side.svg",
  44796. extra: 506/394,
  44797. bottom: 18/524
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Humanoid",
  44804. height: math.unit(2, "meters")
  44805. },
  44806. {
  44807. name: "Normal",
  44808. height: math.unit(5, "meters"),
  44809. default: true
  44810. },
  44811. ]
  44812. ))
  44813. characterMakers.push(() => makeCharacter(
  44814. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44815. {
  44816. front: {
  44817. height: math.unit(5 + 5/12, "feet"),
  44818. weight: math.unit(170, "lb"),
  44819. name: "Front",
  44820. image: {
  44821. source: "./media/characters/synx-the-lynx/front.svg",
  44822. extra: 1893/1745,
  44823. bottom: 17/1910
  44824. }
  44825. },
  44826. side: {
  44827. height: math.unit(5 + 5/12, "feet"),
  44828. weight: math.unit(170, "lb"),
  44829. name: "Side",
  44830. image: {
  44831. source: "./media/characters/synx-the-lynx/side.svg",
  44832. extra: 1884/1740,
  44833. bottom: 39/1923
  44834. }
  44835. },
  44836. back: {
  44837. height: math.unit(5 + 5/12, "feet"),
  44838. weight: math.unit(170, "lb"),
  44839. name: "Back",
  44840. image: {
  44841. source: "./media/characters/synx-the-lynx/back.svg",
  44842. extra: 1903/1755,
  44843. bottom: 14/1917
  44844. }
  44845. },
  44846. },
  44847. [
  44848. {
  44849. name: "Normal",
  44850. height: math.unit(5 + 5/12, "feet"),
  44851. default: true
  44852. },
  44853. ]
  44854. ))
  44855. characterMakers.push(() => makeCharacter(
  44856. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44857. {
  44858. back: {
  44859. height: math.unit(15, "feet"),
  44860. name: "Back",
  44861. image: {
  44862. source: "./media/characters/nadezda-fex/back.svg",
  44863. extra: 1695/1481,
  44864. bottom: 25/1720
  44865. }
  44866. },
  44867. },
  44868. [
  44869. {
  44870. name: "Normal",
  44871. height: math.unit(15, "feet"),
  44872. default: true
  44873. },
  44874. {
  44875. name: "Macro",
  44876. height: math.unit(2.5, "miles")
  44877. },
  44878. {
  44879. name: "Goddess",
  44880. height: math.unit(2, "multiverses")
  44881. },
  44882. ]
  44883. ))
  44884. characterMakers.push(() => makeCharacter(
  44885. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44886. {
  44887. front: {
  44888. height: math.unit(216, "cm"),
  44889. name: "Front",
  44890. image: {
  44891. source: "./media/characters/lev/front.svg",
  44892. extra: 1728/1670,
  44893. bottom: 82/1810
  44894. }
  44895. },
  44896. back: {
  44897. height: math.unit(216, "cm"),
  44898. name: "Back",
  44899. image: {
  44900. source: "./media/characters/lev/back.svg",
  44901. extra: 1738/1675,
  44902. bottom: 24/1762
  44903. }
  44904. },
  44905. dressed: {
  44906. height: math.unit(216, "cm"),
  44907. name: "Dressed",
  44908. image: {
  44909. source: "./media/characters/lev/dressed.svg",
  44910. extra: 1397/1351,
  44911. bottom: 73/1470
  44912. }
  44913. },
  44914. head: {
  44915. height: math.unit(0.51, "meter"),
  44916. name: "Head",
  44917. image: {
  44918. source: "./media/characters/lev/head.svg"
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Normal",
  44925. height: math.unit(216, "cm"),
  44926. default: true
  44927. },
  44928. {
  44929. name: "Relatively Macro",
  44930. height: math.unit(80, "meters")
  44931. },
  44932. {
  44933. name: "Megamacro",
  44934. height: math.unit(21600, "meters")
  44935. },
  44936. {
  44937. name: "Megamacro+",
  44938. height: math.unit(64800, "meters")
  44939. },
  44940. ]
  44941. ))
  44942. characterMakers.push(() => makeCharacter(
  44943. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44944. {
  44945. front: {
  44946. height: math.unit(2, "meters"),
  44947. weight: math.unit(80, "kg"),
  44948. name: "Front",
  44949. image: {
  44950. source: "./media/characters/moka/front.svg",
  44951. extra: 1337/1255,
  44952. bottom: 58/1395
  44953. }
  44954. },
  44955. },
  44956. [
  44957. {
  44958. name: "Micro",
  44959. height: math.unit(15, "cm")
  44960. },
  44961. {
  44962. name: "Normal",
  44963. height: math.unit(2, "meters"),
  44964. default: true
  44965. },
  44966. {
  44967. name: "Macro",
  44968. height: math.unit(20, "meters"),
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44974. {
  44975. front: {
  44976. height: math.unit(9, "feet"),
  44977. weight: math.unit(240, "lb"),
  44978. name: "Front",
  44979. image: {
  44980. source: "./media/characters/kuzco/front.svg",
  44981. extra: 1593/1487,
  44982. bottom: 32/1625
  44983. }
  44984. },
  44985. side: {
  44986. height: math.unit(9, "feet"),
  44987. weight: math.unit(240, "lb"),
  44988. name: "Side",
  44989. image: {
  44990. source: "./media/characters/kuzco/side.svg",
  44991. extra: 1575/1485,
  44992. bottom: 30/1605
  44993. }
  44994. },
  44995. back: {
  44996. height: math.unit(9, "feet"),
  44997. weight: math.unit(240, "lb"),
  44998. name: "Back",
  44999. image: {
  45000. source: "./media/characters/kuzco/back.svg",
  45001. extra: 1603/1514,
  45002. bottom: 14/1617
  45003. }
  45004. },
  45005. },
  45006. [
  45007. {
  45008. name: "Normal",
  45009. height: math.unit(9, "feet"),
  45010. default: true
  45011. },
  45012. ]
  45013. ))
  45014. characterMakers.push(() => makeCharacter(
  45015. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45016. {
  45017. side: {
  45018. height: math.unit(2, "meters"),
  45019. weight: math.unit(300, "kg"),
  45020. name: "Side",
  45021. image: {
  45022. source: "./media/characters/ceruleus/side.svg",
  45023. extra: 1068/974,
  45024. bottom: 126/1194
  45025. }
  45026. },
  45027. },
  45028. [
  45029. {
  45030. name: "Normal",
  45031. height: math.unit(16, "meters"),
  45032. default: true
  45033. },
  45034. ]
  45035. ))
  45036. characterMakers.push(() => makeCharacter(
  45037. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45038. {
  45039. front: {
  45040. height: math.unit(9, "feet"),
  45041. weight: math.unit(500, "kg"),
  45042. name: "Front",
  45043. image: {
  45044. source: "./media/characters/acouya/front.svg",
  45045. extra: 1660/1473,
  45046. bottom: 28/1688
  45047. }
  45048. },
  45049. },
  45050. [
  45051. {
  45052. name: "Normal",
  45053. height: math.unit(9, "feet"),
  45054. default: true
  45055. },
  45056. ]
  45057. ))
  45058. characterMakers.push(() => makeCharacter(
  45059. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45060. {
  45061. front: {
  45062. height: math.unit(5 + 6/12, "feet"),
  45063. weight: math.unit(195, "lb"),
  45064. name: "Front",
  45065. image: {
  45066. source: "./media/characters/vant/front.svg",
  45067. extra: 1396/1320,
  45068. bottom: 20/1416
  45069. }
  45070. },
  45071. back: {
  45072. height: math.unit(5 + 6/12, "feet"),
  45073. weight: math.unit(195, "lb"),
  45074. name: "Back",
  45075. image: {
  45076. source: "./media/characters/vant/back.svg",
  45077. extra: 1396/1320,
  45078. bottom: 20/1416
  45079. }
  45080. },
  45081. maw: {
  45082. height: math.unit(0.75, "feet"),
  45083. name: "Maw",
  45084. image: {
  45085. source: "./media/characters/vant/maw.svg"
  45086. }
  45087. },
  45088. paw: {
  45089. height: math.unit(1.07, "feet"),
  45090. name: "Paw",
  45091. image: {
  45092. source: "./media/characters/vant/paw.svg"
  45093. }
  45094. },
  45095. },
  45096. [
  45097. {
  45098. name: "Micro",
  45099. height: math.unit(0.25, "inches")
  45100. },
  45101. {
  45102. name: "Normal",
  45103. height: math.unit(5 + 6/12, "feet"),
  45104. default: true
  45105. },
  45106. {
  45107. name: "Macro",
  45108. height: math.unit(75, "feet")
  45109. },
  45110. ]
  45111. ))
  45112. characterMakers.push(() => makeCharacter(
  45113. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45114. {
  45115. front: {
  45116. height: math.unit(30, "meters"),
  45117. weight: math.unit(363, "tons"),
  45118. name: "Front",
  45119. image: {
  45120. source: "./media/characters/ahra/front.svg",
  45121. extra: 1914/1814,
  45122. bottom: 46/1960
  45123. }
  45124. },
  45125. },
  45126. [
  45127. {
  45128. name: "Macro",
  45129. height: math.unit(30, "meters"),
  45130. default: true
  45131. },
  45132. ]
  45133. ))
  45134. characterMakers.push(() => makeCharacter(
  45135. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45136. {
  45137. undressed: {
  45138. height: math.unit(2, "m"),
  45139. weight: math.unit(250, "kg"),
  45140. name: "Undressed",
  45141. image: {
  45142. source: "./media/characters/coriander/undressed.svg",
  45143. extra: 1757/1606,
  45144. bottom: 107/1864
  45145. }
  45146. },
  45147. dressed: {
  45148. height: math.unit(2, "m"),
  45149. weight: math.unit(250, "kg"),
  45150. name: "Dressed",
  45151. image: {
  45152. source: "./media/characters/coriander/dressed.svg",
  45153. extra: 1757/1606,
  45154. bottom: 107/1864
  45155. }
  45156. },
  45157. },
  45158. [
  45159. {
  45160. name: "Normal",
  45161. height: math.unit(4, "meters"),
  45162. default: true
  45163. },
  45164. {
  45165. name: "XL",
  45166. height: math.unit(6, "meters")
  45167. },
  45168. {
  45169. name: "XXL",
  45170. height: math.unit(8, "meters")
  45171. },
  45172. ]
  45173. ))
  45174. characterMakers.push(() => makeCharacter(
  45175. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45176. {
  45177. front: {
  45178. height: math.unit(6, "feet"),
  45179. name: "Front",
  45180. image: {
  45181. source: "./media/characters/syrinx/front.svg",
  45182. extra: 1557/1259,
  45183. bottom: 171/1728
  45184. }
  45185. },
  45186. },
  45187. [
  45188. {
  45189. name: "Normal",
  45190. height: math.unit(6 + 3/12, "feet"),
  45191. default: true
  45192. },
  45193. ]
  45194. ))
  45195. characterMakers.push(() => makeCharacter(
  45196. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45197. {
  45198. front: {
  45199. height: math.unit(11 + 6/12, "feet"),
  45200. weight: math.unit(1.5, "tons"),
  45201. name: "Front",
  45202. image: {
  45203. source: "./media/characters/bor/front.svg",
  45204. extra: 1189/1109,
  45205. bottom: 170/1359
  45206. }
  45207. },
  45208. },
  45209. [
  45210. {
  45211. name: "Normal",
  45212. height: math.unit(11 + 6/12, "feet"),
  45213. default: true
  45214. },
  45215. {
  45216. name: "Macro",
  45217. height: math.unit(32 + 9/12, "feet")
  45218. },
  45219. ]
  45220. ))
  45221. characterMakers.push(() => makeCharacter(
  45222. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45223. {
  45224. anthro: {
  45225. height: math.unit(9, "feet"),
  45226. weight: math.unit(2076, "lb"),
  45227. name: "Anthro",
  45228. image: {
  45229. source: "./media/characters/abacus/anthro.svg",
  45230. extra: 1540/1494,
  45231. bottom: 233/1773
  45232. }
  45233. },
  45234. pigeon: {
  45235. height: math.unit(1, "feet"),
  45236. name: "Pigeon",
  45237. image: {
  45238. source: "./media/characters/abacus/pigeon.svg",
  45239. extra: 528/525,
  45240. bottom: 46/574
  45241. }
  45242. },
  45243. },
  45244. [
  45245. {
  45246. name: "Normal",
  45247. height: math.unit(9, "feet"),
  45248. default: true
  45249. },
  45250. ]
  45251. ))
  45252. characterMakers.push(() => makeCharacter(
  45253. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45254. {
  45255. side: {
  45256. height: math.unit(6, "feet"),
  45257. name: "Side",
  45258. image: {
  45259. source: "./media/characters/delkhan/side.svg",
  45260. extra: 1884/1786,
  45261. bottom: 308/2192
  45262. }
  45263. },
  45264. head: {
  45265. height: math.unit(3.38, "feet"),
  45266. name: "Head",
  45267. image: {
  45268. source: "./media/characters/delkhan/head.svg"
  45269. }
  45270. },
  45271. },
  45272. [
  45273. {
  45274. name: "Normal",
  45275. height: math.unit(72, "feet"),
  45276. default: true
  45277. },
  45278. {
  45279. name: "Giant",
  45280. height: math.unit(172, "feet")
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45286. {
  45287. standing: {
  45288. height: math.unit(6, "feet"),
  45289. name: "Standing",
  45290. image: {
  45291. source: "./media/characters/euchidat/standing.svg",
  45292. extra: 1612/1553,
  45293. bottom: 116/1728
  45294. }
  45295. },
  45296. leaning: {
  45297. height: math.unit(6, "feet"),
  45298. name: "Leaning",
  45299. image: {
  45300. source: "./media/characters/euchidat/leaning.svg",
  45301. extra: 1719/1674,
  45302. bottom: 27/1746
  45303. }
  45304. },
  45305. },
  45306. [
  45307. {
  45308. name: "Normal",
  45309. height: math.unit(175, "feet"),
  45310. default: true
  45311. },
  45312. {
  45313. name: "Megamacro",
  45314. height: math.unit(190, "miles")
  45315. },
  45316. {
  45317. name: "Gigamacro",
  45318. height: math.unit(190000, "miles")
  45319. },
  45320. ]
  45321. ))
  45322. characterMakers.push(() => makeCharacter(
  45323. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45324. {
  45325. front: {
  45326. height: math.unit(6, "feet"),
  45327. weight: math.unit(150, "lb"),
  45328. name: "Front",
  45329. image: {
  45330. source: "./media/characters/rebecca-stack/front.svg",
  45331. extra: 1256/1201,
  45332. bottom: 18/1274
  45333. }
  45334. },
  45335. },
  45336. [
  45337. {
  45338. name: "Normal",
  45339. height: math.unit(5 + 8/12, "feet"),
  45340. default: true
  45341. },
  45342. {
  45343. name: "Demolitionist",
  45344. height: math.unit(200, "feet")
  45345. },
  45346. {
  45347. name: "Out of Control",
  45348. height: math.unit(2, "miles")
  45349. },
  45350. {
  45351. name: "Giga",
  45352. height: math.unit(7200, "miles")
  45353. },
  45354. ]
  45355. ))
  45356. characterMakers.push(() => makeCharacter(
  45357. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45358. {
  45359. front: {
  45360. height: math.unit(6, "feet"),
  45361. weight: math.unit(150, "lb"),
  45362. name: "Front",
  45363. image: {
  45364. source: "./media/characters/jenny-cartwright/front.svg",
  45365. extra: 1384/1376,
  45366. bottom: 58/1442
  45367. }
  45368. },
  45369. },
  45370. [
  45371. {
  45372. name: "Normal",
  45373. height: math.unit(6 + 7/12, "feet"),
  45374. default: true
  45375. },
  45376. {
  45377. name: "Librarian",
  45378. height: math.unit(55, "feet")
  45379. },
  45380. {
  45381. name: "Sightseer",
  45382. height: math.unit(50, "miles")
  45383. },
  45384. {
  45385. name: "Giga",
  45386. height: math.unit(30000, "miles")
  45387. },
  45388. ]
  45389. ))
  45390. characterMakers.push(() => makeCharacter(
  45391. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45392. {
  45393. nude: {
  45394. height: math.unit(8, "feet"),
  45395. weight: math.unit(225, "lb"),
  45396. name: "Nude",
  45397. image: {
  45398. source: "./media/characters/marvy/nude.svg",
  45399. extra: 1900/1683,
  45400. bottom: 89/1989
  45401. }
  45402. },
  45403. dressed: {
  45404. height: math.unit(8, "feet"),
  45405. weight: math.unit(225, "lb"),
  45406. name: "Dressed",
  45407. image: {
  45408. source: "./media/characters/marvy/dressed.svg",
  45409. extra: 1900/1683,
  45410. bottom: 89/1989
  45411. }
  45412. },
  45413. head: {
  45414. height: math.unit(2.85, "feet"),
  45415. name: "Head",
  45416. image: {
  45417. source: "./media/characters/marvy/head.svg"
  45418. }
  45419. },
  45420. },
  45421. [
  45422. {
  45423. name: "Normal",
  45424. height: math.unit(8, "feet"),
  45425. default: true
  45426. },
  45427. ]
  45428. ))
  45429. characterMakers.push(() => makeCharacter(
  45430. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45431. {
  45432. front: {
  45433. height: math.unit(8, "feet"),
  45434. weight: math.unit(250, "lb"),
  45435. name: "Front",
  45436. image: {
  45437. source: "./media/characters/leah/front.svg",
  45438. extra: 1257/1149,
  45439. bottom: 109/1366
  45440. }
  45441. },
  45442. },
  45443. [
  45444. {
  45445. name: "Normal",
  45446. height: math.unit(8, "feet"),
  45447. default: true
  45448. },
  45449. {
  45450. name: "Minimacro",
  45451. height: math.unit(40, "feet")
  45452. },
  45453. {
  45454. name: "Macro",
  45455. height: math.unit(124, "feet")
  45456. },
  45457. {
  45458. name: "Megamacro",
  45459. height: math.unit(850, "feet")
  45460. },
  45461. ]
  45462. ))
  45463. characterMakers.push(() => makeCharacter(
  45464. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45465. {
  45466. side: {
  45467. height: math.unit(13 + 6/12, "feet"),
  45468. weight: math.unit(3200, "lb"),
  45469. name: "Side",
  45470. image: {
  45471. source: "./media/characters/alvir/side.svg",
  45472. extra: 896/589,
  45473. bottom: 26/922
  45474. }
  45475. },
  45476. },
  45477. [
  45478. {
  45479. name: "Normal",
  45480. height: math.unit(13 + 6/12, "feet"),
  45481. default: true
  45482. },
  45483. ]
  45484. ))
  45485. characterMakers.push(() => makeCharacter(
  45486. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45487. {
  45488. front: {
  45489. height: math.unit(5 + 4/12, "feet"),
  45490. weight: math.unit(236, "lb"),
  45491. name: "Front",
  45492. image: {
  45493. source: "./media/characters/zaina-khalil/front.svg",
  45494. extra: 1533/1485,
  45495. bottom: 94/1627
  45496. }
  45497. },
  45498. side: {
  45499. height: math.unit(5 + 4/12, "feet"),
  45500. weight: math.unit(236, "lb"),
  45501. name: "Side",
  45502. image: {
  45503. source: "./media/characters/zaina-khalil/side.svg",
  45504. extra: 1537/1498,
  45505. bottom: 66/1603
  45506. }
  45507. },
  45508. back: {
  45509. height: math.unit(5 + 4/12, "feet"),
  45510. weight: math.unit(236, "lb"),
  45511. name: "Back",
  45512. image: {
  45513. source: "./media/characters/zaina-khalil/back.svg",
  45514. extra: 1546/1494,
  45515. bottom: 89/1635
  45516. }
  45517. },
  45518. },
  45519. [
  45520. {
  45521. name: "Normal",
  45522. height: math.unit(5 + 4/12, "feet"),
  45523. default: true
  45524. },
  45525. ]
  45526. ))
  45527. characterMakers.push(() => makeCharacter(
  45528. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45529. {
  45530. side: {
  45531. height: math.unit(12, "feet"),
  45532. weight: math.unit(4000, "lb"),
  45533. name: "Side",
  45534. image: {
  45535. source: "./media/characters/terry/side.svg",
  45536. extra: 1518/1439,
  45537. bottom: 149/1667
  45538. }
  45539. },
  45540. },
  45541. [
  45542. {
  45543. name: "Normal",
  45544. height: math.unit(12, "feet"),
  45545. default: true
  45546. },
  45547. ]
  45548. ))
  45549. characterMakers.push(() => makeCharacter(
  45550. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45551. {
  45552. front: {
  45553. height: math.unit(12, "feet"),
  45554. weight: math.unit(1500, "lb"),
  45555. name: "Front",
  45556. image: {
  45557. source: "./media/characters/kahea/front.svg",
  45558. extra: 1722/1617,
  45559. bottom: 179/1901
  45560. }
  45561. },
  45562. },
  45563. [
  45564. {
  45565. name: "Normal",
  45566. height: math.unit(12, "feet"),
  45567. default: true
  45568. },
  45569. ]
  45570. ))
  45571. characterMakers.push(() => makeCharacter(
  45572. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45573. {
  45574. demonFront: {
  45575. height: math.unit(36, "feet"),
  45576. name: "Front",
  45577. image: {
  45578. source: "./media/characters/alex-xuria/demon-front.svg",
  45579. extra: 1705/1673,
  45580. bottom: 198/1903
  45581. },
  45582. form: "demon",
  45583. default: true
  45584. },
  45585. demonBack: {
  45586. height: math.unit(36, "feet"),
  45587. name: "Back",
  45588. image: {
  45589. source: "./media/characters/alex-xuria/demon-back.svg",
  45590. extra: 1725/1693,
  45591. bottom: 70/1795
  45592. },
  45593. form: "demon"
  45594. },
  45595. demonHead: {
  45596. height: math.unit(2.14, "meters"),
  45597. name: "Head",
  45598. image: {
  45599. source: "./media/characters/alex-xuria/demon-head.svg"
  45600. },
  45601. form: "demon"
  45602. },
  45603. demonHand: {
  45604. height: math.unit(1.61, "meters"),
  45605. name: "Hand",
  45606. image: {
  45607. source: "./media/characters/alex-xuria/demon-hand.svg"
  45608. },
  45609. form: "demon"
  45610. },
  45611. demonPaw: {
  45612. height: math.unit(1.35, "meters"),
  45613. name: "Paw",
  45614. image: {
  45615. source: "./media/characters/alex-xuria/demon-paw.svg"
  45616. },
  45617. form: "demon"
  45618. },
  45619. demonFoot: {
  45620. height: math.unit(2.2, "meters"),
  45621. name: "Foot",
  45622. image: {
  45623. source: "./media/characters/alex-xuria/demon-foot.svg"
  45624. },
  45625. form: "demon"
  45626. },
  45627. demonCock: {
  45628. height: math.unit(1.74, "meters"),
  45629. name: "Cock",
  45630. image: {
  45631. source: "./media/characters/alex-xuria/demon-cock.svg"
  45632. },
  45633. form: "demon"
  45634. },
  45635. demonTailClosed: {
  45636. height: math.unit(1.47, "meters"),
  45637. name: "Tail (Closed)",
  45638. image: {
  45639. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45640. },
  45641. form: "demon"
  45642. },
  45643. demonTailOpen: {
  45644. height: math.unit(2.85, "meters"),
  45645. name: "Tail (Open)",
  45646. image: {
  45647. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45648. },
  45649. form: "demon"
  45650. },
  45651. incubusFront: {
  45652. height: math.unit(12, "feet"),
  45653. name: "Front",
  45654. image: {
  45655. source: "./media/characters/alex-xuria/incubus-front.svg",
  45656. extra: 1754/1677,
  45657. bottom: 125/1879
  45658. },
  45659. form: "incubus",
  45660. default: true
  45661. },
  45662. incubusBack: {
  45663. height: math.unit(12, "feet"),
  45664. name: "Back",
  45665. image: {
  45666. source: "./media/characters/alex-xuria/incubus-back.svg",
  45667. extra: 1702/1647,
  45668. bottom: 30/1732
  45669. },
  45670. form: "incubus"
  45671. },
  45672. incubusHead: {
  45673. height: math.unit(3.45, "feet"),
  45674. name: "Head",
  45675. image: {
  45676. source: "./media/characters/alex-xuria/incubus-head.svg"
  45677. },
  45678. form: "incubus"
  45679. },
  45680. rabbitFront: {
  45681. height: math.unit(6, "feet"),
  45682. name: "Front",
  45683. image: {
  45684. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45685. extra: 1369/1349,
  45686. bottom: 45/1414
  45687. },
  45688. form: "rabbit",
  45689. default: true
  45690. },
  45691. rabbitSide: {
  45692. height: math.unit(6, "feet"),
  45693. name: "Side",
  45694. image: {
  45695. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45696. extra: 1370/1356,
  45697. bottom: 37/1407
  45698. },
  45699. form: "rabbit"
  45700. },
  45701. rabbitBack: {
  45702. height: math.unit(6, "feet"),
  45703. name: "Back",
  45704. image: {
  45705. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45706. extra: 1375/1358,
  45707. bottom: 43/1418
  45708. },
  45709. form: "rabbit"
  45710. },
  45711. },
  45712. [
  45713. {
  45714. name: "Normal",
  45715. height: math.unit(6, "feet"),
  45716. default: true,
  45717. form: "rabbit"
  45718. },
  45719. {
  45720. name: "Incubus",
  45721. height: math.unit(12, "feet"),
  45722. default: true,
  45723. form: "incubus"
  45724. },
  45725. {
  45726. name: "Demon",
  45727. height: math.unit(36, "feet"),
  45728. default: true,
  45729. form: "demon"
  45730. }
  45731. ],
  45732. {
  45733. "demon": {
  45734. name: "Demon",
  45735. default: true
  45736. },
  45737. "incubus": {
  45738. name: "Incubus",
  45739. },
  45740. "rabbit": {
  45741. name: "Rabbit"
  45742. }
  45743. }
  45744. ))
  45745. characterMakers.push(() => makeCharacter(
  45746. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45747. {
  45748. front: {
  45749. height: math.unit(7 + 5/12, "feet"),
  45750. weight: math.unit(510, "lb"),
  45751. name: "Front",
  45752. image: {
  45753. source: "./media/characters/syrup/front.svg",
  45754. extra: 932/916,
  45755. bottom: 26/958
  45756. }
  45757. },
  45758. },
  45759. [
  45760. {
  45761. name: "Normal",
  45762. height: math.unit(7 + 5/12, "feet"),
  45763. default: true
  45764. },
  45765. {
  45766. name: "Big",
  45767. height: math.unit(50, "feet")
  45768. },
  45769. {
  45770. name: "Macro",
  45771. height: math.unit(300, "feet")
  45772. },
  45773. {
  45774. name: "Megamacro",
  45775. height: math.unit(1, "mile")
  45776. },
  45777. ]
  45778. ))
  45779. characterMakers.push(() => makeCharacter(
  45780. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45781. {
  45782. front: {
  45783. height: math.unit(6 + 9/12, "feet"),
  45784. name: "Front",
  45785. image: {
  45786. source: "./media/characters/zeimne/front.svg",
  45787. extra: 1969/1806,
  45788. bottom: 53/2022
  45789. }
  45790. },
  45791. },
  45792. [
  45793. {
  45794. name: "Normal",
  45795. height: math.unit(6 + 9/12, "feet"),
  45796. default: true
  45797. },
  45798. {
  45799. name: "Giant",
  45800. height: math.unit(550, "feet")
  45801. },
  45802. {
  45803. name: "Mega",
  45804. height: math.unit(3, "miles")
  45805. },
  45806. {
  45807. name: "Giga",
  45808. height: math.unit(250, "miles")
  45809. },
  45810. {
  45811. name: "Tera",
  45812. height: math.unit(1, "AU")
  45813. },
  45814. ]
  45815. ))
  45816. characterMakers.push(() => makeCharacter(
  45817. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45818. {
  45819. front: {
  45820. height: math.unit(5 + 2/12, "feet"),
  45821. name: "Front",
  45822. image: {
  45823. source: "./media/characters/grar/front.svg",
  45824. extra: 1331/1119,
  45825. bottom: 60/1391
  45826. }
  45827. },
  45828. back: {
  45829. height: math.unit(5 + 2/12, "feet"),
  45830. name: "Back",
  45831. image: {
  45832. source: "./media/characters/grar/back.svg",
  45833. extra: 1385/1169,
  45834. bottom: 23/1408
  45835. }
  45836. },
  45837. },
  45838. [
  45839. {
  45840. name: "Normal",
  45841. height: math.unit(5 + 2/12, "feet"),
  45842. default: true
  45843. },
  45844. ]
  45845. ))
  45846. characterMakers.push(() => makeCharacter(
  45847. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45848. {
  45849. front: {
  45850. height: math.unit(13 + 7/12, "feet"),
  45851. weight: math.unit(2200, "lb"),
  45852. name: "Front",
  45853. image: {
  45854. source: "./media/characters/endraya/front.svg",
  45855. extra: 1289/1215,
  45856. bottom: 50/1339
  45857. }
  45858. },
  45859. nude: {
  45860. height: math.unit(13 + 7/12, "feet"),
  45861. weight: math.unit(2200, "lb"),
  45862. name: "Nude",
  45863. image: {
  45864. source: "./media/characters/endraya/nude.svg",
  45865. extra: 1247/1171,
  45866. bottom: 40/1287
  45867. }
  45868. },
  45869. head: {
  45870. height: math.unit(2.6, "feet"),
  45871. name: "Head",
  45872. image: {
  45873. source: "./media/characters/endraya/head.svg"
  45874. }
  45875. },
  45876. slit: {
  45877. height: math.unit(3.4, "feet"),
  45878. name: "Slit",
  45879. image: {
  45880. source: "./media/characters/endraya/slit.svg"
  45881. }
  45882. },
  45883. },
  45884. [
  45885. {
  45886. name: "Normal",
  45887. height: math.unit(13 + 7/12, "feet"),
  45888. default: true
  45889. },
  45890. {
  45891. name: "Macro",
  45892. height: math.unit(200, "feet")
  45893. },
  45894. ]
  45895. ))
  45896. characterMakers.push(() => makeCharacter(
  45897. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45898. {
  45899. front: {
  45900. height: math.unit(412, "meters"),
  45901. name: "Front",
  45902. image: {
  45903. source: "./media/characters/rodryana/front.svg",
  45904. extra: 2002/1921,
  45905. bottom: 53/2055
  45906. }
  45907. },
  45908. back: {
  45909. height: math.unit(412, "meters"),
  45910. name: "Back",
  45911. image: {
  45912. source: "./media/characters/rodryana/back.svg",
  45913. extra: 1993/1926,
  45914. bottom: 48/2041
  45915. }
  45916. },
  45917. maw: {
  45918. height: math.unit(45, "meters"),
  45919. name: "Maw",
  45920. image: {
  45921. source: "./media/characters/rodryana/maw.svg"
  45922. }
  45923. },
  45924. slit: {
  45925. height: math.unit(72, "meters"),
  45926. name: "Slit",
  45927. image: {
  45928. source: "./media/characters/rodryana/slit.svg"
  45929. }
  45930. },
  45931. },
  45932. [
  45933. {
  45934. name: "Macro",
  45935. height: math.unit(412, "meters"),
  45936. default: true
  45937. },
  45938. ]
  45939. ))
  45940. characterMakers.push(() => makeCharacter(
  45941. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45942. {
  45943. front: {
  45944. height: math.unit(6, "feet"),
  45945. weight: math.unit(1000, "lb"),
  45946. name: "Front",
  45947. image: {
  45948. source: "./media/characters/asaya/front.svg",
  45949. extra: 1460/1200,
  45950. bottom: 71/1531
  45951. }
  45952. },
  45953. },
  45954. [
  45955. {
  45956. name: "Normal",
  45957. height: math.unit(8, "km"),
  45958. default: true
  45959. },
  45960. ]
  45961. ))
  45962. characterMakers.push(() => makeCharacter(
  45963. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45964. {
  45965. front: {
  45966. height: math.unit(3.5, "meters"),
  45967. name: "Front",
  45968. image: {
  45969. source: "./media/characters/sarzu-and-israz/front.svg",
  45970. extra: 1570/1558,
  45971. bottom: 150/1720
  45972. },
  45973. },
  45974. back: {
  45975. height: math.unit(3.5, "meters"),
  45976. name: "Back",
  45977. image: {
  45978. source: "./media/characters/sarzu-and-israz/back.svg",
  45979. extra: 1523/1509,
  45980. bottom: 132/1655
  45981. },
  45982. },
  45983. frontFemale: {
  45984. height: math.unit(3.5, "meters"),
  45985. name: "Front (Female)",
  45986. image: {
  45987. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45988. extra: 1570/1558,
  45989. bottom: 150/1720
  45990. },
  45991. },
  45992. frontHerm: {
  45993. height: math.unit(3.5, "meters"),
  45994. name: "Front (Herm)",
  45995. image: {
  45996. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45997. extra: 1570/1558,
  45998. bottom: 150/1720
  45999. },
  46000. },
  46001. },
  46002. [
  46003. {
  46004. name: "Normal",
  46005. height: math.unit(3.5, "meters"),
  46006. default: true,
  46007. },
  46008. {
  46009. name: "Macro",
  46010. height: math.unit(65.5, "meters"),
  46011. },
  46012. ],
  46013. ))
  46014. characterMakers.push(() => makeCharacter(
  46015. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46016. {
  46017. front: {
  46018. height: math.unit(6, "feet"),
  46019. weight: math.unit(250, "lb"),
  46020. name: "Front",
  46021. image: {
  46022. source: "./media/characters/zenimma/front.svg",
  46023. extra: 1346/1320,
  46024. bottom: 58/1404
  46025. }
  46026. },
  46027. back: {
  46028. height: math.unit(6, "feet"),
  46029. weight: math.unit(250, "lb"),
  46030. name: "Back",
  46031. image: {
  46032. source: "./media/characters/zenimma/back.svg",
  46033. extra: 1324/1308,
  46034. bottom: 44/1368
  46035. }
  46036. },
  46037. dick: {
  46038. height: math.unit(1.44, "feet"),
  46039. name: "Dick",
  46040. image: {
  46041. source: "./media/characters/zenimma/dick.svg"
  46042. }
  46043. },
  46044. },
  46045. [
  46046. {
  46047. name: "Canon Height",
  46048. height: math.unit(66, "miles"),
  46049. default: true
  46050. },
  46051. ]
  46052. ))
  46053. characterMakers.push(() => makeCharacter(
  46054. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46055. {
  46056. nude: {
  46057. height: math.unit(6, "feet"),
  46058. weight: math.unit(150, "lb"),
  46059. name: "Nude",
  46060. image: {
  46061. source: "./media/characters/shavon/nude.svg",
  46062. extra: 1242/1096,
  46063. bottom: 98/1340
  46064. }
  46065. },
  46066. dressed: {
  46067. height: math.unit(6, "feet"),
  46068. weight: math.unit(150, "lb"),
  46069. name: "Dressed",
  46070. image: {
  46071. source: "./media/characters/shavon/dressed.svg",
  46072. extra: 1242/1096,
  46073. bottom: 98/1340
  46074. }
  46075. },
  46076. },
  46077. [
  46078. {
  46079. name: "Macro",
  46080. height: math.unit(255, "feet"),
  46081. default: true
  46082. },
  46083. ]
  46084. ))
  46085. characterMakers.push(() => makeCharacter(
  46086. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46087. {
  46088. front: {
  46089. height: math.unit(6, "feet"),
  46090. name: "Front",
  46091. image: {
  46092. source: "./media/characters/steph/front.svg",
  46093. extra: 1430/1330,
  46094. bottom: 54/1484
  46095. }
  46096. },
  46097. },
  46098. [
  46099. {
  46100. name: "Normal",
  46101. height: math.unit(6, "feet"),
  46102. default: true
  46103. },
  46104. ]
  46105. ))
  46106. characterMakers.push(() => makeCharacter(
  46107. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46108. {
  46109. front: {
  46110. height: math.unit(9, "feet"),
  46111. weight: math.unit(400, "lb"),
  46112. name: "Front",
  46113. image: {
  46114. source: "./media/characters/kil'aman/front.svg",
  46115. extra: 1210/1159,
  46116. bottom: 109/1319
  46117. }
  46118. },
  46119. head: {
  46120. height: math.unit(2.14, "feet"),
  46121. name: "Head",
  46122. image: {
  46123. source: "./media/characters/kil'aman/head.svg"
  46124. }
  46125. },
  46126. maw: {
  46127. height: math.unit(1.21, "feet"),
  46128. name: "Maw",
  46129. image: {
  46130. source: "./media/characters/kil'aman/maw.svg"
  46131. }
  46132. },
  46133. foot: {
  46134. height: math.unit(1.7, "feet"),
  46135. name: "Foot",
  46136. image: {
  46137. source: "./media/characters/kil'aman/foot.svg"
  46138. }
  46139. },
  46140. dick: {
  46141. height: math.unit(2.1, "feet"),
  46142. name: "Dick",
  46143. image: {
  46144. source: "./media/characters/kil'aman/dick.svg"
  46145. }
  46146. },
  46147. },
  46148. [
  46149. {
  46150. name: "Normal",
  46151. height: math.unit(9, "feet")
  46152. },
  46153. {
  46154. name: "Canon Height",
  46155. height: math.unit(10, "miles"),
  46156. default: true
  46157. },
  46158. {
  46159. name: "Maximum",
  46160. height: math.unit(6e9, "miles")
  46161. },
  46162. ]
  46163. ))
  46164. characterMakers.push(() => makeCharacter(
  46165. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46166. {
  46167. front: {
  46168. height: math.unit(90, "feet"),
  46169. weight: math.unit(675000, "lb"),
  46170. name: "Front",
  46171. image: {
  46172. source: "./media/characters/qadan/front.svg",
  46173. extra: 1012/1004,
  46174. bottom: 78/1090
  46175. }
  46176. },
  46177. back: {
  46178. height: math.unit(90, "feet"),
  46179. weight: math.unit(675000, "lb"),
  46180. name: "Back",
  46181. image: {
  46182. source: "./media/characters/qadan/back.svg",
  46183. extra: 1042/1031,
  46184. bottom: 55/1097
  46185. }
  46186. },
  46187. armored: {
  46188. height: math.unit(90, "feet"),
  46189. weight: math.unit(675000, "lb"),
  46190. name: "Armored",
  46191. image: {
  46192. source: "./media/characters/qadan/armored.svg",
  46193. extra: 1047/1037,
  46194. bottom: 48/1095
  46195. }
  46196. },
  46197. },
  46198. [
  46199. {
  46200. name: "Normal",
  46201. height: math.unit(90, "feet"),
  46202. default: true
  46203. },
  46204. ]
  46205. ))
  46206. characterMakers.push(() => makeCharacter(
  46207. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46208. {
  46209. front: {
  46210. height: math.unit(6, "feet"),
  46211. weight: math.unit(225, "lb"),
  46212. name: "Front",
  46213. image: {
  46214. source: "./media/characters/brooke/front.svg",
  46215. extra: 1050/1010,
  46216. bottom: 66/1116
  46217. }
  46218. },
  46219. back: {
  46220. height: math.unit(6, "feet"),
  46221. weight: math.unit(225, "lb"),
  46222. name: "Back",
  46223. image: {
  46224. source: "./media/characters/brooke/back.svg",
  46225. extra: 1053/1013,
  46226. bottom: 41/1094
  46227. }
  46228. },
  46229. dressed: {
  46230. height: math.unit(6, "feet"),
  46231. weight: math.unit(225, "lb"),
  46232. name: "Dressed",
  46233. image: {
  46234. source: "./media/characters/brooke/dressed.svg",
  46235. extra: 1050/1010,
  46236. bottom: 66/1116
  46237. }
  46238. },
  46239. },
  46240. [
  46241. {
  46242. name: "Canon Height",
  46243. height: math.unit(500, "miles"),
  46244. default: true
  46245. },
  46246. ]
  46247. ))
  46248. characterMakers.push(() => makeCharacter(
  46249. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46250. {
  46251. front: {
  46252. height: math.unit(6 + 2/12, "feet"),
  46253. weight: math.unit(210, "lb"),
  46254. name: "Front",
  46255. image: {
  46256. source: "./media/characters/wubs/front.svg",
  46257. extra: 1345/1325,
  46258. bottom: 70/1415
  46259. }
  46260. },
  46261. back: {
  46262. height: math.unit(6 + 2/12, "feet"),
  46263. weight: math.unit(210, "lb"),
  46264. name: "Back",
  46265. image: {
  46266. source: "./media/characters/wubs/back.svg",
  46267. extra: 1296/1275,
  46268. bottom: 58/1354
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Normal",
  46275. height: math.unit(6 + 2/12, "feet"),
  46276. default: true
  46277. },
  46278. {
  46279. name: "Macro",
  46280. height: math.unit(1000, "feet")
  46281. },
  46282. {
  46283. name: "Megamacro",
  46284. height: math.unit(1, "mile")
  46285. },
  46286. ]
  46287. ))
  46288. characterMakers.push(() => makeCharacter(
  46289. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46290. {
  46291. front: {
  46292. height: math.unit(4, "feet"),
  46293. weight: math.unit(120, "lb"),
  46294. name: "Front",
  46295. image: {
  46296. source: "./media/characters/blue/front.svg",
  46297. extra: 1636/1525,
  46298. bottom: 43/1679
  46299. }
  46300. },
  46301. back: {
  46302. height: math.unit(4, "feet"),
  46303. weight: math.unit(120, "lb"),
  46304. name: "Back",
  46305. image: {
  46306. source: "./media/characters/blue/back.svg",
  46307. extra: 1660/1560,
  46308. bottom: 57/1717
  46309. }
  46310. },
  46311. paws: {
  46312. height: math.unit(0.826, "feet"),
  46313. name: "Paws",
  46314. image: {
  46315. source: "./media/characters/blue/paws.svg"
  46316. }
  46317. },
  46318. },
  46319. [
  46320. {
  46321. name: "Micro",
  46322. height: math.unit(3, "inches")
  46323. },
  46324. {
  46325. name: "Normal",
  46326. height: math.unit(4, "feet"),
  46327. default: true
  46328. },
  46329. {
  46330. name: "Femenine Form",
  46331. height: math.unit(14, "feet")
  46332. },
  46333. {
  46334. name: "Werebat Form",
  46335. height: math.unit(18, "feet")
  46336. },
  46337. ]
  46338. ))
  46339. characterMakers.push(() => makeCharacter(
  46340. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46341. {
  46342. female: {
  46343. height: math.unit(7 + 4/12, "feet"),
  46344. weight: math.unit(243, "lb"),
  46345. name: "Female",
  46346. image: {
  46347. source: "./media/characters/kaya/female.svg",
  46348. extra: 975/898,
  46349. bottom: 34/1009
  46350. }
  46351. },
  46352. herm: {
  46353. height: math.unit(7 + 4/12, "feet"),
  46354. weight: math.unit(243, "lb"),
  46355. name: "Herm",
  46356. image: {
  46357. source: "./media/characters/kaya/herm.svg",
  46358. extra: 975/898,
  46359. bottom: 34/1009
  46360. }
  46361. },
  46362. },
  46363. [
  46364. {
  46365. name: "Normal",
  46366. height: math.unit(7 + 4/12, "feet"),
  46367. default: true
  46368. },
  46369. ]
  46370. ))
  46371. characterMakers.push(() => makeCharacter(
  46372. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46373. {
  46374. female: {
  46375. height: math.unit(9 + 4/12, "feet"),
  46376. weight: math.unit(398, "lb"),
  46377. name: "Female",
  46378. image: {
  46379. source: "./media/characters/kassandra/female.svg",
  46380. extra: 908/839,
  46381. bottom: 61/969
  46382. }
  46383. },
  46384. intersex: {
  46385. height: math.unit(9 + 4/12, "feet"),
  46386. weight: math.unit(398, "lb"),
  46387. name: "Intersex",
  46388. image: {
  46389. source: "./media/characters/kassandra/intersex.svg",
  46390. extra: 908/839,
  46391. bottom: 61/969
  46392. }
  46393. },
  46394. },
  46395. [
  46396. {
  46397. name: "Normal",
  46398. height: math.unit(9 + 4/12, "feet"),
  46399. default: true
  46400. },
  46401. ]
  46402. ))
  46403. characterMakers.push(() => makeCharacter(
  46404. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46405. {
  46406. front: {
  46407. height: math.unit(3, "meters"),
  46408. name: "Front",
  46409. image: {
  46410. source: "./media/characters/amy/front.svg",
  46411. extra: 1380/1343,
  46412. bottom: 70/1450
  46413. }
  46414. },
  46415. back: {
  46416. height: math.unit(3, "meters"),
  46417. name: "Back",
  46418. image: {
  46419. source: "./media/characters/amy/back.svg",
  46420. extra: 1380/1347,
  46421. bottom: 66/1446
  46422. }
  46423. },
  46424. },
  46425. [
  46426. {
  46427. name: "Normal",
  46428. height: math.unit(3, "meters"),
  46429. default: true
  46430. },
  46431. ]
  46432. ))
  46433. characterMakers.push(() => makeCharacter(
  46434. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46435. {
  46436. side: {
  46437. height: math.unit(47, "cm"),
  46438. weight: math.unit(10.8, "kg"),
  46439. name: "Side",
  46440. image: {
  46441. source: "./media/characters/alphaschakal/side.svg",
  46442. extra: 1058/568,
  46443. bottom: 62/1120
  46444. }
  46445. },
  46446. back: {
  46447. height: math.unit(78, "cm"),
  46448. weight: math.unit(10.8, "kg"),
  46449. name: "Back",
  46450. image: {
  46451. source: "./media/characters/alphaschakal/back.svg",
  46452. extra: 1102/942,
  46453. bottom: 185/1287
  46454. }
  46455. },
  46456. head: {
  46457. height: math.unit(28, "cm"),
  46458. name: "Head",
  46459. image: {
  46460. source: "./media/characters/alphaschakal/head.svg",
  46461. extra: 696/508,
  46462. bottom: 0/696
  46463. }
  46464. },
  46465. paw: {
  46466. height: math.unit(16, "cm"),
  46467. name: "Paw",
  46468. image: {
  46469. source: "./media/characters/alphaschakal/paw.svg"
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Normal",
  46476. height: math.unit(47, "cm"),
  46477. default: true
  46478. },
  46479. {
  46480. name: "Macro",
  46481. height: math.unit(340, "cm")
  46482. },
  46483. ]
  46484. ))
  46485. characterMakers.push(() => makeCharacter(
  46486. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46487. {
  46488. front: {
  46489. height: math.unit(36, "earths"),
  46490. name: "Front",
  46491. image: {
  46492. source: "./media/characters/ecobyss/front.svg",
  46493. extra: 1282/1215,
  46494. bottom: 11/1293
  46495. }
  46496. },
  46497. back: {
  46498. height: math.unit(36, "earths"),
  46499. name: "Back",
  46500. image: {
  46501. source: "./media/characters/ecobyss/back.svg",
  46502. extra: 1291/1222,
  46503. bottom: 8/1299
  46504. }
  46505. },
  46506. },
  46507. [
  46508. {
  46509. name: "Normal",
  46510. height: math.unit(36, "earths"),
  46511. default: true
  46512. },
  46513. ]
  46514. ))
  46515. characterMakers.push(() => makeCharacter(
  46516. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46517. {
  46518. front: {
  46519. height: math.unit(12, "feet"),
  46520. name: "Front",
  46521. image: {
  46522. source: "./media/characters/vasuk/front.svg",
  46523. extra: 1326/1207,
  46524. bottom: 64/1390
  46525. }
  46526. },
  46527. },
  46528. [
  46529. {
  46530. name: "Normal",
  46531. height: math.unit(12, "feet"),
  46532. default: true
  46533. },
  46534. ]
  46535. ))
  46536. characterMakers.push(() => makeCharacter(
  46537. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46538. {
  46539. side: {
  46540. height: math.unit(100, "feet"),
  46541. name: "Side",
  46542. image: {
  46543. source: "./media/characters/linneaus/side.svg",
  46544. extra: 987/807,
  46545. bottom: 47/1034
  46546. }
  46547. },
  46548. },
  46549. [
  46550. {
  46551. name: "Macro",
  46552. height: math.unit(100, "feet"),
  46553. default: true
  46554. },
  46555. ]
  46556. ))
  46557. characterMakers.push(() => makeCharacter(
  46558. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46559. {
  46560. front: {
  46561. height: math.unit(8, "feet"),
  46562. weight: math.unit(1200, "lb"),
  46563. name: "Front",
  46564. image: {
  46565. source: "./media/characters/nyterious-daligdig/front.svg",
  46566. extra: 1284/1094,
  46567. bottom: 84/1368
  46568. }
  46569. },
  46570. back: {
  46571. height: math.unit(8, "feet"),
  46572. weight: math.unit(1200, "lb"),
  46573. name: "Back",
  46574. image: {
  46575. source: "./media/characters/nyterious-daligdig/back.svg",
  46576. extra: 1301/1121,
  46577. bottom: 129/1430
  46578. }
  46579. },
  46580. mouth: {
  46581. height: math.unit(1.464, "feet"),
  46582. name: "Mouth",
  46583. image: {
  46584. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46585. }
  46586. },
  46587. },
  46588. [
  46589. {
  46590. name: "Small",
  46591. height: math.unit(8, "feet"),
  46592. default: true
  46593. },
  46594. {
  46595. name: "Normal",
  46596. height: math.unit(15, "feet")
  46597. },
  46598. {
  46599. name: "Macro",
  46600. height: math.unit(90, "feet")
  46601. },
  46602. ]
  46603. ))
  46604. characterMakers.push(() => makeCharacter(
  46605. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46606. {
  46607. front: {
  46608. height: math.unit(7 + 4/12, "feet"),
  46609. weight: math.unit(252, "lb"),
  46610. name: "Front",
  46611. image: {
  46612. source: "./media/characters/bandel/front.svg",
  46613. extra: 1946/1775,
  46614. bottom: 26/1972
  46615. }
  46616. },
  46617. back: {
  46618. height: math.unit(7 + 4/12, "feet"),
  46619. weight: math.unit(252, "lb"),
  46620. name: "Back",
  46621. image: {
  46622. source: "./media/characters/bandel/back.svg",
  46623. extra: 1940/1770,
  46624. bottom: 25/1965
  46625. }
  46626. },
  46627. maw: {
  46628. height: math.unit(2.15, "feet"),
  46629. name: "Maw",
  46630. image: {
  46631. source: "./media/characters/bandel/maw.svg"
  46632. }
  46633. },
  46634. stomach: {
  46635. height: math.unit(1.95, "feet"),
  46636. name: "Stomach",
  46637. image: {
  46638. source: "./media/characters/bandel/stomach.svg"
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Normal",
  46645. height: math.unit(7 + 4/12, "feet"),
  46646. default: true
  46647. },
  46648. ]
  46649. ))
  46650. characterMakers.push(() => makeCharacter(
  46651. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46652. {
  46653. front: {
  46654. height: math.unit(10 + 5/12, "feet"),
  46655. weight: math.unit(773.5, "kg"),
  46656. name: "Front",
  46657. image: {
  46658. source: "./media/characters/zed/front.svg",
  46659. extra: 987/941,
  46660. bottom: 52/1039
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Short",
  46667. height: math.unit(5 + 4/12, "feet")
  46668. },
  46669. {
  46670. name: "Average",
  46671. height: math.unit(10 + 5/12, "feet"),
  46672. default: true
  46673. },
  46674. {
  46675. name: "Mini-Macro",
  46676. height: math.unit(24 + 9/12, "feet")
  46677. },
  46678. {
  46679. name: "Macro",
  46680. height: math.unit(249, "feet")
  46681. },
  46682. {
  46683. name: "Mega-Macro",
  46684. height: math.unit(12490, "feet")
  46685. },
  46686. {
  46687. name: "Giga-Macro",
  46688. height: math.unit(24.9, "miles")
  46689. },
  46690. {
  46691. name: "Tera-Macro",
  46692. height: math.unit(24900, "miles")
  46693. },
  46694. {
  46695. name: "Cosmic Scale",
  46696. height: math.unit(38.9, "lightyears")
  46697. },
  46698. {
  46699. name: "Universal Scale",
  46700. height: math.unit(138e12, "lightyears")
  46701. },
  46702. ]
  46703. ))
  46704. characterMakers.push(() => makeCharacter(
  46705. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46706. {
  46707. front: {
  46708. height: math.unit(1561, "inches"),
  46709. name: "Front",
  46710. image: {
  46711. source: "./media/characters/ivan/front.svg",
  46712. extra: 1126/1071,
  46713. bottom: 26/1152
  46714. }
  46715. },
  46716. back: {
  46717. height: math.unit(1561, "inches"),
  46718. name: "Back",
  46719. image: {
  46720. source: "./media/characters/ivan/back.svg",
  46721. extra: 1134/1079,
  46722. bottom: 30/1164
  46723. }
  46724. },
  46725. },
  46726. [
  46727. {
  46728. name: "Normal",
  46729. height: math.unit(1561, "inches"),
  46730. default: true
  46731. },
  46732. ]
  46733. ))
  46734. characterMakers.push(() => makeCharacter(
  46735. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46736. {
  46737. front: {
  46738. height: math.unit(5 + 7/12, "feet"),
  46739. weight: math.unit(150, "lb"),
  46740. name: "Front",
  46741. image: {
  46742. source: "./media/characters/robin-arctic-hare/front.svg",
  46743. extra: 1148/974,
  46744. bottom: 20/1168
  46745. }
  46746. },
  46747. },
  46748. [
  46749. {
  46750. name: "Normal",
  46751. height: math.unit(5 + 7/12, "feet"),
  46752. default: true
  46753. },
  46754. ]
  46755. ))
  46756. characterMakers.push(() => makeCharacter(
  46757. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46758. {
  46759. side: {
  46760. height: math.unit(5, "feet"),
  46761. name: "Side",
  46762. image: {
  46763. source: "./media/characters/birch/side.svg",
  46764. extra: 985/796,
  46765. bottom: 111/1096
  46766. }
  46767. },
  46768. },
  46769. [
  46770. {
  46771. name: "Normal",
  46772. height: math.unit(5, "feet"),
  46773. default: true
  46774. },
  46775. ]
  46776. ))
  46777. characterMakers.push(() => makeCharacter(
  46778. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46779. {
  46780. front: {
  46781. height: math.unit(4, "feet"),
  46782. name: "Front",
  46783. image: {
  46784. source: "./media/characters/rasp/front.svg",
  46785. extra: 561/478,
  46786. bottom: 74/635
  46787. }
  46788. },
  46789. },
  46790. [
  46791. {
  46792. name: "Normal",
  46793. height: math.unit(4, "feet"),
  46794. default: true
  46795. },
  46796. ]
  46797. ))
  46798. characterMakers.push(() => makeCharacter(
  46799. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46800. {
  46801. front: {
  46802. height: math.unit(4 + 6/12, "feet"),
  46803. name: "Front",
  46804. image: {
  46805. source: "./media/characters/agatha/front.svg",
  46806. extra: 947/933,
  46807. bottom: 42/989
  46808. }
  46809. },
  46810. back: {
  46811. height: math.unit(4 + 6/12, "feet"),
  46812. name: "Back",
  46813. image: {
  46814. source: "./media/characters/agatha/back.svg",
  46815. extra: 935/922,
  46816. bottom: 48/983
  46817. }
  46818. },
  46819. },
  46820. [
  46821. {
  46822. name: "Normal",
  46823. height: math.unit(4 + 6 /12, "feet"),
  46824. default: true
  46825. },
  46826. {
  46827. name: "Max Size",
  46828. height: math.unit(500, "feet")
  46829. },
  46830. ]
  46831. ))
  46832. characterMakers.push(() => makeCharacter(
  46833. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46834. {
  46835. side: {
  46836. height: math.unit(30, "feet"),
  46837. name: "Side",
  46838. image: {
  46839. source: "./media/characters/roggy/side.svg",
  46840. extra: 909/643,
  46841. bottom: 63/972
  46842. }
  46843. },
  46844. lounging: {
  46845. height: math.unit(20, "feet"),
  46846. name: "Lounging",
  46847. image: {
  46848. source: "./media/characters/roggy/lounging.svg",
  46849. extra: 643/479,
  46850. bottom: 145/788
  46851. }
  46852. },
  46853. handpaw: {
  46854. height: math.unit(13.1, "feet"),
  46855. name: "Handpaw",
  46856. image: {
  46857. source: "./media/characters/roggy/handpaw.svg"
  46858. }
  46859. },
  46860. footpaw: {
  46861. height: math.unit(15.8, "feet"),
  46862. name: "Footpaw",
  46863. image: {
  46864. source: "./media/characters/roggy/footpaw.svg"
  46865. }
  46866. },
  46867. },
  46868. [
  46869. {
  46870. name: "Menacing",
  46871. height: math.unit(30, "feet"),
  46872. default: true
  46873. },
  46874. ]
  46875. ))
  46876. characterMakers.push(() => makeCharacter(
  46877. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46878. {
  46879. front: {
  46880. height: math.unit(5 + 7/12, "feet"),
  46881. weight: math.unit(135, "lb"),
  46882. name: "Front",
  46883. image: {
  46884. source: "./media/characters/naomi/front.svg",
  46885. extra: 1209/1154,
  46886. bottom: 129/1338
  46887. }
  46888. },
  46889. back: {
  46890. height: math.unit(5 + 7/12, "feet"),
  46891. weight: math.unit(135, "lb"),
  46892. name: "Back",
  46893. image: {
  46894. source: "./media/characters/naomi/back.svg",
  46895. extra: 1252/1190,
  46896. bottom: 23/1275
  46897. }
  46898. },
  46899. },
  46900. [
  46901. {
  46902. name: "Normal",
  46903. height: math.unit(5 + 7 /12, "feet"),
  46904. default: true
  46905. },
  46906. ]
  46907. ))
  46908. characterMakers.push(() => makeCharacter(
  46909. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46910. {
  46911. side: {
  46912. height: math.unit(35, "meters"),
  46913. name: "Side",
  46914. image: {
  46915. source: "./media/characters/kimpi/side.svg",
  46916. extra: 419/382,
  46917. bottom: 63/482
  46918. }
  46919. },
  46920. hand: {
  46921. height: math.unit(8.96, "meters"),
  46922. name: "Hand",
  46923. image: {
  46924. source: "./media/characters/kimpi/hand.svg"
  46925. }
  46926. },
  46927. },
  46928. [
  46929. {
  46930. name: "Normal",
  46931. height: math.unit(35, "meters"),
  46932. default: true
  46933. },
  46934. ]
  46935. ))
  46936. characterMakers.push(() => makeCharacter(
  46937. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  46938. {
  46939. front: {
  46940. height: math.unit(4 + 4/12, "feet"),
  46941. name: "Front",
  46942. image: {
  46943. source: "./media/characters/pepper-purrloin/front.svg",
  46944. extra: 1141/1024,
  46945. bottom: 21/1162
  46946. }
  46947. },
  46948. },
  46949. [
  46950. {
  46951. name: "Normal",
  46952. height: math.unit(4 + 4/12, "feet"),
  46953. default: true
  46954. },
  46955. ]
  46956. ))
  46957. characterMakers.push(() => makeCharacter(
  46958. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  46959. {
  46960. front: {
  46961. height: math.unit(6 + 2/12, "feet"),
  46962. name: "Front",
  46963. image: {
  46964. source: "./media/characters/raphael/front.svg",
  46965. extra: 1101/962,
  46966. bottom: 59/1160
  46967. }
  46968. },
  46969. },
  46970. [
  46971. {
  46972. name: "Normal",
  46973. height: math.unit(6 + 2/12, "feet"),
  46974. default: true
  46975. },
  46976. ]
  46977. ))
  46978. characterMakers.push(() => makeCharacter(
  46979. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  46980. {
  46981. front: {
  46982. height: math.unit(6, "feet"),
  46983. weight: math.unit(150, "lb"),
  46984. name: "Front",
  46985. image: {
  46986. source: "./media/characters/victor-williams/front.svg",
  46987. extra: 1894/1825,
  46988. bottom: 67/1961
  46989. }
  46990. },
  46991. },
  46992. [
  46993. {
  46994. name: "Normal",
  46995. height: math.unit(6, "feet"),
  46996. default: true
  46997. },
  46998. ]
  46999. ))
  47000. characterMakers.push(() => makeCharacter(
  47001. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47002. {
  47003. front: {
  47004. height: math.unit(5 + 8/12, "feet"),
  47005. weight: math.unit(150, "lb"),
  47006. name: "Front",
  47007. image: {
  47008. source: "./media/characters/rachel/front.svg",
  47009. extra: 1902/1787,
  47010. bottom: 46/1948
  47011. }
  47012. },
  47013. },
  47014. [
  47015. {
  47016. name: "Base Height",
  47017. height: math.unit(5 + 8/12, "feet"),
  47018. default: true
  47019. },
  47020. {
  47021. name: "Macro",
  47022. height: math.unit(200, "feet")
  47023. },
  47024. {
  47025. name: "Mega Macro",
  47026. height: math.unit(1, "mile")
  47027. },
  47028. {
  47029. name: "Giga Macro",
  47030. height: math.unit(1500, "miles")
  47031. },
  47032. {
  47033. name: "Tera Macro",
  47034. height: math.unit(8000, "miles")
  47035. },
  47036. {
  47037. name: "Tera Macro+",
  47038. height: math.unit(2e5, "miles")
  47039. },
  47040. ]
  47041. ))
  47042. characterMakers.push(() => makeCharacter(
  47043. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47044. {
  47045. front: {
  47046. height: math.unit(6.5, "feet"),
  47047. name: "Front",
  47048. image: {
  47049. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47050. extra: 860/819,
  47051. bottom: 307/1167
  47052. }
  47053. },
  47054. back: {
  47055. height: math.unit(6.5, "feet"),
  47056. name: "Back",
  47057. image: {
  47058. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47059. extra: 880/837,
  47060. bottom: 395/1275
  47061. }
  47062. },
  47063. sleeping: {
  47064. height: math.unit(2.79, "feet"),
  47065. name: "Sleeping",
  47066. image: {
  47067. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47068. extra: 465/383,
  47069. bottom: 263/728
  47070. }
  47071. },
  47072. maw: {
  47073. height: math.unit(2.52, "feet"),
  47074. name: "Maw",
  47075. image: {
  47076. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47077. }
  47078. },
  47079. },
  47080. [
  47081. {
  47082. name: "Normal",
  47083. height: math.unit(6.5, "feet"),
  47084. default: true
  47085. },
  47086. ]
  47087. ))
  47088. characterMakers.push(() => makeCharacter(
  47089. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47090. {
  47091. front: {
  47092. height: math.unit(5, "feet"),
  47093. name: "Front",
  47094. image: {
  47095. source: "./media/characters/nova-nerium/front.svg",
  47096. extra: 1548/1392,
  47097. bottom: 374/1922
  47098. }
  47099. },
  47100. back: {
  47101. height: math.unit(5, "feet"),
  47102. name: "Back",
  47103. image: {
  47104. source: "./media/characters/nova-nerium/back.svg",
  47105. extra: 1658/1468,
  47106. bottom: 257/1915
  47107. }
  47108. },
  47109. },
  47110. [
  47111. {
  47112. name: "Normal",
  47113. height: math.unit(5, "feet"),
  47114. default: true
  47115. },
  47116. ]
  47117. ))
  47118. characterMakers.push(() => makeCharacter(
  47119. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47120. {
  47121. front: {
  47122. height: math.unit(5 + 4/12, "feet"),
  47123. name: "Front",
  47124. image: {
  47125. source: "./media/characters/ashe-pyriph/front.svg",
  47126. extra: 1935/1747,
  47127. bottom: 60/1995
  47128. }
  47129. },
  47130. },
  47131. [
  47132. {
  47133. name: "Normal",
  47134. height: math.unit(5 + 4/12, "feet"),
  47135. default: true
  47136. },
  47137. ]
  47138. ))
  47139. characterMakers.push(() => makeCharacter(
  47140. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47141. {
  47142. front: {
  47143. height: math.unit(8.7, "feet"),
  47144. name: "Front",
  47145. image: {
  47146. source: "./media/characters/flicker-wisp/front.svg",
  47147. extra: 1835/1613,
  47148. bottom: 449/2284
  47149. }
  47150. },
  47151. side: {
  47152. height: math.unit(8.7, "feet"),
  47153. name: "Side",
  47154. image: {
  47155. source: "./media/characters/flicker-wisp/side.svg",
  47156. extra: 1841/1642,
  47157. bottom: 336/2177
  47158. },
  47159. default: true
  47160. },
  47161. maw: {
  47162. height: math.unit(3.35, "feet"),
  47163. name: "Maw",
  47164. image: {
  47165. source: "./media/characters/flicker-wisp/maw.svg",
  47166. extra: 2338/1506,
  47167. bottom: 0/2338
  47168. }
  47169. },
  47170. ovipositor: {
  47171. height: math.unit(4.95, "feet"),
  47172. name: "Ovipositor",
  47173. image: {
  47174. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47175. }
  47176. },
  47177. egg: {
  47178. height: math.unit(0.385, "feet"),
  47179. weight: math.unit(2, "lb"),
  47180. name: "Egg",
  47181. image: {
  47182. source: "./media/characters/flicker-wisp/egg.svg"
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Normal",
  47189. height: math.unit(8.7, "feet"),
  47190. default: true
  47191. },
  47192. ]
  47193. ))
  47194. characterMakers.push(() => makeCharacter(
  47195. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47196. {
  47197. side: {
  47198. height: math.unit(11, "feet"),
  47199. name: "Side",
  47200. image: {
  47201. source: "./media/characters/faefnul/side.svg",
  47202. extra: 1100/1007,
  47203. bottom: 0/1100
  47204. }
  47205. },
  47206. },
  47207. [
  47208. {
  47209. name: "Normal",
  47210. height: math.unit(11, "feet"),
  47211. default: true
  47212. },
  47213. ]
  47214. ))
  47215. characterMakers.push(() => makeCharacter(
  47216. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47217. {
  47218. front: {
  47219. height: math.unit(6 + 2/12, "feet"),
  47220. name: "Front",
  47221. image: {
  47222. source: "./media/characters/shady/front.svg",
  47223. extra: 502/461,
  47224. bottom: 9/511
  47225. }
  47226. },
  47227. kneeling: {
  47228. height: math.unit(4.6, "feet"),
  47229. name: "Kneeling",
  47230. image: {
  47231. source: "./media/characters/shady/kneeling.svg",
  47232. extra: 1328/1219,
  47233. bottom: 117/1445
  47234. }
  47235. },
  47236. maw: {
  47237. height: math.unit(2, "feet"),
  47238. name: "Maw",
  47239. image: {
  47240. source: "./media/characters/shady/maw.svg"
  47241. }
  47242. },
  47243. },
  47244. [
  47245. {
  47246. name: "Nano",
  47247. height: math.unit(1, "mm")
  47248. },
  47249. {
  47250. name: "Micro",
  47251. height: math.unit(12, "mm")
  47252. },
  47253. {
  47254. name: "Tiny",
  47255. height: math.unit(3, "inches")
  47256. },
  47257. {
  47258. name: "Normal",
  47259. height: math.unit(6 + 2/12, "feet"),
  47260. default: true
  47261. },
  47262. {
  47263. name: "Big",
  47264. height: math.unit(15, "feet")
  47265. },
  47266. {
  47267. name: "Macro",
  47268. height: math.unit(150, "feet")
  47269. },
  47270. {
  47271. name: "Titanic",
  47272. height: math.unit(500, "feet")
  47273. },
  47274. ]
  47275. ))
  47276. //characters
  47277. function makeCharacters() {
  47278. const results = [];
  47279. characterMakers.forEach(character => {
  47280. results.push(character());
  47281. });
  47282. return results;
  47283. }